// app global css in SCSS form a:link { color: $primary; } /* 未访问的链接 */ a:visited { color: $primary; } /* 已访问的链接 */ a:hover { opacity: 0.8; } /* 鼠标移动到链接上 */ // 布局 .center { display: flex; justify-content: center; align-items: center; } .container-height { height: calc(100vh - 50px); } // 颜色 // 播放 .text-play { color: #6cc4a1; } .bg-play { background: #6cc4a1; } // 暂停 .text-pause { color: #df7861; } .bg-pause { background: #df7861; } // 导航栏激活颜色 .text-headeractive { color: $primary-3; } .bg-headeractive { background: $primary-3; } // tooltip样式 .com-tooltip-sty { border: 1px solid rgba(9, 30, 66, 0.13); color: $gray-light-text; background-color: white; box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px; }