123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- @charset "UTF-8";
- /* 水平间距 */
- /* 水平间距 */
- .content {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- }
- .content .one {
- padding: 2vw;
- }
- .content .one input {
- padding: 2vw;
- background-color: var(--f1Color);
- font-size: var(--font14Size);
- border-radius: 5px;
- }
- .content .two {
- position: relative;
- flex-grow: 1;
- background-color: var(--f9Color);
- }
- .content .two .tabsList {
- position: relative;
- width: 100vw;
- height: 82vh;
- }
- .content .two .tabsList .list {
- background-color: #fff;
- border: 1px solid var(--f5Color);
- padding: 2vw;
- margin: 0 2vw 2vw 2vw;
- border-radius: 5px;
- }
- .content .two .tabsList .list .list_1 {
- display: flex;
- justify-content: space-between;
- padding: 2vw 0;
- font-size: var(--font14Size);
- }
- .content .two .tabsList .list .list_1 .status {
- color: var(--fF0Color);
- }
- .content .two .tabsList .list .list_2 {
- display: flex;
- }
- .content .two .tabsList .list .list_2 .left .image {
- width: 20vw;
- height: 20vw;
- border-radius: 5px;
- }
- .content .two .tabsList .list .list_2 .right {
- width: 70vw;
- margin: 0 0 0 2vw;
- }
- .content .two .tabsList .list .list_2 .right .right_1 {
- display: flex;
- justify-content: space-between;
- margin: 2vw 0;
- }
- .content .two .tabsList .list .list_2 .right .right_1 .name {
- font-size: var(--font14Size);
- }
- .content .two .tabsList .list .list_2 .right .right_1 .num {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- }
- .content .two .tabsList .list .list_2 .right .right_1 .num text:last-child {
- font-size: var(--font13Size);
- color: var(--f85Color);
- }
- .content .two .tabsList .list .list_2 .right .right_2 {
- font-size: var(--font12Size);
- color: var(--f85Color);
- }
- .content .two .tabsList .list .bottom {
- text-align: center;
- padding: 1vw 0;
- }
- .content .two .tabsList .list .bottom button {
- margin: 0 5px 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);
- }
|