index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /**index.wxss**/
  2. .caption-wrap {
  3. background-color: white;
  4. margin-top: 15px;
  5. }
  6. .caption-title {
  7. background-color: #f7f7f7;
  8. display: block;
  9. margin-left: 5px;
  10. }
  11. .index-collapse {
  12. font-size: 14px;
  13. line-height: 24px;
  14. }
  15. .index-collapse-item {
  16. padding: 8px 15px !important;
  17. border: 0px !important;
  18. }
  19. .index-cell {
  20. padding: 5px 15px !important;
  21. }
  22. /*
  23. 列表展示
  24. */
  25. .guess-section {
  26. display: -webkit-box;
  27. display: -webkit-flex;
  28. display: -ms-flexbox;
  29. display: flex;
  30. -webkit-flex-wrap: wrap;
  31. -ms-flex-wrap: wrap;
  32. flex-wrap: wrap;
  33. padding: 20rpx;
  34. background: #fff;
  35. }
  36. .guess-section .guess-item {
  37. margin-top: 40rpx;
  38. display: -webkit-box;
  39. display: -webkit-flex;
  40. display: -ms-flexbox;
  41. display: flex;
  42. -webkit-box-orient: vertical;
  43. -webkit-box-direction: normal;
  44. -webkit-flex-direction: column;
  45. -ms-flex-direction: column;
  46. flex-direction: column;
  47. width: 48%;
  48. border-radius: 80rpx;
  49. padding-bottom: 40rpx;
  50. }
  51. .guess-section .guess-item:nth-child(2n+1) {
  52. margin-right: 4%;
  53. }
  54. .guess-section .image-wrapper {
  55. width: 100%;
  56. height: 210rpx;
  57. border-radius: 3px;
  58. overflow: hidden;
  59. }
  60. .guess-section .image-wrapper image {
  61. width: 100%;
  62. height: 100%;
  63. opacity: 1;
  64. }
  65. .guess-section .title {
  66. font-size: 26rpx;
  67. color: #303133;
  68. font-weight: 700;
  69. }
  70. .guess-section .info {
  71. padding: 0rpx 20rpx;
  72. float: left;
  73. margin-left: 0rpx;
  74. }
  75. .guess-section .info .price {
  76. font-size: 26rpx;
  77. float: left;
  78. }
  79. .guess-section .info .xs {
  80. font-size: 26rpx;
  81. margin-left: 20rpx;
  82. float: left;
  83. }
  84. .item-img{
  85. height: 388rpx;
  86. position: relative;
  87. }
  88. .circle {
  89. border-radius: 50px;
  90. height: 50px;
  91. position: absolute;
  92. width: 50px;
  93. z-index: 9998;
  94. color: #fff;
  95. background: #000;
  96. opacity: 0.6;
  97. left: 50%;
  98. margin-left: -50rpx;
  99. text-align: center;
  100. margin-top: -160rpx;
  101. }
  102. .circle_inner_play {
  103. content: "";
  104. display: block;
  105. width: 0;
  106. height: 0;
  107. border-style: solid;
  108. border-width: 10px 0 10px 20px;
  109. border-color: transparent transparent transparent #fff;
  110. position: absolute;
  111. top: 50%;
  112. left: 50%;
  113. margin: -10px 0 0 -7px;
  114. }