12345678910111213141516171819202122232425262728293031 |
- .add {
- .box {
- width: 100vw;
- background-color: #fff;
- padding-left: 30rpx;
- box-sizing: border-box;
- .content {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 100rpx;
- border-bottom: 1px solid #ddd;
- box-sizing: border-box;
- .text {
- flex: 1;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- }
- }
- .box:last-child {
- .content {
- border: none;
- }
- }
- }
|