index.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /* pages/index/index.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. image {
  6. border: none;
  7. }
  8. .main {
  9. display: block;
  10. width: 80vw;
  11. height: 60vh;
  12. margin: 10vh auto;
  13. }
  14. .go {
  15. width: 70vw;
  16. height: 12vw;
  17. line-height: 12vw;
  18. font-size: 5vw;
  19. text-align: center;
  20. background: #3e94f6;
  21. color: #fff;
  22. border-radius: 6vw;
  23. margin: 0 auto;
  24. margin-top: 60rpx;
  25. padding: 0;
  26. }
  27. .has-account {
  28. width: 300rpx;
  29. height: 70rpx;
  30. line-height: 70rpx;
  31. color: #888;
  32. text-decoration: underline;
  33. font-size: 32rpx;
  34. text-align: center;
  35. margin: 30rpx auto;
  36. }
  37. .reg-mask {
  38. position: fixed;
  39. top: 0;
  40. left: 0;
  41. width: 100%;
  42. height: 100%;
  43. background-color: rgba(0, 0, 0, 0.5);
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. z-index: 999;
  48. }
  49. .reg-mask-content {
  50. background-color: #fff;
  51. padding: 60rpx 40rpx;
  52. border-radius: 10rpx;
  53. text-align: center;
  54. width: 80vw;
  55. position: relative;
  56. }
  57. .reg-mask-text {
  58. font-size: 36rpx;
  59. color: #333;
  60. text-align: center;
  61. font-weight: bold;
  62. margin-bottom: 40rpx;
  63. }
  64. .reg-mask-buttons {
  65. display: flex;
  66. justify-content: space-around;
  67. }
  68. .reg-mask-button {
  69. padding: 16rpx 10rpx !important;
  70. width: 200rpx !important;
  71. border-radius: 8rpx;
  72. font-size: 30rpx;
  73. }
  74. .reg-mask-button.cancel {
  75. background-color: #eee;
  76. color: #333;
  77. border: 1rpx solid #ccc;
  78. }
  79. .reg-mask-button.register {
  80. background-color: #3e94f6;
  81. color: #fff;
  82. border: 1rpx solid #3e94f6;
  83. }
  84. .bind-ship {
  85. background-color: rgba(0, 0, 0, 0.5);
  86. height: 100vh;
  87. width: 100vw;
  88. position: fixed;
  89. top: 0;
  90. left: 0;
  91. z-index: 999;
  92. display: flex;
  93. justify-content: center;
  94. align-items: center;
  95. }
  96. .bind-ship-content {
  97. background-color: #fff;
  98. padding: 60rpx 40rpx;
  99. border-radius: 10rpx;
  100. width: 80vw;
  101. box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.1);
  102. }
  103. .bind-ship-title {
  104. font-size: 36rpx;
  105. color: #333;
  106. text-align: center;
  107. font-weight: bold;
  108. margin-bottom: 40rpx;
  109. }
  110. .bind-ship .line {
  111. display: flex;
  112. align-items: center;
  113. margin-bottom: 30rpx;
  114. }
  115. .bind-ship .label {
  116. width: 180rpx;
  117. font-size: 32rpx;
  118. color: #555;
  119. text-align: right;
  120. padding-right: 20rpx;
  121. }
  122. .bind-ship .input {
  123. flex: 1;
  124. height: 80rpx;
  125. border: 1rpx solid #ddd;
  126. border-radius: 8rpx;
  127. padding: 0 20rpx;
  128. font-size: 30rpx;
  129. }
  130. .bind-ship .buttons {
  131. display: flex;
  132. justify-content: space-around;
  133. margin-top: 50rpx;
  134. }
  135. .bind-ship .button {
  136. padding: 16rpx 10rpx !important;
  137. width: 200rpx !important;
  138. border-radius: 8rpx;
  139. font-size: 30rpx;
  140. }
  141. .bind-ship .button.cancel {
  142. background-color: #eee;
  143. color: #333;
  144. border: 1rpx solid #ccc;
  145. }
  146. .bind-ship .button.confirm {
  147. background-color: #3e94f6;
  148. color: #fff;
  149. border: 1rpx solid #3e94f6;
  150. }
  151. /* reg-mask-content右上角叉叉 */
  152. .quit {
  153. position: absolute;
  154. height: 60rpx;
  155. width: 60rpx;
  156. z-index: 999;
  157. top: -20rpx;
  158. right: -20rpx;
  159. font-size: 40rpx;
  160. color: #333;
  161. background: #fff;
  162. border-radius: 50%;
  163. }