1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* 组 */
- .group-box {
- width: 100vw;
- background-color: #fff;
- margin-top: 20rpx;
- padding-bottom: 15rpx;
- .icon {
- display: flex;
- align-items: center;
- justify-content: center;
- text {
- color: #fff;
- font-size: 48rpx;
- }
- }
- .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;
- }
- }
- }
- .group {
- 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;
- }
- }
|