invitation_mobile_join.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box
  5. }
  6. select{
  7. /* 解决select下拉箭头在ios上不兼容的问题 */
  8. appearance: none;
  9. -webkit-appearance: none;
  10. -moz-appearance: none;
  11. background-origin: content-box;
  12. background: url(../img/assets/expand.png) no-repeat scroll right center transparent;
  13. }
  14. html,body{
  15. height: 100%;
  16. width: 100%;
  17. }
  18. body {
  19. background-repeat: no-repeat;
  20. background-position: center;
  21. height: 100%;
  22. z-index: -1;
  23. width: 100%;
  24. background-size: cover;
  25. background-image: url(../img/invitation_join_background.png);
  26. font-family: Microsoft YaHei, 微软雅黑, simhei;
  27. font-size: 18px;
  28. color:#333;
  29. }
  30. .x-join-bottom {
  31. right: 0;
  32. position: fixed;
  33. bottom: 0;
  34. width: 100%;
  35. height: 55px;
  36. text-align: center;
  37. background-color: #fff;
  38. }
  39. .x-join-error{
  40. background: url("../img/error.png") no-repeat;
  41. width: 281px;
  42. height: 100px;
  43. background-position: center;
  44. position: absolute;
  45. top: 55%;
  46. left: 50%;
  47. margin-top: -200px;
  48. margin-left: -140px;
  49. text-align: center;
  50. }
  51. .x-join-center {
  52. width: 100%;
  53. /* left: 50%; */
  54. /* margin-left: -140px; */
  55. text-align: center;
  56. }
  57. .x-join-center .subtitle {
  58. margin-top: 20px;
  59. margin-left: -15px;
  60. display: block;
  61. height: 50px;
  62. background: url(../img/assets/dalogo@2x_1.png) no-repeat;
  63. background-size: contain;
  64. background-position: center;
  65. text-indent: -9999px;
  66. }
  67. .x-join-center .share-view {
  68. display: block;
  69. font-size: 18px;
  70. color:#333;
  71. margin: 5px auto;
  72. text-decoration: underline;
  73. }
  74. .x-join-center .share-step {
  75. margin: 40px auto 0px auto;
  76. overflow: hidden;
  77. }
  78. .x-bottom-text{
  79. margin-top: 5px;
  80. display: block;
  81. font-family: PingFangSC-Regular;
  82. color: #666666;
  83. letter-spacing: 1.88px;
  84. font-size: 15px;
  85. padding: 0 0 0 5px;
  86. }
  87. .x-join-center .share-step .share-step-tag {
  88. display: block;
  89. width: 30px;
  90. height: 30px;
  91. border: 2px solid #000;
  92. border-radius: 50%;
  93. font-weight: bold;
  94. float: left;
  95. margin-right: 10px;
  96. padding: 4px 3px 3px 2px;
  97. font-size: 14px;
  98. }
  99. .x-join-center .share-step .share-step-notify {
  100. display: block;
  101. line-height: 30px;
  102. vertical-align: middle;
  103. float: left;
  104. }
  105. .x-join-center .share-step .share-step1 {
  106. width: 30px;
  107. float: left;
  108. margin-top: 2px;
  109. margin-left: 4px;
  110. }
  111. .x-join-center .share-step .share-step2 {
  112. width: 160px;
  113. margin: 15px 5px 0 30px;
  114. }
  115. .input_style{
  116. padding-right: 13px;
  117. border-radius: 30px;
  118. opacity: 0.8;
  119. border: 1px solid #bdbdbd;
  120. -webkit-appearance: none;
  121. font-size: 16.5px;
  122. margin: 0 auto;
  123. padding-top: 3px;
  124. padding-left: 13px;
  125. width: 80%;
  126. margin-top: 18px;
  127. height: 40px;
  128. display: block;
  129. color: #555;
  130. background-color: #fff;
  131. border: 1px solid #656565;
  132. }
  133. .expand_icon{
  134. border: none;
  135. margin-left: 75%;
  136. position: absolute;
  137. margin-top: -26px;
  138. display: block;
  139. height: 16px;
  140. width: 28px;
  141. background: url(../img/assets/expand.png)no-repeat right;
  142. }
  143. .btn-check{
  144. border-radius: 30px;
  145. padding-top: 4px;
  146. border-top-right-radius: 30px;
  147. border-bottom-right-radius: 30px;
  148. margin-top: -35px;
  149. margin-left: 55%;
  150. line-height: 20px;
  151. height: 30px;
  152. background: unset;
  153. color: #369ab9;
  154. /* background-image: linear-gradient(to bottom, #69b5f7 0, #579dda 100%); */
  155. /* border-color: #428bca; */
  156. width: 110px;
  157. display: block;
  158. /* padding: 0px; */
  159. margin-bottom: 0;
  160. font-size: 16px;
  161. font-weight: 400;
  162. text-align: center;
  163. white-space: nowrap;
  164. vertical-align: middle;
  165. cursor: pointer;
  166. -webkit-user-select: none;
  167. -moz-user-select: none;
  168. -ms-user-select: none;
  169. user-select: none;
  170. border: 1px solid transparent;
  171. }
  172. .btn-submit{
  173. color: #fff;
  174. background:#004CE0;
  175. border-color: #428bca;
  176. width: 135px;
  177. margin-top: 30px;
  178. display: inline-block;
  179. padding: 6px 12px;
  180. margin-bottom: 0;
  181. font-size: 14px;
  182. font-weight: 400;
  183. line-height: 1.42857143;
  184. text-align: center;
  185. white-space: nowrap;
  186. vertical-align: middle;
  187. cursor: pointer;
  188. -webkit-user-select: none;
  189. -moz-user-select: none;
  190. -ms-user-select: none;
  191. user-select: none;
  192. border: 1px solid transparent;
  193. border-radius: 4px;
  194. }