common.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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:200px;
  11. height:150px;
  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. font-size: 18px;
  32. }
  33. }
  34. .overflow{
  35. overflow: hidden;
  36. text-overflow:ellipsis;
  37. white-space: nowrap;
  38. }
  39. .ellipsis{
  40. text-overflow: ellipsis;
  41. }
  42. // @media screen and (min-width:768px) {
  43. // body,html,#app{
  44. // min-width: 1336px;
  45. // max-width: 1336px;
  46. // background: #f4f4f4;
  47. // color: #737373;
  48. // height: 100%;
  49. // };
  50. // }
  51. body,html{
  52. height:100%;
  53. width:100%;
  54. margin: 0 auto;
  55. padding: 0;
  56. position: relative;
  57. background-color: #f4f4f4;
  58. }
  59. #app{
  60. width:100%;
  61. margin: 0 auto;
  62. padding: 0;
  63. height:100%;
  64. left:0;
  65. top:0;
  66. -webkit-overflow-scrolling: touch;
  67. position:absolute;
  68. font-family: Verdana, Verdana-Bold, "Hiragino Sans GB", "Microsoft Yahei UI",
  69. "Microsoft Yahei", 微软雅黑, "Segoe UI", Tahoma, 宋体宋体, SimSun,
  70. sans-serif;
  71. }
  72. ul, li, ol, dl, dd,a{
  73. list-style: none;
  74. padding: 0;
  75. margin:0;
  76. }
  77. :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  78. color:#B1C1C8;
  79. }
  80. ::-moz-placeholder { /* Mozilla Firefox 19+ */
  81. color:#B1C1C8;
  82. }
  83. input:-ms-input-placeholder{
  84. color:#B1C1C8;
  85. }
  86. input::-webkit-input-placeholder{
  87. color:#B1C1C8;
  88. }
  89. .show-flex5{
  90. display: flex;
  91. }
  92. .align-center{
  93. align-items: center;
  94. }
  95. .column{
  96. flex-direction: column;
  97. }
  98. .content-center{
  99. justify-content: center;
  100. }
  101. .content-between{
  102. justify-content: space-between;
  103. }
  104. .content-around{
  105. justify-content: space-around;
  106. }
  107. .cursor-pointer{
  108. cursor: pointer;
  109. }
  110. .flex-end{
  111. justify-content: flex-end;
  112. }
  113. /******************** element 分页样式修改 *****************/
  114. #app{
  115. ::v-deep .el-pagination .btn-next,::v-deep .el-pagination .btn-prev {
  116. background: center center no-repeat #0000;
  117. background-size: 16px;
  118. cursor: pointer;
  119. margin: 0;
  120. color: #c7c8c9;
  121. border: 1px solid #fff3;
  122. border-radius: 4px;
  123. }
  124. ::v-deep .el-pagination.is-background .el-pager li {
  125. background-color: #f4f4f500;
  126. color: #8d8d8d;
  127. }
  128. ::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
  129. background-color: #fff2;
  130. border-radius: 4px;
  131. color: #FFF;
  132. }
  133. }
  134. /*****************************************************************/