| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .head {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 30rpx;
- box-sizing: border-box;
- position: static;
- top: 0;
- height: 90rpx;
- background: #FFFFFF;
- box-shadow: inset 0rpx -1rpx 0rpx 2rpx #DDDDDD;
- .label {
- font-size: 28rpx;
- font-weight: bold;
- color: #333333;
- }
- .filter {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- width: 120rpx;
- text-align: right;
- line-height: 60rpx;
- }
- }
- .item {
- background-color: #fff;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- border-bottom: 1px solid #ddd;
- .label {
- height: 42rpx;
- line-height: 42rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 600;
- color: #333333;
- }
- .row {
- display: flex;
- justify-content: space-between;
- font-size: 24rpx;
- line-height: 34rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- margin-top: 10rpx;
- view {
- width: 330rpx;
- }
- }
- }
- .tips{
- padding: 20rpx 30rpx;
- font-size: 28rpx;
- }
- .container {
- box-sizing: border-box;
- padding: 0 10rpx;
- width: 100%;
- background-color: #fff;
- }
|