index.wxss 2.2 KB

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