index.wxss 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  1. /* 轮播图样式 */
  2. .header_box {
  3. /* width: 100%; */
  4. /* padding:16rpx; */
  5. box-sizing: border-box;
  6. position: relative;
  7. z-index: 2;
  8. margin: 16rpx;
  9. border-radius: 16rpx;
  10. overflow: hidden;
  11. position: relative;
  12. background-color: #ffffff;
  13. box-shadow: 0px 2px 12px 0px rgba(25, 27, 38, 0.1);
  14. }
  15. .header_container{
  16. position: relative;
  17. overflow: hidden;
  18. z-index: 1;
  19. }
  20. .header_container::after{
  21. content: '';
  22. width: 100%;
  23. position: absolute;
  24. z-index: -1111;
  25. background-color: #000000;
  26. height: 400rpx;
  27. border-radius: 0px 0px 18rpx 18rpx;
  28. top: 0;
  29. left: 0;
  30. }
  31. .header_box swiper {
  32. position: relative;
  33. height: 754rpx;
  34. }
  35. .header_box image {
  36. height: 488rpx;
  37. width: 100%;
  38. overflow: hidden;
  39. }
  40. .img_footer {
  41. height: 212rpx;
  42. display: flex;
  43. align-items: center;
  44. padding: 0 10rpx 0 36rpx;
  45. justify-content: space-around;
  46. flex-wrap: wrap;
  47. }
  48. .img_footer>view {
  49. width: 50%;
  50. display: flex;
  51. align-items: center;
  52. font-size: 32rpx;
  53. color: #80838F;
  54. overflow: hidden;
  55. text-overflow: ellipsis;
  56. white-space: nowrap;
  57. }
  58. .img_footer view>image {
  59. width: 44rpx;
  60. height: 44rpx;
  61. margin-right: 18rpx;
  62. }
  63. .img_footer .envitem text {
  64. font-size: 28rpx;
  65. margin-left: 4rpx;
  66. }
  67. .img_footer .envitem {
  68. color: #191B26;
  69. margin-left: 16rpx;
  70. }
  71. .fixed_box {
  72. top: 0;
  73. left: 0;
  74. display: flex;
  75. flex-direction: column;
  76. justify-content: space-between;
  77. height: 488rpx;
  78. padding: 32rpx 48rpx 32rpx;
  79. width: 100%;
  80. position: absolute;
  81. color: #ffffff;
  82. }
  83. .fixed_box>.roombg text{
  84. display: inline-block;
  85. background-color: rgba(6, 9, 25, 0.5);
  86. padding: 10rpx 30rpx;
  87. font-size: 32rpx;
  88. border-radius: 48rpx;
  89. }
  90. .fixed_dec {
  91. display: flex;
  92. color: #FFFFFF;
  93. font-size: 28rpx;
  94. align-items: center;
  95. }
  96. .envshow {
  97. display: flex;
  98. flex-direction: row;
  99. justify-content: space-between;
  100. padding: 20rpx 48rpx;
  101. border-radius: 48rpx;
  102. background-color: rgba(6, 9, 25, 0.5);
  103. }
  104. .envshow>view:nth-child(1) {
  105. display: flex;
  106. align-items: center;
  107. }
  108. .envshow image {
  109. width: 40rpx;
  110. height: 40rpx;
  111. margin-right: 8rpx;
  112. }
  113. /* 三个按钮盒子 */
  114. .btn_list {
  115. display: flex;
  116. flex-direction: column;
  117. justify-content: center;
  118. align-items: center;
  119. padding: 0 8px;
  120. box-sizing: border-box;
  121. }
  122. /* 单个按钮样式 */
  123. .btn_item {
  124. width: 100%;
  125. height: 176rpx;
  126. margin-bottom: 24rpx;
  127. display: flex;
  128. align-items: center;
  129. justify-content: space-around;
  130. border-radius: 16rpx;
  131. box-shadow: 0px 2px 12px 0px rgba(25, 27, 38, 0.1);
  132. }
  133. .btn_item:nth-child(1) {
  134. margin-top: 24rpx;
  135. }
  136. .btn_item>view:nth-child(2) {
  137. width: 336rpx;
  138. }
  139. .item_img {
  140. height: 100rpx;
  141. width: 100rpx;
  142. display: flex;
  143. align-items: center;
  144. justify-content: center;
  145. border-radius: 50%;
  146. border: 2px solid #e8e8e9;
  147. }
  148. .item_img image {
  149. width: 60rpx;
  150. height: 60rpx;
  151. }
  152. .item_img image:nth-child(1) {
  153. width: 44rpx;
  154. height: 44rpx;
  155. }
  156. .item_img image:nth-child(2) {
  157. width: 56rpx;
  158. height: 56rpx;
  159. }
  160. .item_title {
  161. display: block;
  162. font-size: 36rpx;
  163. line-height: 50rpx;
  164. color: #191B26;
  165. }
  166. .item_des {
  167. color: #80838F;
  168. font-size: 28rpx;
  169. }
  170. /* 弹框样式 */
  171. .spacedetail {
  172. padding: 25rpx 32rpx 0;
  173. }
  174. .spacedetail swiper {
  175. height: 210rpx;
  176. }
  177. .space_title {
  178. text-align: center;
  179. font-weight: 500;
  180. font-size: 20px;
  181. }
  182. .item_list {
  183. display: flex;
  184. height: 210rpx;
  185. flex-direction: row;
  186. justify-content: space-around;
  187. align-items: center;
  188. }
  189. .list_item {
  190. font-size: 35rpx;
  191. text-align: center;
  192. }
  193. .list_item view:nth-child(2) {
  194. color: rgba(128, 131, 143, 1);
  195. font-size: 28rpx;
  196. margin-top: 8rpx;
  197. }
  198. .noticbox_text{
  199. text-align: center;
  200. }
  201. .envstate {
  202. display: flex;
  203. justify-content: center;
  204. align-items: center;
  205. height: 64rpx;
  206. margin-top: 16rpx;
  207. font-size: 20px;
  208. color: #191B26;
  209. }
  210. .envstate image {
  211. width: 40rpx;
  212. height: 40rpx;
  213. margin-right: 20rpx;
  214. }
  215. /* 反馈列表 */
  216. .feedback_list {
  217. overflow: hidden;
  218. }
  219. .feedback_title {
  220. font-size: 32rpx;
  221. color: rgba(25, 27, 38, 1);
  222. line-height: 38rpx;
  223. margin-bottom: 38rpx;
  224. }
  225. .type_title {
  226. font-size: 32rpx;
  227. color: rgba(128, 131, 143, 1);
  228. line-height: 38rpx;
  229. margin-bottom: 16rpx;
  230. }
  231. .typelist {
  232. display: flex;
  233. flex-direction: row;
  234. /* justify-content: space-between; */
  235. flex-wrap: wrap;
  236. margin-bottom: 40rpx;
  237. overflow: hidden;
  238. }
  239. .typelistlast {
  240. margin-bottom: 0;
  241. }
  242. .typelist>view {
  243. width: 220rpx;
  244. height: 84rpx;
  245. display: flex;
  246. font-size: 28rpx;
  247. align-items: center;
  248. justify-content: center;
  249. background-color: #f4f4f5;
  250. border-radius: 16rpx;
  251. margin-bottom: 12rpx;
  252. }
  253. .typelist>view image {
  254. width: 40rpx;
  255. height: 40rpx;
  256. margin-right: 12rpx;
  257. }
  258. .typelistlast>view {
  259. margin-bottom: 0;
  260. }
  261. .typelist>view:nth-child(3n-1) {
  262. margin: 0 12rpx;
  263. }
  264. .typelist>.typelistactive {
  265. background-color: #5575FF;
  266. color: white;
  267. }
  268. .submitbtn {
  269. height: 80rpx;
  270. background: rgba(85, 117, 255, 1);
  271. border-radius: 20px;
  272. text-align: center;
  273. color: white;
  274. line-height: 80rpx;
  275. margin: 60rpx 0 64rpx;
  276. opacity: 0.5;
  277. overflow: hidden;
  278. box-sizing: border-box;
  279. }
  280. .submitbtnactive {
  281. opacity: 1;
  282. }
  283. .colsebtn {
  284. margin: 40rpx 0 64rpx;
  285. border: 1px solid rgba(218, 218, 218, 1);
  286. background: #ffffff;
  287. color: #191B26;
  288. opacity: 1;
  289. }
  290. .canvas {
  291. /* width: 100%; */
  292. display: flex;
  293. justify-content: center;
  294. align-items: center;
  295. }
  296. .canvashidden canvas{
  297. height: 0;
  298. }
  299. .canvas canvas{
  300. width: 340px;
  301. }
  302. .canvascenter {
  303. width: 90%;
  304. height: 90%;
  305. display: flex;
  306. font-size: 14px;
  307. color: #cccc;
  308. justify-content: center;
  309. align-items: center;
  310. flex-direction: column;
  311. border-left: 1px solid #ccc;
  312. border-bottom: 1px solid #ccc;
  313. margin: 10rpx auto;
  314. }
  315. .feedtext {
  316. display: flex;
  317. justify-content: center;
  318. align-items: center;
  319. flex-direction: column;
  320. }
  321. .feedimgbox {
  322. display: flex;
  323. justify-content: center;
  324. align-items: center;
  325. flex-direction: row;
  326. margin-bottom: 24rpx;
  327. }
  328. .feedimgbox image {
  329. width: 40rpx;
  330. height: 40rpx;
  331. margin-right: 8rpx;
  332. }
  333. .feedtext_title {
  334. font-size: 40rpx;
  335. color: #191B26;
  336. }
  337. .feedtext_desc {
  338. font-size: 28rpx;
  339. }
  340. .noticbox {
  341. width: 100%;
  342. height:65rpx;
  343. font-size: 28rpx;
  344. margin-top: 38rpx;
  345. }
  346. .noticbox swiper{
  347. height: 45rpx;
  348. }
  349. .radiobox {
  350. margin-top: 56rpx;
  351. }
  352. /* .opencontent{
  353. display: flex;
  354. justify-content: center;
  355. align-items: center;
  356. flex-direction: column;
  357. } */
  358. .opencontent_text {
  359. color: #80838F;
  360. margin-top: 84rpx;
  361. text-align: center;
  362. }
  363. .opencontent_openbtn {
  364. background: rgba(85, 117, 255, 1);
  365. margin: 32rpx 0 64rpx;
  366. opacity: 1;
  367. }
  368. .lottie{
  369. width: 50rpx;
  370. height: 50rpx;
  371. }
  372. .secondtxt{
  373. display: flex;
  374. justify-content: center;
  375. align-items: center;
  376. font-size: 14px;
  377. margin-bottom: 16rpx;
  378. }
  379. .secondtxt_title{
  380. font-size: 20px;
  381. margin-bottom: 22rpx;
  382. }
  383. .custom_button{
  384. box-sizing: content-box;
  385. padding: 24rpx 32rpx;
  386. height: 40rpx;
  387. display: flex;
  388. margin-top: 54rpx;
  389. justify-content: center;
  390. text-align: center;
  391. align-items: center;
  392. background-color: #5575FF;
  393. color: #ffffff;
  394. font-size: 16px;
  395. border-radius:40rpx;
  396. }
  397. .header_box .before-load {
  398. width: 0;
  399. height: 0;
  400. opacity: 0;
  401. }