App.vue 888 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style lang="less">
  7. @import "../font/font.css";
  8. html,
  9. body,
  10. ul,
  11. li,
  12. ol,
  13. dl,
  14. dd,
  15. dt,
  16. p,
  17. h1,
  18. h2,
  19. h3,
  20. h4,
  21. h5,
  22. h6,
  23. form,
  24. img {
  25. margin: 0;
  26. padding: 0;
  27. }
  28. img {
  29. display: block;
  30. border: none;
  31. }
  32. em,
  33. i {
  34. font-style: normal;
  35. font-weight: normal;
  36. }
  37. ul,
  38. ol,
  39. li {
  40. list-style: none;
  41. }
  42. h1,
  43. h2,
  44. h3,
  45. h4,
  46. h5,
  47. h6 {
  48. font-size: inherit;
  49. font-weight: normal;
  50. }
  51. select,
  52. textarea,
  53. button {
  54. background: none;
  55. border: none;
  56. outline: none;
  57. margin: 0;
  58. padding: 0;
  59. vertical-align: middle;
  60. font-family: "微软雅黑";
  61. font-size: 14px;
  62. color: #4c4c4c;
  63. }
  64. a {
  65. color: #fff;
  66. text-decoration: none;
  67. }
  68. /deep/ .el-select-dropdown__wrap {
  69. background-color: greenyellow!important;
  70. }
  71. /deep/ .el-select-dropdown__item.hover, /deep/.el-select-dropdown__item:hover {
  72. background-color: #00d7ff !important;
  73. }
  74. </style>