123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @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);
- }
- .content .two .list {
- background-color: #fff;
- border: 1px solid var(--f5Color);
- padding: 2vw;
- margin: 0 2vw 2vw 2vw;
- border-radius: 5px;
- }
- .content .two .list .btn {
- text-align: right;
- margin: 1vw 0 0 0;
- }
- .content .two .list .btn button {
- 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);
- }
|