@font-face {
    font-family: "Bronova";
    src: url(../fonts/Bronova\ Bold.otf);
}

@font-face {
    /* src: url(../fonts/Helvetica-Neue-2.woff); */
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Neue-2.woff') format('woff'),
        url('../fonts/Helvetica-Neue-2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    -webkit-font-family: 'Helvetica';
    /*为Chrome/Safari*/

    -moz-font-family: 'Helvetica';
    /*为Firefox*/

    -ms-font-family: 'Helvetica';
    /*为IE*/

    -o-font-family: 'Helvetica';
    /*为Opera*/
}


/* =====================================================================公共 */



/*滚动条宽高及背景*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/*轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: fff;
    border-radius: 0px;
}

/*滑块*/
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #8e8e8f;
}

/*两端按钮*/
::-webkit-scrollbar-button {
    background-color: none;
    height: 0;
}

/*右下角汇合处样式*/
::-webkit-scrollbar-corner {
    background: khaki;
}


/*  */


.inner {
    width: 94%;
    margin: 0 auto;
}

.innerN {
    width: 84%;
    margin: 0 auto;
}

.padd {
    padding: 108px 0;
}


/*  */
.More {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.More a {
    display: flex;
    font-family: "Bronova";
    align-items: center;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    /* border: 1px solid rgba(0, 0, 0, .18); */
    background: #333;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.More a::after {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 8px;
    background: #e92625;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all .48s;
}

.More.bg a {
    color: #fff;
    background: #e92625;
    border-color: #e92625;
}

.More a img {
    width: 20px;
}

.More a .img2 {
    display: none;
}



.More a svg {
    width: 20px;
    height: 20px;
    margin-left: 15px;
}

.More a svg path {
    fill: #fff;
}

@keyframes yb {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}


/*  */

.More.white a {
    background: #fff;
    border-color: transparent;
    color: #333;
}

.More.white a svg path {
    fill: #333;
}

.More.white a:hover .img2 {
    display: block;
}

.More.white a:hover .img1 {
    display: none;
}

/*  */
.More a:hover {
    border-color: #e92625 !important;
}

.More a:hover::after {
    width: 100%;
    transition: all .68s;
}

.More a:hover .img2 {
    display: block;
}

.More a:hover .img1 {
    display: none;
}

.More:hover a {
    color: #fff;
}

.More:hover a svg path {
    fill: #fff;
}


/* == */

.Tit {
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}


.Tit b {
    display: block;
    font-size: 16px;
    line-height: 1;
    color: #999;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 30px;
}

.Tit i {
    display: block;
    width: 1px;
    height: 80px;
    background: #eee;
    margin: 0 30px;
}

.Tit span {
    display: inline-block;
    font-size: 72px;
    line-height: 1.1;
    font-family: "Bronova";
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}


.Tit p {
    font-size: 30px;
    margin-top: 30px;
}

.Tit.center {
    text-align: center;
}

.Tit.white span,
.Tit.white b,
.Tit.white p {
    color: #fff;
}

.Tit.flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


/* =================================================================================公共 */

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transition: all .48s;
    z-index: 999;
}

.headTop {
    padding: 10px 3% 0;
    display: flex;
    justify-content: flex-end;
}

.headTop p {
    color: #fff;
    letter-spacing: 2px;
    padding-right: 30px;
}

.headTop p svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-left: 5px;
}

.headerBox {
    padding: 0 2.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all .48s;
}

.hLogo {
    position: absolute;
    left: 50%;
    top: 88px;
    transform: translate(-50%, 0);
    transition: all .48s;
}

.hLogo img {
    width: 560px;
    transition: all .68s;
}

.hLogo .img2 {
    display: none;
}

/*  */

/* .hNav {
    padding-left: 15%;
} */

.hNav ul {
    display: flex;
    align-items: center;

}

.hNav ul li:first-child a {
    margin-left: 0;
}

.hNav ul li .hNav_a {
    padding: 30px 0;
    margin: 0 25px;
    font-size: 18px;
    font-family: "Bronova";
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    text-align: center;
    transition: all .48s;
    position: relative;
}

.hNav ul li .hNav_a::before {
    content: '';
    width: 0;
    height: 2px;
    border-bottom: 2px solid #e92625;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .48s;
}

.hNav ul li.on a {
    font-weight: 600;
}

.hNav ul li.on a::before {
    width: 100%;
}

.hNav ul li .hNav_a span {
    font-size: 16px;
}

