.header *{
    font-size: 0.18rem;
}
.header{
    width: 100%;
    background: #000;
    /*border-bottom: 0.01rem solid rgba(255,255,255,0.3);*/
    position: fixed;
    top: 0;
    z-index: 99;
}
.header .main{
    height: 0.8rem;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}
/*.header .main:before,*/
/*.header .main::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: calc(100% - 2.2rem);*/
/*    width: 200%;*/
/*    height: 100%;*/
/*    background: #fff;*/
/*    z-index: 0;*/
/*}*/
/*.header .main::after{*/
/*    left: calc(100% - 1.7rem);*/
/*    background: #D30001;*/
/*}*/
.header .head_logo{
    width: auto;
    height: 0.56rem;
    position: relative;
}
.header .head_logo img{
    width: auto;
    height: 100%;
    object-fit: contain;
}
.header .head_email{
    /* position: absolute; */
    /* right: -1.06rem; */
    display: flex;
    align-items: center;
    column-gap: 0.07rem;
    font-family: "Montserrat-Light";
    font-weight: 300;
    font-size: 0.23rem;
    color: #FFFFFF;
    z-index: 1;
    margin-left: 0.8rem;
    position: relative;
}
.header .head_email::after{
    content: '';
    position: absolute;
    left: -0.4rem;
    width: 0.01rem;
    height: 0.15rem;
    background: rgba(255, 255, 255, 0.5);
}
.header .head_email i{
    width: 0.19rem;
    height: 0.15rem;
    background: url(../img/head_email.png) center no-repeat;
    background-size: contain;
}




.header .head_txt{
    /* margin-left: 1.42rem; */
    display: flex;
    align-items: center;
    /* column-gap: 0.17rem; */
}
.header .head_txt .head_nav{
    display: flex;
    column-gap: 0.17rem;
}
.header .head_txt .head_nav .nav_item{
    width: auto;
    height: 0.8rem;
    display: flex;
    align-items: center;
    position: relative;
}
.header .head_txt .head_nav .nav_item>a{
    padding: 0.04rem 0.17rem;
    border-radius: 0.17rem;
    font-family: "Montserrat-Regular";
    font-weight: 400;
    font-size: 0.23rem;
    color: #FFFFFF;
}
.header .head_txt .head_nav .nav_item.act>a,
.header .head_txt .head_nav .nav_item.active>a,
.header .head_txt .head_nav .nav_item .nav_ul.act>a{
    background: #D30001;
    color: #fff;
}
.header .head_txt .head_nav .nav_item .nav_sub,
.head_language .language_list{
    position: absolute;
    top: 0.68rem;
    left: -0.03rem;
    background: #E6E6E6;
    border-radius: 0.05rem;
    padding: 0.05rem 0.05rem 0.08rem 0.05rem;
    box-sizing: border-box;
    display: none;
}
.header .head_txt .head_nav .nav_item .nav_ul{
    position: relative;
    width: 100%;
}
.header .head_txt .head_nav .nav_item .nav_ul>a,
.header .head_txt .head_nav .nav_item .nav_ul .nav_li>a,
.head_language .language_list>a{
    margin-bottom: 0.03rem;
    width: 100%;
    white-space: nowrap;
    padding: 0.05rem 0.1rem 0.05rem 0.04rem;
    box-sizing: border-box;
    font-family: "Montserrat-Light";
    font-weight: 300;
    font-size: 0.16rem;
    color: #000000;
    border-radius: 0.03rem;
}
.header .head_txt .head_nav .nav_item .nav_ul .nav_li{
    position: absolute;
    top: -0.05rem;
    left: calc(100% - 0.01rem);
    background: #E6E6E6;
    border-radius: 0 0.05rem 0.05rem;
    padding: 0.05rem 0.05rem 0.08rem 0.05rem;
    box-sizing: border-box;
    /* display: none; */
}
.header .head_txt .head_nav .nav_item .nav_ul>a:hover,
.header .head_txt .head_nav .nav_item .nav_ul .nav_li>a:hover,
.head_language .language_list>a:hover{
    background: #D30001;
    color: #fff;
}




