viewPlot.scss 3.0 KB

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