| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- page{
- background-color: white;
- }
- .left-class{
- color:#0072ff;
- position: fixed;
- left:20rpx;
- top: 196rpx;
- width:130rpx !important;
-
- }
- .sidebar-item{
- padding: 30rpx 25rpx 20rpx 35rpx !important;
- font-size:13px !important;
- background: #ECF2FF !important;
- color: #95A8CB !important;
-
- }
- .sidebar-item-before{
- padding: 30rpx 25rpx 20rpx 35rpx !important;
- font-size:13px !important;
- background: #ECF2FF !important;
- border-bottom-right-radius: 30rpx;
- color: #95A8CB !important;
-
- }
- .sidebar-item-next{
- padding: 30rpx 25rpx 20rpx 35rpx !important;
- font-size:13px !important;
- background: #ECF2FF !important;
- border-top-right-radius: 30rpx;
- color: #95A8CB !important;
- box-shadow: 0px 10px 20px 0px rgba(225, 229, 238, 0.6);
- }
- .van-sidebar-item--selected{
- position: relative;
- background: #fff !important;
- border-radius: 15rpx 30rpx 30rpx 15rpx !important;
- border: 0 !important;
- color: black !important;
- /* border-top-left-radius: 0;
- border-top-right-radius: 30rpx;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 30rpx; */
- }
- /**左侧字体样式*/
- .van-sidebar-item__text{
- width: 70rpx !important;
- }
- .van-sidebar-item--selected::after{
- content: '';
- position: absolute;
- left: 0;
- height: 40rpx;
- width: 6rpx;
- background-color: #1B365D;
- top: calc((100% - 40rpx)/2);
- }
|