index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. }
  56. .reg-mask-text {
  57. font-size: 36rpx;
  58. color: #333;
  59. text-align: center;
  60. font-weight: bold;
  61. margin-bottom: 40rpx;
  62. }
  63. .reg-mask-buttons {
  64. display: flex;
  65. justify-content: space-around;
  66. }
  67. .reg-mask-button {
  68. padding: 16rpx 10rpx !important;
  69. width: 200rpx !important;
  70. border-radius: 8rpx;
  71. font-size: 30rpx;
  72. }
  73. .reg-mask-button.cancel {
  74. background-color: #eee;
  75. color: #333;
  76. border: 1rpx solid #ccc;
  77. }
  78. .reg-mask-button.register {
  79. background-color: #3e94f6;
  80. color: #fff;
  81. border: 1rpx solid #3e94f6;
  82. }
  83. .bind-ship {
  84. background-color: rgba(0, 0, 0, 0.5);
  85. height: 100vh;
  86. width: 100vw;
  87. position: fixed;
  88. top: 0;
  89. left: 0;
  90. z-index: 999;
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. }
  95. .bind-ship-content {
  96. background-color: #fff;
  97. padding: 60rpx 40rpx;
  98. border-radius: 10rpx;
  99. width: 80vw;
  100. box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.1);
  101. }
  102. .bind-ship-title {
  103. font-size: 36rpx;
  104. color: #333;
  105. text-align: center;
  106. font-weight: bold;
  107. margin-bottom: 40rpx;
  108. }
  109. .bind-ship .line {
  110. display: flex;
  111. align-items: center;
  112. margin-bottom: 30rpx;
  113. }
  114. .bind-ship .label {
  115. width: 180rpx;
  116. font-size: 32rpx;
  117. color: #555;
  118. text-align: right;
  119. padding-right: 20rpx;
  120. }
  121. .bind-ship .input {
  122. flex: 1;
  123. height: 80rpx;
  124. border: 1rpx solid #ddd;
  125. border-radius: 8rpx;
  126. padding: 0 20rpx;
  127. font-size: 30rpx;
  128. }
  129. .bind-ship .buttons {
  130. display: flex;
  131. justify-content: space-around;
  132. margin-top: 50rpx;
  133. }
  134. .bind-ship .button {
  135. padding: 16rpx 10rpx !important;
  136. width: 200rpx !important;
  137. border-radius: 8rpx;
  138. font-size: 30rpx;
  139. }
  140. .bind-ship .button.cancel {
  141. background-color: #eee;
  142. color: #333;
  143. border: 1rpx solid #ccc;
  144. }
  145. .bind-ship .button.confirm {
  146. background-color: #3e94f6;
  147. color: #fff;
  148. border: 1rpx solid #3e94f6;
  149. }