12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .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;
- }
- }
- }
- .group-box {
- padding: 40rpx 0 50rpx;
- .group-name {
- width: 70%;
- height: 50rpx !important;
- margin: auto;
- border: 1px solid rgb(116, 114, 114);
- text-align: center;
- font-family: PingFang SC-Regular, PingFang SC;
- font-size: 26rpx;
- border-radius: 12rpx;
- }
- }
|