/* 斜体 */


@font-face {
    font-family: "Taipei";
    src: url(../fonts/Taipei-Sans-TC-Beta-Regular-2.ttf);
}

@font-face {
    font-family: "Alimama";
    font-weight: 400;
    src: url(../fonts/AlimamaFangYuanTiVF-Thin.ttf);
}

@font-face {
    font-family: "Alimama";
    font-weight: 600;
    src: url(../fonts/AlimamaFangYuanTiVF-Thin2.ttf);
}

@font-face {
    font-family: "Heebo";
    font-weight: 400;
    src: url(../fonts/Heebo-Light-5.ttf);
}

@font-face {
    font-family: "Heebo";
    font-weight: 500;
    src: url(../fonts/Heebo-Regular-7.ttf);
}

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



/*滚动条宽高及背景*/
::-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: 90%;
    margin: 0 auto;
}

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

.More a {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 15px 35px;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.More .bg {
    width: 100%;
    height: 0;
    background: #0878b9;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .68s;
}

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

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

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

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

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

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


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

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

.More.white {
    background: #fff;
}

.More.white a {
    color: #0b5daf;
}

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


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

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


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

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

.More:hover .bg {
    height: 100%;
}

/* == */

.Tit {
    margin-bottom: 68px;
    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: 60px;
    line-height: 1.2;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}


.Tit p {
    padding-top: 10px;
    font-size: 18px;
    color: #444;
}

.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;
}
.inImg img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}

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

.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 3% 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all .48s;
}

.hLogo svg {
    width: 180px;
}

.hLogo svg path {
    fill: #fff;
}

.hLogo img {
    width: 160px;
}

.hLogo .img2 {
    display: none;
}

/*  */

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

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

.hNav ul li a {
    padding: 24px 30px;
    margin: 0 10px;
    font-size: 16px;
    letter-spacing: .1em;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    text-align: center;
    transition: all .48s;
    position: relative;
}


.hNav ul li a span {
    display: none;
    font-size: 14px;
}


/*  */

.hSs {
    width: 24px;
    height: 24px;
    margin-left: 40px;
}

.hSs svg {
    width: 100%;
    height: 100%;
}


.headerMain-bg.header .headTop p,
.white.header .headTop p {
    color: #333;
}

.headerMain-bg.header .headTop svg path,
.white.header .headTop svg path {
    fill: #333;
}

.headerMain-bg.header .hLogo svg path,
.white.header .hLogo svg path {
    fill: #333;
}

.headerMain-bg.header .img2,
.white.header .img2 {
    display: block;
}

.headerMain-bg.header .img1,
.white.header .img1 {
    display: none;
}
.headerMain-bg.header{
    background: #fff;
    border-bottom: 1px  solid rgba(0, 0, 0, .1);
}
.headerMain-bg.header .hNav ul li a,
.white.header .hNav ul li a {
    color: #444;
}

.headerMain-bg.header .hNav ul li.on a i,
.white.header .hNav ul li.on a i {
    color: #444;
    border-color: #444;
}

.headerMain-bg.header .hSs svg path,
.white.header .hSs svg path{
    fill: #333;
}


.headerMain.header .headTop p,
.white.header .headTop p {
    color: #333;
}

.headerMain.header .headTop svg path,
.white.header .headTop svg path {
    fill: #333;
}

.headerMain.header .hLogo svg path,
.white.header .hLogo svg path {
    fill: #333;
}

.headerMain.header .img2,
.white.header .img2 {
    display: block;
}

.headerMain.header .img1,
.white.header .img1 {
    display: none;
}
.headerMain.header{
    background: #fff;
    border-bottom: 1px  solid rgba(0, 0, 0, .1);
}
.headerMain.header .hNav ul li a,
.white.header .hNav ul li a {
    color: #444;
}

.headerMain.header .hNav ul li.on a i,
.white.header .hNav ul li.on a i {
    color: #444;
    border-color: #444;
}

.headerMain.header .hSs svg path,
.white.header .hSs svg path{
    fill: #333;
}
/* == footer */


/* ==  手机导航 */

.header.white {
    background: #fff;
}

.header.white .img2 {
    display: block;
}

.header.white .img1 {
    display: none;
}

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

.menu_s {
    display: none;
    margin-left: 30px;
}

.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: 30px;
    height: 2px;
    background: rgba(255, 255, 255, .9);
    margin: 8px 0;
    transition: all .48s;
}

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

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

.header.headerMain .menu_s span {
    background: #333;
}
/*  */

.headerM {
    width: 100vw;
    height: 100vh;
    padding: 20px 5% 30px;
    background: #fff;
    position: fixed;
    left: 0;
    top: 65px;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    z-index: 99;

    display: none;
}

