product-attribute.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. page{
  2. background-color: white;
  3. }
  4. .left-class{
  5. color:#0072ff;
  6. position: fixed;
  7. left:20rpx;
  8. width:130rpx !important;
  9. }
  10. .sidebar-item{
  11. padding: 30rpx 25rpx 20rpx 35rpx !important;
  12. font-size:13px !important;
  13. background: #ECF2FF !important;
  14. color: #95A8CB !important;
  15. }
  16. .sidebar-item-before{
  17. padding: 30rpx 25rpx 20rpx 35rpx !important;
  18. font-size:13px !important;
  19. background: #ECF2FF !important;
  20. border-bottom-right-radius: 30rpx;
  21. color: #95A8CB !important;
  22. }
  23. .sidebar-item-next{
  24. padding: 30rpx 25rpx 20rpx 35rpx !important;
  25. font-size:13px !important;
  26. background: #ECF2FF !important;
  27. border-top-right-radius: 30rpx;
  28. color: #95A8CB !important;
  29. box-shadow: 0px 10px 20px 0px rgba(225, 229, 238, 0.6);
  30. }
  31. .van-sidebar-item--selected{
  32. position: relative;
  33. background: #fff !important;
  34. border-radius: 15rpx 30rpx 30rpx 15rpx !important;
  35. border: 0 !important;
  36. color: black !important;
  37. /* border-top-left-radius: 0;
  38. border-top-right-radius: 30rpx;
  39. border-bottom-left-radius: 0;
  40. border-bottom-right-radius: 30rpx; */
  41. }
  42. .van-sideba{
  43. background: #fff !important;
  44. }
  45. /**左侧字体样式*/
  46. .van-sidebar-item__text{
  47. width: 70rpx !important;
  48. }
  49. .van-sidebar-item--selected::after{
  50. content: '';
  51. position: absolute;
  52. left: 0;
  53. height: 40rpx;
  54. width: 6rpx;
  55. background-color: #1B365D;
  56. top: calc((100% - 40rpx)/2);
  57. }