brandList.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* brandList.wxss */
  2. /* 列表 */
  3. page{
  4. background-color: #fff;
  5. }
  6. .container{
  7. max-height:100vh;
  8. overflow:hidden;
  9. }
  10. .list{
  11. display: flex;
  12. justify-content: space-between;
  13. flex-wrap: wrap;
  14. padding: 20rpx 30rpx 0;
  15. background-color: #fff;
  16. border-right: 1rpx solid #eaeced;
  17. }
  18. .list_item_wrap{
  19. margin: 10rpx 0 30rpx 0;
  20. }
  21. .list_item{
  22. width: 340rpx;
  23. height:340rpx;
  24. border:1px solid #e5e3e3;
  25. border-radius: 4px;
  26. overflow: hidden;
  27. position: relative;
  28. }
  29. .full_image{
  30. display: block;
  31. width: 100%;
  32. }
  33. .full_img_footer{
  34. width:100%;
  35. height:50rpx;
  36. font-size: 24rpx;
  37. line-height: 50rpx;
  38. color:#fff;
  39. text-align: center;
  40. background-color: rgba(0,0,0,0.6);
  41. position: absolute;
  42. left: 0;
  43. bottom: 0;
  44. }
  45. .full_title{
  46. width: 340rpx;
  47. font-size: 30rpx;
  48. line-height: 70rpx;
  49. color:#444;
  50. text-overflow: ellipsis;
  51. overflow: hidden;
  52. white-space: nowrap;
  53. }
  54. .full_price{
  55. font: italic bold 36rpx "Microsoft Yahei";
  56. color:#ff8401;
  57. }
  58. .full_price_unit{
  59. font: normal normal 26rpx Arial;
  60. }
  61. .list_item_banner_wrap,.list_item_banner{
  62. width:100%;
  63. }
  64. .list_item_banner_wrap{
  65. position: relative;
  66. margin-bottom:4rpx;
  67. }
  68. .jingpin_infor{
  69. display: flex;
  70. justify-content: center;
  71. align-items: center;
  72. width: 100%;
  73. height: 100%;
  74. background-color: rgba(0, 0, 0, 0.5);
  75. position: absolute;
  76. top: 0;
  77. left: 0;
  78. text-align: center;
  79. }
  80. .jingpin_infor:before {
  81. content: '';
  82. display: inline-block;
  83. height: 100%;
  84. vertical-align: middle;
  85. margin-right: -0.25em; /* Adjusts for spacing */
  86. }
  87. .infor_cont{
  88. display: inline-block;
  89. /* align-items: center; */
  90. }
  91. .jingpin_infor_title,.jingpin_infor_cont,.jingpin_infor_btn{
  92. color:#fff;
  93. text-align: center;
  94. }
  95. .jingpin_infor_title{
  96. font-size: 40rpx;
  97. line-height: 60rpx;
  98. }
  99. .jingpin_infor_cont{
  100. font-size: 16rpx;
  101. padding-bottom: 10rpx;
  102. }
  103. .jingpin_infor_btn{
  104. display: inline;
  105. font-size: 16rpx;
  106. padding: 8rpx 17rpx;
  107. color: #fff;
  108. }
  109. .red{
  110. background-color: #b4a078;
  111. }
  112. .blue{
  113. background-color: #b4a078;
  114. }
  115. .green{
  116. background-color: #b4a078;
  117. }