﻿@charset "utf-8";

body {
    /* 填写默认字体 */
    font-family:"","Microsoft Yahei", "PingFang SC", "Helvetica Neue", Helvetica, Arial;
    color: #333333;
    min-height: initial !important;
}

@font-face {
    font-family: 'iconfont';
    src: url('../fonts/iconfont/iconfont.woff2?t=1681287520508') format('woff2'),
         url('../fonts/iconfont/iconfont.woff?t=1681287520508') format('woff'),
         url('../fonts/iconfont/iconfont.ttf?t=1681287520508') format('truetype');
}

/* 谷歌翻译后防止与sticky产生冲突 */
.translated-ltr body,
.translated-rtl body{
    margin-top: 40px !important;
}

/* 防止弹窗插件问题 */
.hc_container{
    overflow: hidden;
    --colortext:#666;
    --colortit:#333;
    --colormain:#003C8A;
    --padd100:100px;
    --margin60:60px;
    --flex-margin:-15px;
    --flex-prdding:15px;

}

.iconfonts {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grahccale;
}
/* slick 懒加载图片去边框 */
.slick-loading{
    opacity: 0;
}

/* h1隐藏 */
.fszero{
    display: none;
    color: #00528dcb;
}

/* 去除input记忆填充底色 */
input:-webkit-autofill {
    box-shadow:0 0 0 1000px white inset !important;
}

input:-internal-autofill-previewed,
    input:-internal-autofill-selected {
    -webkit-text-fill-color: #333 !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* ph去除载入效果 */
@media screen and (max-width: 1200px) {
    .wow {
        animation: none;
    }
}

/* 规范 */
.hc_text16,
.hc_text16 p{
    font-size: 16px;
    line-height: 2;
    color: var(--colortext);
}

.hc_tit40{
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
    color:var(--colortit);
}

.hc_tit36{
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color:var(--colortit);
}


/* 规范-end */

.hd{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 130px;
    z-index: 100;
    background-color: #Fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0,0.09);
}

.hd_flex{
    display: flex;
    justify-content: space-between;
}

.hd_logo{
    display: flex;
    align-items: center;
}

.hd_logo_img{
    width: 163px;
    margin-right: 16px;
}

.hd_logo_img img{
    width: 100%;
}

.hd_logo_text .cn{
    font-size: 18px;
    line-height: 1.3;
    color: var(--colormain);
    font-weight: bold;
    margin-top: 4px;
}

.hd_logo_text .en{
    font-size: 14px;
    line-height: 1.5;
    color: var(--colormain);
    letter-spacing: -0.7px;
}

.hd_rigth{
    display: flex;
}

.hd_link{
    font-size: 16px;
    color: var(--colortit);
    display: block;
    position: relative;
}

.hd_link::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    background-color: #ba0d14;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: all 0.36s;
}

.hd_link,.hd_logo_img,.hc_search{
    line-height: 80px;
}

.hd_list{
    display: flex;
}

.hd_item{
    margin-left: 80px;
    position: relative;
}

.hd_item:first-child{
    margin-left: 0;
}

.hd_item.active .hd_link::before{
    width: 100%;
}

.hd_item.active .hd_link{
    color: #BA0D14;
}

.hd_list{
    margin-right: 90px;
}

.hc_search{
    font-size: 22px;
    cursor: pointer;
}

.hc_search:hover span{
    color: #BA0D14;
}

/* search */
.search_view{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow-y: auto;
    background-color: rgba(0, 0, 0,0.9);
    z-index: 999;
    display: none;
}

.search_view form{
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: searchtit 1.3s ease both; 
}

