| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /* pages/classify/classify.wxss */
- .classify {
- background-color: #EDF1F4;
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- }
- .classify_box {
- display: flex;
- flex: 1;
- overflow: hidden;
- /* background-color: red; */
- }
- .classify_left {
- overflow: hidden;
- color: #999;
- height: 100%;
- width: 174rpx;
- background: #fff;
- box-sizing: border-box;
- }
- .label{
- height: 124rpx;
- line-height: 124rpx;
- position: relative;
- padding-left: 20rpx;
- }
- .active{
- background: #EDF1F4;
- }
- .active::before{
- content: '';
- width: 10rpx;
- height: 36rpx;
- background: #62CB81;
- position: absolute;
- left: 0;
- top: 44rpx;
- }
- /* ::v-deep .van-sidebar-item{
- width: 174rpx;
- } */
- .van-sidebar-item {
- padding-top: 30rpx;
- background-color: #fff !important;
- }
- .customclass {
- padding-top: 30rpx;
- }
- .van-sidebar-item--selected {
- border-color: #62CB81 !important;
- background: #EDF1F4 !important;
- color: #000 !important;
- }
- .classify_right {
- box-sizing: border-box;
- width: 558rpx;
- background-color: #fff;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .classify_right_con {
- flex: 1;
- overflow: hidden;
- }
- .classify_right_scroll {
- height: 100%;
- width: 100%;
- }
- .classify_right_box {
- display: flex;
- flex-wrap: wrap;
- box-sizing: border-box;
- }
- .classify_right_item {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .classify_right_box_img {
- width: 154rpx;
- height: 154rpx;
- }
|