index.module.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .header-settting {
  2. position: relative;
  3. }
  4. .closeBtn {
  5. position: absolute;
  6. right: -34px;
  7. top: -6px;
  8. width: 24px;
  9. height: 24px;
  10. border-radius: 50%;
  11. background-color: #fff;
  12. overflow: hidden;
  13. padding: 6px;
  14. img {
  15. width: 100%;
  16. height: 100%;
  17. display: block;
  18. }
  19. &:active {
  20. opacity: .8;
  21. }
  22. }
  23. .content {
  24. position: relative;
  25. overflow: hidden;
  26. border-radius: 18px;
  27. width: 300px;
  28. height: 86vh;
  29. background-color: #fff;
  30. max-height: 310px;
  31. --van-tabs-line-height: 50px;
  32. --van-tab-active-text-color: var(--van-primary-color);
  33. :global{
  34. .van-tab__panel{
  35. height: calc(86vh - 50px);
  36. overflow-y: auto;
  37. padding: 0 10px 10px 10px;
  38. }
  39. }
  40. }
  41. .tags {
  42. display: flex;
  43. justify-content: space-between;
  44. text-align: center;
  45. padding: 0 var(--cell-padding);
  46. &.tagsbig {
  47. >span {
  48. width: 47.5%;
  49. text-align: center;
  50. }
  51. }
  52. >span {
  53. border-radius: 3PX;
  54. display: block;
  55. width: 31%;
  56. font-size: 12PX;
  57. padding: 6PX 0;
  58. background-color: #F8F8F8;
  59. color: #999999;
  60. border: 1PX solid #F8F8F8;
  61. &.active {
  62. color: var(--van-primary-color);
  63. border-color: var(--van-primary-color);
  64. background-color: #E2FFF9;
  65. }
  66. }
  67. }