@charset "utf-8";

.swiper-container {
    width: 100%;
    height: 100%;
    margin-bottom: 50px;
    margin-top: 30px;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    transform: scale(0.8);
}
.swiper-slide-img-con{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.swiper-slide-img-con img {
    width: 440px;
}
.swiper-slide-active,.swiper-slide-duplicate-active{
    transform: scale(1);
}
.swiper-slide-active{
    z-index: 99;
}
.swiper-slide-prev {
    right: -67px;
    opacity: 0.5;
}
.swiper-slide-next {
    left: -67px;
    opacity: 0.5;
}

.swiper-button-prev {
    width:40px;
    height:40px;
    box-shadow: 0px 2px 8px 0px rgba(153,153,153,0.2);
    border-radius: 20px;
    border: 1px solid #E5E5E5;
    background-size: 27px 44px !important;
    background:url(/images/topic/topic-left-arrow@2x.png) no-repeat center center;
}
.swiper-button-next {
    width:40px;
    height:40px;
    box-shadow: 0px 2px 8px 0px rgba(153,153,153,0.2);
    border-radius: 20px;
    border: 1px solid #E5E5E5;
    background-size: 27px 44px !important;
    background-image:url(/images/topic/topic-right-arrow@2x.png);
}
.swiper-title-con {
    width: 440px;
    background: -webkit-linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    box-sizing: border-box;
    position: absolute;
    bottom: 0;

}
.swiper-title {
    -webkit-line-clamp: 2;
    color: #fff;
    float: left;
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    margin: 20px 15px;
    text-align: left;
}
.swiper-description {
    width: 410px;
    max-height: 90px;
    background: #F7F7F7;
    font-family: Helvetica;
    font-size: 16px;
    color: #666666;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    padding: 20px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    margin-top: -10px;
}
.topic-list  {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}
.topic-list  li{
    width: 373px;
    float: left;
    margin: 30px 10px 0 10px;
    box-sizing: border-box;
    position: relative
}

.topic-list-summary-con {
    height: 100px;
    background: #F7F7F7;
}

.topic-list-summary {
    font-family: Helvetica;
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 15px 20px;
    height: 60px;
}

.topic-list-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.topic-list-img-con {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.topic-list-img-con img {
    display: block;
    transition: transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
}

.topic-list-img-con:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.topic-list-title-con {
    height: 90px;
    width: 100%;
    background: -webkit-linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
}
.topic-list-title {
    bottom: 0;
    position: absolute;
    -webkit-line-clamp: 2;
    color: #fff;
    float: left;
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    margin: 20px 15px;
}
.topic-more {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top:30px;
}
.topic-more-btn {
    width: 150px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #66CC00;
    font-family: Helvetica;
    font-size: 14px;
    color: #66CC00;
    line-height: 20px;
    text-align: center;
    font-style: normal;
    pointer: cursor;
}