*,
html,
body {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #303030;
    font: 16px/1.6 "gantari-light";
    font-weight: 400;
    /* line-height: 1.6; */
    letter-spacing: 0.5px;
}

@font-face {
    font-family: "gantari-light";
    src: url(../font/gantari-light.ttf);
}

@font-face {
    font-family: "gantari-regular";
    src: url(../font/gantari-regular.ttf);
}

@font-face {
    font-family: "gantari-bold";
    src: url(../font/gantari-bold.ttf);
}

ul,
ol,
dl,
li,
dt,
dd {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
}

a {
    cursor: pointer;
}

a,
img,
select,
button,
input,
input[type=password],
input[type=text],
textarea {
    outline: none;
    resize: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-size: 100%;
    font-weight: normal;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

:root {
    --blue: #0172be;
    --white: #ffffff;
}

/*清除浮动*/
.clearfix::after,
.clearfix::before {
    content: ".";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

input {
    cursor: pointer;
    -webkit-appearance: none;
}

select {
    -webkit-appearance: button;
}

.padd {
    padding: 98px 0;
}

.inner {
    margin: 0 auto;
    position: relative;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 1600px) {
    /* .inner {
        width: 1170px;
    } */
}

@media (max-width: 1200px) {
    /* .inner{
        width: 970px;
    } */
}

@media (max-width: 900px) {
    /* .inner{
        width: 90%;
    } */
}

@media(max-width:1440px) {
    .padd {
        padding: 78px 0;
    }
}

@media(max-width:900px) {
    .padd {
        padding: 68px 0;
    }
}

@media(max-width:680px) {
    .padd {
        padding: 58px 0;
    }
}

/* swiper.js 控制器样式 */
.pos.swiper-pagination {
    width: 100%;
    bottom: 0 !important;
    position: relative;
    margin-top: 20px;
}

@media(max-width:500px) {

    .pos.swiper-pagination {
        margin-top: 10px;
    }
}


.swiper-pagination-bullet,
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 28px;
}

.swiper-pagination-bullet {
    cursor: pointer;
    opacity: 1;
    position: relative;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.58);
    transition: all 0.48s;
}

.swiper-pagination-bullet.my-bullet-active {
    width: 52px;
    background: rgba(255, 255, 255, 1);
}



/* 动画效果 */
.wgt-fade-animate {
    opacity: .1;
    transform: translateY(80px);
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
}

