25 lines
496 B
SCSS
25 lines
496 B
SCSS
@import '../../../common/css/flex.scss';
|
|
@function px2rem($px,$rem:75) {
|
|
@return $px / $rem + rem;
|
|
}
|
|
.max{
|
|
box-sizing: border-box;
|
|
padding: px2rem(0) px2rem(30);
|
|
color: #1a1a1a;
|
|
font-size: 14px;
|
|
line-height: px2rem(50);
|
|
.title{
|
|
margin-top: px2rem(40);
|
|
margin-bottom: px2rem(10);
|
|
font-size: 16px;
|
|
line-height: px2rem(50);
|
|
font-weight: bold;
|
|
}
|
|
.title-two{
|
|
margin-top: px2rem(40);
|
|
font-weight: bold;
|
|
}
|
|
.title-head{
|
|
text-indent: px2rem(50);
|
|
}
|
|
} |