| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- .linear {
- width: 750rpx;
- height: 2rpx;
- background: #DDDDDD;
- }
- .insert-group {
- width: 100vw;
- height: 100rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 30rpx;
- background: #FFFFFF;
- overflow: hidden;
- box-sizing: border-box;
- .title {
- display: flex;
- align-items: center;
- .iconfont {
- color: #52C41A;
- font-size: 44rpx;
- }
- .text {
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC;
- color: #333333;
- margin-left: 30rpx;
- }
- }
- }
- .group-label {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- padding: 24rpx 30rpx;
- }
- .group-box {
- display: flex;
- align-items: center;
- width: 750rpx;
- height: 120rpx;
- padding: 20rpx 30rpx;
- background: #FFFFFF;
- box-sizing: border-box;
- .icon-box {
- width: 80rpx;
- height: 80rpx;
- border-radius: 16rpx;
- text-align: center;
- line-height: 80rpx;
- flex-shrink: 0;
- margin-right: 20rpx;
- .iconfont {
- font-size: 38rpx;
- color: #fff;
- }
- }
- .text-box {
- width: 0;
- flex: 1;
- height: 80rpx;
- .title {
- line-height: 40rpx;
- font-size: 28rpx;
- color: #333333;
- }
- .count {
- line-height: 34rpx;
- font-size: 24rpx;
- color: #999999;
- margin-top: 6rpx;
- }
- }
- }
- .van-swipe-cell__right {
- display: flex;
- height: 120rpx;
- navigator {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 120rpx;
- height: 120rpx;
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC;
- color: #FFFFFF;
- }
- }
- .dialog {
- display: flex;
- flex-direction: column;
- align-items: center;
- .dialog-title {
- margin-top: 30rpx;
- font-size: 32rpx;
- color: #333333;
- }
- .dialog-input {
- width: 520rpx;
- height: 90rpx;
- background: #FAFAFA;
- border-radius: 8rpx;
- border: 1rpx solid #CCCCCC;
- margin-top: 30rpx;
- margin-bottom: 30rpx;
- box-sizing: border-box;
- padding: 0 30rpx;
- }
- }
- .tab-active {
- font-size: 28rpx !important;
- font-family: PingFang SC, PingFang SC !important;
- font-weight: bold !important;
- color: #3874F6 !important;
- }
|