invitation_mobile_join.css 3.9 KB

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