1234567891011121314151617181920212223242526272829303132333435363738 |
- /* pages/myFollow/myFollow.wxss */
- .myFollow{
- padding: 0 25rpx;
- /* height: 100vh; */
- }
- .head{
- background-color: var(--themeColor);
- text-align: center;
- line-height: 80rpx;
- color: #ffffff;
- font-weight: bolder;
- border-radius: 10rpx;
- }
- .checkbox_icon{
- font-size: 35rpx;
- }
- .myIcongroup43{
- font-size: 25rpx;
- }
- .checkbox_label{
- font-size: 25rpx;
- }
- .checkbox_item .van-checkbox__icon{
- width: 0.6em !important;
- height: 0.6em !important;
- line-height: 0.6em !important;
- }
- .checkbox_item .van-checkbox__label{
- padding-left: 10rpx;
- }
- .main{
- flex: 1;
- overflow-y: hidden;
- height: calc(100vh - 300rpx);
- box-sizing: border-box;
- }
|