index.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. html,body{
  2. width: 100%;
  3. height: 100%;
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 0;
  7. }
  8. .container{
  9. width: 100%;
  10. height: 100%;
  11. overflow: hidden;
  12. overflow-y: auto;
  13. box-sizing: border-box;
  14. }
  15. .Va-document{
  16. width: 100%;
  17. height: 100%;
  18. box-sizing: border-box;
  19. font-size: 12px;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. background-color: #F2F2F2;
  24. }
  25. .Va-document .title-head{
  26. width: 100%;
  27. background-color: #EB3F57;
  28. text-align: center;
  29. line-height: 2.5;
  30. color: #ffffff;
  31. }
  32. .Va-document .content-info{
  33. width: 600px;
  34. padding: 15px;
  35. box-sizing: border-box;
  36. background-color: #fff;
  37. box-shadow: 0px 0px 10px #6f6c6c5e;
  38. }
  39. .Va-document .content-info .title{
  40. font-size: 14px;
  41. text-align: center;
  42. }
  43. .Va-document .content-info .pays{
  44. border-bottom: 1px dashed rgb(34, 34, 34);
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. }
  49. .Va-document .content-info .pays .pay .tit{
  50. font-size: 16px;
  51. margin: 5px 0;
  52. font-weight: bold;
  53. }
  54. .Va-document .content-info .pays .pay .num{
  55. font-size: 22px;
  56. color: #BF233D;
  57. font-weight: bold;
  58. margin: 5px 0;
  59. }
  60. .Va-document .content-info .pays .time{
  61. font-size: 22px;
  62. color: #4990EF;
  63. font-weight: bold;
  64. }
  65. .Va-document .content-info .beizhu{
  66. font-size: 14px;
  67. color: #BF233D;
  68. margin: 25px 10px;
  69. }
  70. .Va-document .content-info .list{
  71. font-size: 14px;
  72. margin: 0 10px;
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. border-bottom: 1px dashed rgb(34 34 34 / 45%);
  77. }
  78. .Va-document .content-info .list .tit-label .com{
  79. font-size: 16px;
  80. color: #4990EF;
  81. margin: 0;
  82. }
  83. .Va-document .content-info .list .btn{
  84. padding: 5px 10px;
  85. background-color: #4990EF;
  86. color: #fff;
  87. border-radius: 4px;
  88. font-size: 14px;
  89. cursor: pointer;
  90. user-select: none;
  91. }
  92. .Va-document .content-info .btn-box .l-btn{
  93. margin-right: 10px;
  94. }
  95. .Va-document .content-info .btn-box .r-btn{
  96. margin-left: 10px;
  97. }
  98. .Va-document .content-info .timeout{
  99. height: 100%;
  100. min-height: 80vh;
  101. display: flex;
  102. align-content: center;
  103. align-items: center;
  104. justify-content: center;
  105. flex-direction: column;
  106. }
  107. .Va-document .content-info .timeout .img_timeout{
  108. width: 128px;
  109. height: 128px;
  110. margin-bottom: 50px;
  111. }
  112. .Va-document .content-info .timeout .timeout_tips{
  113. color: #666;
  114. font-weight: bold;
  115. font-size: 18px;
  116. }
  117. @media screen and (max-width: 768px) {
  118. .Va-document .content-info{
  119. width: 100%;
  120. height: 100%;
  121. padding: 15px;
  122. box-sizing: border-box;
  123. background-color: #fff;
  124. box-shadow: 0px 0px 10px #6f6c6c5e;
  125. }
  126. }
  127. .Va-document .content-info .only-head{
  128. display: flex;
  129. justify-content: space-between;
  130. align-items: center;
  131. }
  132. .Va-document .content-info .only-head .divider{
  133. flex: 1;
  134. height: 1px;
  135. background-color: #C5C5C9;
  136. margin: 0 5px;
  137. }
  138. .Va-document .content-info .my-form-item-label .des{
  139. color: #949494;
  140. }
  141. .Va-document .content-info .avatar-uploader {
  142. border: 1px dashed #C4C4C4;
  143. margin: 10px;
  144. width: 150px;
  145. height: 80px;
  146. line-height: 80px;
  147. display: inline-block;
  148. overflow: hidden;
  149. }
  150. .Va-document .content-info .avatar-uploader .el-upload {
  151. width: 100%;
  152. text-align: center;
  153. }
  154. div.menu-logo {
  155. margin: 0 6px;
  156. cursor: pointer;
  157. user-select: none;
  158. }
  159. .menu-logo.chooseLang{
  160. border: 1px solid #C5C5C9;
  161. width: 130px;
  162. margin-bottom: 10px;
  163. text-align: center;
  164. }
  165. .s-btn{
  166. background-color: #EB3F57;
  167. border-color: #EB3F57;
  168. }
  169. .el-button--primary:active,.el-button:focus,.el-button--primary:hover{
  170. background-color: #EB3F57;
  171. border-color: #EB3F57;
  172. opacity: 0.8;
  173. }
  174. .el-input__inner:focus{
  175. border-color: #EB3F57;
  176. }
  177. .el-upload{
  178. width: 100%;
  179. height: 100%;
  180. }