index.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. [v-cloak] {
  2. display: none;
  3. }
  4. * {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. body {
  9. /* background: #f2f2f2; */
  10. }
  11. .content {
  12. }
  13. .el-header {
  14. box-shadow: 0 3px 5px #0000000d;
  15. /* border-bottom: 1px solid #cfcaca; */
  16. /* height: 100px; */
  17. overflow: hidden;
  18. height: auto !important;
  19. padding: 0 !important;
  20. }
  21. .header {
  22. width: 100%;
  23. /* max-width: 460px; */
  24. max-width: 1200px;
  25. margin: 0 auto;
  26. height: 88px;
  27. padding: 20px 20px;
  28. background: #fff;
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-between;
  32. box-sizing: border-box;
  33. }
  34. .el-footer {
  35. position: absolute;
  36. margin-top: 100px;
  37. bottom: 0;
  38. left: 0;
  39. color: #999;
  40. font-size: 12px;
  41. text-align: center;
  42. width: 100%;
  43. line-height: 60px;
  44. }
  45. .el-footer.mobile {
  46. position: relative;
  47. margin-top: 0px;
  48. line-height: 20px;
  49. }
  50. .header .logo img {
  51. width: 190px;
  52. height: auto;
  53. /* cursor: pointer; */
  54. }
  55. .header.mobile {
  56. height: 60px;
  57. }
  58. .header.mobile .logo img {
  59. width: 110px;
  60. }
  61. .header .download {
  62. display: flex;
  63. align-items: center;
  64. justify-content: space-between;
  65. }
  66. .download .use-btn {
  67. font-size: 12px;
  68. text-decoration: underline;
  69. margin-right: 10px;
  70. cursor: pointer;
  71. }
  72. .download .use-btn a {
  73. color: #000;
  74. }
  75. .download .use-btn a:active {
  76. color: #000;
  77. }
  78. .form-box {
  79. max-width: 460px;
  80. margin: 0 auto;
  81. }
  82. .invite-box {
  83. position: relative;
  84. }
  85. .invite-box .icon {
  86. width: 24px;
  87. height: 24px;
  88. background: url(../img/help.svg);
  89. background-size: 100% 100%;
  90. position: absolute;
  91. right: -30px;
  92. top: 50%;
  93. transform: translateY(-50%);
  94. cursor: pointer;
  95. }
  96. .invite-box .icon p {
  97. position: absolute;
  98. white-space: nowrap;
  99. left: 50%;
  100. top: -40px;
  101. transform: translateX(-50%);
  102. font-size: 12px;
  103. display: none;
  104. }
  105. .invite-box .icon:hover p {
  106. display: block;
  107. }
  108. /* .el-form > div {
  109. margin: 20px 0;
  110. } */
  111. .el-form > div .text {
  112. font-size: 14px;
  113. }
  114. .el-form > div .text > span {
  115. cursor: pointer;
  116. }
  117. .el-form > div .text > span:hover {
  118. color: #409eff;
  119. }
  120. .el-form > div .el-input-group__prepend {
  121. width: 40px;
  122. }
  123. .sms-box {
  124. width: 80px;
  125. padding: 12px 5px !important;
  126. }
  127. .el-input-group__append {
  128. overflow: hidden;
  129. }
  130. .success-box {
  131. max-width: 460px;
  132. margin: 150px auto 0;
  133. }
  134. .success-box h3,
  135. .success-box p {
  136. margin-bottom: 10px;
  137. text-align: center;
  138. }
  139. .success-box p {
  140. margin-bottom: 20px;
  141. }
  142. @media screen and (max-width: 500px) {
  143. .el-message {
  144. min-width: 300px !important;
  145. }
  146. .el-dialog__body {
  147. padding: 10px 10px !important;
  148. }
  149. }