* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    font-size: 16px;
    font-family: "AlibabaPuHuiTi_Medium";
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    list-style: none;
}

@font-face {
    font-family: "Gotham_Rounded";
    src: url(../font/Gotham-Rounded.ttf);
}

@font-face {
    font-family: "Gotham_Medium";
    src: url(../font/Gotham-Medium.otf);
}

@font-face {
    font-family: "Gotham_Book";
    src: url(../font/Gotham-Book.otf);
}

@font-face {
    font-family: "GOTHICB";
    src: url(../font/GOTHICB.TTF);
}

@font-face {
    font-family: "Poppins_Light";
    src: url(../font/Poppins-Light.ttf);
}

.w1350 {
    width: 1350px;
    max-width: 96%;
    margin: 0 auto;
}

.header {
    width: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header_cen {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_cen .Logo {
    width: 69px;
}

.header_cen .Logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
}

.header_cen .Logo a img {
    display: block;
    width: 100%;
}

.header_cen .header_mind {
    display: flex;
    align-items: center;
}

.header_cen .header_mind .navigation {
    position: relative;
    margin-right: 4.375rem;
}

.header_cen .header_mind .navigation:last-child {
    margin-right: 0;
}

.header_cen .header_mind .navigation .navigation_top {
    display: flex;
    justify-content: space-between;
}

.header_cen .header_mind .navigation .navigation_top .iconfont {
    display: none;
}

.header_cen .header_mind .navigation .navigation_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.25rem;
    font-size: 1.0625rem;
    line-height: 1.75rem;
    font-family: "GOTHICB";
    color: #333333;
}

.header_cen .header_mind .navigation.active .navigation_top a {
    color: #00b7ee;
}

.header_cen .header_mind .navigation .navigation_bom {
    position: absolute;
    left: 50%;
    top: calc(100% - 1rem);
    transform: translateX(-50%);
    padding-top: 1rem;
    display: none;
}

.header_cen .header_mind .navigation .navigation_bom::before{
    content: '';
    border-width: 1rem .625rem;
    border-style: solid;
    border-color: transparent transparent #333333 transparent;
    position: absolute;
    left: calc(50% - .3125rem);
    top: -1rem;
}

.navigation .navigation_bom .navigation_bomCen {
    padding: .75rem 1rem;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.navigation .navigation_bom a {
    white-space: nowrap;
    display: block;
    font-size: .875rem;
    line-height: 2.25rem;
    text-align: center;
    color: #333333;
    font-family: "Gotham_Medium";
    transition: all 0.3s ease;
}

.navigation .navigation_bom a:hover {
    color: #00b7ee;
}

.header_cen .header_right {
    display: flex;
    align-items: center;
}

.header_cen .header_right .headerRight_ico {
    position: relative;
    display: flex;
    align-items: center;
}

.header_cen .header_right .headerRight_ico.caidan {
    display: none;
}

.header_cen .header_right .headerRight_ico.searchs {
    position: relative;
}

.headerRight_ico.searchs .headerRight_icoBtn {
    width: 6.875rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b7ee;
    color: #fff;
    border-radius: 2.5rem;
    cursor: pointer;
    font-family: "GOTHICB";
}

.headerRight_ico.searchs .headerRight_icoBtn .iconfont {
    display: flex;
    margin-left: .25rem;
}

.headerRight_ico.searchs .search {
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
    padding-top: 5px!important;
}

.headerRight_ico.searchs .search form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18.75rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 2.5rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    overflow: hidden;

}

.headerRight_ico.searchs .search form input {
    display: flex;
    height: 100%;
    width: calc(100% - 2.5rem);
    border-radius: 2.5rem;
    border: none;
    outline: none;
    text-indent: 1em;
}

