12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .recommend {
- position: relative;
- padding-top: 50rpx;
- padding-bottom: calc(140rpx + env(safe-area-inset-bottom)) !important;
- .firstClassify {
- margin: 0rpx auto 50rpx;
- width: 700rpx;
- padding: 40rpx 10rpx;
- box-sizing: border-box;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-between;
- text-align: center;
- z-index: 2;
- background: #FFFFFF;
- border-radius: 30rpx;
- .classifyBox {
- margin-bottom: 20rpx;
- width: 25%;
- .icon {
- width: 108rpx;
- height: 150rpx;
- }
- }
- .searchBox {
- margin: 10rpx auto 0;
- width: 412rpx;
- padding: 12rpx 0;
- background: #F2F6FC;
- border-radius: 27rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 27rpx;
- color: #666666;
- .search-icon {
- margin-left: 22rpx;
- width: 28rpx;
- height: 28rpx;
- }
- }
- }
- }
|