.head_language{
    width: auto;
    height: 0.8rem;
    display: flex;
    align-items: center;
    margin-left: 0.49rem;
    position: relative;
    cursor: pointer;
}
.head_language::before{
    content: '';
    position: absolute;
    left: -0.24rem;
    width: 0.01rem;
    height: 0.15rem;
    background: rgba(255,255,255,0.5);
}
.head_language .language_name{
    width: 1.55rem;
    height: 0.33rem;
    border-radius: 0.17rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.03rem;
    font-family: "Montserrat-Regular";
    font-weight: 400;
    font-size: 0.2rem;
    color: #FFFFFF;
    position: relative;
}
.head_language.active .language_name{
    background: #D30001;
    color: #fff;
}
.head_language .language_name i{
    width: 0.25rem;
    height: 0.25rem;
    background: url(../img/language.png) center no-repeat;
    background-size: contain;
}
.head_language .language_list{
    width: 100%;
}







.header_m{
    display: none;
}

/* 手机版 */
@media screen and (max-width: 1043px) {
    .header{display: none;}
    body{padding-top: 73px;}

    .header_m{display: block!important;position: fixed;top: 0;left: 0;width: 100%;background-color: #fff;z-index: 998;border-bottom:1px solid rgba(0,0,0,0.3);}
    .header_m .con{display: flex;align-items: center;justify-content:space-between;padding: 16px 20px;}
    .header_m .con .logo{display: block;width: auto;height: 40px;display: flex;align-items: center;justify-content: center;}
    .header_m .con .rig{display: flex;align-items: center;}
    .header_m .con .rig .ser_m{width: auto;height: auto;display: flex;column-gap: 8px;font-size: 18px;margin-left: 18px;}
    .header_m .con .rig .ser_m img{width: 20px;height: 20px;object-fit: contain;}

    .navbar-default{position: static!important;height:auto!important;}
    .navbar-toggle {position: relative!important;float: right;padding:0;margin-left:16px; background-color: transparent;background-image: none;border:0;border-radius: 0}
    .navbar-toggle:focus { outline: 0 }
    .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px }
    .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px }
    .navbar-default .navbar-toggle .icon-bar { background-color: #606060 }
    .navbar-toggle .icon-bar { position: relative }
    .navbar-toggle .icon-bar + .icon-bar { margin-top: 6px }
    .navbar-toggle .icon-bar:nth-child(2) { -moz-transition: background .3s ease 0s; -o-transition: background .3s ease 0s; -webkit-transition: background .3s ease; -webkit-transition-delay: 0s; transition: background .3s ease 0s; background: transparent }
    .transform-fallback-fix .navbar-toggle .icon-bar:nth-child(2) { background: #606060 }
    .navbar-toggle .icon-bar:nth-child(1), .navbar-toggle .icon-bar:nth-child(3) { -moz-transition: top .3s ease, -moz-transform .3s ease .4s; -o-transition: top .3s ease, -o-transform .3s ease .4s; -webkit-transition: top .3s ease, -webkit-transform .3s ease; -webkit-transition-delay: 0s, .4s; transition: top .3s ease, transform .3s ease .4s }
    .navbar-toggle .icon-bar:nth-child(1) { top: 8px; -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -webkit-transform: rotate(45deg); transform: rotate(45deg) }
    .transform-fallback-fix .navbar-toggle .icon-bar:nth-child(1) { top: 0 }
    .navbar-toggle .icon-bar:nth-child(3) { top: -8px; -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); transform: rotate(-45deg) }
    .transform-fallback-fix .navbar-toggle .icon-bar:nth-child(3) { top: 0 }
    .navbar-toggle.collapsed .icon-bar:nth-child(2) { -moz-transition: background .3s ease .4s; -o-transition: background .3s ease .4s; -webkit-transition: background .3s ease; -webkit-transition-delay: .4s; transition: background .3s ease .4s; background-color: #606060 }
    .navbar-toggle.collapsed .icon-bar:nth-child(1), .navbar-toggle.collapsed .icon-bar:nth-child(3) { top: 0; -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); -moz-transform-origin: 50% 50%; -ms-transform-origin: 50% 50%; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; -moz-transition: top .3s ease .4s, -moz-transform .3s ease; -o-transition: top .3s ease .4s, -o-transform .3s ease; -webkit-transition: top .3s ease, -webkit-transform .3s ease; -webkit-transition-delay: .4s, 0s; transition: top .3s ease .4s, transform .3s ease }


    .header_m .m_means{position: absolute;top: 100%;left: 0;width: 100%;height: calc(100vh - 50px);overflow:hidden;pointer-events: none;font-family: PingFang SC, Arial, Microsoft YaHei, -apple-system, BlinkMacSystemFont, Segoe UI, Hiragino Sans GB, Helvetica Neue, Helvetica, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol!important;}
    .header_m .m_means .mean1{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: #fff;padding: 20px;transform:translateX(105%);transition:all 0.5s;pointer-events: all;overflow:auto;}
    .header_m .m_means .mean1.on{transform: translateX(0);overflow-x:hidden;}
    .header_m .m_means .mean1 .m_nav1 .li1{border-bottom: 1px solid #DFDFDF;padding: 15px 0 0 0;line-height: 26px;padding-right:0;position:relative;display: flex;flex-wrap: wrap;}
    .header_m .m_means .mean1 .m_nav1 .li1 .add{position: absolute;top:5px;left:auto; right:-20px; width: 50px;height: 50px;background: url(../img/fm_add.svg)no-repeat center;background-size: 14px 14px;transition:all 0.5s;}
    .header_m .m_means .mean1 .m_nav1 .li1.on .add{transform:rotate(45deg);}
    .header_m .m_means .mean1 .m_nav1 .li1>a{padding-bottom: 15px;color:#333;font-size:18px;font-weight: bold;font-family: "Montserrat-Regular";}
    .header_m .m_means .mean1 .m_nav2{display:none;padding: 15px 0;border-top: 1px solid rgba(96,96,96,0.2);width: 100%;}
    .header_m .m_means .mean1 .m_nav2 .li2>a{color:#333;line-height:22px;font-size:16px;display:inline-block;font-weight: 500;font-family: "Montserrat-Light";}

    .header_m .m_means .mean1 .m_nav2 .li2{position: relative;border-bottom: 1px solid rgba(96,96,96,0.2);padding-bottom: 10px;margin-bottom: 15px;}
    .header_m .m_means .mean1 .m_nav2 .li2:last-child{border-bottom: none;padding-bottom: 0;margin-bottom: 0;}


    .header_m .m_means .mean1 .m_nav2 .li2{position: relative;border-bottom: 1px solid rgba(96,96,96,0.2);padding-bottom: 15px;margin-bottom: 20px;display: flex;align-items: center;flex-wrap: wrap;}
    .header_m .m_means .mean1 .m_nav2 .li2:last-child{border-bottom: none;padding-bottom: 0;margin-bottom: 0;}
    .header_m .m_means .mean1 .m_nav2 .li2 .jt{position:absolute;right:0;top:12px;width:13px;height:13px;transform:translateY(-50%);transition:all 0.5s;display: flex;}
    .header_m .m_means .mean1 .m_nav2 .li2.on .jt{transform: translateY(-50%) rotate(-90deg);}
    .header_m .m_means .mean1 .m_nav2 .li2 .jt img{width: 100%;height: 100%;}
    .header_m .m_means .mean1 .m_nav2 .m_nav3{padding-left: 5px;display:none;padding:5px 10px 0 20px;width: 100%;}
    .header_m .m_means .mean1 .m_nav2 .m_nav3>a{color:#606060;line-height:22px;font-size:16px;padding-bottom: 10px;margin-bottom:10px;font-weight: 400!important;}
    .header_m .m_means .mean1 .m_nav2 .m_nav3 li a{color:#606060;font-size: 16px;line-height: 34px;font-weight: 400;font-family: "Montserrat-Light";}
    .header_m .m_means .mean1 .means_email{margin-top: 40px;font-size: 22px;color: #D30001;font-weight: bold;text-align: center;width: 100%;font-family: "Montserrat-Light";}

}



