77 lines
1.8 KiB
Plaintext
77 lines
1.8 KiB
Plaintext
@import "../../../style/CommonStyle.module.less";
|
|
.popularShow {
|
|
padding: 60px 0;
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
margin-left: 60px;
|
|
.subTitle {
|
|
border-left: 6px solid @PRIMARY_COLOR_RED;
|
|
padding-left: 12px;
|
|
box-sizing: border-box;
|
|
color: #1a1a1a;
|
|
font-weight: bold;
|
|
font-family: "LGSmartUIBold";
|
|
}
|
|
.showList {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
overflow: hidden;
|
|
> li:nth-child(1n) {
|
|
margin-right: 18px;
|
|
border: 4px solid transparent;
|
|
box-sizing: border-box;
|
|
&:focus,
|
|
&:hover,
|
|
&:focus-within,
|
|
&:active {
|
|
border: 4px solid @PRIMARY_COLOR_RED;
|
|
box-sizing: border-box;
|
|
.focusDropShadow();
|
|
}
|
|
}
|
|
.listItem {
|
|
width: 546px;
|
|
height: 438px;
|
|
padding: 18px;
|
|
background-color: @COLOR_WHITE;
|
|
border-radius: 12px;
|
|
border: solid 1px @COLOR_GRAY02;
|
|
box-sizing: border-box;
|
|
.horizonItem {
|
|
width: 510px;
|
|
height: 60px;
|
|
margin-top: 38px;
|
|
color: #333;
|
|
font-size: 24px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
}
|
|
.listItemVertical {
|
|
display: flex;
|
|
width: 546px;
|
|
height: 438px;
|
|
padding: 18px;
|
|
background-color: @COLOR_WHITE;
|
|
border-radius: 12px;
|
|
border: solid 1px @COLOR_GRAY02;
|
|
box-sizing: border-box;
|
|
.verticalItem {
|
|
margin-left: 11px;
|
|
color: #333;
|
|
font-size: 24px;
|
|
width: 270px;
|
|
height: 402px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 12;
|
|
}
|
|
}
|
|
}
|
|
}
|