viewPlot.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. .plot-view{
  2. position: relative;
  3. width: auto;
  4. box-sizing: border-box;
  5. z-index: 12;
  6. padding-top: 0px;
  7. .title{
  8. font-family: "Verdana Bold";
  9. font-weight: 700;
  10. font-size: 32px;
  11. color: #000;
  12. margin-bottom: 30px;
  13. }
  14. .close{
  15. position: absolute;
  16. right: -50px;
  17. top: -40px;
  18. width: 30px;
  19. height: 30px;
  20. color: rgba(0, 0, 0, 0.22);
  21. font-size: 30px;
  22. padding: 60px;
  23. z-index: 99;
  24. }
  25. }
  26. .swiper-view{
  27. position: relative;
  28. width: 100%;
  29. height: 98px;
  30. // top:926px;
  31. overflow-x: auto;
  32. overflow-y: hidden;
  33. margin-bottom: 30px;
  34. z-index: 9;
  35. box-sizing: border-box;
  36. .tab-content{
  37. position: absolute;
  38. box-sizing: border-box;
  39. }
  40. .tab-item{
  41. // width:190px;
  42. width:max-content;
  43. font-family: "Verdana";
  44. font-weight: 400;
  45. font-size: 0px;
  46. color: rgba(69, 69, 69, 0.6);
  47. text-align:center;
  48. box-sizing: border-box;
  49. margin-right: 10px;
  50. border: 2px solid transparent;
  51. border-radius: 12px;
  52. padding: 12px;
  53. height: 98px;
  54. &.tabActive{
  55. border-color: #ffbd3e;
  56. background: rgba(253, 191, 71, 0.08);
  57. // box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  58. }
  59. &:first-child{
  60. margin-left: 0px;
  61. }
  62. &:last-child{
  63. margin-right: 0px;
  64. }
  65. .tab-img{
  66. width: 84px;
  67. height: 84px;
  68. object-fit: cover;
  69. margin-bottom: 14px;
  70. border-radius: 50%;
  71. border: transparent 4px solid;
  72. box-sizing: border-box;
  73. }
  74. .tab-title{
  75. font-family: "Verdana";
  76. font-weight: 400;
  77. font-size: 28px;
  78. color: rgba(29, 29, 29, 0.7);
  79. }
  80. .tab-text{
  81. font-family: "Verdana";
  82. font-weight: 400;
  83. font-size: 22px;
  84. color: rgba(132, 132, 132, 1);
  85. }
  86. &.tabActive .tab-title{
  87. font-family: "Verdana Bold";
  88. font-weight: 700;
  89. color: #ffa700;
  90. }
  91. &.tabActive .tab-img{
  92. border-color: rgba(249, 135, 15, 1);
  93. }
  94. }
  95. }
  96. .plot-content{
  97. position: relative;
  98. width: 100%;
  99. height: 320px;
  100. overflow-x: auto;
  101. .content{
  102. position: absolute;
  103. .item{
  104. position: relative;
  105. width:222px;
  106. box-sizing: border-box;
  107. margin-right: 10px;
  108. .img{
  109. width: 222px;
  110. height: 222px;
  111. margin-bottom: 30px;
  112. }
  113. .text{
  114. width: 100%;
  115. font-family: "Verdana";
  116. font-weight: 400;
  117. font-size: 26px;
  118. color: #414141;
  119. }
  120. .gou{
  121. position: absolute;
  122. top: 10px;
  123. right: 20px;
  124. width: 40px;
  125. height: 40px;
  126. font-size: 20px;
  127. border-radius: 50%;
  128. background: #ff870f;
  129. border: 2px solid #fff;
  130. color:#fff;
  131. opacity: 0;
  132. }
  133. &.active .gou{
  134. opacity: 1;
  135. }
  136. &.active .text{
  137. font-family: "Verdana Bold";
  138. font-weight: 700;
  139. color: #ffa700;
  140. }
  141. }
  142. }
  143. }
  144. .btn-list{
  145. position: fixed;
  146. left: 140px;
  147. bottom: 0px;
  148. padding-bottom: 30px;
  149. width: 470px;
  150. z-index: 15;
  151. background-color: rgba(255, 255, 255, 1);
  152. box-sizing: border-box;
  153. }
  154. .btn{
  155. height: 100px;
  156. border-radius: 50px;
  157. backdrop-filter:blur(40px);
  158. --webkit-backdrop-filter: blur(40px);
  159. font-family: "Verdana Bold";
  160. font-weight: 700;
  161. font-size: 32px;
  162. color: #272727;
  163. box-sizing: border-box;
  164. }
  165. .up{
  166. width: 690px;
  167. box-shadow: 0 6px 20px #f2980233;
  168. }
  169. .up2{
  170. color: rgba(255, 255, 255, 1);
  171. background-image:linear-gradient(124deg, rgba(245, 201, 82, 1) 0%, rgba(239, 149, 57, 1) 100%);
  172. }