1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .zw-service-box {
- background-color: #fff;
- box-shadow: 0 2rpx 12rpx 0 rgba(0, 0, 0, 0.1);
- .service-title {
- width: 100%;
- height: 100rpx;
- font-size: 36rpx;
- font-family: PingFang SC, PingFang SC-Bold;
- font-weight: 700;
- color: #1a1a1a;
- border-bottom: 2rpx solid #f9f7f7;
- padding: 0 30rpx;
- line-height: 100rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- // <text class="moer-text">更多 <text class="moer-icon iconfont_yige"></text> </text>
- .moer-text {
- flex-shrink: 0;
- padding-left: 30rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- .moer-icon {
- font-size: 22rpx;
- }
- }
- }
- .service-content {
- padding: 30rpx;
- }
- }
- .theme-service {
- .service-item {
- width: 300rpx;
- height: 162rpx;
- margin-bottom: 20rpx;
- &:nth-child(n+3) {
- margin-bottom: 0;
- }
- .service-img {
- width: 100%;
- height: 100% !important;
- }
- }
- }
|