12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style>
- .textSpan{
- position: relative;
- top: 0;
- font-size: 14px;
- font-weight: 600;
- color:rgb(87, 86, 86)
- }
- /* ¶Card 卡片 */
- .clearfix{
- line-height: 20px;
- font-size: 18px;
- font-weight: 600;
- }
- .topClass{
- color:rgb(97, 174, 247)
- }
-
- /* //滚动条 */
- ::-webkit-scrollbar {
- width: 11px;
- height: 11px;
-
- }
- ::-webkit-scrollbar-thumb {
- /* background-color: #0f5ef080; */
- background: linear-gradient(to left,#32e4c663,#0c6ceb71);
- border-radius: 5px;
- box-shadow: 0 2px 12px 0 rgba(204, 201, 201, 0.1)
- }
-
- /* .el-button--black_button.is-plain {
- background: #2d2d3663;
- color: rgb(95, 92, 95);
- border: 1px solid #2d2d3663;
- }
- .el-button--black_button.is-plain:hover{
- background: #07070a;
- color: rgb(255, 255, 255);
- border: 1px solid #010102c2;
- }
- .el-button--black_button.is-plain:active{
- background: #07070a;
- color: rgb(255, 255, 255);
- border: 1px solid #010102c2;
- } */
- </style>
|