home.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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: 100%;
  34. position: absolute;
  35. left: 10%;
  36. border-radius: 10px;
  37. overflow: hidden;
  38. top: 5%;
  39. z-index: -1;
  40. }
  41. .canvasfalse{
  42. width: 80%;
  43. height: 90%;
  44. position: fixed;
  45. left: 10%;
  46. border-radius: 20px;
  47. overflow: hidden;
  48. top: 5%;
  49. z-index: -1;
  50. background:rgba(255,255,255,1);
  51. box-shadow:0px 0px 100px rgba(0,0,0,0.15);
  52. }
  53. .canvas image{
  54. width: 100%;
  55. height: 100%;
  56. }
  57. .camvas-head{
  58. position: absolute;
  59. top: 0;
  60. height: 57px;
  61. width: 95%;
  62. background:rgba(0,0,0,0.4);
  63. font-size: 14px;
  64. padding: 10px 10px 0px 10px;
  65. color:rgba(255,255,255,1);
  66. }
  67. .canvastime{
  68. font-size: 12px;
  69. margin-top: 10px;
  70. }
  71. .addto {
  72. width: 60px;
  73. height: 60px;
  74. position: absolute;
  75. z-index: 99;
  76. top: 181px;
  77. right: 3px;
  78. }
  79. .addto img{
  80. width: 100%;
  81. height: 100%;
  82. }
  83. .help{
  84. width: 77px;
  85. height: 30px;
  86. background: rgba(187,187,187,1);
  87. border-radius: 30px 0px 0px 30px;
  88. font-size: 13px;
  89. line-height: 30px;
  90. color: rgba(255,255,255,1);
  91. position: absolute;
  92. right: -4rem;
  93. bottom: 181px;
  94. text-align: center; transition: all 0.2s ease-in;
  95. }
  96. /* 没登录状态 */
  97. .notLoggedin{
  98. width: 87%;
  99. height: 36%;
  100. margin: 0 auto;
  101. margin-top: 38%;
  102. }
  103. .notLoggedin img{
  104. width: 100%;
  105. height: 100%;
  106. margin: 0 auto;
  107. }
  108. .notLoggedin-text{
  109. font-size: 16px;
  110. color: #FDB456;
  111. margin-top: 8px;
  112. text-align: center;
  113. }
  114. .notLoggedin-bt{
  115. width: 153px;
  116. height: 45px;
  117. line-height: 45px;
  118. background: linear-gradient(272deg,rgba(255,201,133,1) 0%,rgba(255,177,78,1) 100%);
  119. box-shadow: 0px 4px 8px rgba(251,145,11,0.2);
  120. opacity: 1;
  121. border-radius: 10px;
  122. font-size: 16px;
  123. color: #D17F00;
  124. text-align: center;
  125. margin: 0 auto;
  126. margin-top: 22px;
  127. }
  128. .vip image{
  129. width:60px;
  130. height: 30px;
  131. margin-left: 10px;
  132. }
  133. .tips{
  134. position: fixed;
  135. width: 100%;
  136. height: 100%;
  137. bottom: 0;
  138. background: rgba(0,0,0,0.8);
  139. z-index:511;
  140. }
  141. .tipsMane{
  142. width: 70%;
  143. height:326px;
  144. background: #fff;
  145. z-index: 999;
  146. position: absolute;
  147. top: 30%;
  148. left: 15%;
  149. border-radius:10px;
  150. }
  151. .tipsTitle{
  152. padding: 30px 0;
  153. text-align: center;
  154. font-size:32px;
  155. }
  156. .tipsTEXT{
  157. font-size: 28px;
  158. text-align: center;
  159. color: #333333;
  160. }
  161. .tipsBt{
  162. width: 80%;
  163. height: 80px;
  164. line-height: 80px;
  165. background:#0886F5;
  166. text-align: center;
  167. font-size: 32px;
  168. margin: 0 auto;
  169. color: #fff;
  170. border-radius:10px;
  171. margin-top: 35px;
  172. }
  173. .tipsimg{
  174. width: 68px;
  175. height: 68px;
  176. background: #fff;
  177. position: absolute;
  178. z-index: 999;
  179. top: 350px;
  180. border-radius:50%;
  181. left: 44%;
  182. }
  183. .tipsimg img{
  184. width: 100%;
  185. height: 100%;
  186. }
  187. .vipimg{
  188. width: 24px;
  189. height: 18px;
  190. }