a856c96a by simon

默认提交

1 parent bc5307fa
......@@ -20,59 +20,75 @@
background: rgba($color: #000000, $alpha: 0.7);
}
strong {
font-weight: bold;
// font-family: Verdana;
}
li{
list-style: none;
}
ul{
li{
font-size: $articleSmall;
}
}
.modal {
position: relative;
width: 60rem;
min-height: 18.25rem;
width: 720px;
min-height: 222px;
border-radius: $borderRadius;
background-color: #ffffff;
height: 70vh;
// height: 70vh;
&-title {
position: relative;
@extend .bb;
@include border-top-radius($borderRadius);
@include ellipsis(1);
font-size: $fontSizeTitle;
height: 5rem;
line-height: 5rem;
font-size: $articleStrong;
font-weight: bold;
height: 60px;
line-height: 60px;
background-color: #f2f2f2;
text-align: left;
padding: 0 2.75rem;
padding: 0 44px;
.close-btn {
position: absolute;
top: 2rem;
right: 2rem;
top: 24px;
right: 24px;
}
}
&-icon-wrap {
@extend .fcc;
height: 12rem;
height: 144px;
}
&-content {
position: relative;
@extend .bb;
font-size: $fontSize;
padding: $marginMedium-M 1rem $marginMedium-M 2rem;
height: 62vh;
font-size: $articleNormal;
padding: 24px 24px 24px 44px;
height: 72vh;
&-desc {
@extend .bb;
padding-right: 24px;
padding-top: 20px;
padding-bottom: 12px;
text-align: left;
height: 100%;
overflow-y: scroll;
line-height: 2;
padding-right: 16px;
.t1 {
font-weight: bold;
}
line-height: 1.42;
}
&-desc :lang(zh) {
letter-spacing: 1.2px;
letter-spacing: 2.15px;
}
}
......@@ -81,8 +97,8 @@
justify-content: center;
.btn {
@include btc2(12rem, 3.6rem, 16px);
margin: 3rem 1rem 0;
@include btc2(144px, 44px, 16px);
margin: 36px 12px 0;
@extend .pointer;
}
}
......@@ -92,6 +108,7 @@
display: none;
}
@media (max-width: 1200px) {
.comp {
position: fixed;
......
......@@ -51,8 +51,8 @@ $cFontGray3: #666666;
$articleWidth:1040px;
$articleTitleLarge:36.5px;
$articleStrong:24px;
$articleNormal:21.5px;
$articleSmall:17.5px;
$articleNormal:22px;
$articleSmall:18px;
// 移动端
$marginSmall-M: 10px; // 小间距
......