123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .container {
- padding: 20rpx 0;
- background: #FFFFFF;
- background-repeat: no-repeat;
- background-size: cover;
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- box-sizing: border-box;
- }
- .btn-goback {
- position: absolute;
- left: 2vw;
- top: 1.2vh;
- width: 8vw;
- height: 8vw;
- z-index: 9;
- }
- .list {
- width: 100%;
- height: 112px;
- box-sizing: border-box;
- padding: 0 20rpx;
- }
- .list-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 24px 12px;
- border-bottom: 1px solid #eeeeee;
- }
- .list-item .aside-left {
- display: flex;
- align-items: center;
- }
- .list-item .aside-left .icon {
- width: 32px;
- height: 32px;
- }
- .list-item .aside-left text {
- padding: 0 12px;
- font-size: 16px;
- color: #333333;
- letter-spacing: 0;
- font-weight: 400;
- }
- .list-item .aside-right {
- width: 9px;
- height: 14px;
- }
|