global.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. .g-fx-j {
  2. display: flex;
  3. justify-content: space-between;
  4. }
  5. .g-fx {
  6. display: flex;
  7. }
  8. .g-fx-y {
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .g-xs {
  13. cursor: pointer;
  14. }
  15. .g-mb20 {
  16. margin-bottom: 20px;
  17. }
  18. .g-mb40 {
  19. margin-bottom: 40px;
  20. }
  21. .g-mt10 {
  22. margin-top: 10px;
  23. }
  24. .g-mb-40 {
  25. margin-bottom: 40px;
  26. }
  27. .g-title {
  28. font-size: 18px;
  29. font-weight: bold;
  30. color: #000000;
  31. margin-bottom: 20px;
  32. }
  33. .g-br-10 {
  34. border-radius: 10px;
  35. }
  36. .g-bg-fff {
  37. background-color: #fff;
  38. }
  39. .g-tx-c {
  40. text-align: center;
  41. }
  42. .g-h {
  43. min-height: calc(100vh - 90px);
  44. }
  45. .g-bg {
  46. width: calc(100% + 20px);
  47. background-image: url(../../assets/img/user-bg.png);
  48. background-size: 100% 100%;
  49. position: absolute;
  50. height: 400px;
  51. top: -20px;
  52. left: -20px;
  53. position: absolute;
  54. }
  55. .g-card-title {
  56. position: relative;
  57. padding: 20px;
  58. background-color: #fff;
  59. border-radius: 10px;
  60. margin-bottom: 20px;
  61. }
  62. .g-ellipsis {
  63. overflow: hidden;
  64. text-overflow: ellipsis;
  65. white-space: nowrap;
  66. }
  67. .g-card-title > div:first-child {
  68. font-weight: bold;
  69. font-size: 18px;
  70. }
  71. .g-mt5 {
  72. margin-top: 5px;
  73. }
  74. .g-ml-10 {
  75. margin-left: 10px;
  76. }
  77. .g-ml-20 {
  78. margin-left: 20px;
  79. }
  80. .g-card {
  81. min-height: 500px;
  82. width: 100%;
  83. background: #ffffff;
  84. border-radius: 10px;
  85. position: relative;
  86. }
  87. .g-danger {
  88. color: #ed6159;
  89. background-color: #fef0ef;
  90. }
  91. .g-warning {
  92. color: #d5a17d;
  93. background-color: #f9f1eb;
  94. }
  95. .g-warning::after {
  96. /* color: #d5a17d; */
  97. background: #d5a17d !important;
  98. }
  99. .g-pagination {
  100. position: absolute;
  101. bottom: 20px;
  102. right: 50px;
  103. }
  104. .g-p30 {
  105. padding: 30px;
  106. }
  107. .g-mt20 {
  108. margin-top: 20px;
  109. }
  110. .g-pb-50 {
  111. padding-bottom: 50px;
  112. }
  113. .g-textarea .el-textarea__inner {
  114. border-radius: 8px;
  115. }
  116. .g-tooltip {
  117. width: 150px;
  118. height: 100px;
  119. }
  120. .g-mb-20 {
  121. margin-bottom: 20px;
  122. }
  123. .g-mb-40 {
  124. margin-bottom: 40px;
  125. }
  126. .g-tooltip-title {
  127. position: relative;
  128. display: flex;
  129. align-items: center;
  130. min-width: 50px;
  131. }
  132. .g-no-warp {
  133. overflow: hidden;
  134. text-overflow: ellipsis;
  135. white-space: nowrap;
  136. }
  137. .g-tooltip-title1 {
  138. width: 16px;
  139. height: 16px;
  140. background-image: url('../icon/right.png');
  141. background-size: cover;
  142. }
  143. .g-tooltip-line {
  144. height: 2px;
  145. width: 100%;
  146. background-color: #b1bfe7;
  147. margin: 5px 0;
  148. }
  149. /* ::-webkit-scrollbar {
  150. width: 12px;
  151. height: 12px;
  152. } */
  153. /*定义滚动条轨道
  154. 内阴影+圆角*/
  155. /* ::-webkit-scrollbar-track {
  156. border-radius: 10px;
  157. } */
  158. /*定义滑块
  159. 内阴影+圆角*/
  160. /* ::-webkit-scrollbar-thumb {
  161. border-radius: 10px;
  162. background-color: #d0cece;
  163. } */