|
|
@define-mixin relatedTitle {
|
|
|
background: #fff;
|
|
|
line-height: 104px;
|
|
|
font-size: 28px;
|
|
|
color: #444;
|
|
|
text-align: center;
|
|
|
}
|
|
|
|
|
|
$focus-size: 42px;
|
|
|
|
|
|
.news-detail-page {
|
|
|
.news-wrap {
|
|
|
position: relative;
|
|
|
}
|
|
|
|
|
|
#wrapper {
|
|
|
background: #f0f0f0;
|
|
|
}
|
|
|
|
|
|
#wrapper.ios {
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
bottom: 0;
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
overflow: hidden;
|
|
|
|
|
|
&.has-head {
|
|
|
top: 90px;
|
|
|
|
|
|
+ .fixed-top {
|
|
|
top: 90px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.author {
|
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
background: #fff;
|
|
|
|
|
|
> a {
|
|
|
display: block;
|
|
|
height: 100%;
|
|
|
}
|
|
|
|
|
|
.avatar {
|
|
|
float: left;
|
|
|
margin-top: 20px;
|
|
|
margin-left: 30px;
|
|
|
width: 50px;
|
|
|
height: 50px;
|
|
|
border-radius: 50%;
|
|
|
}
|
|
|
|
|
|
.name {
|
|
|
float: left;
|
|
|
font-size: 14PX;
|
|
|
color: #000;
|
|
|
padding: 30px 0;
|
|
|
margin-left: 30px;
|
|
|
}
|
|
|
|
|
|
.intro {
|
|
|
float: left;
|
|
|
font-size: 14PX;
|
|
|
color: #b0b0b0;
|
|
|
padding: 30px 0;
|
|
|
margin-left: 30px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.post-title {
|
|
|
padding: 16px 0 26px 30px;
|
|
|
background: #fff;
|
|
|
|
|
|
.title {
|
|
|
line-height: 30PX;
|
|
|
font-size: 20PX;
|
|
|
color: #000;
|
|
|
font-weight: bold;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.post-content {
|
|
|
padding: 0 30px;
|
|
|
background-color: #fff;
|
|
|
|
|
|
img {
|
|
|
height: auto;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.text-block {
|
|
|
padding: 20px 0;
|
|
|
line-height: 23PX;
|
|
|
font-size: 14PX;
|
|
|
background: #fff;
|
|
|
color: #444;
|
|
|
word-break: break-word;
|
|
|
word-wrap: break-word;
|
|
|
}
|
|
|
|
|
|
.big-img-block {
|
|
|
padding-bottom: 5px;
|
|
|
background: #fff;
|
|
|
position: relative;
|
|
|
|
|
|
img {
|
|
|
width: 100%;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.big-img-block > .tag-list-box {
|
|
|
left: 0;
|
|
|
bottom: 0;
|
|
|
position: absolute;
|
|
|
padding: 20px;
|
|
|
|
|
|
.label-box {
|
|
|
font-size: 20px;
|
|
|
overflow: hidden;
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
.lable-focus {
|
|
|
float: left;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
line-height: 46px;
|
|
|
height: 46px;
|
|
|
margin-right: 32px;
|
|
|
|
|
|
.focus-big {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
width: $focus-size;
|
|
|
height: $focus-size;
|
|
|
border-radius: $focus-size;
|
|
|
border: 6px solid rgba(253, 157, 43, 0.5);
|
|
|
justify-content: center;
|
|
|
}
|
|
|
|
|
|
.focus-small {
|
|
|
width: $focus-size;
|
|
|
height: $focus-size;
|
|
|
border-radius: $focus-size;
|
|
|
background: rgba(253, 157, 43, 1);
|
|
|
transform: scale(0.5, 0.5);
|
|
|
margin: -$focus-size;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.lable-info-box {
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
color: #fff;
|
|
|
padding: 0 20px;
|
|
|
border-top-left-radius: 40px;
|
|
|
border-bottom-left-radius: 40px;
|
|
|
float: left;
|
|
|
line-height: 46px;
|
|
|
width: 250px;
|
|
|
height: 46px;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
|
|
|
.lable-infobox-borderadius {
|
|
|
width: 336px;
|
|
|
border-top-right-radius: 40px;
|
|
|
border-bottom-right-radius: 40px;
|
|
|
}
|
|
|
|
|
|
.lable-info-box > a {
|
|
|
color: #fff;
|
|
|
}
|
|
|
|
|
|
.lable-btn {
|
|
|
background-color: #000;
|
|
|
color: #fff;
|
|
|
padding: 0 20px;
|
|
|
border-top-right-radius: 40px;
|
|
|
border-bottom-right-radius: 40px;
|
|
|
float: left;
|
|
|
line-height: 46px;
|
|
|
height: 46px;
|
|
|
}
|
|
|
|
|
|
.lable-btn > .plus {
|
|
|
font-size: 16px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.small-img-block {
|
|
|
padding-bottom: 8px;
|
|
|
background: #fff;
|
|
|
|
|
|
img {
|
|
|
float: right;
|
|
|
width: 50%;
|
|
|
|
|
|
&:first-child {
|
|
|
float: left;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.collocation-block {
|
|
|
background: #fff;
|
|
|
|
|
|
.good-info {
|
|
|
width: 260px;
|
|
|
height: 477px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.thumb-container {
|
|
|
padding-top: 30px;
|
|
|
padding-left: 20px;
|
|
|
background: transparent resolve("guang/thumb-container-bg.png") no-repeat;
|
|
|
background-size: 200% 100%;
|
|
|
|
|
|
&.fixed-top {
|
|
|
position: fixed;
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
top: 0;
|
|
|
}
|
|
|
|
|
|
&.fixed-bottom {
|
|
|
position: fixed;
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
bottom: 0;
|
|
|
background: rgba(255, 255, 255, 0.9);
|
|
|
}
|
|
|
|
|
|
&.absolute {
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
}
|
|
|
|
|
|
&.static {
|
|
|
position: static;
|
|
|
}
|
|
|
|
|
|
&.hide {
|
|
|
display: none;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.clothe-type {
|
|
|
position: absolute;
|
|
|
right: 6px;
|
|
|
bottom: 34px;
|
|
|
width: 20px;
|
|
|
height: 20px;
|
|
|
border-radius: 50%;
|
|
|
|
|
|
&.bag {
|
|
|
background: url("/guang/clothes/bag.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.cloth {
|
|
|
background: url("/guang/clothes/cloth.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.dress {
|
|
|
background: url("/guang/clothes/dress.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.headset {
|
|
|
background: url("/guang/clothes/headset.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.lamp {
|
|
|
background: url("/guang/clothes/lamp.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.pants {
|
|
|
background: url("/guang/clothes/pants.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.shoe {
|
|
|
background: url("/guang/clothes/shoe.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.swim-suit {
|
|
|
background: url("/guang/clothes/swim-suit.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.under {
|
|
|
background: url("/guang/clothes/under.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
&.watch {
|
|
|
background: url("/guang/clothes/watch.png");
|
|
|
background-color: #fff;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.thumb {
|
|
|
display: inline-block;
|
|
|
position: relative;
|
|
|
margin-right: 22px;
|
|
|
padding-bottom: 30px;
|
|
|
|
|
|
&:last-child {
|
|
|
margin-right: 0;
|
|
|
}
|
|
|
|
|
|
&.focus .thumb-img {
|
|
|
border-color: #000;
|
|
|
}
|
|
|
|
|
|
.thumb-img {
|
|
|
height: 134px;
|
|
|
width: 96px;
|
|
|
border: 1px solid transparent;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.related-reco-block {
|
|
|
background: #fff;
|
|
|
|
|
|
.one-good {
|
|
|
background-color: #f0f0f0;
|
|
|
margin-bottom: 10px;
|
|
|
border: solid 1px #e0e0e0;
|
|
|
|
|
|
&:last-child {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
|
|
|
.thumb {
|
|
|
float: left;
|
|
|
height: 204px;
|
|
|
width: 152px;
|
|
|
margin: 0;
|
|
|
padding: 0;
|
|
|
}
|
|
|
|
|
|
.content-container {
|
|
|
width: 404px;
|
|
|
float: left;
|
|
|
font-size: 22px;
|
|
|
margin-left: 20px;
|
|
|
padding-right: 30px;
|
|
|
height: 206px;
|
|
|
position: relative;
|
|
|
|
|
|
span {
|
|
|
display: inline-block;
|
|
|
line-height: 24px;
|
|
|
}
|
|
|
|
|
|
.price {
|
|
|
line-height: 53px;
|
|
|
}
|
|
|
|
|
|
.go-detail {
|
|
|
color: #444;
|
|
|
position: absolute;
|
|
|
bottom: 20px;
|
|
|
right: 30px;
|
|
|
}
|
|
|
|
|
|
.detail-arr {
|
|
|
vertical-align: baseline;
|
|
|
}
|
|
|
|
|
|
.iconfont {
|
|
|
font-size: 18px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.reco-name {
|
|
|
margin-top: 35px;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
white-space: normal;
|
|
|
height: 60px;
|
|
|
|
|
|
span {
|
|
|
line-height: 30px;
|
|
|
height: 60px;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
display: -webkit-box;
|
|
|
-webkit-line-clamp: 2;
|
|
|
-webkit-box-orient: vertical;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.sale-price {
|
|
|
color: #d0021b;
|
|
|
line-height: 1.5;
|
|
|
}
|
|
|
|
|
|
.sale-price.no-price {
|
|
|
color: #000;
|
|
|
}
|
|
|
|
|
|
.market-price {
|
|
|
margin-left: 5px;
|
|
|
color: #b0b0b0;
|
|
|
text-decoration: line-through;
|
|
|
line-height: 1.5;
|
|
|
}
|
|
|
|
|
|
.check-detail {
|
|
|
display: block;
|
|
|
background-color: #444;
|
|
|
color: #fff;
|
|
|
border-radius: 20px;
|
|
|
height: 40px !important;
|
|
|
line-height: 40px !important;
|
|
|
text-align: center;
|
|
|
float: right;
|
|
|
width: 70px;
|
|
|
font-size: 28px;
|
|
|
|
|
|
span {
|
|
|
vertical-align: middle;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.check-detail > .plus {
|
|
|
font-size: 12px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.related-reco-hide {
|
|
|
max-height: 860px;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
|
.related-reco {
|
|
|
padding-bottom: 10px;
|
|
|
}
|
|
|
|
|
|
.related-reco > .related-reco-more {
|
|
|
display: block;
|
|
|
width: 250px;
|
|
|
height: 40px;
|
|
|
line-height: 40px;
|
|
|
margin: 20px auto 0;
|
|
|
text-align: center;
|
|
|
font-size: 22px;
|
|
|
color: #fff;
|
|
|
background-color: #b0b0b0;
|
|
|
padding-left: 15px;
|
|
|
}
|
|
|
|
|
|
.link-block {
|
|
|
display: block;
|
|
|
height: 80px;
|
|
|
line-height: 80px;
|
|
|
padding: 0 30px;
|
|
|
font-size: 28px;
|
|
|
background: #fff;
|
|
|
border-top: 1px solid #e0e0e0;
|
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
|
|
|
.iconfont {
|
|
|
float: right;
|
|
|
color: #ccc;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.related-brand {
|
|
|
margin-top: 30px;
|
|
|
|
|
|
h2 {
|
|
|
@mixin relatedTitle ;
|
|
|
}
|
|
|
|
|
|
.brand-list {
|
|
|
padding: 30px 0;
|
|
|
background: #fff;
|
|
|
}
|
|
|
|
|
|
.brand {
|
|
|
float: left;
|
|
|
width: 158px;
|
|
|
height: 128px;
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
a {
|
|
|
display: block;
|
|
|
}
|
|
|
|
|
|
&:nth-child(4n) {
|
|
|
border-right: none;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.brand-logo {
|
|
|
display: table-cell;
|
|
|
width: 158px;
|
|
|
height: 94px;
|
|
|
vertical-align: middle;
|
|
|
|
|
|
img {
|
|
|
display: block;
|
|
|
max-width: 158px;
|
|
|
max-height: 94px;
|
|
|
vertical-align: middle;
|
|
|
margin: 0 auto;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.brand-name {
|
|
|
margin: 10px 0 0;
|
|
|
line-height: 24px;
|
|
|
font-size: 12PX;
|
|
|
color: #babac2;
|
|
|
text-align: center;
|
|
|
text-decoration: none;
|
|
|
border-bottom: none;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.related-tag {
|
|
|
position: relative;
|
|
|
padding-bottom: 30px;
|
|
|
border-top: 1px solid #e0e0e0;
|
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
background: #fff;
|
|
|
|
|
|
.tag-bg {
|
|
|
position: absolute;
|
|
|
height: 20PX;
|
|
|
width: 20PX;
|
|
|
background: resolve("guang/tag.png") no-repeat;
|
|
|
background-size: 100% 100%;
|
|
|
top: 35px;
|
|
|
left: 20px;
|
|
|
}
|
|
|
|
|
|
li {
|
|
|
float: left;
|
|
|
margin-top: 30px;
|
|
|
margin-left: 30px;
|
|
|
background-color: #444;
|
|
|
padding: 5px 11px;
|
|
|
}
|
|
|
|
|
|
a {
|
|
|
height: 40px;
|
|
|
font-size: 18px;
|
|
|
white-space: nowrap;
|
|
|
color: #fff;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.related-info {
|
|
|
margin-top: 30px;
|
|
|
|
|
|
h2 {
|
|
|
@mixin relatedTitle ;
|
|
|
}
|
|
|
|
|
|
.info-list {
|
|
|
background: #fff;
|
|
|
padding-bottom: 30px;
|
|
|
border-top: 1px solid #e0e0e0;
|
|
|
}
|
|
|
|
|
|
li {
|
|
|
padding-top: 30px;
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
a {
|
|
|
display: block;
|
|
|
}
|
|
|
|
|
|
img {
|
|
|
float: left;
|
|
|
margin-left: 30px;
|
|
|
width: 182px;
|
|
|
height: 114px;
|
|
|
|
|
|
&.square {
|
|
|
height: 182px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.title,
|
|
|
.publish-time {
|
|
|
float: left;
|
|
|
width: 360px;
|
|
|
margin-left: 30px;
|
|
|
line-height: 20PX;
|
|
|
color: #444;
|
|
|
font-size: 14PX;
|
|
|
}
|
|
|
|
|
|
.title {
|
|
|
display: -webkit-box;
|
|
|
-webkit-box-orient: vertical;
|
|
|
-webkit-line-clamp: 2;
|
|
|
word-break: break-all;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
|
.publish-time {
|
|
|
font-size: 12PX;
|
|
|
margin-top: 0;
|
|
|
color: #b0b0b0;
|
|
|
|
|
|
.iconfont {
|
|
|
font-size: 12PX;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.down-bottom {
|
|
|
height: 44PX;
|
|
|
background: #fff;
|
|
|
}
|
|
|
|
|
|
.weixin {
|
|
|
margin: 20px 0;
|
|
|
text-align: center;
|
|
|
padding: 0 20px;
|
|
|
|
|
|
.ems-cnpl {
|
|
|
width: 47.3%;
|
|
|
display: inline-block;
|
|
|
background: #ededed;
|
|
|
position: relative;
|
|
|
overflow: hidden;
|
|
|
|
|
|
.weixin-img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
a:nth-child(1) {
|
|
|
margin-right: 20px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.float-layer-left {
|
|
|
p {
|
|
|
line-height: 22PX;
|
|
|
font-size: 24px;
|
|
|
|
|
|
span {
|
|
|
font-size: 32px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.news-header {
|
|
|
height: 90px;
|
|
|
line-height: 90px;
|
|
|
background-image: linear-gradient(#323232, #414141);
|
|
|
overflow: hidden;
|
|
|
position: relative;
|
|
|
|
|
|
.iconfont {
|
|
|
color: #fff;
|
|
|
}
|
|
|
|
|
|
.nav-btn {
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
top: 0;
|
|
|
bottom: 0;
|
|
|
z-index: 2;
|
|
|
width: 40px;
|
|
|
margin: 0 30px;
|
|
|
text-align: center;
|
|
|
max-height: 90px;
|
|
|
}
|
|
|
|
|
|
.logo {
|
|
|
display: block;
|
|
|
margin: 0 auto;
|
|
|
width: 208px;
|
|
|
height: 87px;
|
|
|
background: resolve("channel/yohologo02.png") no-repeat center center;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.girls .news-header {
|
|
|
background: rgb(255, 136, 174);
|
|
|
}
|
|
|
|
|
|
.kids .news-header {
|
|
|
background: rgb(122, 217, 249);
|
|
|
}
|
|
|
|
|
|
.lifestyle .news-header {
|
|
|
background: rgb(79, 65, 56);
|
|
|
}
|
|
|
|
|
|
.kids .logo {
|
|
|
font-style: italic;
|
|
|
font-family: "helvetica", "Arial", "榛戜綋";
|
|
|
font-weight: bold;
|
|
|
color: #fff;
|
|
|
}
|
|
|
|
|
|
.overlay {
|
|
|
display: none;
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
bottom: 0;
|
|
|
background: #000;
|
|
|
z-index: 3;
|
|
|
transition: opacity 1s;
|
|
|
}
|
|
|
|
|
|
.share-code {
|
|
|
width: 100%;
|
|
|
background: #fff;
|
|
|
|
|
|
.share-word {
|
|
|
margin-top: 10px;
|
|
|
height: 154px;
|
|
|
line-height: 44px;
|
|
|
text-align: center;
|
|
|
color: #b3b3b3;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.recommend-products-box {
|
|
|
height: 264px;
|
|
|
margin: 30px 0;
|
|
|
overflow-x: scroll;
|
|
|
overflow-y: hidden;
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
}
|
|
|
|
|
|
.recommend-products-box > .recommend-products-content {
|
|
|
height: 264px;
|
|
|
overflow-y: hidden;
|
|
|
display: inline-flex;
|
|
|
background-color: #fff;
|
|
|
padding: 30px;
|
|
|
padding-right: 0;
|
|
|
|
|
|
.recommend-goods {
|
|
|
width: 152px;
|
|
|
height: 204px;
|
|
|
margin-right: 30px;
|
|
|
float: left;
|
|
|
position: relative;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
|
.recommend-goods > img {
|
|
|
width: 152px;
|
|
|
height: 204px;
|
|
|
}
|
|
|
|
|
|
.recommend-goods > .recommend-goods-cover {
|
|
|
width: 152px;
|
|
|
height: 30px;
|
|
|
line-height: 18px;
|
|
|
font-size: 18px;
|
|
|
color: #fff;
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
text-align: center;
|
|
|
position: absolute;
|
|
|
bottom: 0;
|
|
|
padding: 6px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
video {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
.related-reco.change-display {
|
|
|
.one-good {
|
|
|
width: 275px;
|
|
|
float: left;
|
|
|
margin-right: 30px;
|
|
|
margin-bottom: 25px;
|
|
|
|
|
|
&:nth-last-child(1) {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
|
|
|
&:nth-last-child(2) {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
|
|
|
.thumb {
|
|
|
width: 275px;
|
|
|
height: 365px;
|
|
|
}
|
|
|
|
|
|
&:nth-child(even) {
|
|
|
margin-right: 0;
|
|
|
}
|
|
|
|
|
|
.content-container {
|
|
|
position: relative;
|
|
|
width: 275px;
|
|
|
margin-left: 0;
|
|
|
height: 130px;
|
|
|
padding: 0 15px;
|
|
|
|
|
|
.price {
|
|
|
height: 50px;
|
|
|
}
|
|
|
|
|
|
.go-detail {
|
|
|
right: 15px;
|
|
|
bottom: 0;
|
|
|
line-height: 50px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.reco-name {
|
|
|
margin-top: 20px;
|
|
|
height: 60px;
|
|
|
white-space: normal;
|
|
|
|
|
|
span {
|
|
|
line-height: 30px;
|
|
|
height: 60px;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
display: -webkit-box;
|
|
|
-webkit-line-clamp: 2;
|
|
|
-webkit-box-orient: vertical;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.content-container > p {
|
|
|
position: absolute;
|
|
|
right: 15px;
|
|
|
bottom: 10px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.related-reco-more {
|
|
|
display: none;
|
|
|
}
|
|
|
|
|
|
.related-reco-hide {
|
|
|
max-height: auto;
|
|
|
overflow: visible;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.news-detail-page.menu-open {
|
|
|
transform: translateX(540px);
|
|
|
} |
...
|
...
|
|