.appear {
    -webkit-animation: opacity_show 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_show 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_show {
    0% {
        transform: translateY(80px);
        -webkit-transform: translateY(80px);
        -moz-transform: translateY(80px);
        -ms-transform: translateY(80px);
        -o-transform: translateY(80px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@keyframes opacity_show {
    0% {
        opacity: .1;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}



.app_left {
    transform: translateX(-150px);
    opacity: 0;
    -moz-transform: translateX(-150px);
    -ms-transform: translateX(-150px);
    -o-transform: translateX(-150px);
    -webkit-transform: translateX(-150px);
}

.app_h {
    -webkit-animation: opacity_left 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_left 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_left {
    0% {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
        opacity: 0;
        -moz-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -o-transform: translateX(-150px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@keyframes opacity_left {
    0% {
        transform: translateX(-150px);
        opacity: 0;
        -moz-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -o-transform: translateX(-150px);
        -webkit-transform: translateX(-150px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

.app_right {
    transform: translate(150px);
    -webkit-transform: translate(150px);
    -moz-transform: translate(150px);
    -ms-transform: translate(150px);
    -o-transform: translate(150px);
    opacity: 0;
}

.app_r {
    animation: opacity_right 0.8s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    -webkit-animation: opacity_right 0.8s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

@-webkit-keyframes opacity_right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(150px);
        transform: translateX(150px);
        -moz-transform: translateX(150px);
        -ms-transform: translateX(150px);
        -o-transform: translateX(150px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@keyframes opacity_right {
    0% {
        opacity: 0;
        transform: translate(150px);
        -webkit-transform: translate(150px);
        -moz-transform: translate(150px);
        -ms-transform: translate(150px);
        -o-transform: translate(150px);
    }

    100% {
        -webkit-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

.appArf::after {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background: #15a78a;
    transition: all 0.8s ease-in;
    -webkit-transition: all 0.8s ease-in;
    -moz-transition: all 0.8s ease-in;
    -ms-transition: all 0.8s ease-in;
    -o-transition: all 0.8s ease-in;
}

.appArf.appArter::after {
    width: 0%;
}








header {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 99;
    width: 100%;
}


header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 94%;
    padding-left: 0px;
    padding-right: 0px;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    box-shadow: 0px 30px 60px 0px rgb(0 0 0 / 0%);
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    background: #fff;
}

.headLogo {
    display: block;
    width: 260px;
}

.headLogo img {
    width: 100%;
}



.headUl {
    display: flex;
    align-items: center;
    margin-left: 4%;
    margin-right: 2%;
    width: 68%;
}

.headUl ul {
    display: flex;
}

.headUl li {
    position: relative;
    z-index: 2;
    display: block;
    transition: all 0.3s;
}

.headUl li>a {
    position: relative;
    font-size: 18px;
    color: #2569af;
    padding: 0 3.2vw;
    line-height: 110px;
    display: block;
    font-weight: normal;
    text-align: center;
}

.headUl li>a::after {
    content: '';
    position: absolute;
    left: 15%;
    bottom: 18px;
    width: 70%;
    height: 0%;
    background: #c91d14;
    opacity: 1;
    z-index: 1;
    transition: all .3s ease;
}

.headUl li:first-child a::before {
    content: '';
}

.headUl li>a::before {
    content: '|';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    height: 100%;
    width: 1px;
    color: #d7d7d7;
}

.headUl li>a:hover::after {
    height: 5px;
}

.headLeft {
    width: 20%;
}

.headRig {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.headSs {
    width: 22px;
    height: 22px;
}

.headSs svg {
    width: 100%;
    height: 100%;
}

.headSs svg path {
    fill: #a4a7ab;
    transition: all .5s ease;
}

.headSs:hover svg path {
    color: #2569af;
}

.headYy {
    position: relative;
    width: 116px;
    height: 42px;
    margin-left: 10px;
    border-radius: 21px;
    background-color: #fff;
}

.headYyTop {
    padding: 0 40px 0 15px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.headYyTop p {
    line-height: 42px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.headYyTop svg {
    margin: 0;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 15px;
    top: 15px;
    left: auto;
    bottom: auto;
    transition: all 0.2s;
}

.headYyCon {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 21px;
    background-color: #fff;
}

.headYyUl {
    position: relative;
    display: none;
}

.headYyUl a {
    line-height: 32px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 15px;
    color: #555;
    font-weight: 500;
    font-weight: normal;

}

.headYyUl a.act {
    color: #0172be;
}

.headYy.act .headYyUl {
    display: block;
}

.headYy.act svg {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}

.headTbox {
    background: #176cc1cf;
    transform: translateX(0%);
    left: 0;
    width: 300px;
    border-radius: 0;
    padding: 15px 0;
    position: absolute;
    top: 100%;
    z-index: 99;
    display: none;
}

.headTbox a {
    color: #ffffff;
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 46px;
    z-index: 2;
    padding: 0 20px;
    transition: all ease .3s
}

.headTbox a svg {
    display: block;
    width: 17px;
    height: 20px;
}

.headTbox a svg path {
    fill: #fff;
}

.headTbox a:hover {
    color: #ffffff;
    background: #efa60a;
}




.headFl {
            margin-left: 15px;
            position: relative;
            width: 22px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            display: none;
        }
        .headFl.active span:nth-child(2) {
           display: none;
        }
         .headFl.active span{
            margin: 0;
         }
        .headFl.active span:nth-child(1){
            transform: rotate(-45deg) translateX(-1px);
            -webkit-transform: rotate(-45deg) translateX(-1px);
            -moz-transform: rotate(-45deg) translateX(-1px);
            -ms-transform: rotate(-45deg) translateX(-1px);
            -o-transform: rotate(-45deg) translateX(-1px);
}
.headFl.active span:nth-child(3){
            transform: rotate(45deg) translateX(-1px);
            -webkit-transform: rotate(45deg) translateX(-1px);
            -moz-transform: rotate(45deg) translateX(-1px);
            -ms-transform: rotate(45deg) translateX(-1px);
            -o-transform: rotate(45deg) translateX(-1px);
}
        .headFl span {
            display: block;
            width: 100%;
            margin: 2px 0;
            background: #666;
            height: 2px;
            border-radius: 0px;
            transition: all 0.48s;
        }

        .headFl span:nth-child(2) {
            width: 14px;
            margin-left: 8px;
        }


.moHead_mlb {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    z-index: 9;
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow: hidden;
}

.moHead_mlbXq {
   padding: 30px 30px;
   height: calc(100% - 60px);
   overflow-y: auto;
   scrollbar-width: none; 
  -ms-overflow-style: none; 
   border-top: 1px solid rgba(0, 0, 0, .1);
}
.moHead_mlbXq::-webkit-scrollbar {
    width: 0 !important;
  }
.moHead_mlb li {
    width: 100%;
    border-bottom: 1px solid rgb(0, 0, 0,.07);
    position: relative;
    padding: 22px 0;
}
.moHead_mlb li svg{
    width: 22px;
    height: 22px;
    transition: all 0.48s;
}
.moHead_mlb li svg path{
    fill: #999;
}
.moHead_Top a {
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.moHead_Top:hover a{
    color: #0172be;
}
.moHead_Top:hover svg path{
    fill: #0172be;
}
.moHead_Top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.moHead_Con{
    background: #f7f8f9;
    padding: 20px;
      margin-top: 20px;
      display: none;
}
.moHead_Con a{
    display: block;
    font-size: 16px;
    padding: 10px 0;
  
}
.moHead_Con a:hover{
    color: #0172be;
}















@media (max-width: 1280px) {
    .headUl li>a {
        padding: 0 24px;
    }

    .headLogo {
        display: block;
        width: 220px;
    }

    .headUl {
        width: 60%;
    }

    .headTbox {
        width: 280px;
    }

    .headTbox a {
        line-height: 40px;
    }
}

@media (max-width: 1200px) {
    .headUl li>a {
        font-size: 16px;
        padding: 0 25px;
    }

    .headLogo {
        display: block;
        width: 200px;
    }

    .headUl {
        width: 60%;
        margin-left: 0%;
    }

    .headTbox {
        width: 260px;
    }

    .headTbox a {
        line-height: 40px;
    }
}

@media (max-width: 1024px) {
    .headYyTop p {
        font-size: 14px;
    }

    .headSs {
        width: 20px;
        height: 20px;
    }

    .headLogo {
        display: block;
        width: 180px;
    }

    .headUl {
        width: auto;
    }
}

@media (max-width: 900px) {
    .headUl {
        display: none;
    }
    header {
    height: 70px;
    
}
.headFl{
    display: flex;
}
header .inner{
    height: 100%;
}
.headYy {
    width: 100px;
    height: 42px;}
     .headYyUl a{
        font-size: 14px;
    }
}

@media (max-width: 680px){
        .headLogo {
        display: block;
        width: 160px;
    }
        .headYyTop p {
        font-size: 12px;
    }
    .headYyUl a{
        font-size: 12px;
    }
    .moHead_Top a {
    font-size: 16px;}
    .moHead_Con a {
    font-size: 14px;
    }
}
@media (max-width: 500px){
    .headYyTop {
    padding: 0 30px 0 15px;}
        .headYy {
        width: 90px;
        }
            .headLogo {
        display: block;
        width: 150px;
    }
}




.pinBox {
    position: fixed;
    right: 0;
    bottom: 50px;
    z-index: 9;
    width: 45px;
    height: 50px;
}

.pinTop {
    width: 100%;
    height: 100%;
    display: block;
    background: #0d5eb4;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pinTop svg {
    width: 30px;
    height: 30px;
}

.pinTop svg path {
    fill: #fff;
}

.pinTop:hover {
    background: #c91d14;
}














.fooder {
    min-height: 300px;
    padding-top: 170px;
    padding-bottom: 0px;
    background-image: url(../images/foodBg.webp);
    background-position: top center;
    margin-top: 180px;
    background-size: cover;
}

.foodTop .inner {
    width: 94%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.foodLogo {
    width: 347px;
}

.foodLogo img {
    width: 100%;
}

.foodCon {
    margin-top: 70px;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 150px;
}

.foodLeft {
    width: 70%;
    position: relative;
}

.foodTit {
    margin-top: 15px;
    font-family: "gantari-regular";
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    margin-bottom: 15px;
}

.foodText {
    margin-top: 50px;

}

.foodText p,
.foodText a {
    font-family: "gantari-regular";
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
}

.foodKx {
    width: 79px;
    height: 28px;
    margin-top: 10px;
    display: block;
}

.foodRig {
    padding-left: 8rem;
    width: 30%;
}

.foodRigTit {
    line-height: normal;
    font-size: 24px;
    font-family: "gantari-bold";
    color: rgba(255, 255, 255, 1);
}

.foodList {
    margin-top: 30px;
    position: relative;
}

.foodItem {
    font-size: 22px;
    font-family: "gantari-regular";
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
    padding-left: 30px;
    padding-bottom: 40px;
    position: relative;
    display: block;
}

.foodItem::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    left: 5px;
    top: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    z-index: 2;
}

.foodBon {
    background-color: #2569af12;
    padding: 25px 0;
    border-top: 1px solid #0000001a;

}

.foodBon .inner {
    width: 94%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foodBText {
    display: flex;
    justify-content: space-between;
}

.foodBText p,
.foodBText a {
    font-size: 16px;
    line-height: 20px;
    color: rgba(85, 85, 85, 1);
    font-family: "gantari-regular";
}

@media (max-width: 1680px) {
    .foodItem {
        font-size: 20px;
    }

    .foodCon {
        margin-top: 50px;
    }
}

@media (max-width: 1480px) {
    .foodLogo {
        width: 308px;
    }

    .foodRigTit,
    .foodTit {
        font-size: 22px;
    }

    .foodText p,
    .foodText a {
        font-size: 22px;
    }

    .foodItem {
        padding-bottom: 32px;
    }

    .fooder {
        padding-top: 100px;
        margin-top: 120px;
    }
}

@media (max-width: 1368px) {
    
    .foodBText p,
    .foodBText a {
        font-size: 14px;
    }
    .foodItem {
        padding-bottom: 20px;
    }

    .foodCon {
        margin-top: 30px;
        padding-bottom: 110px;
    }

    .foodLogo {
        width: 280px;
    }

    .foodRigTit,
    .foodTit {
        font-size: 20px;
    }

    .fooder {
        padding-top: 80px;
        margin-top: 100px;
    }
}

@media (max-width: 1280px) {
    .foodRig {
        padding-left: 30px;
    }
}

@media (max-width: 1024px) {
    .foodRig {
        display: none;
    }

    .foodText p,
    .foodText a {
        font-size: 20px;
    }

    .foodLogo {
        width: 250px;
    }

    .foodLeft {
        width: 100%;
    }

    .foodBon .inner {
        flex-wrap: wrap;
    }
}

@media (max-width: 680px) {
    .foodLogo {
        width: 230px;
    }

    .fooder {
        padding-top: 80px;
        margin-top: 50px;
    }

    .foodRigTit,
    .foodTit {
        font-size: 18px;
    }

    .foodText p,
    .foodText a {
        font-size: 18px;
    }

    .foodBText:first-child {
        margin-bottom: 10px;
        flex-wrap: wrap;
    }


    .foodText {
        margin-top: 30px;
    }
}

@media (max-width: 500px) {
    .foodLogo {
        width: 200px;
    }
        .foodRigTit, .foodTit {
        font-size: 16px;
    }
        .foodText p, .foodText a {
        font-size: 16px;
    }
    .foodTit {
    margin-top: 0;}
}