12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- view {
- box-sizing: border-box;
- }
-
- .container {
- min-height: 100vh;
- background:#F7F8FB ;
- .list{
- padding: 24rpx 30rpx;
- .item{
- // height: 242rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 4rpx 16rpx -8rpx rgba(0,103,104,0.16);
- border-radius: 32rpx;
- padding: 40rpx 24rpx;
- margin-bottom: 24rpx;
- .top{
- display: flex;
- justify-content: space-between;
- padding-bottom: 24rpx;
- border-bottom: 1rpx solid #E6E7E8;
- .name{
- font-size: 28rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- color: #333333;
- }
- .money{
- font-size: 32rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- color: #333333;
- }
- }
- .bot{
- padding-top: 24rpx;
-
- .refuseBox{
- // height: 112rpx;
- background: #F4F4F4;
- border-radius: 12rpx;
- padding: 18rpx 24rpx;
-
- font-size: 26rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: 500;
- color: #333333;
-
- margin-bottom: 32rpx;
- }
- .item1{
- display: flex;
- justify-content: space-between;
- .left{
- font-size: 26rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: 500;
- color: #333333;
- }
- .right{
- font-size: 26rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: 500;
- color: #EF8116;
- }
- .rb{
- color: #333333;
- }
- }
- .item1:first-child{
- margin-bottom: 32rpx;
- }
- }
- }
- }
- }
|