body{
    transition: all 0.5s;
    background: #f2f2f2;
}
.container{
    width:1200px;
    margin:0 auto;
    position:relative;
}
.header{
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.header img{
    display: block;
    margin: 0 auto;
    width:100%;
}
.header .icon-search{
    background-image: url(../images/icon-search.png);
    background-repeat: no-repeat;
    background-position:0 0;
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    width:42px;
    height:42px;
    transition: all 0.3s;
}
.header .icon-search:hover{
    background-position:0 -48px;
}
.footer{
    background: url('../images/footer.jpg') center 0 no-repeat;
    background-size: cover;
    padding: 35px 0;
}

.footer .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   
}
.footer .info{
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
    margin-right: 20px;
}
.footer .info a{
    color: #fff;
}
.footer .info  p{
    display: flex;
    justify-content: flex-start;
}
.footer .info  p i{
    display: inline-block;
    width: 85px;
}
.footer .info span{
    display: inline-block;
    width:calc(100% - 85px);
}
.footer-mid{
    min-width: 130px;
    height: 58px;
    background: #ebebeb;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 2px 20px;
    margin: 10px 20px;
    text-align: center;
}
.footer-mid span{
    display: inline-block;
    width: 19px;
    height: 27px;
    line-height: 27px;
    font-size: 16px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-align: center;
    background: url(../images/icon-numberbg.png) center center no-repeat;
}
.footer-mid p{
    font-size: 14px;
    color: rgb(76, 73, 72);
    margin-bottom: 5px;
    text-align: center;
}
.footer-right{
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    min-width: 250px;
}

