12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .hotSection {
- width: 100%;
-
- background: #fff;
- margin-top: 10rpx;
- }
- .hotWares {
- display: flex;
- flex-wrap: wrap;
- }
- .hotSection .hotWares .hotWareCard {
- position: relative;
- overflow: hidden;
- width: 704rpx;
- height: 402rpx;
-
- margin: 0 auto 20rpx;
-
- }
- .hotWareCard .wareCardImg {
- width: 100%;
- height: 290rpx;
- border-radius: 20rpx;
- }
- .hotWareCard .wareCardTitle {
-
- width: 100%;
- height: 46rpx;
- display: block;
-
- color: #414141;
- font-size: 32rpx;
- letter-spacing: 4rpx;
- font-family: MicrosoftYaHei;
- }
- .hotWareCard .bottomData {
- height: 34rpx;
- margin-top: 10rpx;
- display: flex;
-
- justify-content: space-between;
- align-items: center;
- }
- .hotWareCard .wareCardTip {
- width: 178rpx;
- height: 40rpx;
- display: block;
- text-align: left;
- color: #414141;
- font-size: 24rpx;
- }
|