common.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. .loadingShadow{
  2. position: fixed;
  3. z-index: 999999999999;
  4. left: 0;
  5. top: 0;
  6. width: 100vw;
  7. height: 100vh;
  8. }
  9. .loadData{
  10. min-width:110px;
  11. height:110px;
  12. position: absolute;
  13. left: 50%;
  14. top:50%;
  15. transform: translate(-50%,-50%);
  16. background: rgba(0,0,0,0.6);
  17. border-radius: 10px;
  18. z-index: 1000;
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. justify-content:center;
  23. img{
  24. width:90px;
  25. margin-top: 10px;
  26. }
  27. .loadingMsg{
  28. color: rgba(255, 255, 255, 0.83);
  29. margin: 10px;
  30. margin-top: 0px;
  31. }
  32. }
  33. .account-view{
  34. width: 500rem;
  35. // height: 362rem;
  36. padding:30rem 40rem;
  37. box-sizing:border-box;
  38. background-color: rgba(255, 255, 255, 0.9);
  39. border-radius: 20rem;
  40. // backdrop-filter: blur(30px);
  41. .title-icon{
  42. width:18rem;
  43. margin-right:10rem;
  44. }
  45. .close{
  46. .close-img{
  47. font-size: 16rem;
  48. font-weight: bold;
  49. color:#000;
  50. cursor: pointer;
  51. }
  52. }
  53. .content{
  54. width: 100%;
  55. color: #0b0b0b;
  56. font-size: 14rem;
  57. .content-main-view{
  58. height: 250rem;
  59. border-radius: 6rem;
  60. background: #fff;
  61. box-sizing:border-box;
  62. padding: 18rem;
  63. overflow: auto;
  64. .selcect-view{
  65. position: relative;
  66. width: 16rem;
  67. height: 16rem;
  68. border-radius: 100%;
  69. background: transparent;
  70. border: 1rem solid #ef863f;
  71. box-sizing:border-box;
  72. }
  73. .selcect-view::after{
  74. content: '';
  75. position: absolute;
  76. top: 50%;
  77. left: 50%;
  78. transform: translate(-50%,-50%);
  79. width: 10rem;
  80. height: 10rem;
  81. border-radius: 100%;
  82. background: #ef863f;
  83. box-sizing:border-box;
  84. }
  85. .unselcect-view{
  86. width: 16rem;
  87. height: 16rem;
  88. border-radius: 8rem;
  89. background: rgba(249, 249, 249, 0.2);
  90. border: 1rem solid rgba(0, 0, 0, 0.2);
  91. }
  92. .gougou-icon{
  93. color: #EF863F;
  94. }
  95. }
  96. }
  97. .auth-btn-view{
  98. .auth-btn{
  99. width: 120rem;
  100. height: 40rem;
  101. border-radius: 10rem;
  102. cursor: pointer;
  103. }
  104. .style1{
  105. font-family: "Verdana Bold";
  106. font-weight: 700;
  107. font-size: 14rem;
  108. color: #151515;
  109. background: #d5d5d5;
  110. }
  111. .style2{
  112. font-family: "Verdana Bold";
  113. font-weight: 700;
  114. font-size: 14rem;
  115. color: #fff;
  116. background: #ef863f;
  117. box-shadow: 0 12px 24px rgba(239, 134, 63, 0.2);
  118. }
  119. }
  120. }
  121. .overflow{
  122. overflow: hidden;
  123. text-overflow:ellipsis;
  124. white-space: nowrap;
  125. }
  126. .ellipsis{
  127. text-overflow: ellipsis;
  128. }
  129. // @media screen and (min-width:768px) {
  130. // body,html,#app{
  131. // min-width: 1336px;
  132. // max-width: 1336px;
  133. // background: #f4f4f4;
  134. // color: #737373;
  135. // height: 100%;
  136. // };
  137. // }
  138. body,html{
  139. height:100%;
  140. width:100%;
  141. margin: 0 auto;
  142. padding: 0;
  143. position: relative;
  144. background-color: #f4f4f4;
  145. // font-size: 13px;
  146. }
  147. #app{
  148. width:100%;
  149. margin: 0 auto;
  150. padding: 0;
  151. height:100%;
  152. left:0;
  153. top:0;
  154. -webkit-overflow-scrolling: touch;
  155. position:absolute;
  156. font-family: Verdana, Verdana-Bold, "Hiragino Sans GB", "Microsoft Yahei UI",
  157. "Microsoft Yahei", 微软雅黑, "Segoe UI", Tahoma, 宋体宋体, SimSun,
  158. sans-serif;
  159. }
  160. ul, li, ol, dl, dd,a{
  161. list-style: none;
  162. padding: 0;
  163. margin:0;
  164. }
  165. :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  166. color:#B1C1C8;
  167. }
  168. ::-moz-placeholder { /* Mozilla Firefox 19+ */
  169. color:#B1C1C8;
  170. }
  171. input:-ms-input-placeholder{
  172. color:#B1C1C8;
  173. }
  174. input::-webkit-input-placeholder{
  175. color:#B1C1C8;
  176. }
  177. .show-flex5{
  178. display: flex;
  179. }
  180. .align-center{
  181. align-items: center;
  182. }
  183. .column{
  184. flex-direction: column;
  185. }
  186. .content-center{
  187. justify-content: center;
  188. }
  189. .content-between{
  190. justify-content: space-between;
  191. }
  192. .content-around{
  193. justify-content: space-around;
  194. }
  195. .cursor-pointer{
  196. cursor: pointer;
  197. }
  198. .flex-end{
  199. justify-content: flex-end;
  200. }
  201. /******************** element 分页样式修改 *****************/
  202. #app{
  203. ::v-deep .el-pagination .btn-next,::v-deep .el-pagination .btn-prev {
  204. background: center center no-repeat #0000;
  205. background-size: 16px;
  206. cursor: pointer;
  207. margin: 0;
  208. color: #c7c8c9;
  209. border: 1px solid #fff3;
  210. border-radius: 4px;
  211. }
  212. ::v-deep .el-pagination.is-background .el-pager li {
  213. background-color: #f4f4f500;
  214. color: #8d8d8d;
  215. }
  216. ::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
  217. background-color: #fff2;
  218. border-radius: 4px;
  219. color: #FFF;
  220. }
  221. }
  222. /*****************************************************************/