12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .header-settting {
- position: relative;
- }
- .closeBtn {
- position: absolute;
- right: -34px;
- top: -6px;
- width: 24px;
- height: 24px;
- border-radius: 50%;
- background-color: #fff;
- overflow: hidden;
- padding: 6px;
- img {
- width: 100%;
- height: 100%;
- display: block;
- }
- &:active {
- opacity: .8;
- }
- }
- .content {
- position: relative;
- overflow: hidden;
- border-radius: 18px;
- width: 300px;
- height: 86vh;
- background-color: #fff;
- max-height: 310px;
- --van-tabs-line-height: 50px;
- --van-tab-active-text-color: var(--van-primary-color);
- :global{
- .van-tab__panel{
- height: calc(86vh - 50px);
- overflow-y: auto;
- padding: 0 10px 10px 10px;
- }
- }
- }
- .tags {
- display: flex;
- justify-content: space-between;
- text-align: center;
- padding: 0 var(--cell-padding);
- &.tagsbig {
- >span {
- width: 47.5%;
- text-align: center;
- }
- }
- >span {
- border-radius: 3PX;
- display: block;
- width: 31%;
- font-size: 12PX;
- padding: 6PX 0;
- background-color: #F8F8F8;
- color: #999999;
- border: 1PX solid #F8F8F8;
- &.active {
- color: var(--van-primary-color);
- border-color: var(--van-primary-color);
- background-color: #E2FFF9;
- }
- }
- }
|