.headerM li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerM li a {
    font-size: 16px;
    font-weight: 600;
}

.headerM li svg {
    width: 14px;
    height: 14px;
}





@media(max-width: 1680px) {
    .Tit span {
        font-size: 54px;
    }

    .Tit {
        margin-bottom: 60px;
    }
}

@media(max-width: 1480px) {
    .More a {
        padding: 12px 30px;
    }


}

@media(max-width: 1368px) {
    .Tit span {
        font-size: 48px;
    }
}

@media(max-width: 1200px) {
    .Tit span {
        font-size: 44px;
    }

    .Tit {
        margin-bottom: 48px;
    }
}

@media(max-width: 1024px) {
    .More a {
        font-size: 14px;
    }
}

@media(max-width: 900px) {
    .Tit span {
        font-size: 42px;
    }

    .More a {
        padding: 10px 20px;
    }
}

@media(max-width: 768px) {}

@media(max-width: 680px) {
    .Tit {
        margin-bottom: 30px;
    }

    .Tit span {
        font-size: 38px;
    }
}
@media(max-width: 500px) {
    .Tit {
        margin-bottom: 20px;
    }

    .Tit span {
        font-size: 32px;
    }
}





/* 头部 */

@media(max-width: 1368px) {
    .hLogo img {
        width: 145px;
    }

    .hNav ul li a {
        padding: 20px 20px;
    }
}
@media(max-width: 1280px) {
    .hNav ul li a {
        padding: 10px 10px;
    }
}
@media(max-width: 1024px) {

    .header {
        height: 80px;
    }

    .headerBox {
        height: 100%;
        padding: 0 3%;
    }

    .hLogo img {
        width: 135px;
    }

    .hNav ul{
        display: none;
    }

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

    .menu_s{
        display: block;
    }
}

@media(max-width: 900px) {}

@media(max-width: 768px) {}

@media(max-width: 680px) {}

/* =================================================================================index */

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









/* 底部 */
.footer {
    background: #1b1b1b;
    position: relative;
    padding-top: 80px;
}

.footLogo {
    display: block;
}

.footLogo img {
    width: 160px;
}


.footBox {
    overflow: hidden;
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
}

.footBox ul {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.footBox ul li a {
    color: rgba(255, 255, 255, .6);
    display: block;
    margin-bottom: 20px;
}

.footBox ul li a:hover span {
    color: #fff;
}

.footBox ul li a span {
    font-size: 20px;
    color: #fff;
}

.footItem {
    padding: 0 15px;
}


.footItem h5 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footItem p {
    color: #fff;
    font-size: 16px;
}

.footItem dl dd {
    margin-bottom: 10px;
}
.footItem h3{
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}
.footItem h4{
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}
.footItem dl a {
    font-size: 16px;
    color: #fff;
}

.footItem .ewm {
    margin-top: 80px;
}

.footItem .ewm img {
    width: 100px;
}

/*  */
.footLink {
    width: 100%;
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.footLink p {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

.footLink p a {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

.footBox .xian {
    width: 1px;
    border-left: 1px solid rgba(255, 255, 255, .08);
}
.footFd{
    width: 220px;
    display: flex;
    flex-wrap: wrap;
}
.footFd a{
    width: 50%;
}
@media(max-width: 1480px) {
    .footBox ul li a span {
        font-size: 18px;
    }

    .footItem .ewm img {
        width: 88px;
    }

    .footItem .ewm {
        margin-top: 68px;
    }

    .footBox {
        padding: 50px 0;
    }

}

@media(max-width: 1368px) {
    .footBox ul li a {
        font-size: 14px;
    }

    .footer {
        padding-top: 60px;
    }
}

@media(max-width: 1280px) {}

@media(max-width: 1200px) {}

@media(max-width: 1024px) {
    .footBox {
        padding: 40px 0;
    }

    .footBox .xian,
    .footItem {
        display: none;
    }

    .footBox ul {
        width: 100%;
    }

    .footLink {
        margin-top: 40px;
    }
}

@media(max-width: 900px) {}

@media(max-width: 768px) {}

@media(max-width: 680px) {
    .footer {
        padding-top: 48px;
    }

    .footBox {
        padding: 30px 0;
        flex-wrap: wrap;
    }

    .footBox ul li {
        display: none;
    }

    .footItem {
        width: 100%;
        display: block;
        padding: 0;
        order: -1;
    }

    .footItem .ewm {
        margin-top: 40px;
    }

    .footItem .ewm img {
        width: 68px;
    }

    .footLink {
        margin-top: 30px;
        flex-wrap: wrap;
    }
}