123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- page {
- width: 100%;
- height: 100%;
- background: #EEEEEE;
- }
- .box {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .box .list {
- width: 690rpx;
- height: 170rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- font-size: 28rpx;
- font-weight: 400;
- color: rgba(77, 77, 77, 1);
- margin-top: 30rpx;
- padding-left: 25rpx;
- box-sizing: border-box;
- }
- .box van-cell-group {
- width: 690rpx;
- display: flex;
- flex-direction: column;
- }
- .box .van-cell {
- width: 100%;
- height: 88rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
- border-radius: 10rpx;
- margin-top: 20rpx !important;
- }
|