invitation_mobile_join.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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: 100%;
  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. margin-left: -15px;
  45. display: block;
  46. height: 50px;
  47. background: url(../img/assets/dalogo@2x_1.png) no-repeat;
  48. background-size: contain;
  49. background-position: center;
  50. text-indent: -9999px;
  51. }
  52. .x-join-center .share-view {
  53. display: block;
  54. font-size: 18px;
  55. color:#333;
  56. margin: 5px auto;
  57. text-decoration: underline;
  58. }
  59. .x-join-center .share-step {
  60. margin: 40px auto 0px auto;
  61. overflow: hidden;
  62. }
  63. .x-join-center .share-step .share-step-tag {
  64. display: block;
  65. width: 30px;
  66. height: 30px;
  67. border: 2px solid #000;
  68. border-radius: 50%;
  69. font-weight: bold;
  70. float: left;
  71. margin-right: 10px;
  72. padding: 4px 3px 3px 2px;
  73. font-size: 14px;
  74. }
  75. .x-join-center .share-step .share-step-notify {
  76. display: block;
  77. line-height: 30px;
  78. vertical-align: middle;
  79. float: left;
  80. }
  81. .x-join-center .share-step .share-step1 {
  82. width: 30px;
  83. float: left;
  84. margin-top: 2px;
  85. margin-left: 4px;
  86. }
  87. .x-join-center .share-step .share-step2 {
  88. width: 160px;
  89. margin: 15px 5px 0 30px;
  90. }
  91. .input_style{
  92. margin: 0 auto;
  93. padding-top: 3px;
  94. padding-left: 13px;
  95. width: 240px;
  96. margin-top: 10px;
  97. height: 36px;
  98. display: block;
  99. color: #555;
  100. background-color: #fff;
  101. background-image: none;
  102. border: 1px solid #ccc;
  103. border-radius:30px;
  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. margin-top: -33px;
  112. margin-left: 1px;
  113. line-height: 20px;
  114. height: 30px;
  115. background: #fff;
  116. color: #369ab9;
  117. /* background-image: linear-gradient(to bottom, #69b5f7 0, #579dda 100%); */
  118. /* border-color: #428bca; */
  119. width: 110px;
  120. display: inline-block;
  121. /* padding: 0px; */
  122. margin-bottom: 0;
  123. font-size: 14px;
  124. font-weight: 400;
  125. text-align: center;
  126. white-space: nowrap;
  127. vertical-align: middle;
  128. cursor: pointer;
  129. -webkit-user-select: none;
  130. -moz-user-select: none;
  131. -ms-user-select: none;
  132. user-select: none;
  133. border: 1px solid transparent;
  134. border-left: 2px solid #a9a9a9;
  135. }
  136. .btn-submit{
  137. color: #fff;
  138. background:#004CE0;
  139. border-color: #428bca;
  140. width: 135px;
  141. margin-top: 30px;
  142. display: inline-block;
  143. padding: 6px 12px;
  144. margin-bottom: 0;
  145. font-size: 14px;
  146. font-weight: 400;
  147. line-height: 1.42857143;
  148. text-align: center;
  149. white-space: nowrap;
  150. vertical-align: middle;
  151. cursor: pointer;
  152. -webkit-user-select: none;
  153. -moz-user-select: none;
  154. -ms-user-select: none;
  155. user-select: none;
  156. border: 1px solid transparent;
  157. border-radius: 4px;
  158. }