/* 页面公共scss */ .container { margin: 0; padding: 0; width: 100%; height: 100%; box-sizing: border-box; background: #eceff1; // background: #666666; // padding-bottom: 50px; } .overflow-one-lines { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .overflow-two-lines { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; } .themeColor{ color:#EA5504; } .themeFs{ font-size: 25px !important; } .requiredCss { color: red; margin-right:10rpx; } .usuallyCard{ background: #fff; border-radius: 15px; } // 使用Sass的循环生成动态的CSS类 @for $i from 1 through 100 { .w#{$i} { width: $i * 1%; // 使用 $i 乘以 1% 来设置宽度 } } @for $i from 1 through 100 { .h#{$i} { height: $i * 1%; // 使用 $i 乘以 1% 来设置高度 } } // .w10{ // width: 10%; // } // .w20{ // width: 20%; // } // .w30{ // width: 30%; // } // .w40{ // width: 40%; // } // .w50{ // width: 50%; // } // .w60{ // width: 60%; // } // .w70{ // width: 70%; // } // .w80{ // width: 80%; // } // .w90{ // width: 90%; // } // .w100{ // width: 100%; // } // .h10{ // height: 10%; // } // .h20{ // height: 20%; // } // .h30{ // height: 30%; // } // .h40{ // height: 40%; // } // .h50{ // height: 50%; // } // .h60{ // height: 60%; // } // .h70{ // height: 70%; // } // .h80{ // height: 80%; // } // .h90{ // height: 90%; // } // .h100{ // height: 100%; // }