12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .hotSection {
- width: 100%;
- /* height: 50rpx; */
- /* background: #fff; */
- background: rgba(240, 241, 245, 1);
- min-height: 100%;
- padding-bottom:20rpx;
- }
- .hotWares {
- display: flex;
- flex-wrap: wrap;
- }
- .hotSection .hotWares .hotWareCard {
- position: relative;
- overflow: hidden;
- width: 720rpx;
- height: 374rpx;
- background: #fff;
- border-radius: 12rpx;
- margin: 0 auto 20rpx;
- }
- .hotWareCard .titleSummary {
- display: flex;
- justify-content: space-between;
- margin-top: 12rpx;
- }
- .hotWareCard .wareCardImg {
- display: block;
- width: 662rpx;
- height: 272rpx;
- margin: 26rpx auto 0;
- border-radius: 20rpx;
- }
- .hotWareCard .wareCardTitle {
- width:80%;
- height:46rpx;
- display:block;
- color:#414141;
- font-size:32rpx;
- margin-left:28rpx;
-
- }
- .hotWareCard .bottomData {
- height: 34rpx;
- margin-top: 10rpx;
- display: flex;
- /* flex-direction: row; */
- justify-content: space-between;
- align-items: center;
- }
- .hotWareCard .wareCardTip {
- width: 178rpx;
- height: 40rpx;
- display: block;
- text-align: left;
- color: #444;
- font-size: 24rpx;
- }
|