12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- page {
- background-color: #f2f2f2;
- }
- .picker-item {
- width: 100%;
- height: 70rpx;
- background-color: #fff;
- flex-direction: row;
- display: flex;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- padding: 0rpx 30rpx;
- border-bottom: 2rpx solid #f2f2f2;
- }
- .picker-item .desc-t {
- font-size: 26rpx;
- }
- .picker-item .desc-c {
- color: #666;
- }
- .picker-item .icon-bottom {
- width: 26rpx;
- height: 14rpx;
- margin-left: 20rpx;
- }
- scroll-view {
- width: 100%;
- height: 82vh;
- box-sizing: border-box;
- flex-direction: column;
- display: flex;
- padding: 20rpx 30rpx 0rpx 30rpx;
- }
- .list-item {
- width: 100%;
- height: 200rpx;
- flex-direction: row;
- display: flex;
- align-items: center;
- background-color: #fff;
- border-radius: 10rpx;
- margin-bottom: 20rpx;
- }
- .list-item .head-img {
- width: 140rpx;
- height: 140rpx;
- border-radius: 50%;
- margin-left: 50rpx;
- margin-right: 50rpx;
- border: 2rpx solid #e5e5e5;
- }
- .list-item .name {
- font-size: 30rpx;
- font-weight: 700;
- }
- .list-item .normal {
- font-size: 26rpx;
- color: #6282f3;
- margin-left: 10rpx;
- }
- .list-item .late {
- font-size: 26rpx;
- color: red;
- margin-left: 10rpx;
- }
- .list-item .address {
- flex-direction: row;
- display: flex;
- align-items: center;
- }
- .list-item .address-img {
- width: 28rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
- .list-item .create-time {
- font-size: 26rpx;
- color: #666;
- }
|