/*  */

.hNav ul li .hNav_a:hover:after {
    width: 100%;
}

/*  */

.hLan {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    /* font-family: "Hubot-Narrow" !important; */
}

.hLan svg {
    width: 14px;
    height: 14px;
    margin-left: 10px;
}

.hLan svg.icon1 path {
    fill: rgba(255, 255, 255, .8);
}


/*  */

.headerMain-bg.header,
.white.header {
    background: #222;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.headerMain-bg.header .hLogo img,
.white.header .hLogo img {
    width: 140px;
    opacity: 0;
}

/* = */

.hNavOne {
    position: relative;
}

.hNavOne .hLanZK {
    bottom: 0;
    background: #222;
    border-radius: 0;
}

.hNavOne .hLan_div {
    padding: 10px 15px 15px;
}

.hNavOne .hLan_div a {
    color: #fff;
    padding: 10px 0;
    border-color: rgba(255, 255, 255, .18);
}

.hNavOne .hLan_div a::after {
    border-color: #fff;
}


/* == footer */


/* ==  手机导航 */


.menu {
    display: flex;
    align-items: center;
}

.menu_s {
    display: none;
}

.menu_s.on span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.menu_s.on span:nth-child(2) {
    transform: rotate(-45deg) translateY(-7px);
}

.menu_s span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .9);
    margin: 8px 0;
    transition: all .48s;
}

.header.headerMain-bg .menu_s span {
    background: #fff;
}

.header.white .menu_s span {
    background: #fff;
}

/*  */

