basic-data.wxss 1.3 KB

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