123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- .theme(@backcolor: #FF9700, @color: #FEA45F) {
- height: 100%;
- width: 100%;
- .primary {
- background-color: @backcolor;
- }
- .primarytxt {
- color: @backcolor;
- }
- .hoverTheme,
- .activeTheme {
- // border: 3px solid @backcolor!important;
- }
- .biankuang {
- position: relative;
- &.active,
- &:hover {
- &::before,
- &::after {
- background-image: linear-gradient(186deg, @backcolor 0%, rgba(0, 144, 255, 0) 100%);
- content: "";
- width: 100%;
- height: 4px;
- position: absolute;
- top: 0;
- right: 0;
- z-index: 99;
- }
- &::after {
- content: "";
- top: 4px;
- height: 100%;
- width: 4px;
- }
- }
- }
- .fandb {
- background-color: rgba(@backcolor, 0.39);
- }
- .slidee {
- .active {
- position: relative;
- transition: .3s ease all;
- border-right: 4px solid @backcolor !important;
- ;
- &::before,
- &::after {
- background-image: linear-gradient(186deg, @backcolor 0%, rgba(0, 144, 255, 0) 100%);
- content: "";
- width: 100%;
- height: 4px;
- position: absolute;
- top: 0;
- right: 0;
- z-index: 99;
- }
- &::after {
- content: "";
- top: unset;
- bottom: 0;
- }
- }
- }
- .strmactive {
- position: relative;
- >div {
- position: relative;
- &::before,
- &::after {
- position: absolute;
- bottom: 0;
- content: '';
- width: 56px;
- left: -10px;
- height: 1px;
- background-color: @backcolor;
- }
- &::after {
- width: 2px;
- height: 18px;
- transform: rotate(40deg);
- left: unset;
- right: 4px;
- bottom: -2px;
- }
- }
- }
- .dakacir {
- background: linear-gradient(-44deg, @backcolor, @color);
- border-radius: 50%;
- position: relative;
- &::before {
- background: linear-gradient(-44deg, @backcolor, @color);
- opacity: 0.6;
- content: '';
- display: inline-block;
- width: 130%;
- height: 130%;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- position: absolute;
- border-radius: 50%;
- z-index: -1;
- }
- }
- // @wh:90px;
- // .stoptour{
- // width: @wh;
- // height: @wh;
- // border-radius: 16px;
- // background: linear-gradient(47deg, @backcolor, @color);
- // box-shadow: 10px 5px 10px rgba(0,0,0,0.16);
- // }
- .btmdashline {
- border-bottom: 2px dashed @backcolor;
- }
- .textActive {
- cursor: pointer;
- &:hover,
- &.active {
- color: @backcolor !important;
- }
- }
- .rmactive {
- position: relative;
- &::before,
- &::after {
- position: absolute;
- bottom: 3px;
- content: '';
- width: 52px;
- right: 0;
- height: 1px;
- background-color: @backcolor;
- }
- &::after {
- width: 2px;
- height: 20px;
- transform: rotate(-45deg);
- right: unset;
- left: 4px;
- bottom: 0;
- }
- }
- #drawer-container {
- height: 290px;
- #drawer {
- height: 130px;
- .frame-container {
- background-image: linear-gradient(90deg, rgba(@backcolor, 0.3) 0%, rgba(@backcolor, 0.56) 100%);
- &::before {
- content: "";
- top: 0;
- left: 0;
- width: 100%;
- height: 4px;
- background-image: linear-gradient(211deg, @backcolor 0%, rgba(@backcolor, 0) 100%);
- position: absolute;
- }
- }
- }
- }
- .sign {
- >circle {
- fill: @backcolor !important;
- }
- #orange_red1 {
- stop {
- stop-color: @backcolor !important;
- }
- }
- }
- ::-webkit-scrollbar {
- width: 2px;
- height: 8px;
- }
- ::-webkit-scrollbar-thumb {
- height: 20px;
- background-color: @backcolor;
- -webkit-border-radius: 4px;
- outline: 2px solid @color;
- }
- ::-webkit-scrollbar-thumb:hover {
- height: 20px;
- background-color: @backcolor;
- -webkit-border-radius: 4px;
- }
- @media screen and (max-width: 600px) {
- .slidee {
- .active {
- position: relative;
- transition: .3s ease all;
- border-right: none !important;
- &::after {
- background-image: linear-gradient(90deg, rgba(0, 144, 255, 0) 0%, @backcolor 50%, rgba(0, 144, 255, 0) 100%);
- content: "";
- width: 100%;
- height: 4px;
- position: absolute;
- bottom: 0;
- top: unset;
- left: 50%;
- transform: translateX(-50%);
- z-index: 99;
- }
- &::before {
- display: none;
- }
- }
- }
- }
- }
|