123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- .header-settting {
- position: relative;
- }
- .content {
- position: relative;
- overflow: hidden;
- border-radius: 18px;
- width: 300px;
- height: 86vh;
- background-color: #fff;
- max-height: 340px;
- --van-tabs-line-height: 50px;
- --van-tab-active-text-color: var(--van-primary-color);
- :global {
- .van-tab__panel {
- position: relative;
- height: calc(86vh - 50px);
- max-height: calc(340px - 50px);
- overflow-y: auto;
- padding: 0 20px 10px 20px;
- &::-webkit-scrollbar {
- width: 0;
- display: none;
- }
- }
- .van-tabs__nav--line {
- padding-bottom: 0;
- }
- .van-tabs__wrap::after {
- display: none;
- }
- .van-tabs__line {
- width: 18px;
- bottom: 8px;
- }
- .van-cell {
- padding-left: 0;
- padding-right: 0;
- &:after {
- left: 0;
- right: 0;
- border-color: #F0F0F0;
- }
- }
- .van-switch {
- width: 46px;
- height: 23px;
- background-color: transparent !important;
- background-image: url('../image/off.svg');
- background-repeat: no-repeat;
- background-size: 100% 100%;
- background-position: center;
- border-radius: 0;
- &.van-switch--on {
- background-image: url('../image/on.svg');
- }
- .van-switch__node {
- display: none;
- }
- }
- .van-notice-bar__content {
- font-size: 12px;
- }
- }
- }
- .noticebar {
- border-radius: 6px;
- background: linear-gradient(45deg, #FFF6EE, #FFECDD);
- color: #FEAD15;
- }
- .reactionTime {
- :global {
- .van-cell__title {
- width: 60%;
- }
- .van-cell__value {
- text-align: right;
- }
- }
- }
- .radioGroup {
- display: flex;
- align-items: center;
- border-radius: 14px;
- background: linear-gradient(180deg, #5BECFF, #259CFE);
- padding: 4px;
- :global {
- .van-radio {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 22px;
- margin: 0 3px;
- border-radius: 6px;
- padding: 0 4px;
- }
- .van-radio__icon {
- display: none;
- }
- .van-radio__label {
- margin: 0 auto;
- font-size: 10px;
- color: #fff;
- font-weight: bold;
- white-space: nowrap;
- text-align: center;
- }
- .van-radio[aria-checked='true'] {
- background: linear-gradient(180deg, #FFFFFF, #DAF1FF);
- box-shadow: 0px 0px 1px 0px #DAF1FF;
- .van-radio__label {
- color: var(--van-primary-color);
- font-weight: bold;
- }
- }
- }
- }
- .sliderWrap {
- :global {
- .var-cell__extra {
- flex: 2;
- }
- }
- }
- .slider {
- width: 60%;
- margin-right: 20px;
- .sliderBtn {
- width: 40px;
- color: #fff;
- font-size: 12px;
- line-height: 20px;
- text-align: center;
- background-color: var(--van-primary-color);
- border-radius: 20px;
- }
- }
- .sliderVolume {
- width: 55%;
- }
- .btnsbar {
- position: absolute;
- bottom: 12px;
- left: 0;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-evenly;
- .btn {
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- width: 42%;
- height: 30px;
- padding: 0 6px;
- border-radius: 6px;
- font-size: 10px;
- background: #fff6e8;
- color: #6c442d;
- border: none;
- white-space: nowrap;
- & > img {
- width: 22px;
- height: 22px;
- }
- &:active {
- opacity: .8;
- }
- }
- }
- .disabled{
- opacity: .3;
- pointer-events: none;
- }
- .operateHz {
- display: flex;
- align-items: center;
- font-size: 14px;
- color: var(--van-primary-color);
- font-weight: 500;
- img {
- width: 28px;
- height: 28px;
- }
- span {
- margin: 0 6px;
- width: 50px;
- text-align: center;
- }
- }
|