12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .uni-margin-wrap {
- width: 750rpx;
- width: 100%;
- }
- .swiper {
- height: 460rpx;
- }
- .swiper-item {
- height: 460rpx;
- line-height: 460rpx;
- text-align: center;
- }
- .pictures {
- width: 100%;
- height: 460rpx;
- }
- .van-notice-bar__content {
- width: 648rpx;
- }
- .list {
- height: 40rpx;
- line-height: 40rpx;
- }
- .product .title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 20rpx 10rpx;
- font-size: 28rpx;
- }
- .product .title text:last-child {
- color: #ccc;
- font-size: 21rpx;
- }
- .product .product_list {
- display: flex;
- flex-wrap: wrap;
- }
- .product .product_list .main {
- width: 33%;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: 18rpx 0;
- }
- .product .product_list .main image {
- width: 200rpx;
- height: 200rpx;
- border-radius: 8rpx;
- }
- .product .product_list .main .name {
- width: 200rpx;
- font-size: 22rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .product .product_list .main .price {
- width: 200rpx;
- color: #f00;
- }
|