| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- .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;
- }
- }
- }
- .label {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- padding: 24rpx 30rpx;
- }
- .group {
- 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;
- }
- }
- }
|