.headerM {
    width: 100vw;
    height: 100vh;
    padding: 100px 0 30px;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    z-index: 99;
    display: none;
}
.headerM ul{
    padding:0 30px;
    height: calc(100% - 30px);
    overflow: auto;
}
.headerM li {
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.headerM li .headerMTop{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerMTop a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.headerMTop svg {
    width: 20px;
    height: 20px;
}
.headerMText{
    position: relative;
    padding: 0 20px;
    margin-top: 10px;
    display: none;
}
.headerMText a{
    display: flex;
    align-items: center;
}
.headerMText img{
    width: 15px;
    height: 15px;
}
.headerMText span{
    font-size: 16px;
    display: block;
    padding: 10px 0;
}
.headerM .hLan{
    position: absolute;
    color: #333;
    right: 5%;
}
.header .hLan1{
    display: block;
}
.header .hLan2{
    display: none;
}
.headerM .hLan:hover .hLanZK{
    display: block;
    background: #f7f8f9;
}
.headerM .hLan svg.icon1 path{
 fill: #333;
}
/* =================================================================================index */

.headerMain-bg.header .Logo {
    opacity: 1;
    transition: all 0.48s .48s;
}

.headerMain-bg.header .hNav {
    padding-left: 200px;
}

.hNav {
    transition: all .48s;
}

.Logo {
    opacity: 0;
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.Logo img {
    width: 140px;
}

.Logo .img2 {
    display: none;
}

.hLogo {
    opacity: 0;
    transform: translate(-50%, 0) scale(0);
    transition: all 1s;
}

.hSs {
    display: flex;
    align-items: center;
    margin-right: 40px;
    position: relative;
    height: 40px;
    justify-content: center;
    /*flex-direction: row-reverse;*/
}

.hSs svg {
    width: 20px;
    height: 20px;
}

.hSs svg path {
    fill: #fff;
}

.hSs input {
    width: 0;
    padding: 5px;
    background: none;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    font-size: 16px;
    opacity: 0;
    transition: width 0.8s,opacity 0.48s;
    -webkit-transition: width 0.8s,opacity 0.48s;
    -moz-transition: width 0.8s,opacity 0.48s;
    -ms-transition: width 0.8s,opacity 0.48s;
    -o-transition: width 0.8s,opacity 0.48s;
}
.hSs:hover input {
    opacity: 1;
    width: 150px;
}

.hSs input::placeholder {
    color: #fff;
    text-transform: uppercase;
    font-family: "Hubot-Narrow";
    font-size: 18px;
}

/*  */




.navZk {
    display: none;
    width: 100vw;
    background: #222;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    z-index: 9;
}

.navZkBox {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.navZkLi {
    display: block;
    width: calc(10% - 10px);
    margin: 0 5px;
    text-align: center;
}

.navZkLi img {
    width: 60%;
    margin: 0 auto;
}

.navZkLi span {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
}

.navZkMore {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navZkMore svg {
    width: 34px;
    height: 34px;
}

.hNav ul li .navZkMore a {
    margin-top: 15px;
    display: block;
    width: 100%;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.hNav ul li .navZkMore a::after {
    display: none;
}

.navZkLi:hover span {
    color: #e92625;
}

/*  */

.hLan {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.hLan svg {
    width: 14px;
    height: 14px;
    margin-left: 10px;
}

.hLan svg path {
    fill: #333;
}

.hLanZK {
    width: 140px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translate(-50%, 100%);
    background: #fff;
    border-radius: 10px;
    z-index: 2;

    display: none;
}

.hLan_div {
    padding: 10px 10px 15px;
}

.hLan_div a {
    padding: 5px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.hLan_div a::after {
    content: '';
    width: 0;
    height: 1px;
    border-bottom: 1px solid #111;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .68s;
}

.hLan_div a img {
    width: 20px;
    margin-right: 10px;
}

.hLan_div a:hover::after {
    width: 100%;
}


@media(max-width: 1024px) {
    /* .hNav {
                display: none;
    } */

    /* .menu_s {
                display: block;
    } */
}

/* == footer */

.indCon {
    position: relative;
}

.indConBox {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 60px 0 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.indConLogo img {
    width: 320px;
}

/*  */

.indConMt {
    width: 94%;
    margin: 60px auto;
    padding: 20px 0;
}

.indConMt a {
    display: inline-flex;
    align-items: center;
    margin: 0 40px;
    font-weight: 600;
    font-size: 18px;
    transition: all .48s;
}

.indConMt a svg {
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

.indConMt a img {
    width: 14px;
    transform: rotate(45deg);
    margin-left: 10px;
    opacity: 0.8;
}

/*  */

.indConMt a:hover {
    letter-spacing: 2px;
}

/*  */

.indConItem {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.indConL {
    flex: 1;
}

.indConPhone a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 68px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    /* font-family: "Proxima"; */
    margin-bottom: 20px;
    font-family: "Bronova";
}

.indConPhone a svg {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.indConPhone a svg path {
    fill: #333;
}

.indConYx {
    margin-bottom: 10px;
}

.indConYx a,
.indConDz p {
    font-size: 20px;
    font-weight: 600;
}

/*  */
.indConL .More a {
    padding: 20px 16px;
    justify-content: center;
    font-size: 24px;
    /* letter-spacing: 4px; */
}

.indConL .More {
    width: 80%;
}

.indConL .More a img {
    width: 24px;
    margin-right: 40px;
}


/*  */

.indConL .More a:hover {
    color: #fff;
}

.indConL .More a:hover svg path {
    fill: #fff;
}

/* = */


.indConR {
    flex: 1;
}

.indConR .More {
    width: 80%;
}

.indConR .More a {
    padding: 20px 16px;
    justify-content: center;
    font-size: 24px;
    /* letter-spacing: 4px; */
}

.indConR .More a img {
    width: 24px;
    margin-right: 40px;
}


/*  */

.footBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.footLan {
    display: inline-block;
    padding: 4px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 18px;
    border: 1px solid #999;
}

.footBox a {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}




/* ========================================================================= 内页公共 */

.banNav {
    width: 94%;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 60px;
}

.banNav_l {
    display: flex;
    align-items: center;
}

.banNav_l a {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.banNav_l a svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.banNav_l .xian {
    margin: 0 20px;
    display: inline-block;
    width: 1px;
    height: 20px;
    border-left: 1px solid rgba(0, 0, 0, .18);
}

.banNav_l a span {
    font-weight: 400;
}


/*  */

.banNav ul li {
    display: inline-block;
    margin-left: 60px;
    position: relative;
}

.banNav ul li::after {
    content: '';
    width: 0;
    height: 2px;
    border-top: 2px solid #e92625;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .48s;
}

.banNav ul li a {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
    display: inline-block;
    padding: 35px 0;
}

.banNav ul li.on::after {
    width: 100%;
}

.banNav ul li.on a {
    font-weight: 600;
}

.banNav ul li:hover::after {
    width: 100%;
}






/* 内页 */
.headerN .Logo {
    opacity: 1;
}

.headerN .hNav {
    padding-left: 200px;
}
.banner {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
}

.banImg {
    width: 100%;
    height: 100%;
}
.banImg::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .1);
}
.banImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banText {
    position: absolute;
    left: 3%;
    top: 50%;
}

.banText span {
    color: #fff;
    font-size: 162px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}






