App.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. <template>
  2. <div id="app"
  3. v-cloak>
  4. <router-view />
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'App'
  10. }
  11. </script>
  12. <style >
  13. * {
  14. margin: 0;
  15. padding: 0;
  16. touch-action: none !important;
  17. }
  18. [v-cloak] {
  19. display: none !important;
  20. }
  21. body {
  22. background-color: #eef4f9;
  23. }
  24. /* 出去多选框中的关闭按钮 */
  25. .el-select__tags .el-tag__close.el-icon-close {
  26. display: none;
  27. }
  28. .el-checkbox__input.is-focus {
  29. visibility: hidden;
  30. }
  31. .el-checkbox__inner:hover {
  32. background-color: rgb(19, 129, 122);
  33. }
  34. .el-checkbox__input.is-checked .el-checkbox__inner,
  35. .el-checkbox__input.is-indeterminate .el-checkbox__inner {
  36. background-color: #14928a;
  37. border-color: #14928a;
  38. }
  39. .el-select__tags .el-tag__close.el-icon-close {
  40. display: inline-block;
  41. }
  42. .el-checkbox__input.is-checked + .el-checkbox__label {
  43. color: #606266;
  44. }
  45. </style>
  46. <style lang="scss">
  47. .el-tabs__content {
  48. overflow: auto;
  49. }
  50. .el-tabs__item:focus.is-active.is-focus:not(:active) {
  51. box-shadow: none;
  52. border-top-left-radius: 20px;
  53. border-top-right-radius: 20px;
  54. }
  55. input::-webkit-outer-spin-button,
  56. input::-webkit-inner-spin-button {
  57. -webkit-appearance: none;
  58. }
  59. input[type="number"] {
  60. -moz-appearance: textfield;
  61. }
  62. .el-tabs__item.is-active {
  63. color: #14928a !important;
  64. // font-size: 14px;
  65. font-weight: 600;
  66. }
  67. .el-tabs__item:hover {
  68. color: #14928a !important;
  69. // font-size: 14px;
  70. font-weight: 600;
  71. }
  72. // 选择框组件
  73. .el-form-item__content {
  74. font-size: 14px !important;
  75. }
  76. .el-select {
  77. width: 180px !important;
  78. }
  79. .multiple.el-select {
  80. width: 180px !important;
  81. }
  82. .searchBtn {
  83. width: 100px;
  84. height: 36px;
  85. line-height: 36px;
  86. background-color: #f85043;
  87. color: #fff;
  88. font-size: 14px;
  89. text-align: center;
  90. border-radius: 4px;
  91. position: relative;
  92. top: 3px;
  93. cursor: pointer;
  94. }
  95. .newBand {
  96. width: 100px;
  97. height: 36px;
  98. line-height: 36px;
  99. margin-bottom: 20px;
  100. background-color: #14928a;
  101. border: 1px solid #14928a;
  102. cursor: pointer;
  103. color: #fff;
  104. font-size: 14px;
  105. text-align: center;
  106. border-radius: 4px;
  107. position: relative;
  108. top: 3px;
  109. }
  110. // 公用的搜索组件
  111. .searchWrap {
  112. display: flex;
  113. flex-direction: row;
  114. justify-content: flex-start;
  115. align-items: center;
  116. font-size: 14px;
  117. font-weight: 500;
  118. color: rgba(119, 119, 119, 1);
  119. height: 30px;
  120. margin-bottom: 30px;
  121. p {
  122. font-size: 14px;
  123. padding-left: 4px;
  124. }
  125. .searchItem {
  126. margin-left: 20px;
  127. position: relative;
  128. box-sizing: border-box;
  129. min-width: 116px;
  130. padding: 0 25px;
  131. height: 30px;
  132. line-height: 30px;
  133. background: rgba(246, 246, 246, 1);
  134. border-radius: 15px;
  135. color: #777;
  136. font-size: 14px;
  137. .el-icon-close {
  138. position: absolute;
  139. right: 5px;
  140. top: 8px;
  141. }
  142. }
  143. }
  144. .headWrap {
  145. padding: 40px 0;
  146. display: flex;
  147. flex-direction: row;
  148. justify-content: space-between;
  149. align-items: center;
  150. .left {
  151. width: 1100px;
  152. display: flex;
  153. flex-direction: row;
  154. justify-content: flex-start;
  155. align-items: center;
  156. flex-wrap: wrap;
  157. .headItem {
  158. width: 320px;
  159. height: 30px;
  160. color: #444;
  161. border-right: 1px solid #979797;
  162. p {
  163. font-size: 14px;
  164. line-height: 30px;
  165. span {
  166. font-size: 22px;
  167. line-height: 30px;
  168. }
  169. }
  170. &:nth-child(1) {
  171. width: 256px;
  172. }
  173. &:nth-child(2n) {
  174. text-align: center;
  175. }
  176. &:nth-child(3n) {
  177. border-right: 1px solid #fff;
  178. text-align: center;
  179. }
  180. &:nth-child(4n) {
  181. text-align: left !important;
  182. width: 256px;
  183. }
  184. &:nth-child(5n) {
  185. text-align: center;
  186. }
  187. }
  188. }
  189. }
  190. // 公用编剧模板
  191. .m-container {
  192. box-sizing: border-box;
  193. background-color: #fff;
  194. padding: 18px 30px 40px;
  195. // height: calc(100vh- 80px) !important;
  196. // height: calc(100vh - 70px);
  197. width: 100%;
  198. // min-width: 1440px;
  199. // overflow: auto;
  200. .m-core {
  201. margin-top: 10px;
  202. background-color: #fff;
  203. position: relative;
  204. }
  205. h2 {
  206. height: 48px;
  207. line-height: 48px;
  208. position: relative;
  209. // padding-left: 20px;
  210. font-size: 32px;
  211. font-weight: 600;
  212. margin-bottom: 10px;
  213. display: flex;
  214. flex-direction: row;
  215. justify-content: flex-start;
  216. align-items: center;
  217. .term {
  218. height: 32px;
  219. line-height: 32px;
  220. border-radius: 24px;
  221. width: 100px;
  222. color: #14928a;
  223. border: 1px solid rgba(20, 146, 138, 1);
  224. font-size: 14px;
  225. text-align: center;
  226. margin-right: 12px;
  227. &:nth-child(1) {
  228. margin-left: 47px;
  229. }
  230. }
  231. .term.active {
  232. color: #fff;
  233. background-color: #14928a;
  234. }
  235. .squrt {
  236. // position: absolute;
  237. // left: 0;
  238. // top: 8px;
  239. margin-right: 15px;
  240. height: 34px;
  241. width: 8px;
  242. background-color: #14928a;
  243. }
  244. }
  245. }
  246. .btnWrap {
  247. display: flex;
  248. flex-direction: row;
  249. justify-content: flex-end;
  250. div {
  251. line-height: 40px;
  252. text-align: center;
  253. color: #fff;
  254. border-radius: 4px;
  255. margin-right: 20px;
  256. cursor: pointer;
  257. }
  258. .nextBtn {
  259. width: 120px;
  260. height: 40px;
  261. background-color: #444;
  262. }
  263. .okBtn {
  264. width: 120px;
  265. height: 40px;
  266. background-color: #f97215;
  267. }
  268. .closeBtn {
  269. width: 120px;
  270. height: 40px;
  271. background-color: #777;
  272. }
  273. }
  274. ::-webkit-scrollbar {
  275. width: 5px; /* 纵向滚动条*/
  276. height: 5px; /* 横向滚动条 */
  277. background-color: #fff;
  278. }
  279. /*定义滚动条轨道 内阴影*/
  280. ::-webkit-scrollbar-track {
  281. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  282. background-color: #fff;
  283. }
  284. /*定义滑块 内阴影*/
  285. ::-webkit-scrollbar-thumb {
  286. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  287. background-color: #d5d5d5;
  288. }
  289. .el-input.is-disabled .el-input__inner {
  290. color: #333;
  291. opacity: 1;
  292. }
  293. </style>