app.scss 1.19 KB
/* 页面公共scss */
.container {
	background-color: $custom-bg-color;
  margin: 0;
  padding: 0;
	box-sizing: border-box;
	height: 100%;
}

.overflow-one-lines {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

.overflow-two-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.requiredCss {
  color: red;
  margin-right:10rpx;
}


.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% 来设置高度
  }
}