category.wxss 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .s-category.data-v-1031f1cf .side-menu-wrap {
  27. width: 200rpx;
  28. height: 100%;
  29. padding-left: 12rpx;
  30. background-color: #f6f6f6;
  31. }
  32. .s-category.data-v-1031f1cf .side-menu-wrap .menu-item {
  33. width: 100%;
  34. height: 88rpx;
  35. position: relative;
  36. transition: all linear 0.2s;
  37. }
  38. .s-category.data-v-1031f1cf .side-menu-wrap .menu-item .menu-title {
  39. line-height: 32rpx;
  40. font-size: 30rpx;
  41. font-weight: 400;
  42. color: #333;
  43. margin-left: 28rpx;
  44. position: relative;
  45. z-index: 0;
  46. }
  47. .s-category.data-v-1031f1cf .side-menu-wrap .menu-item.menu-item-active {
  48. background-color: #fff;
  49. border-radius: 20rpx 0 0 20rpx;
  50. }
  51. .s-category.data-v-1031f1cf .side-menu-wrap .menu-item.menu-item-active::before {
  52. content: "";
  53. position: absolute;
  54. right: 0;
  55. bottom: -20rpx;
  56. width: 20rpx;
  57. height: 20rpx;
  58. background: radial-gradient(circle at 0 100%, transparent 20rpx, #fff 0);
  59. }
  60. .s-category.data-v-1031f1cf .side-menu-wrap .menu-item.menu-item-active::after {
  61. content: "";
  62. position: absolute;
  63. top: -20rpx;
  64. right: 0;
  65. width: 20rpx;
  66. height: 20rpx;
  67. background: radial-gradient(circle at 0% 0%, transparent 20rpx, #fff 0);
  68. }
  69. .s-category.data-v-1031f1cf .side-menu-wrap .menu-item.menu-item-active .menu-title {
  70. font-weight: 600;
  71. color: var(--ui-BG-Main);
  72. }
  73. .s-category.data-v-1031f1cf .side-menu-wrap .menu-item.menu-item-active .menu-title::before {
  74. left: 0;
  75. }
  76. .s-category.data-v-1031f1cf .goods-list-box {
  77. background-color: #fff;
  78. width: calc(100vw - 100px);
  79. padding: 10px;
  80. }
  81. .s-category.data-v-1031f1cf .banner-img {
  82. width: calc(100vw - 130px);
  83. border-radius: 5px;
  84. margin-bottom: 20rpx;
  85. }