.headerRight_ico.searchs .search form button {
    display: block;
    width: 2.5rem;
    height: 100%;
    outline: none;
    background: #00b7ee;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

@media (max-width: 1300px) {
    .header_cen .header_mind .navigation {
        margin-right: 2.375rem;
    }
}

@media (max-width: 999px) {
    .header_cen .header_right .headerRight_ico.caidan {
        display: flex;
        margin-right: 1rem;
    }

    .headerRight_icoBtn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .headerRight_ico.caidan .headerRight_icoBtn .iconfont {
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .headerRight_ico.caidan .headerRight_icoBtn .iconfont:hover {
        color: #00b7ee;
    }

    .headerRight_ico.caidan .headerRight_icoBtn .iconfont.icon-guanbi {
        display: none;
    }

    .header_cen .header_mind {
        position: absolute;
        left: 0;
        top: 6.25rem;
        flex-direction: column;
        background: #fff;
        width: 100%;
        height: calc(100vh - 6.25rem);
        overflow-y: auto;
        border-top: 1px solid #808080;
        display: none;
    }

    .header_cen .header_mind .navigation {
        margin-right: 0;
        width: 100%;
        padding: 0 1rem;
    }

    .header_cen .header_mind .navigation .navigation_top .iconfont {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .header_cen .header_mind .navigation.act .navigation_top .iconfont {
        transform: rotate(90deg);
        color: #00b7ee;
    }

    .header_cen .header_mind .navigation .navigation_top a {
        height: 3.25rem;
        max-width: calc(100% - 3.5rem);
    }

    .header_cen .header_mind .navigation .navigation_bom {
        position: relative;
        top: 0;
        padding-top: 0;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    }

    .navigation .navigation_bom .navigation_bomCen {
        padding: 0 1rem;
    }

    .navigation .navigation_bom a {
        text-align: left;
    }
}

/* footer */

.footerOne {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footerOne::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background: #f7f7f7;
    z-index: -1;
}

.footerOne .footerOne_cen {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5.75rem 0 5.75rem;
    background: #00b7ee;
    color: #fff;
    padding-left: 10rem;
    font-size: 3.125rem;
    line-height: 4rem;
    font-weight: bold;
    font-family: "Gotham_Medium";
    position: relative;
    z-index: 2;
}

.footerOne .footerOne_cen::after {
    content: "";
    display: block;
    width: 200%;
    height: 100%;
    background: #00b7ee;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.footerOne .footerOne_cen .footerOne_btn a {
    width: 19.125rem;
    height: 6rem;
    background: #fff;
    color: #00b7ee;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerOne .footerOne_cen .footerOne_btn .iconfont {
    display: block;
    margin-left: 1.5rem;
    font-size: 1.625rem;
}

.footer {
    background: #fff;
    padding: 6.25rem 0 0;
}

.footer .footer_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .footer_top .footer_logo {
    width: 18.82%;
}

.footer_logo a {
    display: block;
    width: 110px;
}

.footer_logo a img {
    display: block;
    width: 100%;
}

.footer_logo p {
    font-size: 1.75rem;
    line-height: 2.5rem;
    font-family: "Gotham_Medium";
    font-weight: bold;
    color: #222222;
    margin-top: 1.25rem;
}


.footer .footer_top .footerNavigation {
    width: 63%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
}

.footerNavigation .footer_nav {
    display: flex;
    flex-direction: column;
}

.footerNavigation .footer_nav p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-family: "Gotham_Medium";
    font-weight: bold;
    color: #222222;
    margin-bottom: 1.25rem;
}

.footerNavigation .footer_nav a {
    font-size: 1rem;
    line-height: 1.875rem;
    font-family: "Gotham_Book";
    color: #222222;
    transition: all 0.3s ease;
}

.footerNavigation .footer_nav a:hover {
    color: #00b7ee;
}

.footer .footer_bom {
    margin-top: 3.75rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .footer_bom .footer_bom_L {
    width: 18.82%;
    padding-bottom: 1rem;
}

.footer .footer_bom .footer_bom_L .footer_message a,
.footer .footer_bom .footer_bom_L .footer_Email a {
    width: 100%;
    height: 3.25rem;
    border-radius: 3.25rem;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: "Gotham_Book";
    color: #222222;
}

.footer .footer_bom .footer_bom_L .footer_Email {
    margin-top: 1.5rem;
}

.footer .footer_bom .footer_bom_L .footer_message .footer_bom_Ll,
.footer .footer_bom .footer_bom_L .footer_Email .footer_bom_Ll {
    display: flex;
    align-items: center;
    line-height: 1;
}

.footer .footer_bom .footer_bom_L .footer_message .footer_bom_Ll .iconfont,
.footer .footer_bom .footer_bom_L .footer_Email .footer_bom_Ll .iconfont {
    font-size: 1.5rem;
    display: block;
    margin-right: .5rem;
    font-weight: bold;
}

.footer .footer_bom .footer_bom_L .footer_ico {
    margin-top: 2.875rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .footer_bom .footer_bom_L .footer_ico a .iconfont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #ececec;
    font-size: 1.5rem;
    color: #242933;
    transition: all 0.3s ease;
}

.footer .footer_bom .footer_bom_L .footer_ico a .iconfont:hover {
    background: #00b7ee;
    color: #fff;
}

.footer .footer_bom .footer_bom_R {
    width: 63%;
}

.footer_bom_R .footer_bom_RT {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    font-size: 1.125rem;
    line-height: 1.875rem;
    font-family: "Gotham_Medium";
    font-weight: bold;
}

.footer_bom_R .footer_bom_RT p {
    width: 50%;
}

.footer_bom_R .footer_bom_RM {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eeeeee;
    font-size: 1rem;
    line-height: 1.625rem;
    font-family: "Gotham_Medium";
    font-weight: bold;
}

.footer_bom_R .footer_bom_RB {
    padding: 1rem 0;
    font-size: .875rem;
    line-height: 1rem;
    font-family: "Gotham_Book";
    color: #222222;
}

@media (max-width: 1300px) {
    .footerOne .footerOne_cen {
        padding: 3rem 0 3rem;
        padding-left: 4rem;
        font-size: 2.25rem;
        line-height: 3rem;
    }

    .footerOne .footerOne_cen .footerOne_btn a {
        width: 17rem;
        height: 4rem;
        font-size: 1.25rem;
    }

    .footerOne .footerOne_cen .footerOne_btn .iconfont {
        margin-left: 1rem;
        font-size: 1.5rem;
    }

    .footer {
        background: #fff;
        padding: 3.25rem 0 0;
    }

    .footer_logo p {
        font-size: 1.25rem;
        margin-top: 1rem;
        line-height: 2rem;
    }

    .footer .footer_top .footer_logo {
        min-width: 12rem;
    }

    .footer .footer_top .footerNavigation {
        width: calc(100% - 15rem);
    }

    .footer_bom_R .footer_bom_RT p {
        width: 100%;
    }

    .footer_bom_R .footer_bom_RT {
        line-height: 1.5rem;
        padding: 1rem 0;
    }

    .footer .footer_bom .footer_bom_L {
        min-width: 12rem;
    }

    .footer .footer_bom .footer_bom_L .footer_ico {
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .footer .footer_bom .footer_bom_L a {
        display: block;
        margin-bottom: 0.5rem;
    }

    .footer .footer_bom .footer_bom_R {
        width: calc(100% - 15rem);
    }
}

@media (max-width: 999px) {
    .footerNavigation .footer_nav {
        margin-bottom: 1rem;
    }

    .footerNavigation .footer_nav p {
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .footerNavigation .footer_nav a {
        font-size: .875rem;
        line-height: 1.5;
    }

    .footer_bom_R .footer_bom_RT {
        font-size: 1rem;
        line-height: 1.5;
    }

    .footer_bom_R .footer_bom_RM {
        padding: 1rem 0;
        line-height: 1.5;
        font-size: .875rem;
    }

    .footerOne .footerOne_cen {
        font-size: 1.5rem;
        line-height: 2;
        padding-left: 2rem;
    }

    .footerOne .footerOne_cen .footerOne_btn a {
        width: 13rem;
        height: 4rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footerOne .footerOne_cen {
        font-size: 1.125rem;
    }

    .footerOne .footerOne_cen .footerOne_btn a {
        height: 3rem;
        margin-top: 1.5rem;
    }

    .footer .footer_top {
        flex-direction: column;
    }

    .footer .footer_top .footer_logo {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer {
        padding: 2rem 0 0;
    }

    .footer .footer_top .footerNavigation {
        padding-top: 1.5rem;
        width: 100%;
    }

    .footerNavigation .footer_nav {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footerNavigation .footer_nav p {
        width: 100%;
        margin-bottom: .75rem;
    }

    .footerNavigation .footer_nav a {
        margin-right: 1rem;
        line-height: 1.7;
    }

    .footer .footer_bom {
        margin-top: 1.5rem;
        flex-direction: column;
    }

    .footer .footer_bom .footer_bom_L {
        width: 100%;
    }

    .footer .footer_bom .footer_bom_R {
        width: 100%;
    }
}

/* 面包屑 */
.mbx {
    width: 100%;
    background: #fff;
    padding: 1.25rem 0;
}

.mbx .mbx_cen ul {
    width: 100%;
    overflow-x: auto;
    width: 100%;
    display: flex;
    align-items: center;
    overflow-y: hidden;
}

.mbx .mbx_cen ul li {
    margin-right: .5rem;
}

.mbx .mbx_cen ul a {
    font-size: 1.125rem;
    line-height: 1;
    font-family: "Gotham_Book";
    color: #808080;
    display: flex;
    align-items: center;
    transition: all 0.1s ease;
}

.mbx .mbx_cen ul li a:hover {
    color: #00b7ee;
}

.mbx .mbx_cen ul li a .iconfont {
    font-size: 1.125rem;
    display: block;
    margin-right: .25rem;
}

.mbx .mbx_cen ul li:last-child a {
    color: #00b7ee;
}

@media (max-width: 999px) {
    .mbx {
        padding: 1rem 0;
    }

    .mbx .mbx_cen ul li a {
        font-size: 1rem;
    }
}

/* 分页器 */
.fyq {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fyq .fyq_cen {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.fyq .fyq_cen a {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #222222;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 1.25rem;
}

.fyq .fyq_cen a:hover {
    background: #00b7ee;
    color: #fff;
}

.fyq .fyq_cen a:last-child {
    margin-right: 0;
}

.fyq .fyq_cen a.active {
    color: #fff;
    background: #00b7ee;
}

@media (max-width: 550px) {
    .fyq .fyq_cen a {
        width: 2.5rem;
        height: 2.5rem;
        margin-right: .875rem;
    }

    .fyq .fyq_cen a:last-child {
        margin-right: 0;
    }
}


/* 内页banner */
.bannerLns {
    width: 100%;
    position: relative;
}

.bannerLns .bannerLns_prc img {
    display: block;
    width: 100%;
    min-height: 18.75rem;
    object-fit: cover;
}

.bannerLns .bannerLns_zi {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    line-height: 1;
    font-family: "Gotham_Medium";
    font-weight: bold;
    color: #fff;
}

@media (max-width: 1300px) {
    .bannerLns .bannerLns_zi {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .bannerLns .bannerLns_zi {
        font-size: 1.5rem;
    }
}