.footer-right li{
    width: 100px;
    font-size: 17px;
    color: #fff;
    text-align: center;
}
.footer-right li img{
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 0 10px 0;
}
@media screen and (max-width: 1200px) {
    .footer .container {
        padding: 0 20px;
    }
}
@media screen and (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer .info {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-right {
        justify-content: center;
        margin-top: 20px;
    }
}
.footer-right li{
    width:100px;
    float: left;
    font-size:17px;
    color:#fff;
    text-align: center;
    margin:0 0 0 0;
}
.footer-right li img{
    display: block;
    width:100px;
    height:100px;
    margin:0 50px 10px 0;
}
.nav{
    width: 100%;
    margin: -26px auto 0;
    position: relative;
    z-index: 10;
}

.nav .container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 52px;
    line-height: 52px;
    background: -webkit-linear-gradient(#f8890e, #f4502a);
    background: -o-linear-gradient(#f8890e, #f4502a);
    background: -moz-linear-gradient(#f8890e, #f4502a);
    background: linear-gradient(#f8890e, #f4502a);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.nav .slide-bg {
    position: absolute;
    width: 200px;
    height: 100%;
    background: url('../images/nav-cur.png') no-repeat center center;
    background-size: 100% 100%;
    transition: transform 0.3s ease-in-out;
    left: 0;
    top: 0;
    pointer-events: none;
}

.nav a {
    display: block;
    color: #fff;
    text-align: center;
    width: 200px;
    position: relative;
    z-index: 1;
    font-size: 19px;
}

@media screen and (max-width: 1200px) {
    .nav .container {
        width: 95%;
    }
    .nav a {
        width: 16.66%;
    }
    .nav .slide-bg {
        width: 16.66%;
    }
}


.btn-more{
    margin-bottom: 20px;
    display: block;
    border-radius: 10px;
    font-size: 15px;
    line-height: 26px;
    height: 26px;
    width:78px;
    text-align: center;
    color: #fff;
    background: -webkit-linear-gradient(#f88e0b, #f44e2b);
    background: -o-linear-gradient(#f88e0b, #f44e2b);
    background: -moz-linear-gradient(#f88e0b, #f44e2b);
    background: linear-gradient(#f88e0b, #f44e2b);
}
.btn-more:hover{
    color: #fff;
    background: -webkit-linear-gradient(#05b8e9, #1f3d9a);
    background: -o-linear-gradient(#05b8e9, #1f3d9a);
    background: -moz-linear-gradient(#05b8e9, #1f3d9a);
    background: linear-gradient(#05b8e9, #1f3d9a);
}
.active{
    background: #f2f2f2;
    padding-top: 30px;
}
.active-box{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 90px;
    transition: opacity 0.5s ease;
    opacity: 1;
}
.active-item{
    width: 275px;
    display: block;
    background: #fff;
    border-radius:10px;
    transition: background .2s;
    position: relative;
    box-shadow:  0 0  10px 0 rgba(0,0,0,0.2);
}
.active-item .tag{
    position: absolute;
    top: 11px;
    right: 0;
    display: block;
    color: #fff;
    padding:2px 10px;
    border-radius:10px 0 0 10px;
}
.temp1 .active-item .tag{
    background: rgba(245,95,35,0.85);
}
.temp2 .active-item .tag{
    background: rgba(37,154,225,0.85);
}
.temp3 .active-item .tag{
    background: rgba(91,41,162,0.85);
}
.active-item img{
    width: 100%;
    height: 173px;
    object-fit: fill;
    border-radius: 10px 10px 0 0 ;
}
.active-item .content{
    padding: 10px;
}
.active-item .content h2{
    font-size: 19px;
    color:#333;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 56px;
    max-height:56px;
    transition: max-height .5s;

}
.active-item .content .intro{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height:70px;
    transition: max-height .5s;
    line-height: 22px;
    text-indent: 2em;
}
.active-item .content{
    font-size: 14px;
    color:#666;
}
.active-item .content .school{
    background: url("../images/icon-school.png") 0 11px no-repeat;
    padding-left: 25px;
    padding-bottom:10px;
    padding-top:10px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    max-height:40px;
    line-height: 24px;
}
.active-item .content .school span{
    color:#333;
}
.active-item .content .icon-eye,
.active-item .content .icon-thumb,
.active-item .content .icon-share{
    background-image: url("../images/icon-eye.png");
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 18px 18px;
    padding-left: 25px;
    line-height: 28px;
}
.active-item .content .icon-thumb{
    background-image: url("../images/icon-thumb.png");
}
.active-item .content .icon-share{
    background-image: url("../images/icon-share.png");
}
.temp1 .active-item:hover{
    background: -webkit-linear-gradient(#f77517, #f44f2b);
    background: -o-linear-gradient(#f77517, #f44f2b);
    background: -moz-linear-gradient(#f77517, #f44f2b);
    background: linear-gradient(#f77517, #f44f2b);
}
.temp2 .active-item:hover{
    background: -webkit-linear-gradient(#34a4e9, #0480cf);
    background: -o-linear-gradient(#34a4e9, #0480cf);
    background: -moz-linear-gradient(#34a4e9, #0480cf);
    background: linear-gradient(#34a4e9, #0480cf);
}
.temp3 .active-item:hover{
    background: -webkit-linear-gradient(#8c58d7, #5f2ea7);
    background: -o-linear-gradient(#8c58d7, #5f2ea7);
    background: -moz-linear-gradient(#8c58d7, #5f2ea7);
    background: linear-gradient(#8c58d7, #5f2ea7);
}
.active-item:hover .content h2,
.active-item:hover .content,
.active-item:hover .content .school span{
    color: #fff;
}
.active-item:hover .content .school{
    background-image: url("../images/icon-school-cur.png");
}
.active-item:hover .content .icon-eye{
    background-image: url("../images/icon-eye-cur.png");
}
.active-item:hover .content .icon-thumb{
    background-image: url("../images/icon-thumb-cur.png");
}
.active-item:hover .content .icon-share{
    background-image: url("../images/icon-share-cur.png");
}

.active-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}
.active-title a{
    border-radius: 4px;
    display: block;
    padding: 5px;
    border:5px solid transparent;
    transition: border .6s;
}
.active-title img{
    display: block;
    width:100%
}
.active-title .title-1.cur,
.active-title .title-1:hover{
    border-color:  #ff6950;
}
.active-title .title-2.cur,
.active-title .title-2:hover{
    border-color:  #34a4e9;
}
.active-title .title-3.cur,
.active-title .title-3:hover{
    border-color:  #8c58d7;
}
.active-temp{
    margin-bottom: 35px;
}
.active-temp a{
    display: inline-block;
    font-size: 18px;
    color: #333;
    line-height: 33px;
    height: 33px;
    border-radius: 4px;
    padding:2px 8px;
    box-sizing: border-box;
}
.active-temp  i{
    background-repeat: no-repeat;
    background-position: 0 0;
    display: inline-block;
    width:25px;
    height:33px;
    vertical-align: middle;
    margin-right:5px;
}
.icon-new{
    background-image: url("../images/icon-new-default.png");
}
.icon-hot{
    background-image: url("../images/icon-hot-dafault.png");
}
.active-temp a.cur, .active-temp a:hover{
    color: #fff;
    font-weight: bold;
    background: -webkit-linear-gradient(#f88f0a, #f45428);
    background: -o-linear-gradient(#f88f0a, #f45428);
    background: -moz-linear-gradient(#f88f0a, #f45428);
    background: linear-gradient(#f88f0a, #f45428);
    position: relative;
}
.active-temp a.cur:before{
    position: absolute;
    content: "";
    bottom: -10px;
    left: 25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f45428;

}
.active-temp a.cur .icon-new,
.active-temp a:hover .icon-new{
    background-image: url("../images/icon-new.png");
}
.active-temp a.cur .icon-hot,
.active-temp a:hover .icon-hot{
    background-image: url("../images/icon-hot.png");
}

.banner {
    padding: 46px 0 20px;
    background: #fff;
    margin-top: -26px;

}
.banner .container {
    display: flex;
    gap: 10px;
}
.gallery-top {
    width: 62%;
    height: 490px;
    border-radius: 4px;
}
.gallery-top .swiper-slide {
    position: relative;
}
.gallery-top img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.banner-text {
    width: 100%;
    padding: 5px 20px;
    color: #fff;
    background: -webkit-linear-gradient(#f88f0a, #f45428);
    background: -o-linear-gradient(#f88f0a, #f45428);
    background: -moz-linear-gradient(#f88f0a, #f45428);
    background: linear-gradient(#f88f0a, #f45428);
    height:110px;
}
.banner-text h2 {
    font-size: 22px;
    margin-top: 8px;
    font-weight: bold;
    line-height: 32px;
    height: 32px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.banner-text .info{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.banner-text .dataTime{
    display: block;
    text-align: left;
    width: 80px;
}
.banner-text .dataTime .year{
    font-size: 22px;
    font-weight: bold;
}
.banner-text .dataTime .time{
    font-size: 20px;
    font-weight: normal;
}
.banner-text p {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: calc(100% - 80px);
}
.gallery-thumbs {
    width: 38%;
    height: 490px;
}
.gallery-thumbs .swiper-slide {
    height: 32%;
    opacity: 1;
    cursor: pointer;
    border-radius: 4px;
    background: -webkit-linear-gradient(#34a4e9, #0480cf);
    background: -o-linear-gradient(#34a4e9, #0480cf);
    background: -moz-linear-gradient(#34a4e9, #0480cf);
    background: linear-gradient(#34a4e9, #0480cf);
}
.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.gallery-thumbs .swiper-slide-thumb-active {
    background: -webkit-linear-gradient(#f88f0a, #f45428);
    background: -o-linear-gradient(#f88f0a, #f45428);
    background: -moz-linear-gradient(#f88f0a, #f45428);
    background: linear-gradient(#f88f0a, #f45428);
}
.gallery-detail{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 10px;
}
.gallery-detail .dataTime{
    width:100px;
    height: 96px;
    display: block;
    text-align: center;
    color: #f44c2c;
    background: url("../images/data-cur.png") 0 0 no-repeat;
    box-sizing: border-box;
    padding: 15px;
    margin-right: 10px;
}
.gallery-detail .dataTime .year{
    font-size: 27px;
    font-weight: bold;
    display: block;
}
.gallery-detail .dataTime .time{
    font-size: 22px;
    font-weight: normal;

}
.gallery-info{
    width:calc(100% - 100px);
}
.gallery-info h2{
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 10px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.gallery-info p{
    font-size: 14px;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.search-box{
    margin: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;

}
.search-box .input-search{
    width:665px;
    height: 90px;
    font-size: 24px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;

}
.search-box .btn-search{
    width:205px;
    height: 90px;
    line-height: 90px;
    background: #f45627;
    display: block;
    color: #fff;
    font-size: 28px;
    border-radius: 10px;
    margin-left: -10px;
}

.search-result{
    background: #fff;
    padding: 20px 0;
    overflow: hidden;
}

.search-result-item {
    padding:0 10px;
    margin: 0 10px 20px;
    overflow: hidden;
}

.search-result-item .swiper-slide {
    width: auto;
    padding: 0 15px;
    cursor: pointer;
    height: 36px;
    line-height: 36px;
    border-radius: 20px;
    font-size: 24px;
}
.search-result-item .swiper-slide.selected {
    color: #fff;
    background: #f45627;
    position: relative;

}
.search-result-item .swiper-slide.selected:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #f4502a;
}

.search-result-item .next1:after, .search-result-item .prev1:after{
    font-size: 16px;
    color: #f45627;
}
.search-result-item .prev1{
    left:-5px;
}
.search-result-item .next1{
    right: -5px;
}



.main .active-box{
    gap:26px;
}
.search-none img{
    display: block;
    margin: 0 auto;
}

.news-main-box{
    padding-bottom: 10px;
}
.news-main-box .news-main-item{
    width: 100%;
    height: 180px;
    background: #fff;
    box-sizing: border-box;
    padding: 14px 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.news-main-img{
    width: 220px;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: 0 0 ;
}
.news-main-box .news-main-item img{
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    object-fit: cover;
    object-position: 0 0 ;
}
.news-main-item .news-time{
    border: solid 1px #dadada;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80px;
    height: 66px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s;
}
.news-main-item .news-time span{
    font-size: 22px;
    font-weight: bold;
    color: #333;
}
.news-main-item .news-time i{
    font-size: 14px;
    color: #999;
}
.news-main-item .news-main-con{
    width: 810px;
}
.news-main-item .news-main-con h2{
    font-size: 20px;
    color: #333;
    line-height: 32px;
    margin-bottom: 10px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-main-item .news-main-con p{
    font-size: 16px;
    color: #666;
    line-height: 26px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.news-main-item:hover img{
    transform: scale(1.1);
}
.news-main-item:hover .news-time{
    background: #f4502a;
}
.news-main-item:hover .news-time span,
.news-main-item:hover .news-time i{
    color: #fff;
}
.news-main-item:hover .news-main-con h2,
.news-main-item:hover .news-main-con p{
    color: #f4502a;
}

.main{
    background: #fff;
    margin-top:20px;
    border-radius: 10px 10px 0 0 ;
    padding: 20px 10px;
    position: relative;
}
.bread{
    color: #666;
    font-size: 16px;
    padding-top: 20px;
}
.bread span{
    color: #f4502a;
}
.flex-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.article-detail{
    padding: 0 10px 20px;
}
.title-box{
    border-bottom: 1px solid #ddd;
    padding-top: 20px;
}

.title-box h3{
    display: block;
    text-align: center;
    font-size: 28px;
    font-weight: normal;
    line-height: 1.5em;
    padding: 0 40px;
    margin-bottom:20px;
}

.title-box .title-addon{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:10px;
}
.title-box .title-addon .lef{
    text-align: center;
}
.title-box .title-addon .lef span{
    color: #999999;
    font-size: 13px;
    display: inline-block;
    line-height: 26px;
}
.title-box .title-addon .lef span i{
    color: #333333;
}
.title-box .title-addon .rig a.fa{
    display: inline-block;
    width: 22px;
    color: #999;
    font-size: 15px;
    text-align: center;
}
.title-box .title-addon .rig a.fa:hover{
    color: #006bbb;
}
.article-detail-in{
    padding: 20px 0;
}
.article-detail-in p{
    font-size: 16px;
    text-align: justify;
    margin-bottom: 10px;
    line-height: 1.8em;
    color: #333333;
    text-indent: 2em;
}
.article-detail-in p img, .article-detail-in p video{
    text-indent: -2em;
    display: block;
    margin: 0 auto;
}
.article-detail-addon{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.article-detail-addon .key{
    font-weight: bold;
    font-size: 15px;
}
.article-detail-addon .val{
    display: inline-block;
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    margin-right: 5px;
}
.share-box{
    margin-top:10px;
    margin-bottom:10px;
}
.share-box .share-add{
    display: inline-flex;
    flex-wrap: wrap;
}
.share-box .share-add li{
    overflow: hidden;
    height: auto;
    margin:5px 0
}

.share-add a{
    color: #41a1e2;
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    min-width: 68px;
    padding:0 5px;
    border: solid 1px #41a1e2;
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    margin-right: 10px;
}
.share-add i{
    background: url('../images/article-eye.png') 0 -2px no-repeat;
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.share-add .article-fun{
    color: #e63030;
    border: solid 1px #e63030;
}
.share-add .article-thumb{
    color: #fd7f19;
    border: solid 1px #fd7f19;
}
.share-add .article-chat{
    color: #51b342;
    border: solid 1px #51b342;
}
.share-add .article-share{
    color: #0f6fc3;
    border: solid 1px #0f6fc3;
}
.article-fun i{
    background: url('../images/article-fun.png') 0 -2px no-repeat;
    background-size:100% 100%;
}
.article-thumb i{
    background: url('../images/article-thumb.png') 0 -2px no-repeat;
    background-size:100% 100%;
}
.article-chat i{
    background: url('../images/article-chat.png') 0 1px no-repeat;
    background-size:100% 100%;
}
.article-share i{
    background: url('../images/article-share.png') 0 -2px no-repeat;
    background-size:100% 100%;
}

.share-add .article-eye:hover{
    background: #41a1e2;
    color: #fff;
}
.share-add .article-fun:hover{
    background: #e63030;
    color: #fff;
}
.share-add .article-thumb:hover{
    background: #fd7f19;
    color: #fff;
}
.share-add .article-chat:hover{
    background: #51b342;
    color: #fff;
}
.share-add .article-share:hover{
    background: #0f6fc3;
    color: #fff;
}
.article-eye:hover i{
    background: url('../images/article-eyeh.png') 0 -2px no-repeat;
}
.article-fun:hover i{
    background: url('../images/article-funh.png') 0 -2px no-repeat;
}
.article-thumb:hover i{
    background: url('../images/article-thumbh.png') 0 -2px no-repeat;
}
.article-chat:hover i{
    background: url('../images/article-chath.png') 0 1px no-repeat;
}
.article-share:hover i{
    background: url('../images/article-shareh.png') 0 -2px no-repeat;
}
.title-file{
    color:#f44c2c;
    font-size: 28px;
    margin:10px 0;
    font-weight: bold;
}
.icon-file2{
    background: url('../images/icon-file2.png') 0 -1px no-repeat;
    background-size: 100% 100%;
    width: 38px;
    height:38px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
}
.name-download{
    border: solid 2px #f45627;
    border-radius: 10px;
    height: 138px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin:20px;
}
.name-download h3{
    font-size: 34px;
    color:#f44c2c;
    font-weight: bold;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}
.name-download  .icon-02{
    background: url('../images/icon-02.png') 0 -2px no-repeat;
    width:42px;
    height:42px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;

}
.name-download a{
    color: #fff;
    background: #f44c2c;
    border-radius:8px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 0 5px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.name-download .icon-03{
    background: url('../images/icon-03.png') 0 -2px no-repeat;
    width:22px;
    height:21px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.name-download a:hover{
    transform: scale(1.1);
}
.swiper2{
    width: 100%;
    overflow: hidden;
}
.title-swiper{
    margin-bottom:30px;
    width:calc(100% - 140px);
}
.title-swiper .swiper-slide{
    width: auto;
    display: inline-block;
    border-radius: 10px;
    padding: 5px 15px;
    position: relative;
    background: #fff;
    color: #f44c2c;;
    border: solid 1px #f44c2c;
    cursor: pointer;
}
.title-swiper.temp2 .swiper-slide{
    color: #34a4e9;
    border: solid 1px #34a4e9;
}
.title-swiper.temp3 .swiper-slide{
    color: #8c58d7;
    border: solid 1px #8c58d7;
}
.title-swiper .swiper-slide.selected{
    color: #fff;
    background: #f44c2c;
}
.title-swiper.temp2 .swiper-slide.selected{
    background: #34a4e9;
}
.title-swiper.temp3 .swiper-slide.selected{
    background: #8c58d7;
}

.title-swiper .swiper-slide.selected:before{
    content: '';
    position: absolute;
    bottom: -9px;
    left: 45%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f44c2c;
}
.title-swiper.temp2 .swiper-slide.selected:before{
    border-top: 10px solid #34a4e9;
}
.title-swiper.temp3 .swiper-slide.selected:before{
    border-top: 10px solid #8c58d7;
}
.select-city{
    position: absolute;
    top: 16px;
    right: 10px;
}
.select-city select{
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    padding:0 5px;
    border-radius: 5px;
}
.select-city.temp1 select{
    border: 2px solid #f44c2c;
    color: #f44c2c;
}
.select-city.temp2 select{
    border: 2px solid #34a4e9;
    color: #34a4e9;
}
.select-city.temp3 select{
    border: 2px solid #8c58d7;
    color: #8c58d7;
}
.video{
    background: url('../images/video-bg.jpg') center 0 no-repeat;
    height: 860px;
    margin-top: -26px;
    padding-top: 110px;
}
.video video{
    display: block;
    margin: 0 auto ;
    height:600px;
    width: 920px;
}
.video-intro{
    padding: 10px 30px 20px;
    position: relative;
}
.video-intro .tag{
    position: absolute;
    left: 0;
    top: 20px;
    background:#f44c2c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0 20px 20px 0;
}
.video-intro .tag.temp1{
    background:#f44c2c;
}
.video-intro .tag.temp2{
    background:#34a4e9;
}
.video-intro .tag.temp3{
    background:#8c58d7;
}

.video-intro h4{
    color: #333;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 10px;
    padding-top: 30px;

}
.video-intro .icon-file{
    background: url('../images/icon-file.png') 0 center no-repeat;
    padding-left: 20px;
    font-size: 18px;
    margin-bottom: 10px;
}
.video-intro .intro{
    color: #999;
    font-size: 14px;
    line-height: 24px;
    padding:10px;
    border: 1px solid #ddd;
    text-indent: 2em;
    text-align: justify;
}
.video-temp{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-top: 10px;
}
.video-temp span{
    display: block;
    color: #999;
    font-size: 14px;
    line-height: 32px;
}
.video-temp div:nth-child(1){
    margin-right: 90px;
}
.video-temp span i{
    color: #333;
    background: url("../images/icons-01.png") 0 0 no-repeat;
    padding-left: 25px;
    display: inline-block;
    height: 25px;
}
.video-temp span .icons-01-1{
    background-position: 0 9px;
}
.video-temp span .icons-01-2{
    background-position:0 -31px ;
}
.video-temp span .icons-01-3{
    background-position: 0 -75px;
}
.video-temp span .icons-01-4{
    background-position: 0 -116px;
}
.video-temp span .icons-01-5{
    background-position: 0 -157px;
}
.video-temp span .icons-01-6{
    background-position: 0 -193px;
}
.video-bar{
    background:#000;
    display: flex;
    justify-content: flex-end;
    height: 40px;
    line-height: 40px;
    padding:0 10px;
    width: 100%;
    max-width:920px;
    margin: 0 auto;
}
.video-bar span{
    display: inline-block;
    color: #fff;
    margin-left: 10px;
}
.video-bar .icon-video-eye{
    background: url('../images/icon-video-eye.png') 0 center no-repeat;
    padding-left: 30px;
}
.video-bar .icon-video-thumb{
    background: url('../images/icon-video-thumb.png') 0 center no-repeat;
    padding-left: 30px;
}
.video-bar .icon-video-share{
    background: url('../images/icon-video-share.png') 0 center no-repeat;
    padding-left: 30px;
}

.search-result-title{
    padding: 0 10px;
    position: relative;
}








