| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* 组 */
- .group-box {
- width: 100vw;
- background-color: #fff;
- margin-top: 20rpx;
- padding-bottom: 15rpx;
- .title {
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #000000;
- padding: 30rpx;
- padding-bottom: 15rpx;
- }
- .group {
- display: flex;
- width: 100vw;
- padding: 15rpx 30rpx;
- box-sizing: border-box;
- >view {
- height: 84rpx;
- }
- .icon {
- width: 84rpx;
- border-radius: 16rpx;
- margin-right: 20rpx;
- }
- .text {
- flex: 1;
- .name {
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .count {
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 6rpx;
- }
- }
- }
- /* 滑动 */
- .slide {
- display: flex;
- height: 84rpx;
- width: 240rpx;
- margin-top: 15rpx;
- .but{
- border-radius: 0 !important;
- }
- }
- }
|