invitation_mobile_join.css 3.5 KB

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