| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- page{
- background-color: white;
- }
- .left-class{
- color:#0072ff;
- position: fixed;
- left:20rpx;
- top: 387.86rpx;
- 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);
- }
|