.search_view_tit{
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

.search_close{
    position: absolute;
    width: 34px;
    transition: all 0.36s;
    z-index: 1;
    right: 200px;
    top: 100px;
    cursor: pointer;
}

.search_close:hover{
    transform: rotate(-90deg);
}

body.search_open{
    overflow: hidden;
}

@keyframes searchtit {
    from{
        transform: translateY(-80px) scale(0.5);
        opacity: 0;
    }
    to{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.search_view_cont{
    position: relative;
    width: 1200px;
}

.search_view_cont input{
    width: 100%;
    height: 50px;
    color: #fff;
    padding-left: 10px;
    padding-right: 40px;
    border-bottom: 1px solid #999;
    transition: all 0.36s;
}

.search_view_cont input:focus{
    border-bottom: 1px solid #fff;
}

.search_view_cont button{
    padding: 4px;
    font-size: 26px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1680px) {
    .search_view_tit {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .search_view_cont button {
        font-size: 24px;
    }

    .search_close {
        width: 28px;
    }
}

@media screen and (max-width: 1440px) {
    .search_view_cont {
        width: 82.5%;
    }

    .search_view_tit {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .search_view_cont button {
        font-size: 22px;
    }

    .search_close {
        right: 140px;
        top: 100px;
        width: 24px;
    }

    .search_view_cont input {
        height: 45px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 991px) {
    .search_close {
        right: 90px;
        top: 100px;
        width: 24px;
    }

    .search_view_tit {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .search_close {
        right: 40px;
        top: 80px;
        width: 20px;
    }

    .search_view_tit {
        font-size: 20px;
    }

    .search_view_cont button {
        font-size: 18px;
    }

    .search_view_cont input {
        height: 40px;
    }
}
/* search-end */

/* 首页banner */
.swiper-container {
    width: 100%;
}

.swiper-slide {
    overflow: hidden;
}
/* 首页banner-end */

.hc_container{
    padding-top: 80px;
}

.banner_dots_box{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 50px;
    z-index: 10;
}

.banner_dots{
    display: flex;
    justify-content: center;
}

.banner_dots_item{
    width: 40px;
    position: relative;
    margin: 0 15px;
    cursor: pointer;
    font-size: 0;
}

.banner_dots_item::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.36s;
    opacity: 0;
}

.banner_dots_item.active::before{
    opacity: 1;
}

.banner_dots_item:hover::before{
    opacity: 1;
}

.banner_dots_item svg{
    width: 100%;
}

.banner_dots_item::after{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.home_banner{
    position: relative;
}

.banner_video{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.banner_video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_cont{
    position: relative;
}

.home_business{
    padding: var(--padd100) 0 calc( var(--padd100) - 32px);
}

.home_tit{
    margin-bottom: var(--margin60);
    text-align: center;
}

.business_list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 var(--flex-margin);
}

.business_item{
    width: 25%;
    padding: 0 var(--flex-prdding);
    margin-bottom: 32px;
}

.business_img{
    padding-top: 60.869565%;
    border-radius: 10px;
}

.business_conts{
    display: block;
}

.business_conts:hover .business_img img{
    transform: scale(1.03);
}

.business_conts:hover .business_tits{
    color: #BA0D14;
}

.business_tits{
    text-align: center;
    transition: all 0.36s;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 12px;
    color: #333;
}

.home_product{
    display: flex;
    background-color: #f7f7f7;
}

.product_left{
    width: calc(100% - 46%);
    padding-left: calc((100% - 1440px) / 2);
    padding-right: 100px;
    padding-top:60px;
    padding-bottom: 60px;
    margin-bottom: 10px;
    align-self: center;
}

.h_product_right{
    width: 46%;
}

.h_product_rlist {
    height: 100%;
}

.h_product_rlist div{
    height: 100%;
}

.home_product_tit{
    margin-bottom: 60px;
}

.home_prolist{
    /* display: flex; */
    margin: 0 -5px 60px;
}

.home_prolist_item{
    padding: 0 5px;
}

.home_prolist_conts{
    width: 130px;
    padding: 12px 12px;
    transition: all 0.36s;
    height: 100%;
    cursor: pointer;
    transition: all 0.36s;
    position: relative;
    z-index: 1;
}

.home_prolist_conts::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(315deg, #B00909 0%, #DC0000 100%);
    transition: all 0.36s;
    opacity: 0;
    border-radius: 10px;
    z-index: -1;
}

.home_prolist_conts:hover::after{
    opacity: 1;
}

.home_prolist_conts:hover .hpc_icon span{
    color: #fff;
}

.home_prolist_conts:hover .hpc_text{
    color: #fff;
}

.home_prolist_item.slick-current .home_prolist_conts::after{
    opacity: 1;
}

.home_prolist_item.slick-current .home_prolist_conts .hpc_icon span{
    color: #fff;
}

.home_prolist_item.slick-current .home_prolist_conts .hpc_text{
    color: #fff;
}

.hpc_icon{
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.hpc_icon span{
    color: #BA0D14;
    transition: all 0.36s;
}

.hpc_text{
    font-size: 15px;
    line-height: 1.3;
    color: #333333;
    text-align: center;
    transition: all 0.36s;
}

.home_proslick_left .img_box{
    padding-top: 112%;
    border-radius: 10px;
}

.home_proslick_right .home_news_more{
    padding-left: 0;
    padding-right: 0;
}

.home_proslick_box{
    width: 638px;
    width: 91.65%;
    position: relative;
}

.home_proslick_box .home_news_arrowbox{
    width: calc(100% + 104px);
}

.home_proslick_big li{
    position: relative;
}

.home_proslick_big .slick-list{
    overflow: initial !important;
}

.home_proslick{
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.home_proslick_conts{
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.home_proslick_left{
    width: 44.64285%;
    flex-shrink: 0;
}

.home_proslick_right{
    padding-left: 30px;
}

.home_proslick_tit{
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    color: #333333;
    margin-bottom: 12px;
}

.home_proslick_text p{
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
}

.home_proslick_text{
    margin-bottom: 55px;
}

.h_product_rconts .img_box{
    padding-top: 91.79775%;
}

.home_prolist_item {
    height: initial;
}

.home_prolist  .slick-track{
    display: flex;
    flex-wrap: wrap;
}
















/* home-about */
.home_about{
    padding-top: var(--padd100);
    padding-bottom: var(--padd100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_about .left{
    margin-left: calc((100% - 1440px) / 2);
    width: 41.1458333%;
}   

.home_about .right{
    margin-right: 48px;
    width: 38.5416666%;
}

.home_about_text p{
    font-size: 15px;
}

.home_about_more{
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50px;
    background-color: #BA0D14;
}

.home_about_more span{
    font-size: 16px;
    transition: all 0.36s;
    color: #fff;
}

.home_about_more svg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    filter: drop-shadow(-60px 0px 0px rgba(255,255,255,1));
    transition: all 0.36s;
    left: -10%;
}

.home_about_more:hover svg{
    left:calc(50% + 10px);
    filter: drop-shadow(-10px 0px 0px rgba(255,255,255,1));
}

.home_about_more:hover span{
    opacity: 0;
}

.home_avideo{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #BA0D14;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
}

.home_avideo{
    margin-left: 30px;
}

.home_avideo svg{
    width: 18px;
}

.home_about_gbtn{
    display: flex;
    align-items: center;
}

.home_avideo:hover svg{
    animation: swimg 0.8s;
}

.ft_form button span{
    display: inline-block;
}

.ft_form button:hover span{
    animation: swimg 0.8s;
}

.home_news_conts:hover .home_news_more svg{
    animation: swimg 0.8s;
}

@keyframes swimg {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.home_about_tit{
    margin-bottom: 20px;
}

.home_about_text{
    margin-bottom: 60px;
}

.home_adata_list{
    display: flex;
    margin-bottom: 130px;
}

.home_adata_item:not(:last-child){
    margin-right: 90px;
}

.home_adata_top{
    display: flex;
    align-items: flex-end;
    margin-bottom: 12px;
}

.home_adata_big{
    color: #BA0D14;
    font-weight: bold;
    font-size: 36px;
    line-height: 1.2;
}

.home_adata_small{
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    color: #BA0D14;
    margin-left: 4px;
}

.home_adata_bot{
    font-size: 15px;
    color: #666666;
}

.home_about_img{
    padding-top: 100%;
    position: relative;
}

.home_about_img::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transition: all 0.36s;
    display: block;
    /* box-shadow: 0 0 20px 370px #fff inset; */
    transform: translate(-50%,-50%) scale(1.1);
}

.home_about_img.active::after{
    animation: rounds 1.5s ease both;
}

@keyframes rounds {
    from{
        box-shadow: 0 0 50px 370px #fff inset;
    }
    to{
        box-shadow: 0 0 0 0px #fff inset;
    }
}

.inivte{
    display: flex;
    justify-content: flex-end;
    padding: 160px 0 62px;
    position: relative;
    z-index: 1;
}

.inivte_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.inivte_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inivte_cont{
    width: 50%;
    padding-right: calc((100% - 1440px) / 2);
}

.inivte_text p,
.inivte_conts_text p{
    font-size: 15px;
}

.about_course_text p{
    padding-left: 14px;
    position: relative;
}

.about_course_text p::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #666666;
    left: 0;
    top: 14px;
}

.inivte_tit{
    margin-bottom: 20px;
}

.inivte_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -10px;
}

.inivte_item{
    width: 45%;
    padding: 0 10px;
    margin-bottom: 50px;
}

.inivte_text{
    min-height: 90px;
    margin-bottom: 70px;
}

.inivte_conts{
    height: 100%;
}

.inivte_conts_titbox{
    margin-bottom: 12px;
    position: relative;
}

.inivte_conts_titbox span{
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 26px;
    color: #BA0D14;
}

.about_advantage .inivte_text {
    margin-bottom: 62px;
}

.about_advantage .inivte_item{
    margin-bottom: 47px;
}

.inivte_conts_text,.inivte_conts_titbox{
    padding-left: 44px;
}   

.inivte_conts_tit{
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.home_news_slick{
    position: relative;
}

.home_news_arrowbox{
    position: absolute;
    width: calc(100% + 146px);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}

.home_news_arrow{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.home_news_prev,
.home_news_next{
    width: 22px;
    cursor: pointer;
    pointer-events: all ;
    transition: all 0.36s;
}

.home_news_prev svg,
.home_news_next svg{
    width: 100%;
}

.home_news_prev.slick-disabled,
.home_news_next.slick-disabled{
    opacity: 0.5;
    pointer-events: none ;
}

.news{
    padding: 82px 0 128px;
    background-color: #eff1f3;
}

.home_news_img{
    padding-top: 73.809523%;
}

.home_news_conts{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    height: 100%;
    padding-bottom: 30px;
}

.home_news_img,
.home_news_conts{
    border-radius: 10px;
}

.home_news_time{
    margin-top: 15px;
    font-size: 16px;
    line-height: 2;
    color: #999;
    margin-bottom: 3px;
}

.home_news_tits{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.75;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.home_news_more{
    display: flex;
    align-items: center;
}

.home_news_more svg{
    width: 42px;
    margin-right: 12px;
}

.home_news_more_text{
    font-size: 16px;
    line-height: 1.4;
    color: #BA0D14;
}

.home_news_time,
.home_news_tits,
.home_news_more{
    padding: 0 30px;
}

.home_news_conts:hover .home_news_img img{
    transform: scale(1.03);
}

.home_news_list{
    margin: 0 var(--flex-margin);
}

.home_news_item{
    padding: 0 var(--flex-prdding);
}

.home_news_tit{
    text-align: center;
    margin-bottom: 60px;
}

.ft_top{
    padding: 80px 0 60px;
    background-color: #003c8a;
}

.ft_flex{
    display: flex;
    justify-content: space-between;
}

.ft_flex .left{
    width: 40.694444%;
    position: relative;
}


.ft_flex .left::after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 258px;
    background: linear-gradient(180deg, #6887D6 0%, rgba(104, 135, 214, 0.00) 100%);
}


.ft_flex .right{
    width: calc(100% - 40.694444%);
}

.ft_name{
    line-height: 1.5;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding-bottom: 41px;
    margin-bottom: 40px;
    position: relative;
}

.ft_name::after{
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}

.ft_tit{
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
}

.ft_text{
    width: 440px;
}

.ft_text p{
    color: #fff;
}

.ft_flex .rigth{
    width: 50.27777%;
}

.ft_right_box{
    margin-left: auto;
}

.ft_right_flex{
    margin: 12px -10px 0; 
    display: flex;
    justify-content: space-between;
}

.ft_right_product,
.ft_right_contact{
    padding: 0 10px;

}

.ft_right_contact{
    width: 353px;
    flex-shrink: 0;
}

.ft_right_product_tit{
    font-size: 20px;
    padding-bottom: 23px;
    position: relative;
    margin-bottom: 16px;
    color: #fff;
}

.ft_right_product_tit::after{
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}

.frpl_link {
    font-size: 16px;
    line-height: 1.75;
    color: #ccd8e8;
    display: inline-block;
    padding: 6px 0;
}

.frpl_link:hover{
    text-decoration: underline;
    color: #fff;
}

.ft_form{
    display: flex;
    margin-bottom: 40px;
}

.ft_form input{
    width: calc(100% - 52px);
    height: 52px;
    background-color: #0F4893;
    padding: 0 16px;
}

.ft_form button{
    height: 52px;
    width: 52px;
    background-color: #BA0D14;
    color: #fff;
    font-size: 20px;
}

.ft_form input::-webkit-input-placeholder {
    /* WebKit browsers，webkit内核浏览器 */
    color: rgba(255, 255, 255,0.6);
}
.ft_form input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255,0.6);
}
.ft_form input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255,0.6);
}
.ft_form input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: rgba(255, 255, 255,0.6);
}


.ft_contact_item{
    display: flex;
}

.ft_contact_item svg{
    width: 18px;
    flex-shrink: 0;
    margin-right: 12px;
}

.ft_contact_text p,
.ft_contact_text a{
    color: #ccd8e8;
    line-height: 2.4;
    font-size: 18px;
} 

.ft_contact_text a:hover{
    color: #fff;
    text-decoration: underline;
}

.ft_bot{
    background-color: #0f4893;
}

.ft_bot_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.ft_bot_flex .left{
    display: flex;
    align-items: center;
}

.ft_bot_flex .left p,
.ft_bot_flex .left a,
.sitemap{
    display: block;
    line-height: 2.6;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
    margin-right: 20px
}

.sitemap{
    text-decoration: underline;
}

.ft_bot_flex .left a:hover{
    color: #fff;
}

.sitemap:hover {
    text-decoration: underline;
    color: #fff;
}

.page_banner{
    position: relative;
}

.page_banner img{
    width: 100%;
}

.page_tit {
    font-weight: bold;
    color: #fff;
    font-size: 44px;
    line-height: 1.25;

}

/* bread */
.bread{
    width: 100%;
    margin-top: 15px;
    margin-bottom: 54px;
}

.mod_bread{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.mod_bread_item{
    color: #999999;
    display: flex;
    align-items: center;
    height: 30px;
}

.mod_bread_link{
    display: flex;
    align-items: center;
    color: #999999;
    font-size: 14px;
}

.mod_bread_item .iconfont {
    font-size: 14px;
}

.mod_bread_item>span{
    margin: 0 6px;
    display: inline-block;
    font-size: 14px;
}

.mod_bread_item:last-child>span{
    display: none;
}

.mod_bread_link:hover{
    color: #BA0D14 !important;
}

.mod_bread_link>span{
    color: #BA0D14 !important;
}

.mod_bread_item>span{
    margin: 0 8px;
}
/* bread-end */

.about_cont{
    padding-bottom: var(--padd100);
}

.about_flex{
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    align-items: flex-start;
}

.about_flex .left{
    width: 61.111111%;
    margin-right: 30px;
}

.about_flex .right{
    padding: 50px 0;
    width: 29.861111%;
    border-radius: 0px 0px 60px 10px;
    background: #FFF;
    box-shadow: 0px 8px 20px 0px rgba(196, 201, 205, 0.16);
}

.about_cont_tit{
    margin-bottom: 30px;
}

.about_edit p{
    margin-bottom: 12px;
}

.about_edit p:last-child{
    margin-bottom: 0;
}

.about_cont .home_adata_list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0 ;
}

.about_cont .home_adata_item{
    margin-right: 0;
    width: 240px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e3e5e5;
    margin-bottom: 39px;
}

.about_cont .home_adata_item:last-child{
    margin-bottom: 0;
}

.about_cont .home_adata_big{
    font-size: 46px;
}

.about_cont .home_adata_bot{
    font-size: 16px;
}

.about_cont .home_adata_top{
    margin-bottom: 8px;
}

/* 匀速运动 */
.about_race .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;    /*之前是ease-out*/
    -moz-transition-timing-function: linear !important;
    -ms-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    margin: 0 auto;
}

.c_fboxswsw_con .img_box{
    padding-top: 61.437908%;
}

.about_race_box {
    margin: 0 -15px;
}

.c_fboxswsw_item{
    padding: 0 15px;
}

.c_fboxswsw_con{
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.c_fboxswsw_con:hover img{
    transform: scale(1.03);
}


.about_course{
    position: relative;
    z-index: 1;
    padding: var(--padd100) 0;
}

.about_course>img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1;
}

.about_course_tit{
    margin-bottom: 60px
}

.about_course_year{
    font-size: 48px;
    font-weight: bold;
    color: #BA0D14;
    margin-bottom: 24px;
}

.about_course_text{
    padding-right: 33.3333%;
}

.about_course_list .slick-list{
    overflow: initial !important;
}

.about_course_list{
    margin-bottom: 100px;
}

.about_course_pro{
    width: 100%;
    position: relative;
    height: 2px;
    background-color: #e7b4b7;
    margin-bottom: 40px;
}

.acp_pro{
    transition: all 0.36s;
    position: absolute;
    width: 20%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #ba0d14;
}

.about_course_arrow{
    display: flex;
}

.about_prev,
.about_next{
    width: 52px;
    height: 52px;
    border: 1px solid #BA0D14;
    border-radius: 50%;
    margin-right: 18px;
    transition: all 0.36s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_prev svg,
.about_next svg {
    width: 16px;
}

.about_prev:hover,
.about_next:hover{
    background-color: #BA0D14;
}


.about_prev:hover path,
.about_next:hover path{
    fill:#fff !important
}

.about_course_arrow>div.slick-disabled{
    opacity: 0.4;
    pointer-events: none;
}

.about_advantage.inivte{
    justify-content: flex-start;
    padding-top: 100px;
    padding-bottom: 87px;
}

.about_advantage .inivte_tit{
    font-size: 36px;
    margin-bottom: 16px;
}

.about_advantage.inivte .inivte_cont {
    padding-right: 0;
    padding-left: calc((100% - 1440px) / 2);
}

.product_flex{
    display: flex;
    margin: 0 var(--flex-margin);
}

.product_flex .left{
    width: 25%;
    padding: 0 var(--flex-prdding);
}

.product_flex .right{
    width: 75%;
    padding: 0 var(--flex-prdding);
}

.product_left_item:not(:last-child){
    margin-bottom:10px ;
}

.product_left_item{
    border-radius: 6px;
    overflow: hidden;
}

.product_left_conts{
    background-color: #003C8A;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.36s;
}

.product_left_conts svg{
    width: 15px;
    transition: all 0.36s;
}

.product_lc_bg{
    position: absolute;
    width: 205px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.product_lc_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_left_conts>a {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.product_left_second{
    padding: 17px 32px;
    background-color: #f5f5f5;
    display: none;
}

.product_ls_item a{
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
}

.product_ls_item:not(:last-child){
    margin-bottom: 15px;
}

.product_ls_item a:hover{
    color: #BA0D14;
}

.product_left_conts:hover{
    background-color: #BA0D14;
}

.product_left_item.active .product_left_conts{
    background-color: #BA0D14;
}

.product_left_item.active svg{
    transform: rotate(-90deg);
}

.product_left_item:first-child ul{
    display: block;
}

.product_right_list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 var(--flex-margin) 20px;
}

.product_right_item {
    width: 33.33333%;
    padding: 0 var(--flex-prdding);
    margin-bottom: 40px;
}

.product_right_item .img_box{
    padding-top: 111.904%;
}

.product_tits{
    font-size: 20px;
    line-height: 1.5;
    padding: 20px 20px 23px;
    transition: all 0.36s;
    color: #333333;
    text-align: center;
}

.product_right_conts{
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    background-color: #f5f5f5;
    display: block;
}

.product_right_conts:hover img{ 
    transform: scale(1.03);
}

.product_right_conts:hover .product_tits{
    color: #BA0D14;
}

.mod_page_item svg{
    width: 8px;
    display: inline-block;
}

.mod_page_item a{
    border-color: transparent;
    color: #000000;
    width: 40px;
    line-height: 38px;
}

.mod_page_item.act a {
    background-color: #BA0D14;
    border-color: #BA0D14;
}

.mod_page_item a:hover {
    background-color: #BA0D14;
    border-color: #BA0D14;
}

.mod_page_item.next a,
.mod_page_item.prev a{
    border-color: transparent !important;
    background-color: transparent;
}   

.mod_page_item svg{
    transform: translateY(1px);
}

.mod_page_item.prev svg{
    transform: translateY(1px) rotate(180deg);
}

.mod_page_item svg path{
    transition: all 0.36s;
}

.mod_page_item:hover path{
    stroke:#BA0D14;
}

.product_cont{
    margin-bottom: var(--padd100);
}

.prodeta_cont .product_flex .right{
    padding-left: 45px;
}   

.prodeta_info_right{
    padding-left: 50px;
    width: calc(100% - 37.356321%);
}

.prodeta_info_left{
    width: 37.356321%;
}

.prodeta_info_img,
.prodeta_info_simg {
    padding-top: 111.904%;
}

.prodeta_info_list{
    border-radius: 10px;
    overflow: hidden;
}

.prodeta_info_tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.prodeta_info_inquri{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.prodeta_info_inquri .text{
    font-size: 16px;
    line-height: 1.75;
    color: #BA0D14;
    text-decoration: underline;
    margin-right: 12px;
}

.prodeta_info_inquri svg{
    width: 16px;
}

.prodeta_info_tit h1{
    font-size: 30px;
    line-height: 1.25;
    font-weight: bold;
}

.prodeta_info{
    display: flex;
}

.prodeta_info_text{
    margin-bottom: 50px;
}

.prodeta_info_sslick{
    position: relative;
    padding: 0 30px;
}

.prodeta_info_play{
    width: 40px;
}

.prodeta_info_play svg{
    width: 100%;
    max-width: 100%;
}

.prodeta_info_slist{
    margin: 0 -4px;
}

.prodeta_info_sitem{
    padding: 0 4px;
}

.prodeta_info_sconts{
    padding: 2px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.36s;
    cursor: pointer;
    position: relative;
}

.prodeta_info_sconts:hover {
    border: 2px solid #BA0D14;
}

.prodeta_info_simg{
    border-radius: 10px;
}

.prodeta_info_sitem.slick-current .prodeta_info_sconts{
    border: 2px solid #BA0D14;
}

.prodeta_info_sarrow{
    pointer-events: none;
    width: 100%;
}

.prodeta_info_sflex{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.prodeta_info_sprev,
.prodeta_info_snext{
    font-size: 20px;
    pointer-events: all;
    cursor: pointer;
}

.prodeta_info_sprev:hover span,
.prodeta_info_snext:hover span{
    color: #BA0D14;
}

.prodeta_info{
    margin-bottom: 80px;
}

.prodeta_argu_edit img,
.prodeta_argu_edit video{
    height: auto !important;
}

.prodeta_argu_edit th,
.prodeta_argu_edit td{
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    text-align: center;
    padding: 10px 20px;
    min-width: 160px;
    width: initial !important;
    border: 2px solid #999999a6;
}

.prodeta_argu_edit table{
    width: initial !important;
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.prodeta_tit{
    margin-bottom: 30px;
} 

.prodeta_argument,
.prodeta_effect,
.prodeta_notice,
.prodeta_inquir{
    margin-bottom: 53px;
}

.prodeta_form{
    margin: 0 -6px;
    display: flex;
    flex-wrap: wrap;
}

.prodeta_form_item{
    width: 50%;
    padding: 0 6px;
    margin-bottom: 20px;
}

.prodeta_form_item:last-child{
    margin-bottom: 0;
}

.prodeta_form_cont{
    position: relative;
    --padd20:20px;
}

.prodeta_form_cont input,
.prodeta_form_cont textarea{
    width: 100%;
    height: 54px;
    border-radius: 6px;
    background-color: #f5f5f5;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 var(--padd20);
}

.prodeta_form_cont textarea{
    height: 280px;
    padding: var(--padd20);
}

.prodeta_form_cont label{
    position: absolute;
    font-size: 16px;
    line-height: 1.5;
    left: var(--padd20);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    transition: all 0.36s;
    pointer-events: none;
}

.prodeta_form_cont.active label{
    top: 0% !important;
}

.prodeta_form_item.block{
    width: 100%;
}

.prodeta_form_item.textarea label{
    top: 32px;
}

.prodeta_form_item button{
    width: 160px;
    height: 48px;
    margin: 0 auto;
    background-color: #BA0D14;
    border-radius: 100px;
    font-size: 16px;
    color: #fff;
    display: block;
}

.prodeta_inquir{
    margin-bottom: 73px;
}

.prodeta_other_list{
    margin: 0 var(--flex-margin);
}

.prodeta_other_list .slick-dots{
    position: static;
    margin-top: 40px;
}

.prodeta_other_list .product_right_item{
    margin-bottom: 0;
}

.prodeta_other{
    margin-bottom: var(--padd100);
}

.case_item{
    margin-bottom: 50px;
}

.case_list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.case_img{
    padding-top: 76.086956%;
}

.case_list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin: 0 var(--flex-margin);
}

.case_item{
    width: 33.333333%;
    padding: 0 var(--flex-prdding);
}

.case_link{
    display: block;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer !important;
    background-color: #f5f5f5;
    padding-bottom: 45px;
}

.case_tits{
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
    margin-top: 21px;
    margin-bottom: 8px;
    transition: all 0.36s;
}

.case_texts,
.case_texts p{
    font-size: 15px;
    line-height: 2;
    color: #666;
    transition: all 0.36s;
}

.case_tits,
.case_texts{
    padding: 0 25px;
}

.case_link:hover .case_tits{
    color: #fff;
}

.case_link:hover .case_texts,
.case_link:hover .case_texts p{
    color: #fff;
}

.case_link:hover{
    background-color: #BA0D14;
}

.case_link:hover .case_img img{
    transform: scale(1.03);
}

.case_cont{
    padding-bottom: var(--padd100);
}

.invite_list{
    --padd-left:40px;
    margin-bottom: 80px;
}

.invite_bd{
    padding: 40px var(--padd-left);
}

.invite_hd{
    padding: 35px var(--padd-left);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 0px 2px 2px 0px;
    box-shadow: 0px 4px 30px 0px rgba(130, 130, 130, 0.10);
}

.invite_hd::before{
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #ba0d14;
    left: 0;
    top: 0;
}

.invite_name{
    width: 170px;
    color: #BA0D14;
    font-weight: bold;
}

.invite_demand_key{
    color: #666;
}

.invite_demand_value{
    color: #BA0D14;
}

.invite_demand_item{
    padding: 0 30px;
}

.invite_demand_key,
.invite_demand_value,
.invite_name{
    font-size: 18px;
    line-height: 1.75;
}

.invite_demand,
.invite_demand_item{
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.invite_icon{
    width: 15px;
    height: 15px;
    position: relative;
    margin-left: 155px;
}

.invite_icon::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #BA0D14;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.36s;
}

.invite_icon::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: #BA0D14;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.36s;
}

.invite_edit p{
    font-size: 16px;
    line-height: 1.75;
    color: #666666;
}

.invite_edit{
    margin-bottom: 50px;
}

.invite_btn{
    width: 153px;
    height: 52px;
    border-radius: 100px;
    background-color: #BA0D14;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.invite_btn:hover>div{
    margin-right: 11px;
}

.invite_btn:hover svg{
    width: 15px;
}
.invite_btn>div{
    margin-right: 0px;
    transition: all 0.36s;
}

.invite_btn svg{
    width: 0px;
    transition: all 0.36s;
}

.invite_item{
    margin-bottom: 40px;
}

.invite_item:last-child{
    margin-bottom: 0;
}

.invite_item.active .invite_icon::after{
    transform: translate(-50%,-50%) rotate(-90deg);
    opacity: 0;
}

.invite_item:first-child .invite_bd{
    display: block;
}

.invite_bd{
    display: none;
}

.invite_conts{
    padding-bottom: var(--padd100);
}


#hidden-contents{
    padding: 0 !important;
    background-color: transparent !important;
    width: 100% !important;
}

#hidden-contents .fancybox-close-small {
    display: block;
    top: 27px;
    right: 261px;
    z-index: 10;
    display: none !important;
}

.fancybox-close-small {
    
}

.invite_pop{
    --padd-pop:50px;
    --padd-val-pop:20px;
    border-radius: 10px;
    overflow: hidden;
}

.invite_pop_hd{
    padding: 30px var(--padd-pop);
    background-color: #BA0D14;
    display: flex;
    align-items: center;
    line-height: 1.75;
    position: relative;
}

.invite_pop_hd,
.invite_pop_hd input {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.invite_pop_hd input{
    width: 60%;
}

.invite_pop_hd svg{
    position: absolute;
    width: 30px;
    transition: all 0.36s;
    top: 50%;
    right: var(--padd-pop);
    transform: translateY(-50%);
    cursor: pointer;
}

.invite_pop_hd svg:hover{
    transform: translateY(-50%) rotate(180deg);
}

.invite_pop_bd{
    padding: 20px var(--padd-pop) 48px;
    background-color: #fff;
}

.invite_pop_item{
    margin: 0 ;
    display: block;
    margin-bottom: 24px;
}

.invite_pop_item:last-child{
    margin-bottom: 0;
}

.invite_pop_key {
    font-size: 16px;
    line-height: 1.75;
    color: #666666;
    margin-bottom: 8px;
}

.invite_pop_val>input{
    height: 60px;
}

.invite_pop_val textarea{
    height: 160px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.invite_pop_val>input,
.invite_pop_val textarea{
    width: 100%;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #666666;
    padding: 0 var(--padd-val-pop);
}   

.invite_pop_val>input::-webkit-input-placeholder {
    /* WebKit browsers，webkit内核浏览器 */
    color: #666666;
}
.invite_pop_val>input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #666666;
}
.invite_pop_val>input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #666666;
}
.invite_pop_val>input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #666666;
}

.sex_item{
    display: inline-flex;
    margin-right: 26px;
    font-size: 14px;
    line-height: 1.75;
    align-items: center;
    margin-bottom: 0;
    margin-top: 5px;
}

.sex_item input{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #999999;
    transition: all 0.36s;
}

.sex_item input:focus{
    background-color: #BA0D14;
    border-color: #BA0D14;
}

.invite_pop_bd .invite_btn {
    width: 120px;
    height: 52px;
    display: flex;
    margin: 51px auto 0;
}

.news_item:not(:last-child){
    margin-bottom: 50px;
}

.news_link{
    display: flex;
    justify-content: space-between;
}

.news_img {
    padding-top: 73.809523%;
    border-radius: 10px;
}

.news_link .left{
    flex-grow: 1;
    margin-right: 100px;
    padding-top: 40px;
    border-top: 1px solid #D2D2D2;
}

.news_link .right{
    width: 382px;
    flex-shrink: 0;
}

.news_time{
    font-size: 18px;
    margin-bottom: 15px;
    color: #999999;
}

.news_tit{
    font-size: 18px;
    line-height: 1.75;
    color: #333;
    font-weight: bold;
    margin-bottom: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.36s;
}

.news_text p{
    line-height: 2;
    color: #999999;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 64px;
}

.news_text{
    margin-bottom: 54px;
}

.news_more{
    display: inline-block;
    font-size: 16px;
    color: #BA0D14;
}

.news_more svg{
    width: 13px;
    transition: all 0.36s;
    margin-left: 13px;
}

.news_link:hover .news_more svg{
    transform: rotate(180deg);
}

.news_link:hover .news_img img{
    transform: scale(1.04);
}

.news_link:hover .news_tit{
    color: #BA0D14;
}

.news_list{
    margin-bottom: 80px;
}

.news_cont{
    padding-bottom: var(--padd100);
}

.prodeta_form_item.names label{
    position: static;
    flex-shrink: 0;
    transform: none;
    margin-bottom: 0;
    color: #fff;
}

.prodeta_form_item.names .prodeta_form_cont{
    background-color: #ba0d14;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 var(--padd20);
}

.prodeta_form_item.names input{
    background-color: transparent;
    color: #fff;
    padding: 0 !important;
}

.contact_cont{
    display: flex;
}

.contact_cont .left{
    width: 44.2708%;
    position: relative;
    z-index: 1;
    padding-left: calc((100% - 1440px) / 2);
    padding-bottom: 50px;
    padding-right: 11%;

}

.contact_cont .left>img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    left: 0;
    top: 0;
}

.contact_cont .right{
    width: 55.729166%;
    padding-right: calc((100% - 1440px) / 2);
    padding-left: 11%;
    padding-top: 100px;
    padding-bottom: 80px;
}

.contact_cont .mod_bread{
    margin-bottom: 55px;
    margin-top: 20px;
}

.contact_tit{
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 54px;
    font-weight: bold;
}

.contact_conts{
    display: flex;
}

.contact_icon{
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
    background-color: #BA0D14;
    font-size: 16px;
    color: #fff;
    margin-top: 5px;
}

.contact_value a,
.contact_value p{
    font-size: 20px;
    color: #666666;
    font-weight: bold;
    line-height: 2;
}

.contact_item:not(:last-child){
    margin-bottom: 24px;
}

.contact_form_tit{
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 32px;
    line-height: 1.3;
}

.contact_cont .prodeta_form_item.textarea {
    margin-bottom: 50px;
}

.map-content{
    height: 500px;
}

.mod_page_item:not(:nth-last-child(2)){
    margin-right: 15px;
}

.contact_cont .prodeta_form_cont textarea {
    height: 120px;
}

.slick-dots li{
    background-color: #ebb7b9;
}

.slick-dots li.slick-active{
    background-color: #ba0d14;
}

/* 搜索页 */
.product_search{
    margin-bottom: 20px;
}

.product_search_tit{
    font-family: Redbold;
    font-size: 22px;
    color: #14151a;
    margin-bottom: 15px;
}

.product_search_text{
    background-color: #f3f5f8;
    padding: 12px 20px;
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1440px) {
    /* 搜索页 */
    .product_search_tit {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .product_search_text {
        padding: 10px 15px;
    }

    .product_search {
        margin-bottom: 15px;
    }
    /* 搜索页-end */
}

/* newdate */
.newdate_info_tit{
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: bold;
}

.newdate_info_date {
    font-size: 16px;
    line-height: 1.5;
}

.newdate_info {
    padding: 40px 0 20px;
    border-bottom: 1px solid #ccc;
}

.news_info{
    margin-bottom: 50px;
}

.news_primary{
    padding-top: 50px !important;
    padding-bottom: 100px !important;
}

.news_info h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: bold;
    color: #222222;
    margin-bottom: 20px;
}

.news_info p {
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 20px;
}

.news_info img {
    height: auto !important;
}

.newdate_main .pdrf_shares {
    margin-top: 50px;
}

.newdate_page {
    margin-top: 40px;
}

.newdate_page a:hover {
    color: #ba0d14;
}

.newdate_prev {
    margin-bottom: 20px;
}

.pdrf_shares_text {
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1.2;
    margin-right: 5px;
}

.pdrf_shares {
    display: flex;
    align-items: center;
}

.newdate_page a {
    color: #666;
    font-size: 16px;
    line-height: 1.4;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@media screen and (max-width: 1680px) {
    .newdate_info_tit {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .newdate_info {
        padding: 35px 0 20px;
    }


    .news_info h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .news_primary {
        padding-top: 40px !important;
        padding-bottom: 80px !important;
    }

    .pdrf_shares_text {
        font-size: 20px;
    }

    .news_info {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1440px) {
    .newdate_info_tit {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .newdate_info {
        padding: 30px 0 15px;
    }

    .news_primary {
        padding-top: 35px !important;
        padding-bottom: 60px !important;
    }

    .newdate_info_date {
        font-size: 14px;
    }

    .news_info h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .news_info p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .news_info {
        margin-bottom: 30px;
    }

    .pdrf_shares_text {
        font-size: 18px;
    }

    .newdate_page {
        margin-top: 30px;
    }

    .newdate_page a {
        font-size: 14px;
        line-height: 1.4;
    }

    .newdate_prev {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1200px) {
    .newdate_info_tit {
        font-size: 22px;
    }

    .newdate_info {
        padding: 20px 0 12px;
    }

    .news_primary {
        padding-top: 30px !important;
        padding-bottom: 50px !important;
    }

    .pdrf_shares_text {
        font-size: 16px;
    }

    .news_info h2 {
        font-size: 18px;
    }
}


@media screen and (max-width: 768px) {
    .newdate_info {
        padding: 0px 0 12px;
    }

    .newdate_info_tit {
        margin-bottom: 13px;
        font-size: 22px;
    }

    .news_primary {
        padding-top: 20px !important;
        padding-bottom: 35px !important;
    }

    .pdrf_shares_text {
        font-size: 14px;
    }
}
/* newdate-end */

.hd_second{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0,0.09);
    padding: 14px 0;
    border-radius: 4px ;
    display: none;
}

.hd_second_link{
    white-space: nowrap;
    font-size: 15px;
    line-height: 1.75;
    transition: all 0.36s;
    color: #333;
    padding: 8px 24px;
    display: block;
}

.hd_second_item.active .hd_second_link{
    color: #BA0D14;
}

.hd_three{
    display: none;
}

.c_pcbtn{
    display: none;
}

.banner_img img{
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}

.banner_img{
    position: relative;
    padding-top: 44.79166666%;
    
}

/* sitemap */
.sitemap_cont{
    padding: 10px 0 20px;
    padding-top: 10px !important;
    padding-bottom: 25px !important;
}

.sitemap_cont_list{
    display: flex;
    margin: 0 -10px;
}

.sitemap_cont_item{
    width: 16.666666%;
    padding: 0 10px;
}

.sitemap_cont_link{
    display: block;
    text-align: center;
    line-height: 50px;
    background-color: 
    #ba0d14;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.sitemap_cont_link:hover{
    text-decoration: underline;
}

.sitemap_second_list{
    margin-top: 15px;
}

.sitemap_second_item{
    margin-bottom: 10px;
}

.sitemap_second_link{
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    transition: all 0.36s;
    display: block;
    color: #222;
    padding: 4px 0;
}

.sitemap_second_link:hover{
    color: #ba0d14;
    text-decoration: underline;
}

@media screen and (max-width: 1680px) {
    .sitemap_cont {
        padding: 60px 0 0px;
    }

    .sitemap_cont_link {
        line-height: 45px;
    }

    .sitemap_second_item {
        margin-bottom: 8px;
    }
}   

@media screen and (max-width: 1440px) {
    .sitemap_cont_item {
        padding: 0 8px;
    }

    .sitemap_cont_list {
        margin: 0 -8px;
    }

    .sitemap_cont_link {
        line-height: 40px;
        font-size: 16px;
    }

    .sitemap_second_link {
        padding: 4px 0;
        line-height: 26px;
        font-size: 15px;
    }
}

@media screen and (max-width: 991px) {
    .sitemap_cont_item {
        padding: 0 5px;
    }

    .sitemap_cont_list {
        margin: 0 -5px;
        flex-wrap: wrap;
    }

    .sitemap_cont_item{
        width: 33.333333%;
        margin-bottom: 20px;
    }

    .sitemap_cont {
        padding: 40px 0 0px;
    }
}

@media screen and (max-width: 768px) {
    .sitemap_cont {
        padding: 30px 0 0px;
    }

    .sitemap_cont_list{
        flex-direction: column;
    }

    .sitemap_cont_item{
        width: 100%;
        margin-bottom: 10px;
    }

    .sitemap_second_list {
        margin-top: 10px;
    }

    .sitemap_cont{
        padding-top: 5px !important;
    }
}
/* sitemap-end */

.mod_online_link span{
    font-size: 15px;
}

.ct_aside1{
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.ct_aside1_list{
    margin-bottom: 15px;
    transition: all 0.36s;
}

.ct_aside1_item{
    margin-bottom: 4px;
    position: relative;
    transition: all 0.36s;
    cursor: pointer;
}

.ct_aside1_item:last-child{
    margin-bottom: 0;
}

.ct_aside1_link{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
    color: #fff;
    transition: all 0.36s;
}

.ct_aside1_link svg{
    width: 16px;
}

.ct_aside1_item:nth-child(1) .ct_aside1_link,
.ct_aside1_item:nth-child(2) .ct_aside1_link{
    font-size: 22px;
}


.ct_aside1_item.active .ct_aside1_link{
    background-color: #031417;
}

.ct_aside1_item:hover .ct_aside1_link{
    background-color: #ba0d14;
}

.ct_aside1_link,
.ct_aside1_switch{
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.ct_aside1_switch{
    background-color: #003c8a;
    position: relative;
    transition: all 0.36s;
    cursor: pointer;
    display: none;
}

.ct_aside1_switch::after,
.ct_aside1_switch::before{
    content: "";
    position: absolute;
    background-color: #fff;
    transition: all 0.36s;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.ct_aside1_switch::after{
    width: 2px;
    height: 15px;
}

.ct_aside1_switch::before{
    height: 2px;
    width: 15px;
}

.ct_aside1_switch.active{
    background-color: #031417;
    transform: rotate(-135deg);
}

.ct_aside1_cont{
    position: absolute;
    right: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .04);
    transition: all 0.36s;
    opacity: 0;
    pointer-events: none;
}

.ct_aside1_item.active .ct_aside1_cont{
        pointer-events: all;
        opacity: 1;
        transform: translateY(-50%) translateX(0px);
    }

.ct_aside1_cont::after{
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 100%;
}

.ct_aside1_cont .qr{
    width: 100px;
    padding: 2px;
    border-radius: 4px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.07);
    background-color: #fff;

}

.ct_aside1_cont .qr img {
    width: 100%;
}

.ct_aside1_cont a{
    display: inline-block;
    padding: 17px 22px;
    background-color: #fff;
    border-radius: 4px;
    color: #333;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.07);
    white-space: nowrap;
}

/* type-animatelist */
.ct_aside1_list.animatelist{
    transform: translateX(100px);
}

.ct_aside1_list.active{
    transform: translateX(0px);
}

/* type-animateitem */
.ct_aside1_list.animateitem .ct_aside1_item{
    transform: translateX(100px);
}

.ct_aside1_list.active .ct_aside1_item{
    transform: translateX(0px) ;
}

/* type-animateitem-rotate */
.ct_aside1_list.animateitem-rotate .ct_aside1_item{
    transform: translateX(80px) rotate(360deg);
}

.ct_aside1_list.active .ct_aside1_item{
    transform: translateX(0px) rotate(0deg);
}

@media screen and (max-width:768px) {
    .ct_aside1_list{
        display: none;
    }

    .ct_aside1{
        top: initial;
        right: 20px;
        bottom: 70px;
        transform: translateY(0);
    }

    .ct_aside1_switch{
        display: block;
    }

}

/* hover */
@media screen and (min-width:1200px) {
    .ct_aside1_switch:hover{
        background-color: #031417;
    }

    .ct_aside1_item:hover .ct_aside1_cont{
        pointer-events: all;
        opacity: 1;
        transform: translateY(-50%) translateX(0px);
    }
}


































/* hover */
@media screen and (min-width:1201px) {
    .hd_link:hover{
        color: #BA0D14;
    }
    
    .hd_link:hover::before{
        width: 100%;
    }

    .hd_second_link:hover{
        color: #BA0D14;
    }


}