12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- @charset "UTF-8";
- /* 水平间距 */
- /* 水平间距 */
- .content {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- }
- .content .one {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 2vw;
- }
- .content .one .one_1 {
- padding: 0 2vw;
- width: 75vw;
- }
- .content .one .one_1 input {
- padding: 2vw;
- background-color: var(--f1Color);
- font-size: var(--font14Size);
- border-radius: 5px;
- }
- .content .one .button {
- background-color: var(--f3CColor);
- color: var(--mainColor);
- }
- .content .two {
- position: relative;
- flex-grow: 1;
- background-color: var(--f9Color);
- margin: 2vw 0 0 0;
- }
- .content .two .list {
- background-color: var(--mainColor);
- border: 1px solid var(--f5Color);
- padding: 2vw;
- margin: 2vw 2vw 0 2vw;
- border-radius: 5px;
- }
- .content .two .list .list_1 {
- display: flex;
- }
- .content .two .list .list_1 .image {
- width: 20vw;
- height: 20vw;
- }
- .content .two .list .list_1 .other {
- width: 69vw;
- margin: 0 0 0 2vw;
- }
- .content .two .list .list_1 .other .name {
- font-size: var(--font16Size);
- margin: 0 0 1vw 0;
- }
- .content .two .list .list_1 .other .type {
- color: var(--f85Color);
- font-size: var(--font14Size);
- }
- .content .two .list .btn {
- text-align: center;
- margin: 1vw 0 0 0;
- }
- .content .two .list .btn .button {
- background-color: var(--f3CColor);
- color: var(--mainColor);
- margin: 0 1vw 0 0;
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- .is_bottom {
- text-align: center;
- }
- .is_bottom text {
- padding: 2vw 0;
- display: inline-block;
- color: var(--f85Color);
- font-size: var(--font14Size);
- }
|