1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- body{
- width: 100%;min-height: 100vh;background: #fff;
- }
- .hotList .hint{
- font-size: 0.14rem;
- text-align: center;
- padding-top: 1rem;
- }
- .hotList li{
- width: 100%;height: 1.3rem;border-top: 0.01rem solid #F4F4F4;display: flex;align-items: center;position: relative;
- }
- .hotList li .topImg{
- width: 0.23rem;position: absolute;top: 0.1rem;left: 0.28rem;
- }
- .hotList li .shopImg{
- width: 1.1rem;height: 1.1rem;border-radius: 0.05rem;margin-left: 0.2rem;
- }
- .hotList li .shopCon{
- padding-left: 0.09rem;width: 2.3rem;
- }
- .hotList li .shopCon h3{
- color: #333;font-size: 0.15rem;line-height: 0.19rem;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap
- }
- .hotList li .shopCon .shop{
- display: flex;align-items: center;color: #8D8A8A;font-size: 0.11rem;line-height: 0.16rem;margin-top: 0.06rem;
- }
- .hotList li .shopCon img{
- width: 0.14rem;height: 0.14rem;margin-right: 0.03rem;
- }
- .hotList li .shopCon .shop_price{
- color: #4A4A4A;font-size: 0.12rem;line-height: 0.17rem;margin-top: 0.1rem;
- }
- .hotList li .shopCon .shop_price em{
- font-size: 0.16rem;
- }
- .hotList li .shopCon .shop_price span{
- color: #FF7D00;
- }
- .hotList li .shopCon .shop_sales_volume{
- width: 0.9rem;height: 0.18rem;background: url(./img/sales_volume.png) no-repeat;background-size:100%; color: #fff;font-size: 0.11rem;line-height: 0.18rem;text-align: center;margin-top: 0.09rem;padding-left: 0.1rem;box-sizing: border-box;
- }
|