homeNew.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. /* pages/home/home.wxss */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .heads {
  7. padding: 40px 30px 0px 30px;
  8. overflow: hidden;
  9. }
  10. .heads-left {
  11. color: #3399FF;
  12. }
  13. .heads-right {
  14. width: 60px;
  15. height: 60px;
  16. }
  17. .heads-right image {
  18. width: 100%;
  19. height: 100%;
  20. }
  21. .left {
  22. float: left;
  23. }
  24. .right {
  25. float: right;
  26. }
  27. #wine {
  28. width: 100%;
  29. height: 100%;
  30. }
  31. .canvas {
  32. /* width: 80%;
  33. height: 80%;
  34. position: absolute;
  35. left: 8%;
  36. border-radius: 10px;
  37. overflow: hidden;
  38. top: 9%;
  39. z-index: 1;
  40. background: #F6F6F6;
  41. box-shadow: 3px 3px 4px 0px rgba(136, 142, 151, 0.18), -3px -3px 4px 0px #FFFFFF;
  42. border-radius: 28px;
  43. padding: 7px 8px; */
  44. width: 100%;
  45. height: 100%;
  46. position: relative;
  47. /* left: 8%; */
  48. border-radius: 10px;
  49. overflow: hidden;
  50. /* top: 9%; */
  51. z-index: 1;
  52. background: #F6F6F6;
  53. box-shadow: 3px 3px 4px 0px rgba(136, 142, 151, 0.18), -3px -3px 4px 0px #FFFFFF;
  54. border-radius: 28px;
  55. padding: 7px 8px;
  56. }
  57. .canvasfalse {
  58. width: 80%;
  59. height: 90%;
  60. position: fixed;
  61. left: 10%;
  62. border-radius: 20px;
  63. overflow: hidden;
  64. top: 5%;
  65. z-index: -1;
  66. background: rgba(255, 255, 255, 1);
  67. box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.15);
  68. }
  69. .canvas image {
  70. width: 100%;
  71. height: 100%;
  72. }
  73. .camvas-head {
  74. /* position: absolute;
  75. top: 0;
  76. height: 57px;
  77. width: 89%;
  78. background: rgba(0, 0, 0, 0.4);
  79. font-size: 14px;
  80. padding: 0px 10px 0px 10px;
  81. color: rgba(255, 255, 255, 1);
  82. margin-top: 7px;
  83. border-radius: 20px; */
  84. position: absolute;
  85. top: 0;
  86. height: 57px;
  87. width: 94%;
  88. background: rgba(0, 0, 0, 0.4);
  89. font-size: 14px;
  90. padding: 0px .75rem 0px .75rem;
  91. color: rgba(255, 255, 255, 1);
  92. margin-top: 7px;
  93. border-radius: 20px 20px 0 0;
  94. box-sizing: border-box;
  95. left: 0;
  96. margin-left: 3%;
  97. }
  98. .canvastime {
  99. font-size: 12px;
  100. margin-top: 10px;
  101. }
  102. .addto {
  103. width: 60px;
  104. height: 60px;
  105. position: absolute;
  106. z-index: 99;
  107. top: 181px;
  108. right: 3px;
  109. }
  110. .addto img {
  111. width: 100%;
  112. height: 100%;
  113. }
  114. .help {
  115. width: 77px;
  116. height: 30px;
  117. background: rgba(187, 187, 187, 1);
  118. border-radius: 30px 0px 0px 30px;
  119. font-size: 13px;
  120. line-height: 30px;
  121. color: rgba(255, 255, 255, 1);
  122. position: absolute;
  123. right: -4rem;
  124. bottom: 181px;
  125. text-align: center;
  126. transition: all 0.2s ease-in;
  127. }
  128. /* 没登录状态 */
  129. .notLoggedin {
  130. width: 87%;
  131. height: 36%;
  132. margin: 0 auto;
  133. margin-top: 38%;
  134. }
  135. .notLoggedin img {
  136. width: 100%;
  137. height: 100%;
  138. margin: 0 auto;
  139. }
  140. .notLoggedin-text {
  141. font-size: 16px;
  142. color: #FDB456;
  143. margin-top: 8px;
  144. text-align: center;
  145. }
  146. .notLoggedin-bt {
  147. width: 153px;
  148. height: 45px;
  149. line-height: 45px;
  150. background: linear-gradient(272deg, rgba(255, 201, 133, 1) 0%, rgba(255, 177, 78, 1) 100%);
  151. box-shadow: 0px 4px 8px rgba(251, 145, 11, 0.2);
  152. opacity: 1;
  153. border-radius: 10px;
  154. font-size: 16px;
  155. color: #D17F00;
  156. text-align: center;
  157. margin: 0 auto;
  158. margin-top: 22px;
  159. }
  160. .vip image {
  161. width: 60px;
  162. height: 30px;
  163. margin-left: 10px;
  164. }
  165. .tips {
  166. position: fixed;
  167. width: 100%;
  168. height: 100%;
  169. bottom: 0;
  170. background: rgba(0, 0, 0, 0.8);
  171. z-index: 511;
  172. }
  173. .tipsMane {
  174. width: 70%;
  175. height: 326px;
  176. background: #fff;
  177. z-index: 999;
  178. position: absolute;
  179. top: 30%;
  180. left: 15%;
  181. border-radius: 10px;
  182. }
  183. .tipsTitle {
  184. padding: 30px 0;
  185. text-align: center;
  186. font-size: 32px;
  187. }
  188. .tipsTEXT {
  189. font-size: 28px;
  190. text-align: center;
  191. color: #333333;
  192. }
  193. .tipsBt {
  194. width: 80%;
  195. height: 80px;
  196. line-height: 80px;
  197. background: #0886F5;
  198. text-align: center;
  199. font-size: 32px;
  200. margin: 0 auto;
  201. color: #fff;
  202. border-radius: 10px;
  203. margin-top: 35px;
  204. }
  205. .tipsimg {
  206. width: 68px;
  207. height: 68px;
  208. background: #fff;
  209. position: absolute;
  210. z-index: 999;
  211. top: 350px;
  212. border-radius: 50%;
  213. left: 44%;
  214. }
  215. .tipsimg img {
  216. width: 100%;
  217. height: 100%;
  218. }
  219. .vipimg {
  220. width: 24px;
  221. height: 18px;
  222. }
  223. .newhelp {
  224. display: flex;
  225. font-size: 12px;
  226. font-family: PingFangSC-Regular, PingFang SC;
  227. font-weight: 400;
  228. color: #999999;
  229. line-height: 17px;
  230. align-items: center;
  231. position: absolute;
  232. top: 0;
  233. left: 0;
  234. margin-top: 10px;
  235. margin-left: 15px;
  236. }
  237. .newhelp .font {
  238. text-decoration: underline;
  239. margin-left: 2px;
  240. }
  241. .newhelp .helpImg {
  242. width: 0.875rem;
  243. height: 0.875rem;
  244. }
  245. .newhelp .helpImg img {
  246. width: 100%;
  247. height: 100%;
  248. }
  249. .buyIcon {
  250. position: absolute;
  251. top: 0;
  252. right: 0;
  253. /* margin-top: 0.625rem;
  254. margin-right: 0.625rem;
  255. */
  256. }
  257. .th_renew {
  258. width: 3rem;
  259. height: 1.375rem;
  260. background: linear-gradient(90deg, #FFC52C 0%, #FF9D3B 100%);
  261. box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  262. border-radius: 0.8125rem;
  263. }
  264. .tophead {
  265. display: flex;
  266. }
  267. .camvas-head {
  268. display: flex;
  269. align-items: center;
  270. justify-content: space-between;
  271. }
  272. .thl-font {
  273. font-size: 0.75rem;
  274. font-family: PingFangSC-Semibold, PingFang SC;
  275. font-weight: 600;
  276. color: #FFFFFF;
  277. }
  278. .thl-time {
  279. font-size: 0.625rem;
  280. font-family: PingFangSC-Regular, PingFang SC;
  281. font-weight: 400;
  282. color: #FFFFFF;
  283. transform: scale(.8);
  284. margin-left: -0.9375rem;
  285. }
  286. .th_right {
  287. margin-left: 0.625rem;
  288. }
  289. .kongWine {
  290. background: #FFFFFF;
  291. border-radius: 20px;
  292. }
  293. .kp_btn {
  294. width: 7.5rem;
  295. height: 1.875rem;
  296. background: linear-gradient(104deg, #5682FF 0%, #285CF1 100%);
  297. border-radius: 20px;
  298. line-height: 1.875rem;
  299. font-size: 0.75rem;
  300. font-family: MicrosoftYaHei;
  301. color: #FFFFFF;
  302. line-height: 1.875rem;
  303. margin: 0 auto;
  304. margin-top: 15px;
  305. }
  306. .kp_img {
  307. padding-top: 50%;
  308. }
  309. canvas {
  310. display: block;
  311. width: 100%;
  312. height: 100%;
  313. z-index: 999;
  314. border-radius: 1.25rem;
  315. }
  316. .wine {
  317. width: 100%;
  318. height: 100%;
  319. }
  320. .mainbox {
  321. width: 18rem;
  322. height: 10rem;
  323. background: #fff;
  324. position: fixed;
  325. top: 38%;
  326. left: 12%;
  327. border-radius: 5px;
  328. }
  329. .boxTitle {
  330. text-align: center;
  331. font-size: 18px;
  332. padding: 10px 0px;
  333. }
  334. .boxText {
  335. text-align: center;
  336. font-size: 16px;
  337. }
  338. .boxbt {
  339. width: 60%;
  340. height: 2.5rem;
  341. background: #0886F5;
  342. margin: 0 auto;
  343. font-size: 16px;
  344. text-align: center;
  345. line-height: 2.5rem;
  346. color: #fff;
  347. border-radius: 5px;
  348. margin-top: 1rem;
  349. }
  350. .sbox {
  351. width: 18rem;
  352. height: 5.5rem;
  353. background: #fff;
  354. position: fixed;
  355. top: 38%;
  356. left: 5%;
  357. border-radius: 5px;
  358. }
  359. .sboxText {
  360. padding: 17px;
  361. font-size: 16px;
  362. }
  363. .boximg {
  364. position: absolute;
  365. width: 1rem;
  366. height: 1rem;
  367. left: 45%;
  368. bottom: -22%;
  369. }
  370. .maxs {
  371. width: 100%;
  372. height: 100%;
  373. position: fixed;
  374. background: rgba(0, 0, 0, 0.5);
  375. }
  376. .helps {
  377. width: 35px;
  378. height: 30px;
  379. background: rgba(187, 187, 187, 1);
  380. border-radius: 30px 0px 0px 30px;
  381. font-size: 13px;
  382. line-height: 30px;
  383. color: rgba(255, 255, 255, 1);
  384. position: absolute;
  385. right: 0;
  386. bottom: 181px;
  387. text-align: center;
  388. }
  389. .helps-img {
  390. width: 50%;
  391. height: 50%;
  392. margin: 0 auto;
  393. margin-top: 0.5rem;
  394. }
  395. .diskName {
  396. margin-left: 6px;
  397. }
  398. #showsuss {
  399. display: none;
  400. }
  401. .swiper-container {
  402. width: 100%;
  403. height: 100%;
  404. }
  405. .swiper-slide {
  406. /* padding: 43px 53px; */
  407. padding: 12% 14%;
  408. box-sizing: border-box;
  409. text-align: center;
  410. font-size: 18px;
  411. /* background: #fff; */
  412. /* height: 667px; */
  413. height: 100%;
  414. /* Center slide text vertically */
  415. display: -webkit-box;
  416. display: -ms-flexbox;
  417. display: -webkit-flex;
  418. display: flex;
  419. -webkit-box-pack: center;
  420. -ms-flex-pack: center;
  421. -webkit-justify-content: center;
  422. justify-content: center;
  423. -webkit-box-align: center;
  424. -ms-flex-align: center;
  425. -webkit-align-items: center;
  426. align-items: center;
  427. }
  428. .thl-time {
  429. text-align: left;
  430. margin-left: -0.1rem !important;
  431. }