* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'RO';
    src: url(../fonts/Roboto.ttf);
}
@font-face {
    font-family: 'PR';
    src: url(../fonts/PlayfairDisplay-Regular.ttf);
}

*:not(.fa) {
    font-family: 'RO';
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    vertical-align: top;
    outline-width: 0ch;
}

 :root {
    --main-color: #94b18e;
    --main-color-white: #ffffff;
    --main-color-555: #555555;
    --main-color-333: #333333;
    --main-color-888: #888888;
    --main-color-666: #666666;
    --main-color-999: #999999;
    --main-transition: all ease 0.4s;
    --main-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media only screen and (min-width: 996px) {
    .pchead {
        width: 100%;
        height: 80px;
        transition: var(--main-transition);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .pchead:hover {
        background-color: #1e1e1d;
    }
    .pcheader {
        max-width: 1540px;
        padding: 0 25px;
        margin: 0 auto;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .innerHead {
        background-color: #1e1e1d;
    }
    .tr_add {
        background-color: #1e1e1d;
    }
    .pclogo img {
        height: 35px;
    }
    .pcnav {
        margin-left: 60px;
        display: flex;
        align-items: center;
    }
    .pcnav>li>a {
        color: var(--main-color-white);
        font-size: 16px;
        position: relative;
        display: block;
        font-family: Arial, Helvetica, sans-serif !important;
        text-transform: uppercase;
    }
    .pcnav>li {
        position: relative;
        margin: 0 15px;
    }
    .pcleft {
        display: flex;
        align-items: center;
    }
    .pcnav>li>a:hover::after {
        width: 100%;
    }
    .pcnav>li>a::after {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        left: 0;
        width: 0;
        content: '';
        bottom: -2px;
        transition: var(--main-transition);
    }
    .navAct::after {
        width: 100% !important;
    }
    .pcdrop {
        position: absolute;
        padding: 25px 0;
        top: 100%;
        left: 0;
        width: 280px;
        opacity: 0;
        visibility: hidden;
        transition: var(--main-transition);
    }
    .pcdropcon {
        background-color: #494949;
    }
    .pcdropcon a {
        color: var(--main-color-white);
        font-size: 16px;
        display: block;
        height: 40px;
        font-family: Arial, Helvetica, sans-serif !important;
        line-height: 40px;
        padding-left: 20px;
    }
    .pcdropcon a:last-child {
        /*margin-bottom: 0;*/
    }
    .pcnav>li:hover .pcdrop {
        opacity: 1 !important;
        visibility: visible !important;
    }
    .pcnav>li:hover>a::after {
        width: 100% !important;
    }
    .pcright {
        display: flex;
        align-items: center;
    }
    .Phone {
        display: flex;
        align-items: center;
    }
    .Phone i {
        color: #fff;
        font-size: 20px !important;
    }
    .Phone span {
        margin-left: 10px;
        display: block;
        font-size: 16px;
        color: var(--main-color-white);
    }
    .searchBtn1 {
        margin-left: 40px;
    }
    .searchBtn1 i {
        color: var(--main-color-white);
        font-size: 20px !important;
        cursor: pointer;
    }
    .search {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 999;
        background: rgba(0, 0, 0, .6);
        display: none;
    }
    .searchCon {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .SearhBox {
        width: 550px;
        background-color: var(--main-color-white);
        padding: 40px 20px;
        position: relative;
    }
    .SearhBox img {
        position: absolute;
        right: 15px;
        top: 15px;
        cursor: pointer;
    }
    .SearhBox h1 {
        font-weight: normal;
        color: #3a3a3c;
        font-size: 28px;
        margin-bottom: 35px;
    }
    .SearhBox input {
        display: block;
        width: 100%;
        outline: none;
        height: 55px;
        padding-left: 15px;
        border: 1px solid #c4c4c4;
    }
    .SearhBox input:focus {
        border: 1px solid #194666;
    }
    .ml_mb_head {
        display: none;
    }
    .ml_mb_nav {
        display: none;
    }
    .banner {
        width: 100%;
        position: relative;
    }
    .banner img {
        width: 100%;
    }
    .bannerPos {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        background: rgba(0, 0, 0, .5);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .bannerPos h1 {
        text-align: center;
        color: var(--main-color-white);
        font-size: 57px;
        font-weight: normal;
        margin-bottom: 15px;
		font-family: 'PR';
    }
    .bannerPos a {
        display: block;
        width: 150px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        color: var(--main-color-white);
        font-size: 16px;
        border: 1px solid var(--main-color-white);
        transition: var(--main-transition);
    }
    .bannerPos a:hover {
        background: rgba(255, 255, 255, .3);
    }
    .con1 {
        padding: 100px 0;
    }
    .con1con {
        max-width: 1200px;
        padding: 0 25px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .con1left {
        width: 48%;
    }
    .con1left img {
        width: 100%;
    }
    .con1right {
        width: 48%;
    }
    .con1right h3 {
        font-size: 28px;
        font-weight: normal;
        color: #3a3a3c;
    }
    .con2 {
        padding: 100px 0;
        background-color: #f4f6f8;
    }
    .con2con {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 25px;
    }
    .con2con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .con2con ul li {
        width: calc((100% - 50px) / 3);
        position: relative;
        cursor: pointer;
        overflow: hidden;
        margin-right: 25px;
        margin-bottom: 25px;
    }
    .con2con ul li:nth-child(3n) {
        margin-right: 0;
    }
    .con2con ul li img {
        width: 100%;
        transition: var(--main-transition);
    }
    .con2con ul li:hover img {
        transform: scale(1.1);
    }
    .con2pos {
        position: absolute;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        left: 0;
        bottom: 0;
        padding: 148px 15px;
        text-align: center;
    }
    .con2pos p {
        color: var(--main-color-white);
        font-size: 30px;
        margin-bottom: 10px;
    }
    .con2pos span {
        color: var(--main-color-white);
        font-size: 20px;
        line-height: 20px;
    }
    .title {
        text-align: center;
        color: #00416b;
        font-size: 48px;
        margin-bottom: 30px;
		font-family: 'PR';
    }
    .con3 {
        padding: 100px 0;
    }
    .con3con {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con3left {
        width: 52%;
        padding-left: 20vw;
    }
    .con3right {
        width: 45%;
    }
    .con3right img {
        width: 100%;
    }
    .con3left h1 {
        font-size: 48px;
        color: #00416b;
        font-weight: normal;
		font-family: 'PR';
    }
    .con3left h5 {
        font-weight: normal;
        color: #3a3a3c;
        font-size: 16px;
        margin-bottom: 40px;
        line-height: 25px;
        margin-top: 10px;
    }
    .con3left ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con3left ul li {
        width: 48%;
        margin-bottom: 25px;
    }
    .con3left ul li p {
        font-size: 24px;
        font-weight: 600;
        color: #3a3a3c;
        margin-bottom: 15px;
    }
    .con3left ul li span {
        font-size: 16px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .con4 {
        padding: 80px 0;
        background-color: #1e1e1d;
    }
    .con4con {
        max-width: 100%;
        padding: 0 30px 0 110px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con4left {
        width: 30%;
    }
    .con4right {
        width: 65%;
        position: relative;
    }
    .con4left p {
        color: var(--main-color-white);
        font-size: 57px;
		font-family: 'PR';
    }
    .con4left span {
        color: var(--main-color-white);
        font-size: 16px;
        line-height: 25px;
        margin-top: 30px;
        display: block;
    }
    .con4left a {
        display: block;
        transition: var(--main-transition);
        width: 165px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        margin-top: 30px;
        color: var(--main-color-white);
        font-size: 16px;
        border: 1px solid var(--main-color-white);
    }
    .con4left a:hover {
        background: rgba(255, 255, 255, .3);
    }
    .mySwiperCon4 {
        width: 100%;
    }
    .con4Box {
        position: relative;
        overflow: hidden;
    }
    .con4Box img {
        width: 100%;
        transition: var(--main-transition);
        object-fit: cover;
    }
    .mySwiperCon4 .swiper-slide {
        cursor: pointer;
    }
    .con4pos {
        position: absolute;
        width: 100%;
        bottom: 0;
        padding: 20px;
        left: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }
    .con4pos p {
        color: #fff;
        font-size: 25px;
    }
    .con4pos span {
        color: var(--main-color-white);
        font-size: 16px;
        line-height: 25px;
    }
    .con4Box:hover img {
        transform: scale(1.1);
    }
    .scrollCommon {
        width: 100%;
        bottom: -20px;
        height: 5px;
    }
    .scrollCommon .swiper-scrollbar-drag {
        height: 5px;
    }
    .con4right .swiper-scrollbar {
        background-color: #979595;
    }
    .con4right .swiper-scrollbar-drag {
        background-color: var(--main-color-white);
        height: 5px;
    }
    .compoment_swiper {
        width: 100%;
    }
    .tabArrow {
        margin-top: 40px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .tabArrow span {
        cursor: pointer;
        color: #626261;
        font-size: 40px !important;
        margin-left: 40px;
    }
    .tabArrow span:hover i {
        color: var(--main-color-white) !important;
    }
    .con5 {
        padding: 100px 0;
        background-color: #f4f6f8;
    }
    .con5con {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 25px;
        position: relative;
    }
    .mySwiperCon5 {
        width: 100%;
    }
    .mySwiperCon5 img {
        width: 100%;
    }
    .ImgBox {
        position: relative;
    }
    .sg {
        position: absolute;
        width: 130px;
        background-color: var(--main-color-white);
        display: flex;
        align-items: center;
        height: 35px;
        left: 20px;
        bottom: -15px;
        justify-content: center;
        padding: 0 10px;
        border-bottom: 5px solid #94b18e;
        z-index: 99;
    }
    .sg img {
        width: 15px;
        height: 15px;
    }
    .sg span {
        font-size: 14px;
        font-weight: bold;
        margin-left: 5px;
    }
    .atTxt {
        background-color: var(--main-color-white);
        padding: 25px 15px;
    }
    .dateBox {
        position: absolute;
        left: 20px;
        top: 20px;
        background-color: var(--main-color-white);
        padding: 2px 20px;
        text-align: center;
    }
    .dateBox strong {
        color: #3a3a3c;
        font-size: 28px;
        display: block;
        text-align: center;
        margin: 6px 0;
    }
    .dateBox p {
        font-size: 14px;
        color: #3a3a3c;
    }
    .mySwiperCon5 .swiper-slide {
        cursor: pointer;
    }
    .iconL {
        display: flex;
        align-items: center;
    }
    .iconLItem {
        padding: 5px;
        background-color: #f7f5f1;
        margin-right: 10px;
    }
    .iconLItem img {
        width: 20px;
    }
    .iconLItem span {
        font-size: 12px;
        color: #3a3a3c;
    }
    .atTxt p {
        font-size: 14px;
        color: #3a3a3c;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .atTxt strong {
        font-weight: normal;
        font-size: 24px;
        color: #3a3a3c;
        margin-bottom: 5px;
        display: block;
    }
    .atTxt em {
        font-weight: normal;
        line-height: 23px;
        font-style: normal;
        display: block;
        font-size: 16px;
        color: #3a3a3c;
    }
    .conAllType {
        transition: var(--main-transition);
    }
    .conAllType:hover {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    }
    .con5con .tabArrow span:hover i {
        color: #3a3a3c !important;
    }
    .more {
        display: block;
        width: 135px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        color: #1e1e1d;
        font-size: 16px;
        margin: 0 auto;
        margin-top: 30px;
        border: 1px solid #1e1e1d;
        transition: var(--main-transition);
    }
    .more:hover {
        background: #dbdddf;
    }
    .con6 {
        padding: 200px 0;
        background-image: url(../images/bg1.jpg);
        background-repeat: no-repeat;
        position: relative;
    }
    .con6con {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }
    .con6 h1 {
        text-align: center;
        color: var(--main-color-white);
        font-size: 45px;
        font-weight: normal;
    }
    .con6::before {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        /*background: rgba(0, 0, 0, .3);*/
        content: '';
        position: absolute;
    }
    .con6con p {
        text-align: center;
        color: #fff;
        font-size: 25px;
        margin-top: 30px;
    }
    .ImgBox>img {
        width: 100%;
    }
    .ImgBox {
        cursor: pointer;
    }
    .con8 {
        padding: 100px 0;
        background-color: #00416b;
    }
    .con8con {
        max-width: 800px;
        margin: 0 auto;
    }
    .con8Swiper {
        padding-bottom: 100px !important;
    }
    .con8Swiper h1 {
        font-size: 40px;
        color: var(--main-color-white);
        text-align: center;
        font-style: italic;
        font-weight: normal;
    }
    .con8Swiper p {
        color: var(--main-color-white);
        font-size: 16px;
        margin: 30px 0;
        line-height: 30px;
        text-align: center;
    }
    .con8Swiper .swiper-slide span {
        font-size: 16px;
        color: var(--main-color-white);
        display: block;
        text-align: center;
    }
    .con8Swiper .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        background-color: var(--main-color-white);
        margin: 0 7px !important;
    }
    .con8Swiper .swiper-pagination-bullet-active {
        width: 12px !important;
        height: 12px !important;
    }
    .con8page {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .con9 {
        padding: 80px 0;
    }
    .con9con {
        max-width: 100%;
    }
    .title_p {
        text-align: center;
        color: #3a3a3c;
        font-size: 16px;
        margin-bottom: 30px;
    }
    .tab_sw {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
    }
    .tab_sw span {
        display: inline-block;
        padding: 8px 25px;
        border: 1px solid #e0e0e0;
        font-size: 14px;
        cursor: pointer;
        transition: var(--main-transition);
    }
    .tab_sw span:hover {
        background-color: #e5e5e5;
    }
    .tab_ac {
        background-color: #000 !important;
        color: #fff !important;
    }
    .swiper_fy {
        position: relative;
        display: none;
    }
    .mySwiperCon9 img {
        width: 100%;
    }
    .con9pos {
        position: absolute;
        width: 100%;
        padding: 25px;
        color: var(--main-color-white);
        left: 0;
        bottom: 0;
        font-size: 28px;
    }
    .swiper_fy .compoment_swiper {
        max-width: 1200px;
        padding: 0 25px;
        margin: 0 auto;
    }
    .con9con span:hover i {
        color: #3a3a3c !important;
    }
    .con11 {
        padding: 0;
        width: 100%;
    }
    .con11con {
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con11left {
        width: 50%;
    }
    .con11right {
        width: 50%;
    }
    .con11left img {
        width: 100%;
    }
    .con11right {
        padding: 5vw 10vw;
        background-color: #f9f7f4;
    }
    .con11right strong {
        color: #00416b;
        font-size: 45px;
        font-weight: normal;
        display: block;
        margin-bottom: 40px;
    }
    .con11right p {
        font-size: 16px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .con11right a {
        width: 130px;
        margin-top: 30px;
        height: 45px;
        text-align: center;
        color: #3a3a3c;
        font-size: 16px;
        transition: var(--main-transition);
        display: block;
        line-height: 45px;
        border: 1px solid #3a3a3c;
    }
    .con11right a:hover {
        background-color: #e0dedb;
    }
    .con12 {
        padding: 100px 0;
    }
    .con12con {
        max-width: 1200px;
        padding: 0 25px;
        margin: 0 auto;
    }
    .con12con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .con12con ul li {
        width: calc(100% / 3);
        padding: 0 15px;
        border-right: 1px solid #f1f1f1;
    }
    .con12con ul li img {
        width: 100%;
    }
    .newB {
        padding: 20px 0;
    }
    .newB span {
        font-size: 14px;
        color: #c5c5c5;
    }
    .newB h1 {
        font-weight: normal;
        color: #545456;
        font-size: 20px;
        margin: 20px 0;
    }
    .newB p {
        font-size: 14px;
        color: #545456;
        line-height: 25px;
    }
    .n_more {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-top: 15px;
    }
    .n_more img {
        width: 15px !important;
    }
    .n_more a {
        color: #545456;
        font-size: 14px;
    }
    .con12con ul li:last-child {
        border-right: none !important;
    }
    .foot {
        background-color: #1e1e1d;
        padding: 40px 0;
    }
    .footer {
        max-width: 1200px;
        padding: 0 25px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footerleft {
        width: 50%;
    }
    .footerleft ul {
        display: flex;
        flex-wrap: wrap;
    }
    .footerleft ul li {
        width: calc(100% / 3);
    }
    .footerleft ul li strong {
        font-size: 12px;
        font-weight: normal;
        color: var(--main-color-white);
        display: block;
        margin-bottom: 20px;
    }
    .footerleft ul li a {
        color: var(--main-color-white);
        font-size: 12px;
        display: block;
        margin-bottom: 15px;
    }
    .links {
        margin-top: 70px;
    }
    .links strong {
        display: block;
        font-size: 14px;
        margin-bottom: 20px;
        font-weight: normal;
        color: var(--main-color-white);
    }
    .link_ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .link_ul a i {
        color: #767677;
        font-size: 25px;
        margin-right: 20px;
    }
    .link_ul a i:hover {
        color: var(--main-color-white) !important;
    }
    .req {
        width: 240px;
        height: 45px;
        line-height: 45px;
        border: 1px solid var(--main-color-white);
        font-size: 14px;
        text-align: center;
        display: block;
        color: var(--main-color-white);
        margin-top: 20px;
        transition: var(--main-transition);
        text-transform: uppercase;
    }
    .req:hover {
        background-color: #4b4b4a;
    }
    .copy {
        margin-top: 20px;
        color: var(--main-color-white);
        font-size: 14px;
    }
    .footerright {
        width: 35%;
    }
    .footerright strong {
        font-size: 22px;
        color: #e0e0e0;
        font-weight: normal;
    }
    .footerright p {
        font-size: 14px;
        color: #e0e0e0;
        margin: 20px 0;
    }
    .footerright input {
        border: none;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--main-color-white);
        height: 30px;
        color: var(--main-color-white);
        display: block;
        background-color: transparent;
        width: 100%;
        outline: none;
    }
    .footerright input::-webkit-input-placeholder {
        color: var(--main-color-white);
    }
    .footerright a {
        width: 100%;
        height: 45px;
        font-size: 14px;
        line-height: 45px;
        text-align: center;
        display: block;
        color: var(--main-color-white);
        border: 1px solid var(--main-color-white);
    }
    .bot {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 40px;
        color: var(--main-color-white);
        font-size: 14px;
        padding-bottom: 0;
        margin-top: 20px;
        border-top: 1px solid #9c9c9c;
    }
    .bot a {
        color: var(--main-color-white);
    }
    .inbanner {
        margin-top: 80px;
        width: 100%;
        position: relative;
    }
    .inbanner img {
        width: 100%;
    }
    .in_pos {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 99;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .in_pos h1 {
        font-size: 57px;
        font-weight: normal;
        color: var(--main-color-white);
		font-family: 'PR';
    }
    .bread {
        width: 100%;
        padding: 25px 0;
    }
    .breadCon {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 25px;
        display: flex;
        align-items: center;
    }
    .breadCon a {
        color: #00000099;
        font-size: 16px;
    }
    .breadCon span {
        display: block;
        color: #00000099;
        margin: 0 10px;
        font-size: 16px;
    }
    .why1 {
        padding: 80px 0;
    }
    .why1con {
        max-width: 1200px;
        padding: 0 25px;
        margin: 0 auto;
        color: #3a3a3c;
        text-align: center;
        line-height: 45px;
        font-size: 32px;
    }
    .why2 {
        width: 100%;
    }
    .why2con {
        max-width: 100%;
    }
    .why2conItem {
        padding: 45px 0;
    }
    .why2Item {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 25px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .w2left {
        width: 48%;
    }
    .w2left img {
        width: 100%;
    }
    .w2right {
        width: 48%;
    }
    .w2right .roman {
        color: #00416b;
        font-size: 32px;
		font-family: 'PR';
    }
    .w2right p {
        font-size: 16px;
        color: #3a3a3c;
        margin-top: 30px;
        line-height: 30px;
    }
    .why2conItem:nth-child(odd) {
        background-color: #f4f6f8;
    }
    .why2conItem:nth-child(even) .why2Item {
        flex-direction: row-reverse;
    }
    .why3 {
        width: 100%;
        background-image: url(../images/bg2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }
    .why3con {
        width: 100%;
        height: 100%;
        background: rgba(0, 65, 107, .6);
        padding: 150px 0;
    }
    .why3Box {
        margin: 0 auto;
        max-width: 900px;
        padding: 0 25px;
    }
    .why3Box h1 {
        color: var(--main-color-white);
        text-align: center;
        font-size: 32px;
        font-weight: normal;
    }
    .why3Box a {
        width: 200px;
        height: 45px;
        line-height: 45px;
        transition: var(--main-transition);
        text-align: center;
        display: block;
        color: var(--main-color-white);
        border: 1px solid var(--main-color-white);
        margin: 0 auto;
        font-size: 14px;
        margin-top: 60px;
    }
    .why3Box a:hover {
        background-color: #497695;
    }
    .eg1 {
        width: 100%;
        padding: 100px 0;
    }
    .eg1con {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .eg1con:nth-child(even) {
        /*flex-direction: row-reverse;*/
    }
    .eg1left {
        width: 48%;
    }
    .eg1right {
        width: 48%;
    }
    .eg1right img {
        width: 100%;
    }
    .eg1left h1 {
        color: #00416b;
        font-size: 32px;
        font-weight: normal;
		font-family: 'PR';
    }
    .eg1left p {
        margin-top: 10px;
        color: #3a3a3c;
        font-size: 16px;
        line-height: 25px;
    }
    .eg2 {
        padding: 80px 0;
        background-color: #f4f6f8;
    }
    .eg2con {
        max-width: 1200px;
        padding: 0 25px;
        margin: 0 auto;
    }
    .eg2con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .eg2con ul li {
        width: calc((100% - 50px) / 3);
        margin-right: 25px;
        margin-bottom: 25px;
    }
    .eg2con ul li:nth-child(3n) {
        margin-right: 0;
    }
    .detail1 {
        border-top: 20px solid #e0ac7a;
        width: 100%;
        padding: 10px 0;
        background-color: #f8f7f3;
    }
    .detail1con {
        max-width: 1200px;
        padding: 0 25px;
        margin: 0 auto;
    }
    .detail1con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .detail1con ul li {
        width: 25%;
        border-right: 1px solid #727171;
        padding: 15px;
    }
    .detail1con ul li p {
        font-size: 16px;
        color: #1e1e1d;
        text-align: center;
    }
    .detail1con ul li h1 {
        text-align: center;
        font-weight: normal;
        font-size: 24px;
        color: #1e1e1d;
        margin-top: 10px;
    }
    .detail1con ul li:last-child {
        border: none !important;
    }
    .detail2 {
        width: 100%;
        padding: 30px 0;
    }
    .detail2con {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 25px;
    }
    .d2left {
        width: 280px;
        background-color: #f4f6f8;
        padding: 40px 0;
        position: sticky;
        top: 100px;
        float: left;
    }
    .d2right {
        width: calc(100% - 280px);
        padding-left: 50px;
        float: right;
    }
    .clear {
        width: 100%;
        clear: both;
    }
    .d2left ul li {
        padding: 0 16px;
        display: block;
        height: 48px;
        line-height: 48px;
    }
    .d2left ul li a {
        display: inline;
        color: #3a3a3c;
        font-size: 16px;
        position: relative;
        text-transform: uppercase;
    }
    .d2left ul li a::after {
        width: 0%;
        position: absolute;
        height: 2px;
        background-color: #3a3a3c;
        content: '';
        left: 0;
        transition: var(--main-transition);
        bottom: -5px;
    }
    .d2left ul li a:hover::after {
        width: 100% !important;
    }
    .active a::after {
        width: 100% !important;
    }
    .d_loca {
        display: flex;
        margin-bottom: 30px;
    }
    .d_loca a {
        font-size: 16px;
        color: #545456;
    }
    .d_loca span {
        display: block;
        margin: 0 15px;
    }
    .Overview h1 {
        margin-bottom: 30px;
        color: #3a3a3c;
        font-size: 32px;
        font-weight: normal;
        line-height: 45px;
    }
    .ov {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .ovleft {
        width: 48%;
    }
    .ovleft img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .ovright {
        width: 48%;
    }
    .ovrItem p {
        font-size: 24px;
        color: #3a3a3c;
        margin-bottom: 10px;
    }
    .ovrItem span {
        font-size: 16px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .ovrItem {
        padding: 15px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    .ovrItem:last-child {
        border: none !important;
    }
    .maps {
        border: 1px solid #e0e0e0;
        margin: 30px auto;
    }
    .desBox {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .dbleft {
        width: 45%;
    }
    .dbleft img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .dbright {
        width: 55%;
        padding: 35px 20px 35px 50px;
        background-color: #f9f7f4;
    }
    .dbright h1 {
        font-weight: normal;
        font-size: 40px;
        color: #3a3a3c;
    }
    .desItem {
        margin-top: 40px;
    }
    .desItem:last-child {
        margin-bottom: 0;
    }
    .desItem p {
        color: #000000de;
        font-weight: bold;
        font-size: 18px;
    }
    .desItem span {
        font-size: 16px;
        margin-top: 10px;
        display: block;
        line-height: 25px;
    }
    .ins_swiper {
        width: 100%;
    }
    .ins_swiper img {
        width: 100%;
    }
    .insPos {
        position: absolute;
        max-width: 560px;
        bottom: 30px;
        left: 30px;
        padding: 20px 15px;
        z-index: 99;
        background-color: rgba(255, 255, 255, 0.8);
    }
    .insPos p {
        font-size: 24px;
        color: #3a3a3c;
        margin-bottom: 15px;
    }
    .insPos span {
        font-size: 16px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .insbtn {
        width: 30px !important;
        height: 30px !important;
    }
    .insbtnL {
        right: 60px !important;
        left: auto !important;
        bottom: 30px !important;
        top: auto !important;
    }
    .insbtnR {
        right: 10px !important;
        left: auto !important;
        bottom: 30px !important;
        top: auto !important;
    }
    .ins_bot {
        padding: 25px 40px;
        background-color: #f4f6f8;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .ibleft {
        width: 55%;
    }
    .ibright {
        width: 42%;
        padding-left: 25px;
        border-left: #d3d3d3 1px solid;
    }
    .ibleft h3 {
        font-style: italic;
        font-size: 24px;
        color: #1e1e1d;
    }
    .ibleft h2 {
        font-size: 32px;
        font-weight: normal;
        color: #3a3a3c;
        margin-bottom: 20px;
    }
    .ibleft p {
        font-size: 16px;
        color: #000;
        line-height: 25px;
    }
    .ibrItem {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .ibrItem img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .ibrItem div {
        flex: 1;
        display: flex;
    }
    .ibrItem div em {
        font-weight: bold;
        font-style: normal;
        color: #3a3a3c;
        font-size: 16px;
    }
    .ibrItem div span {
        font-weight: normal;
        color: #3a3a3c;
    }
    .ibrItem:last-child {
        margin-bottom: 0 !important;
    }
    .anchor {
        margin-top: -80px;
        padding-top: 80px;
    }
    .stayBox {
        width: 100%;
        border: 1px solid #d3d3d3;
    }
    .stayBox img {
        width: 100%;
    }
    .stayinfo {
        padding: 15px 20px;
    }
    .stayinfo h1 {
        font-size: 24px;
        color: #3a3a3c;
        font-weight: normal;
    }
    .Featured .con5 {
        padding: 0;
        background-color: var(--main-color-white);
    }
    .stayinfo p {
        font-size: 16px;
        color: #3a3a3c;
        margin: 20px 0;
    }
    .stayinfo em {
        font-weight: bold;
        margin-right: 5px;
        font-style: normal;
    }
    .stayinfo a {
        width: 100%;
        text-align: center;
        color: #3a3a3c;
        font-size: 16px;
        border: 1px solid #3a3a3c;
        display: block;
        height: 40px;
        margin-top: 40px;
        line-height: 40px;
    }
    .stayinfo a:hover {
        background-color: #e5e5e5;
    }
    .tesBox {
        padding: 70px 110px;
        background-color: #f4f6f8;
        margin-top: 60px;
    }
    .tesBox h1 {
        text-align: center;
        color: #00416b;
        text-align: center;
        font-size: 40px;
        font-style: italic;
    }
    .tesBox p {
        color: #00416b;
        font-size: 18px;
        font-style: italic;
        text-align: center;
        width: 70%;
        margin: 0 auto;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .tesBox span {
        color: #00416b;
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .blank {
        height: 60px;
    }
    .Process ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .Process ul li {
        width: 49%;
        padding: 55px 20px;
        background-color: #f9f7f4;
        margin-bottom: 25px;
    }
    .Process ul li p {
        font-size: 16px;
        color: #3a3a3c;
    }
    .Process ul li strong {
        color: #00416b;
        font-size: 28px;
        font-weight: normal;
        display: block;
        margin: 10px 0;
    }
    .Process ul li span {
        font-size: 14px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .good1 ul {
        display: flex;
        justify-content: space-between;
    }
    .good1 ul li {
        width: 50%;
        padding: 50px 30px;
        border-right: 1px solid #ccc;
    }
    .good1 ul li img {
        width: 50px;
        height: 50px;
        display: block;
        margin: 0 auto;
    }
    .good1 ul li p {
        font-size: 22px;
        color: #3a3a3c;
        text-align: center;
        margin: 20px 0;
    }
    .good1 ul li span {
        font-size: 16px;
        color: #3a3a3c;
        line-height: 25px;
        display: block;
        text-align: center;
    }
    .good1 ul li:last-child {
        border: none !important;
    }
    .good2 {
        margin-top: 30px;
    }
    .good2 strong {
        font-size: 32px;
        font-weight: normal;
        color: #3a3a3c;
        display: block;
        margin-bottom: 45px;
    }
    .g2Con {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .g2left {
        width: 49%;
    }
    .g2right {
        width: 49%;
    }
    .g2right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .g2lItem {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
    }
    .g2lItem img {
        width: 60px;
        height: 60px;
    }
    .g2r {
        width: calc(100% - 60px);
        padding-left: 35px;
    }
    .g2r p {
        font-weight: bold;
        font-size: 22px;
        color: #3a3a3c;
        margin-bottom: 15px;
    }
    .g2r span {
        font-size: 16px;
        line-height: 25px;
        color: #3a3a3c;
    }
    .g2lItem:last-child {
        margin-bottom: 0;
        border-bottom: none !important;
    }
    .Discover .eg2 {
        background-color: #fff;
        padding: 0;
    }
    .Discover .eg2con {
        padding: 0;
    }
    .related strong {
        font-size: 32px;
        display: block;
        color: #3a3a3c;
        font-weight: normal;
        margin-bottom: 30px;
    }
    .relaItem {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    .relaItem:last-child {
        margin-bottom: 0;
        border-bottom: 0 !important;
    }
    .re_left {
        width: 40%;
    }
    .re_left img {
        width: 100%;
    }
    .re_right {
        width: 58%;
    }
    .re_right span {
        color: #c5c5c5;
        font-size: 14px;
    }
    .re_right p {
        color: #545456;
        font-size: 18px;
        margin: 15px 0;
    }
    .re_right em {
        font-style: normal;
        color: #545456;
        font-size: 14px;
        line-height: 25px;
    }
    .re_right a {
        display: block;
        text-align: right;
        font-size: 16px;
        color: #3a3a3c;
        margin-top: 20px;
        display: block;
    }
    .inside {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 25px;
    }
    /*  */
    .met {
        width: 100%;
        padding: 50px 0;
    }
    .metcon {
        max-width: 1150px;
        margin: 0 auto;
    }
    .metP {
        font-size: 32px;
        color: #3a3a3c;
        font-family: 'Times New Roman', Times, serif;
        line-height: 45px;
    }
    .metlist {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .metlist li {
        width: calc((100% - 45px) / 4);
        margin-right: 15px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        margin-bottom: 15px;
    }
    .metlist li:nth-child(4n) {
        margin-right: 0;
    }
    .metlist li img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        transition: all ease .5s;
    }
    .metlist li:hover img {
        transform: scale(1.1);
    }
    .metpos {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0%;
        top: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px 15px;
    }
    .metpos h1 {
        color: #fff;
        font-size: 25px;
        font-family: 'Times New Roman', Times, serif;
        font-weight: normal;
        margin-bottom: 20px;
    }
    .metpos p {
        font-size: 14px;
        color: #fff;
        line-height: 25px;
    }
    .contact {
        width: 100%;
        padding: 50px 0;
    }
    .ctcon {
        max-width: 1150px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .ctleft {
        width: 330px;
        background-color: #f2f6f8;
        padding: 20px;
    }
    .ctleft h1 {
        font-size: 24px;
        color: #3a3a3c;
        font-weight: normal;
        margin-bottom: 10px;
    }
    .ctleft h2 {
        font-size: 16px;
        color: #3a3a3c;
        font-weight: normal;
        margin-bottom: 35px;
    }
    .ctItem {
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
    }
    .cIleft {
        width: 30px;
    }
    .cIright {
        width: calc(100% - 30px);
        font-size: 14px;
        color: #3a3a3c;
    }
    .cIleft i {
        font-size: 14px;
        width: 25px;
    }
    .ctright {
        width: calc(100% - 330px);
        padding-left: 20px;
    }
    .ctright h1 {
        font-size: 24px;
        color: #3a3a3c;
        margin-bottom: 30px;
        font-weight: normal;
    }
    .forms {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .fsItem {
        width: 48%;
        margin-bottom: 10px;
    }
    .wit {
        width: 100% !important;
    }
    .fsItem p {
        font-size: 14px;
        color: #3a3a3c;
    }
    .fsItem input {
        border: 1px solid #c4c4c4;
        height: 50px;
        padding-left: 15px;
        outline: none;
        width: 100%;
        margin-top: 5px;
    }
    .fsItem textarea {
        border: 1px solid #c4c4c4;
        height: 120px;
        padding-left: 15px;
        outline: none;
        padding-top: 15px;
        width: 100%;
        margin-top: 5px;
    }
    .agree label {
        display: flex;
        align-items: center;
    }
    .agree span {
        font-size: 14px;
        color: #3a3a3c;
        margin-left: 10px;
    }
    .agree {
        margin: 15px 0;
    }
    .tips {
        font-size: 14px;
        color: #3a3a3c;
    }
    .tips a {
        text-decoration: underline;
        color: #3a3a3c;
    }
    .sub {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-top: 25px;
    }
    .sub a {
        display: block;
        width: 147px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        color: #3a3a3c;
        font-size: 16px;
        border: 1px solid #3a3a3c;
    }
    .get {
        padding: 50px 0;
    }
    .getCon {
        max-width: 1150px;
        margin: 0 auto;
    }
    .getTop {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .getTop h1 {
        color: #004a6b;
        font-weight: normal;
        font-size: 48px;
    }
    .gtSearch {
        display: flex;
        align-items: center;
    }
    .gtSearch img {
        width: 25px;
        margin-right: 10px;
    }
    .gtSearch input {
        width: 150px;
        border: none;
        outline: none;
        height: 35px;
        border-bottom: 1px solid #3a3a3c;
    }
    .getswiper {
        margin-top: 50px !important;
        padding-bottom: 70px !important;
    }
    .getswiper img {
        width: 100%;
    }
    .getswiper p {
        font-size: 14px;
        color: #545456;
        margin: 25px 0;
    }
    .getswiper h1 {
        color: #545456;
        font-size: 28px;
        font-weight: normal;
        margin-bottom: 25px;
    }
    .getswiper span {
        color: #545456;
        font-size: 14px;
    }
    .getpage {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .getpage .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        opacity: 1;
        background-color: #979595 !important;
    }
    .getpage .swiper-pagination-bullet-active {
        width: 10px !important;
        height: 10px !important;
        background-color: #1e1e1d !important;
    }
    .getCon .eg2con {
        padding: 0 !important;
    }
    .getCon .eg2con li:hover .conAllType {
        box-shadow: none !important;
    }
    .tmms {
        text-align: right;
        display: block;
        color: #333;
    }
    .getlist {
        margin-top: 60px !important;
    }
    .getlist h1 {
        font-size: 32px;
        color: #00416b;
        margin-bottom: 25px;
        font-weight: normal;
		font-family: 'PR';
    }
    /*  */
}

@media only screen and (max-width: 996px) {
    .getlist h1 {
        font-size: 25px;
        color: #00416b;
        margin-bottom: 20px;
        font-weight: normal;
    }
    .getlist {
        margin-top: 30px !important;
    }
    .get {
        padding: 30px 15px;
    }
    .getCon {
        margin: 0 auto;
    }
    .getTop {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .getTop h1 {
        color: #004a6b;
        font-weight: normal;
        font-size: 25px;
        width: 100%;
        margin-bottom: 20px;
    }
    .gtSearch {
        display: flex;
        align-items: center;
    }
    .gtSearch img {
        width: 25px;
        margin-right: 10px;
    }
    .gtSearch input {
        width: 150px;
        border: none;
        outline: none;
        height: 35px;
        border-bottom: 1px solid #3a3a3c;
    }
    .getswiper {
        margin-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .getswiper img {
        width: 100%;
    }
    .getswiper p {
        font-size: 14px;
        color: #545456;
        margin: 25px 0;
    }
    .getswiper h1 {
        color: #545456;
        font-size: 28px;
        font-weight: normal;
        margin-bottom: 25px;
    }
    .getswiper span {
        color: #545456;
        font-size: 14px;
    }
    .getpage {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .getpage .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        opacity: 1;
        background-color: #979595 !important;
    }
    .getpage .swiper-pagination-bullet-active {
        width: 10px !important;
        height: 10px !important;
        background-color: #1e1e1d !important;
    }
    .getCon .eg2con {
        padding: 0 !important;
    }
    .getCon .eg2con li:hover .conAllType {
        box-shadow: none !important;
    }
    .tmms {
        text-align: right;
        display: block;
        color: #333;
    }
    .contact {
        width: 100%;
        padding: 30px 15px;
    }
    .ctcon {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .ctleft {
        width: 100%;
        background-color: #f2f6f8;
        padding: 20px;
    }
    .ctleft h1 {
        font-size: 20px;
        color: #3a3a3c;
        font-weight: normal;
        margin-bottom: 10px;
    }
    .ctleft h2 {
        font-size: 14px;
        color: #3a3a3c;
        font-weight: normal;
        margin-bottom: 20px;
    }
    .ctItem {
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
    }
    .cIleft {
        width: 30px;
    }
    .cIright {
        width: calc(100% - 30px);
        font-size: 14px;
        color: #3a3a3c;
    }
    .cIleft i {
        font-size: 14px;
        width: 25px;
    }
    .ctright {
        width: 100%;
        margin-top: 30px;
    }
    .ctright h1 {
        font-size: 24px;
        color: #3a3a3c;
        margin-bottom: 30px;
        font-weight: normal;
    }
    .forms {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .fsItem {
        width: 100%;
        margin-bottom: 10px;
    }
    .wit {
        width: 100% !important;
    }
    .fsItem p {
        font-size: 14px;
        color: #3a3a3c;
    }
    .fsItem input {
        border: 1px solid #c4c4c4;
        height: 50px;
        padding-left: 15px;
        outline: none;
        width: 100%;
        margin-top: 5px;
    }
    .fsItem textarea {
        border: 1px solid #c4c4c4;
        height: 120px;
        padding-left: 15px;
        outline: none;
        padding-top: 15px;
        width: 100%;
        margin-top: 5px;
    }
    .agree label {
        display: flex;
        align-items: center;
    }
    .agree span {
        font-size: 14px;
        color: #3a3a3c;
        margin-left: 10px;
    }
    .agree {
        margin: 15px 0;
    }
    .tips {
        font-size: 14px;
        color: #3a3a3c;
    }
    .tips a {
        text-decoration: underline;
        color: #3a3a3c;
    }
    .sub {
        width: 100%;
        display: flex;
        margin-top: 25px;
    }
    .sub a {
        display: block;
        width: 147px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        color: #3a3a3c;
        font-size: 16px;
        border: 1px solid #3a3a3c;
    }
    .inside {
        padding: 30px 15px;
    }
    .related strong {
        font-size: 25px;
        display: block;
        color: #3a3a3c;
        font-weight: normal;
        margin-bottom: 20px;
    }
    .relaItem {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    .relaItem:last-child {
        margin-bottom: 0;
        border-bottom: 0 !important;
    }
    .re_left {
        width: 100%;
        margin-bottom: 20px;
    }
    .re_left img {
        width: 100%;
    }
    .re_right {
        width: 100%;
    }
    .re_right span {
        color: #c5c5c5;
        font-size: 14px;
    }
    .re_right p {
        color: #545456;
        font-size: 18px;
        margin: 15px 0;
    }
    .re_right em {
        font-style: normal;
        color: #545456;
        font-size: 14px;
        line-height: 25px;
    }
    .re_right a {
        display: block;
        text-align: right;
        font-size: 16px;
        color: #3a3a3c;
        margin-top: 20px;
        display: block;
    }
    .Discover .eg2 {
        background-color: #fff !important;
        padding: 0;
    }
    .Discover .eg2con {
        padding: 0 !important;
    }
    .good1 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .good1 ul li {
        width: 100%;
        padding: 30px 15px;
    }
    .good1 ul li img {
        width: 50px;
        height: 50px;
        display: block;
        margin: 0 auto;
    }
    .good1 ul li p {
        font-size: 22px;
        color: #3a3a3c;
        text-align: center;
        margin: 20px 0;
    }
    .good1 ul li span {
        font-size: 16px;
        color: #3a3a3c;
        line-height: 25px;
        display: block;
        text-align: center;
    }
    .good1 ul li:last-child {
        border: none !important;
    }
    .good2 {
        margin-top: 30px;
    }
    .good2 strong {
        font-size: 25px;
        font-weight: normal;
        color: #3a3a3c;
        display: block;
        margin-bottom: 25px;
    }
    .g2Con {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    .g2left {
        width: 100%;
        margin-top: 20px;
    }
    .g2right {
        width: 100%;
    }
    .g2right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .g2lItem {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ccc;
    }
    .g2lItem img {
        width: 60px;
        height: 60px;
    }
    .g2r {
        width: calc(100% - 60px);
        padding-left: 35px;
    }
    .g2r p {
        font-weight: bold;
        font-size: 22px;
        color: #3a3a3c;
        margin-bottom: 15px;
    }
    .g2r span {
        font-size: 16px;
        line-height: 25px;
        color: #3a3a3c;
    }
    .g2lItem:last-child {
        margin-bottom: 0;
        border-bottom: 0;
    }
    .Process ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .Process ul li {
        width: 100%;
        padding: 25px 20px;
        background-color: #f9f7f4;
        margin-bottom: 20px;
    }
    .Process ul li p {
        font-size: 16px;
        color: #3a3a3c;
    }
    .Process ul li strong {
        color: #00416b;
        font-size: 24px;
        font-weight: normal;
        display: block;
        margin: 10px 0;
    }
    .Process ul li span {
        font-size: 14px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .blank {
        height: 30px;
    }
    .tesBox {
        padding: 30px 20px;
        background-color: #f4f6f8;
        margin-top: 20px;
    }
    .tesBox h1 {
        text-align: center;
        color: #00416b;
        text-align: center;
        font-size: 25px;
        font-style: italic;
    }
    .tesBox p {
        color: #00416b;
        font-size: 16px;
        font-style: italic;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .tesBox span {
        color: #00416b;
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .stayBox {
        width: 100%;
        border: 1px solid #d3d3d3;
    }
    .stayBox img {
        width: 100%;
    }
    .stayinfo {
        padding: 15px 20px;
    }
    .stayinfo h1 {
        font-size: 24px;
        color: #3a3a3c;
        font-weight: normal;
    }
    .Featured .con5 {
        padding: 0;
        background-color: var(--main-color-white);
    }
    .stayinfo p {
        font-size: 16px;
        color: #3a3a3c;
        margin: 20px 0;
    }
    .stayinfo em {
        font-weight: bold;
        margin-right: 5px;
        font-style: normal;
    }
    .stayinfo a {
        width: 100%;
        text-align: center;
        color: #3a3a3c;
        font-size: 16px;
        border: 1px solid #3a3a3c;
        display: block;
        height: 40px;
        margin-top: 40px;
        line-height: 40px;
    }
    .stayinfo a:hover {
        background-color: #e5e5e5;
    }
    .ins_swiper {
        width: 100%;
    }
    .ins_swiper img {
        width: 100%;
    }
    .insPos {
        width: 100%;
        padding: 15px;
        z-index: 99;
        margin-bottom: 20px;
        background-color: rgba(255, 255, 255, 0.8);
        box-shadow: var(--main-shadow);
    }
    .insPos p {
        font-size: 18px;
        color: #3a3a3c;
        margin-bottom: 15px;
    }
    .insPos span {
        font-size: 14px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .ins_bot {
        padding: 20px 15px;
        background-color: #f4f6f8;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .ibleft {
        width: 100%;
        margin-bottom: 20px
    }
    .ibright {
        width: 100%;
    }
    .ibleft h3 {
        font-style: italic;
        font-size: 20px;
        color: #1e1e1d;
    }
    .ibleft h2 {
        font-size: 25px;
        font-weight: normal;
        color: #3a3a3c;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .ibleft p {
        font-size: 16px;
        color: #000;
        line-height: 25px;
    }
    .ibrItem {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .ibrItem img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .ibrItem div {
        flex: 1;
        display: flex;
    }
    .ibrItem div em {
        font-weight: bold;
        font-style: normal;
        color: #3a3a3c;
        font-size: 16px;
    }
    .ibrItem div span {
        font-weight: normal;
        color: #3a3a3c;
    }
    .ibrItem:last-child {
        margin-bottom: 0 !important;
    }
    .desBox {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .dbleft {
        width: 100%;
    }
    .dbleft img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .dbright {
        width: 100%;
        padding: 15px;
        background-color: #f9f7f4;
    }
    .dbright h1 {
        font-weight: normal;
        font-size: 30px;
        color: #3a3a3c;
    }
    .desItem {
        margin-top: 20px;
    }
    .desItem:last-child {
        margin-bottom: 0;
    }
    .desItem p {
        color: #000000de;
        font-weight: bold;
        font-size: 18px;
    }
    .desItem span {
        font-size: 16px;
        margin-top: 10px;
        display: block;
        line-height: 25px;
    }
    .detail2 {
        width: 100%;
        padding: 30px 15px;
    }
    .detail2con {
        margin: 0 auto;
    }
    .d2left {
        width: 280px;
        background-color: #f4f6f8;
        float: left;
        padding: 40px 0;
        position: sticky;
        top: 100px;
        display: none !important;
    }
    .d2right {
        width: 100%;
    }
    .clear {
        width: 100%;
        clear: both;
    }
    .d2left ul li {
        padding: 0 16px;
        display: block;
        height: 48px;
        line-height: 48px;
    }
    .d2left ul li a {
        display: inline;
        color: #3a3a3c;
        font-size: 16px;
        position: relative;
        text-transform: uppercase;
    }
    .d2left ul li a::after {
        width: 0%;
        position: absolute;
        height: 2px;
        background-color: #3a3a3c;
        content: '';
        left: 0;
        transition: var(--main-transition);
        bottom: -5px;
    }
    .d2left ul li a:hover::after {
        width: 100% !important;
    }
    .active a::after {
        width: 100% !important;
    }
    .d_loca {
        display: flex;
    }
    .d_loca a {
        font-size: 14px;
        color: #545456;
    }
    .d_loca span {
        display: block;
        margin: 0 15px;
    }
    .Overview {
        margin: 15px 0;
    }
    .Overview h1 {
        margin-bottom: 15px;
        color: #3a3a3c;
        font-size: 20px;
        font-weight: normal;
        line-height: 30px;
    }
    .ov {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .ovleft {
        width: 100%;
        margin-bottom: 20px;
    }
    .ovleft img {
        width: 100%;
        object-fit: cover;
    }
    .ovright {
        width: 100%;
    }
    .ovrItem p {
        font-size: 18px;
        color: #3a3a3c;
        margin-bottom: 10px;
    }
    .ovrItem span {
        font-size: 14px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .ovrItem {
        padding: 15px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    .ovrItem:last-child {
        border: none !important;
    }
    .maps {
        border: 1px solid #e0e0e0;
        margin: 30px auto;
    }
    .detail1 {
        border-top: 20px solid #e0ac7a;
        width: 100%;
        padding: 20px 15px;
        background-color: #f8f7f3;
    }
    .detail1con {
        margin: 0 auto;
    }
    .detail1con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .detail1con ul li {
        width: 100%;
        border-bottom: 1px solid #727171;
        padding: 15px;
    }
    .detail1con ul li p {
        font-size: 16px;
        color: #1e1e1d;
        text-align: center;
    }
    .detail1con ul li h1 {
        text-align: center;
        font-weight: normal;
        font-size: 24px;
        color: #1e1e1d;
        margin-top: 10px;
    }
    .detail1con ul li:last-child {
        border: none !important;
    }
    .eg2 {
        padding: 30px 15px;
        background-color: #f4f6f8;
    }
    .eg2con {
        margin: 0 auto;
    }
    .eg2con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .eg2con ul li {
        width: 100%;
        margin-bottom: 25px;
    }
    .eg1 {
        width: 100%;
        padding: 30px 15px;
    }
    .eg1con {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    .eg1left {
        width: 100%;
        margin-top: 20px;
    }
    .eg1right {
        width: 100%;
    }
    .eg1right img {
        width: 100%;
    }
    .eg1left h1 {
        color: #00416b;
        font-size: 20px;
        font-weight: normal;
    }
    .eg1left p {
        margin-top: 20px;
        color: #3a3a3c;
        font-size: 14px;
        line-height: 25px;
    }
    .why3 {
        width: 100%;
        background-image: url(../images/bg2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .why3con {
        width: 100%;
        height: 100%;
        background: rgba(0, 65, 107, .6);
        padding: 100px 0;
    }
    .why3Box {
        margin: 0 auto;
        max-width: 900px;
        padding: 0 25px;
    }
    .why3Box h1 {
        color: var(--main-color-white);
        text-align: center;
        font-size: 32px;
        font-weight: normal;
    }
    .why3Box a {
        width: 200px;
        height: 45px;
        line-height: 45px;
        transition: var(--main-transition);
        text-align: center;
        display: block;
        color: var(--main-color-white);
        border: 1px solid var(--main-color-white);
        margin: 0 auto;
        font-size: 14px;
        margin-top: 60px;
    }
    .why3Box a:hover {
        background-color: #497695;
    }
    .why2 {
        width: 100%;
        padding: 30px 15px;
    }
    .why2conItem {
        margin-bottom: 20px;
    }
    .why2Item {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .w2left {
        width: 100%;
    }
    .w2left img {
        width: 100%;
    }
    .w2right {
        width: 100%;
        margin-top: 20px;
    }
    .w2right .roman {
        color: #00416b;
        font-size: 25px;
    }
    .w2right p {
        font-size: 14px;
        color: #3a3a3c;
        margin-top: 20px;
        line-height: 25px;
    }
    .why1 {
        padding: 30px 15px;
    }
    .why1con {
        margin: 0 auto;
        color: #3a3a3c;
        text-align: center;
        line-height: 30px;
        font-size: 20px;
    }
    .bread {
        width: 100%;
        padding: 20px 15px;
    }
    .breadCon {
        margin: 0 auto;
        display: flex;
        align-items: center;
    }
    .breadCon a {
        color: #00000099;
        font-size: 14px;
    }
    .breadCon span {
        display: block;
        color: #00000099;
        margin: 0 10px;
        font-size: 14px;
    }
    .inbanner {
        margin-top: 60px;
        width: 100%;
        position: relative;
    }
    .inbanner img {
        width: 100%;
    }
    .in_pos {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 99;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .in_pos h1 {
        font-size: 25px;
        font-weight: normal;
        color: var(--main-color-white);
    }
    .foot {
        background-color: #1e1e1d;
        padding: 30px 15px;
    }
    .footer {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footerleft {
        width: 100%;
    }
    .footerleft ul {
        display: flex;
        flex-wrap: wrap;
    }
    .footerleft ul li {
        width: 100%;
        margin-bottom: 15px;
    }
    .footerleft ul li strong {
        font-size: 12px;
        font-weight: normal;
        color: var(--main-color-white);
        display: block;
        margin-bottom: 10px;
    }
    .footerleft ul li a {
        color: var(--main-color-white);
        font-size: 12px;
        margin-right: 5px;
        display: inline-block;
        margin-bottom: 5px;
    }
    .links {
        margin-top: 30px;
    }
    .links strong {
        display: block;
        font-size: 14px;
        margin-bottom: 20px;
        font-weight: normal;
        color: var(--main-color-white);
    }
    .link_ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .link_ul a i {
        color: #767677;
        font-size: 20px;
        margin-right: 15px;
    }
    .link_ul a i:hover {
        color: var(--main-color-white) !important;
    }
    .req {
        width: 200px;
        height: 35px;
        line-height: 35px;
        border: 1px solid var(--main-color-white);
        font-size: 12px;
        text-align: center;
        display: block;
        color: var(--main-color-white);
        margin-top: 15px;
        transition: var(--main-transition);
        text-transform: uppercase;
    }
    .req:hover {
        background-color: #4b4b4a;
    }
    .copy {
        margin-top: 20px;
        color: var(--main-color-white);
        font-size: 14px;
    }
    .footerright {
        margin-top: 20px;
        width: 100%;
        border: 1px solid var(--main-color-white);
        padding: 15px;
    }
    .footerright strong {
        font-size: 22px;
        color: #e0e0e0;
        font-weight: normal;
    }
    .footerright p {
        font-size: 14px;
        color: #e0e0e0;
        margin: 10px 0;
    }
    .footerright input {
        border: none;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--main-color-white);
        height: 30px;
        color: var(--main-color-white);
        display: block;
        background-color: transparent;
        width: 100%;
        outline: none;
    }
    .footerright input::-webkit-input-placeholder {
        color: var(--main-color-white);
    }
    .footerright a {
        width: 100%;
        height: 45px;
        font-size: 14px;
        line-height: 45px;
        text-align: center;
        display: block;
        color: var(--main-color-white);
        border: 1px solid var(--main-color-white);
    }
    .bot {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 40px;
        color: var(--main-color-white);
        font-size: 14px;
        padding-bottom: 0;
        margin-top: 20px;
        border-top: 1px solid #9c9c9c;
    }
    .bot a {
        color: var(--main-color-white);
    }
    .con12 {
        padding: 30px 15px;
    }
    .con12con {
        margin: 0 auto;
    }
    .con12con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .con12con ul li {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 20px;
        border-bottom: 1px solid #f1f1f1;
    }
    .con12con ul li:last-child {
        border-bottom: none !important;
    }
    .con12con ul li img {
        width: 100%;
    }
    .newB {
        padding: 20px 0;
    }
    .newB span {
        font-size: 14px;
        color: #c5c5c5;
    }
    .newB h1 {
        font-weight: normal;
        color: #545456;
        font-size: 20px;
        margin: 20px 0;
    }
    .newB p {
        font-size: 14px;
        color: #545456;
        line-height: 25px;
    }
    .n_more {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-top: 15px;
    }
    .n_more img {
        width: 15px !important;
    }
    .n_more a {
        color: #545456;
        font-size: 14px;
    }
    .con11 {
        padding: 30px 15px;
        width: 100%;
    }
    .con11con {
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con11left {
        width: 100%;
        margin-bottom: 20px;
    }
    .con11right {
        width: 100%;
        background-color: #f9f7f4;
        padding: 15px;
    }
    .con11left img {
        width: 100%;
    }
    .con11right strong {
        color: #00416b;
        font-size: 28px;
        font-weight: normal;
        display: block;
        margin-bottom: 20px;
    }
    .con11right p {
        font-size: 14px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .con11right a {
        width: 130px;
        margin-top: 30px;
        height: 35px;
        text-align: center;
        color: #3a3a3c;
        font-size: 14px;
        transition: var(--main-transition);
        display: block;
        line-height: 35px;
        border: 1px solid #3a3a3c;
    }
    .con11right a:hover {
        background-color: #e0dedb;
    }
    .con9 {
        padding: 30px 15px;
    }
    .con9con {
        max-width: 100%;
    }
    .title_p {
        text-align: center;
        color: #3a3a3c;
        font-size: 14px;
        margin-bottom: 20px;
    }
    .tab_sw {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    .tab_sw span {
        display: inline-block;
        padding: 8px 15px;
        border: 1px solid #e0e0e0;
        font-size: 12px;
        cursor: pointer;
        transition: var(--main-transition);
    }
    .tab_sw span:hover {
        background-color: #e5e5e5;
    }
    .tab_ac {
        background-color: #000 !important;
        color: #fff !important;
    }
    .swiper_fy {
        position: relative;
        display: none;
    }
    .mySwiperCon9 img {
        width: 100%;
    }
    .con9pos {
        position: absolute;
        width: 100%;
        padding: 25px;
        color: var(--main-color-white);
        left: 0;
        bottom: 0;
        font-size: 28px;
    }
    .swiper_fy .compoment_swiper {
        max-width: 1200px;
        padding: 0 25px;
        margin: 0 auto;
    }
    .con9con span:hover i {
        color: #3a3a3c !important;
    }
    .con8 {
        padding: 30px 15px;
        background-color: #00416b;
    }
    .con8con {
        margin: 0 auto;
    }
    .con8Swiper {
        padding-bottom: 70px !important;
    }
    .con8Swiper h1 {
        font-size: 25px;
        line-height: 35px;
        color: var(--main-color-white);
        text-align: center;
        font-style: italic;
        font-weight: normal;
    }
    .con8Swiper p {
        color: var(--main-color-white);
        font-size: 14px;
        margin: 20px 0;
        line-height: 25px;
        text-align: center;
    }
    .con8Swiper .swiper-slide span {
        font-size: 16px;
        color: var(--main-color-white);
        display: block;
        text-align: center;
    }
    .con8Swiper .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        background-color: var(--main-color-white);
        margin: 0 7px !important;
    }
    .con8Swiper .swiper-pagination-bullet-active {
        width: 12px !important;
        height: 12px !important;
    }
    .con8page {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ImgBox>img {
        width: 100%;
    }
    .ImgBox {
        cursor: pointer;
    }
    .con6 {
        padding: 60px 15px;
        background-image: url(../images/bg1.avif);
        background-repeat: no-repeat;
        position: relative;
    }
    .con6con {
        margin: 0 auto;
        position: relative;
    }
    .con6 h1 {
        text-align: center;
        color: var(--main-color-white);
        font-size: 25px;
        line-height: 35px;
        font-weight: normal;
    }
    .con6::before {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, .3);
        content: '';
        position: absolute;
    }
    .con6con p {
        text-align: center;
        color: #fff;
        font-size: 14px;
        margin-top: 30px;
    }
    .more {
        display: block;
        width: 120px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: #1e1e1d;
        font-size: 14px;
        margin: 0 auto;
        margin-top: 20px;
        border: 1px solid #1e1e1d;
        transition: var(--main-transition);
    }
    .more:hover {
        background: #dbdddf;
    }
    .con5 {
        padding: 30px 15px;
        background-color: #f4f6f8;
    }
    .con5con {
        margin: 0 auto;
        position: relative;
    }
    .mySwiperCon5 {
        width: 100%;
    }
    .mySwiperCon5 img {
        width: 100%;
    }
    .ImgBox {
        position: relative;
    }
    .sg {
        position: absolute;
        width: 130px;
        background-color: var(--main-color-white);
        display: flex;
        align-items: center;
        height: 35px;
        left: 20px;
        bottom: -15px;
        justify-content: center;
        padding: 0 10px;
        border-bottom: 5px solid #94b18e;
        z-index: 99;
    }
    .sg img {
        width: 15px;
        height: 15px;
    }
    .sg span {
        font-size: 14px;
        font-weight: bold;
        margin-left: 5px;
    }
    .atTxt {
        background-color: var(--main-color-white);
        padding: 25px 15px;
    }
    .dateBox {
        position: absolute;
        left: 20px;
        top: 20px;
        background-color: var(--main-color-white);
        padding: 2px 20px;
        text-align: center;
    }
    .dateBox strong {
        color: #3a3a3c;
        font-size: 28px;
        display: block;
        text-align: center;
        margin: 6px 0;
    }
    .dateBox p {
        font-size: 14px;
        color: #3a3a3c;
    }
    .mySwiperCon5 .swiper-slide {
        cursor: pointer;
    }
    .iconL {
        display: flex;
        align-items: center;
    }
    .iconLItem {
        padding: 5px;
        background-color: #f7f5f1;
        margin-right: 10px;
    }
    .iconLItem img {
        width: 20px;
    }
    .iconLItem span {
        font-size: 12px;
        color: #3a3a3c;
    }
    .atTxt p {
        font-size: 14px;
        color: #3a3a3c;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .atTxt strong {
        font-weight: normal;
        font-size: 18px;
        color: #3a3a3c;
        margin-bottom: 5px;
        line-height: 25px;
        display: block;
    }
    .atTxt em {
        font-weight: normal;
        line-height: 23px;
        font-style: normal;
        display: block;
        font-size: 16px;
        color: #3a3a3c;
    }
    .conAllType {
        transition: var(--main-transition);
    }
    .conAllType:hover {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    }
    .con5con .tabArrow span:hover i {
        color: #3a3a3c !important;
    }
    .con4 {
        padding: 30px 15px;
        background-color: #1e1e1d;
    }
    .con4con {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con4left {
        width: 100%;
        margin-bottom: 20px;
    }
    .con4right {
        width: 100%;
        position: relative;
    }
    .con4left p {
        color: var(--main-color-white);
        font-size: 25px;
    }
    .con4left span {
        color: var(--main-color-white);
        font-size: 14px;
        line-height: 25px;
        margin-top: 15px;
        display: block;
    }
    .con4left a {
        display: block;
        transition: var(--main-transition);
        width: 135px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        margin-top: 20px;
        color: var(--main-color-white);
        font-size: 14px;
        border: 1px solid var(--main-color-white);
    }
    .con4left a:hover {
        background: rgba(255, 255, 255, .3);
    }
    .mySwiperCon4 {
        width: 100%;
    }
    .con4Box {
        position: relative;
        overflow: hidden;
    }
    .con4Box img {
        width: 100%;
        transition: var(--main-transition);
        object-fit: cover;
    }
    .mySwiperCon4 .swiper-slide {
        cursor: pointer;
    }
    .con4pos {
        position: absolute;
        width: 100%;
        bottom: 0;
        padding: 20px;
        left: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }
    .con4pos p {
        color: #fff;
        font-size: 25px;
    }
    .con4pos span {
        color: var(--main-color-white);
        font-size: 16px;
        line-height: 25px;
    }
    .con4Box:hover img {
        transform: scale(1.1);
    }
    .scrollCommon {
        width: 100%;
        bottom: -20px;
        height: 5px;
    }
    .scrollCommon .swiper-scrollbar-drag {
        height: 5px;
    }
    .con4right .swiper-scrollbar {
        background-color: #979595;
    }
    .con4right .swiper-scrollbar-drag {
        background-color: var(--main-color-white);
        height: 5px;
    }
    .compoment_swiper {
        width: 100%;
    }
    .tabArrow {
        margin-top: 40px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .tabArrow span {
        cursor: pointer;
        color: #626261;
        font-size: 40px !important;
        margin-left: 40px;
    }
    .con3 {
        padding: 30px 15px;
    }
    .con3con {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con3left {
        width: 100%;
        margin-bottom: 20px;
    }
    .con3right {
        width: 100%;
    }
    .con3right img {
        width: 100%;
    }
    .con3left h1 {
        font-size: 25px;
        color: #00416b;
        font-weight: normal;
    }
    .con3left h5 {
        font-weight: normal;
        color: #3a3a3c;
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 25px;
        margin-top: 10px;
    }
    .con3left ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .con3left ul li {
        width: 100%;
        margin-bottom: 20px;
    }
    .con3left ul li p {
        font-size: 18px;
        font-weight: 600;
        color: #3a3a3c;
        margin-bottom: 10px;
    }
    .con3left ul li span {
        font-size: 14px;
        color: #3a3a3c;
        line-height: 25px;
    }
    .con2 {
        padding: 30px 15px;
        background-color: #f4f6f8;
    }
    .con2con ul {
        display: flex;
        flex-wrap: wrap;
    }
    .con2con ul li {
        width: 100%;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        margin-bottom: 25px;
    }
    .con2con ul li img {
        width: 100%;
        transition: var(--main-transition);
    }
    .con2con ul li:hover img {
        transform: scale(1.1);
    }
    .con2pos {
        position: absolute;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        left: 0;
        bottom: 0;
        padding: 20px 15px;
    }
    .con2pos p {
        color: var(--main-color-white);
        font-size: 25px;
        margin-bottom: 5px;
    }
    .con2pos span {
        color: var(--main-color-white);
        font-size: 14px;
        line-height: 20px;
    }
    .title {
        text-align: center;
        color: #00416b;
        font-size: 25px;
        margin-bottom: 30px;
    }
    .con1 {
        padding: 30px 15px;
    }
    .con1con {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .con1left {
        margin-bottom: 20px;
        width: 100%;
    }
    .con1left img {
        width: 100%;
    }
    .con1right {
        width: 100%;
    }
    .con1right h3 {
        font-size: 18px;
        line-height: 25px;
        font-weight: normal;
        color: #3a3a3c;
    }
    .banner {
        width: 100%;
        position: relative;
        margin-top: 60px;
    }
    .banner img {
        width: 100%;
    }
    .bannerPos {
        width: 100%;
        height: 100%;
        left: 0;
        padding: 20px 15px;
        top: 0;
        position: absolute;
        background: rgba(0, 0, 0, .5);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .bannerPos h1 {
        text-align: center;
        color: var(--main-color-white);
        font-size: 25px;
        font-weight: normal;
        margin-bottom: 10px;
    }
    .bannerPos a {
        display: block;
        width: 120px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        color: var(--main-color-white);
        font-size: 14px;
        border: 1px solid var(--main-color-white);
        transition: var(--main-transition);
    }
    .bannerPos a:hover {
        background: rgba(255, 255, 255, .3);
    }
    .search {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 999;
        background: rgba(0, 0, 0, .6);
        display: none;
    }
    .searchCon {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .SearhBox {
        width: 90%;
        background-color: var(--main-color-white);
        padding: 20px 20px;
        position: relative;
    }
    .SearhBox img {
        position: absolute;
        right: 15px;
        top: 15px;
        cursor: pointer;
    }
    .SearhBox h1 {
        font-weight: normal;
        color: #3a3a3c;
        font-size: 22px;
        margin-bottom: 20px;
    }
    .SearhBox input {
        display: block;
        width: 100%;
        outline: none;
        height: 35px;
        padding-left: 15px;
        border: 1px solid #c4c4c4;
    }
    .SearhBox input:focus {
        border: 1px solid #194666;
    }
    .pchead {
        display: none;
    }
    .ml_mb_arrowChange {
        transform: rotate(90deg);
    }
    .ml_mbnav_3 {
        display: none;
    }
    .ml_mbnav_3_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
        background-color: #efefef;
    }
    .ml_mbnav_3_item>a {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        color: var(--main-color-333);
        font-size: 14px;
        padding-left: 35px;
    }
    .ml_mb_nav i {
        font-size: 22px !important;
        transition: var(--main-transition);
    }
    .ml_mbnav_2_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
        background-color: #e3e3e3;
    }
    .ml_mbnav_2_item>a {
        display: block;
        height: 40px;
        width: 100%;
        line-height: 40px;
        color: var(--main-color-333);
        font-size: 14px;
        padding-left: 20px;
    }
    .ml_mbnav_2 {
        display: none;
    }
    .ml_mbnav_1_item>a {
        display: block;
        height: 40px;
        line-height: 40px;
        color: var(--main-color-333);
        font-size: 14px;
        width: 100%;
    }
    .ml_mbnav_1_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
    }
    .ml_mb_nav {
        width: 100%;
        height: calc(100% - 60px);
        position: fixed;
        top: 60px;
        right: -100%;
        background-color: var(--main-color-white);
        z-index: 100;
        border-top: 1px solid #ccc;
        overflow: scroll;
        padding: 20px 0;
        transition: var(--main-transition);
    }
    .mb_navShow {
        right: 0 !important;
    }
    .hb_fadeout {
        opacity: 0 !important;
    }
    .change2 {
        transform: translateY(-10px) rotate(-45deg);
    }
    .change1 {
        transform: translateY(10px) rotate(45deg);
    }
    .hb span {
        display: block;
        width: 30px;
        height: 1px;
        background-color: var(--main-color-white);
        transition: var(--main-transition);
    }
    .mr {
        display: flex;
    }
    .mr i {
        color: var(--main-color-999);
        margin-right: 20px;
        font-size: 20px !important;
    }
    .hb {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        height: 20px;
        flex-direction: column;
    }
    .ml_mb_logo img {
        height: 30px;
    }
    .ml_mb_head {
        display: flex;
        height: 60px;
        padding: 0 20px;
        background-color: #1e1e1d;
        position: fixed;
        top: 0;
        left: 0;
        align-items: center;
        justify-content: space-between;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        width: 100%;
        z-index: 99999;
    }
    .ml_pcheader {
        display: none;
    }
}