@charset "utf-8"; /* CSS Author WeChat:iGAME_Max */
/*公用代码*/
body,html {
    background: none repeat scroll 0 0;
    font: calc(100vw / 120) arial,verdana;
    color: #333;
    overflow-x: hidden;
}

@font-face {
    font-family: "msBold";
    src: url("fonts/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: "syBold";
    src: url("fonts/SourceHanSansCN-Bold.ttf");
}

@font-face {
    font-family: "syMedium";
    src: url("fonts/SourceHanSansCN-Medium.ttf");
}

@font-face {
    font-family: "syLight";
    src: url("fonts/SourceHanSansCN-Light.ttf");
}

@font-face {
    font-family: "syNormal";
    src: url("fonts/SourceHanSansCN-Normal.ttf");
}

@font-face {
    font-family: "syHeavy";
    src: url("fonts/SourceHanSansCN-Heavy.ttf");
}

@font-face {
    font-family: "syRegular";
    src: url("fonts/SourceHanSansCN-Regular.ttf");
}

::-webkit-scrollbar {
    /* 1 */
    width: 6px;
    background-color: #C7C7C7;
}

::-webkit-scrollbar-button {
    /* 2 */
    display: none;
}

::-webkit-scrollbar-track {
    /* 3 */
}

::-webkit-scrollbar-track-piece {
    /* 4 */
}

::-webkit-scrollbar-thumb {
    /* 5 */
    width: 5px;
    border-radius: 0;
    background-color: #894614;
}

::-webkit-scrollbar-corner {
    /* 6 */
    background-color: #333;
}

::-webkit-resizer {
    /* 7 */
}

::-webkit-scrollbar:horizontal {
    height: 6px;
}

blockquote,body,button,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul {
    margin: 0;
    padding: 0;
    text-shadow: none;
}

label input {
    vertical-align: middle;
    text-shadow: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* 鼠标样式 */
.cursor {
    pointer-events: none;
    z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #894614;
    background: #894614;
    opacity: 0;
    transition: width .2s ease-out,height .2s ease-out,transform .2s;
    transform: translate(-50%,-50%) rotate(0);
}

.cursor.active {
    width: 20rem;
    height: 20rem;
    background: rgba(255,255,255,0.35);
}

.cursor.style {
    border-color: #fff;
    background: rgba(255,255,255,0.8);
}

/* *:not(a),a{cursor:url(../images/cursor_fill.svg) 11 11,auto} */
a,a:active,a:visited,a:link {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    color: #333;
}

a:hover {
    color: #894614;
}

a:hover,a:active,a:focus,a:hover,a:link,a:visited {
    text-decoration: none;
    text-shadow: none;
    outline: none;
}

img {
    max-width: 100%;
    border: 0;
}

i {
    font-style: initial;
}

table {
    border-collapse: collapse;
}

ul li {
    list-style: none;
}

input,select,textarea {
    outline: none;
    resize: none;
    font-size: 0.875rem;
}

.f-l {
    float: left;
}

.f-l,.f-r {
    display: inline-block;
}

.f-r {
    float: right;
}

.t-l {
    text-align: left;
}

.t-c {
    text-align: center;
}

.t-r {
    text-align: right;
}

.top10 {
    margin-top: 10px;
}

.top20 {
    margin-top: 20px;
}

.top30,.top40 {
    margin-top: 30px;
}

.top50 {
    margin-top: 50px;
}

.top60 {
    margin-top: 60px;
}

.top70 {
    margin-top: 70px;
}

.top80 {
    margin-top: 80px;
}

.bg-white {
    background: #fff;
}

.bg-gray {
    background: #F5F5F5;
}

.w-90 {
    width: 90%;
    margin: auto;
}

.w-100 {
    width: 100%;
    float: left;
}

.w-1200 {
    margin: auto;
    width: 75rem;
}

.w-1300 {
    margin: auto;
    width: 83.125rem;
}

.w-1400 {
    margin: auto;
    width: 87.5rem;
}

.w-1500 {
    margin: auto;
    width: 95rem;
}

.w-1600 {
    margin: auto;
    width: 100rem;
}

.w-1700 {
    margin: auto;
    width: 107.5rem;
}

.div-pc {
    display: block;
}

.div-phone {
    display: none;
}

.clear::after {
    content: '';
    display: block;
    clear: both;
}

.img-hover {
    overflow: hidden;
}

.img-hover .img-h {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s;
}

.img-hover:hover .img-h {
    transform: scale(1.1);
}

/* 布局样式 */
.between-top {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.between-center {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
}

.between-bottom {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-end;
}

.center-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.around-center {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    align-items: center;
    -webkit-justify-content: space-around;
    -webkit-align-items: center;
}

.column-between {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.column-around {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-around;
    -webkit-justify-content: space-around;
}

/* 文字超出隐藏省略号 */
.text-one-hide {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.text-two-hide {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.text-three-hide {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* 手机版按钮 */
.head-btn {
    width: 1.57rem;
    float: right;
    position: relative;
    margin-left: 1.5rem;
    cursor: pointer;
}

.head-btn i {
    display: block;
    width: 100%;
    height: 2px;
    float: left;
    background-color: #894614;
    border-radius: 50px;
    transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
}

.head-btn i.bar-top {
    margin-top: 0;
}

.head-btn i.bar-cen {
    margin-top: 0.375rem;
}

.head-btn i.bar-bom {
    margin-top: 0.375rem;
}

.head-btn.cur i.bar-cen {
    opacity: 0;
}

.head-btn.cur i.bar-top {
    transform: rotate(45deg);
    transform-origin: 1px 1px;
    width: 1.57rem;
}

.head-btn.cur i.bar-bom {
    transform: rotate(-45deg);
    transform-origin: 1px 1px;
    width: 1.57rem;
}

/*隐藏*/
.overHide {
    overflow: hidden;
}

.fanye-box {
    text-align: center;
    padding: 3rem 0;
    margin: auto;
}

.fanye-box .between-center {
    /* box-shadow: 0 0 1rem rgba(0,0,0,0.1); border: 1px solid #E4E4E4; */
}

.fanye-box a {
    background: #ECECEC;
    border-color: #ECECEC;
    height: 3rem;
    line-height: 3rem;
    padding: 0 1.25rem;
    font-size: 1rem;
    margin: auto;
    border-radius: 0;
}

.fanye-box a:hover,.fanye-box a.curr,.fanye-box a.this {
    background: #600001;
    color: #fff;
    border-color: #600001;
}

.fanye-box a+a {
    margin: 0 0 0 1px !important;
}

.swiper-pagination-bullet,.swiper-button-next,.swiper-button-prev {
    outline: none;
}

.all-center-box {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    background: url(../images/page_bg2.png);
}

.all-center-box::before {
    content: '';
    width: 100%;
}

/* .all-center-box.active{ margin-top: 4.875rem;} */
.text-center {
    text-align: center;
}

/* .goTop{ width: 3.4375rem; height: 3.4375rem; background: url(../images/icon_gotop.png) no-repeat center; background-size: 100%; position: fixed; right: 4.25rem; bottom: 4rem; z-index: 90; opacity: 0; pointer-events: none; transition: all .3s; }
.goTop.active{ opacity: 1; pointer-events: auto; } */
.tips-box {
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.5rem;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 999;
    transform: translate(-50%,-50%);
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
}

.loading-box {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    transition: all 1.5s ease .3s;
    pointer-events: none;
    background: #fff;
}

.loading-box.noShow {
    transform: translate(0,100%);
    opacity: 0;
}

.loading-box>.center-center {
    width: 100%;
    height: 100%;
}

.loading-box>.center-center p {
    margin-top: 1rem;
    color: #888;
}

.la-fire,.la-fire>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.la-fire {
    display: block;
    font-size: 0;
    color: #600001;
}

.la-fire.la-dark {
    color: #333
}

.la-fire>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor
}

.la-fire {
    width: 32px;
    height: 32px
}

.la-fire>div {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 0;
    border-radius: 2px;
    -webkit-transform: translateY(0) translateX(-50%) rotate(45deg) scale(0);
    -moz-transform: translateY(0) translateX(-50%) rotate(45deg) scale(0);
    -ms-transform: translateY(0) translateX(-50%) rotate(45deg) scale(0);
    -o-transform: translateY(0) translateX(-50%) rotate(45deg) scale(0);
    transform: translateY(0) translateX(-50%) rotate(45deg) scale(0);
    -webkit-animation: fire-diamonds 1.5s infinite linear;
    -moz-animation: fire-diamonds 1.5s infinite linear;
    -o-animation: fire-diamonds 1.5s infinite linear;
    animation: fire-diamonds 1.5s infinite linear
}

.la-fire>div:nth-child(1) {
    -webkit-animation-delay: -.85s;
    -moz-animation-delay: -.85s;
    -o-animation-delay: -.85s;
    animation-delay: -.85s
}

.la-fire>div:nth-child(2) {
    -webkit-animation-delay: -1.85s;
    -moz-animation-delay: -1.85s;
    -o-animation-delay: -1.85s;
    animation-delay: -1.85s
}

.la-fire>div:nth-child(3) {
    -webkit-animation-delay: -2.85s;
    -moz-animation-delay: -2.85s;
    -o-animation-delay: -2.85s;
    animation-delay: -2.85s
}

.la-fire.la-sm {
    width: 16px;
    height: 16px
}

.la-fire.la-sm>div {
    width: 6px;
    height: 6px
}

.la-fire.la-2x {
    width: 64px;
    height: 64px
}

.la-fire.la-2x>div {
    width: 24px;
    height: 24px
}

.la-fire.la-3x {
    width: 96px;
    height: 96px
}

.la-fire.la-3x>div {
    width: 36px;
    height: 36px
}

@-webkit-keyframes fire-diamonds {
    0% {
        -webkit-transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0);
        transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0)
    }

    50% {
        -webkit-transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1);
        transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1)
    }

    100% {
        -webkit-transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0);
        transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0)
    }
}

@-moz-keyframes fire-diamonds {
    0% {
        -moz-transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0);
        transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0)
    }

    50% {
        -moz-transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1);
        transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1)
    }

    100% {
        -moz-transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0);
        transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0)
    }
}

@-o-keyframes fire-diamonds {
    0% {
        -o-transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0);
        transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0)
    }

    50% {
        -o-transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1);
        transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1)
    }

    100% {
        -o-transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0);
        transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0)
    }
}

@keyframes fire-diamonds {
    0% {
        -webkit-transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0);
        -moz-transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0);
        -o-transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0);
        transform: translateY(75%) translateX(-50%) rotate(45deg) scale(0)
    }

    50% {
        -webkit-transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1);
        -moz-transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1);
        -o-transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1);
        transform: translateY(-87.5%) translateX(-50%) rotate(45deg) scale(1)
    }

    100% {
        -webkit-transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0);
        -moz-transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0);
        -o-transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0);
        transform: translateY(-212.5%) translateX(-50%) rotate(45deg) scale(0)
    }
}

.sidebar-right {
    width: 4.375rem;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 90;
    margin-top: -12.8125rem;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0,0,0,0.1);
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding: 0.8rem 0;
}

.sidebar-right a {
    width: 100%;
    height: 4rem;
}

.sidebar-right a i {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    transition: all .6s;
}

/* .sidebar-right a i::after{ content: ''; width: 2.25rem; height: 1px; background: #ededed; position: absolute; left: 50%; bottom: -1rem; transform: translate(-50%,0); } */
.sidebar-right a:last-child i::after {
    display: none;
}

.sidebar-right a i.icon1 {
    background-image: url(../images/icon_sr1.png);
}

.sidebar-right a i.icon2 {
    background-image: url(../images/icon_sr2.png);
}

.sidebar-right a i.icon3 {
    background-image: url(../images/icon_sr3.png);
}

.sidebar-right a i.icon4 {
    background-image: url(../images/icon_sr4.png);
}

.sidebar-right a i.icon5 {
    background-image: url(../images/icon_sr5.png);
}

.sidebar-right a i.icon7 {
    background-image: url(../images/wenc.png);
}

.sidebar-right a i.icon9 {
    background-image: url(../images/jiu.png);
}

.sidebar-right a i.icon6 {
    background-image: url(../images/icon_sr6.png);
}

.sidebar-right a p {
    width: 9.375rem;
    position: absolute;
    right: calc(100% + 1rem);
    top: 50%;
    box-shadow: 0 0 1rem rgba(0,0,0,0.1);
    transform: translate(-2rem,-50%);
    border-radius: 1rem;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: all .6s;
}

.sidebar-right a:hover p {
    opacity: 1;
    transform: translate(0,-50%);
}

.sidebar-right a:hover i {
    transform: rotateY(360deg);
}

.all-center-box .page-center-box .page-top-box {
    margin-top: 6.25rem;
}

.all-center-box .page-center-box .page-top-box span {
    font-size: 2.25rem;
}

.head-box {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    transition: all .6s;
}

.head-box::after {
    content: '';
    width: 100%;
    height: 6.5625rem;
    background: url(../images/bg_1.png) no-repeat top;
    background-size: auto 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.head-box .logo {
    height: 4.125rem;
}

.head-box .w-90 {
    width: 98%;
    height: 6.1625rem;
    position: relative;
    z-index: 2;
}

.head-box .f-r .box-info1 {
    width: 2.25rem;
    height: 2.25rem;
    float: left;
    position: relative;
}

.head-box .f-r .box-info1 .box1 {
    width: 100%;
    height: 100%;
    background: url(../images/icon_1.png) no-repeat center;
    background-size: 1.875rem;
    cursor: pointer;
    transition: all .6s;
}

.head-box .f-r .box-info1 .box2 {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    background: rgba(0,0,0,0.5);
    transition: all .6s;
    opacity: 0;
    pointer-events: none;
}

.head-box .f-r .box-info1 .box2 .center-center {
    width: 100%;
    height: 100%;
    float: left;
}

.head-box .f-r .box-info1 .box2 p {
    font-size: 2.25rem;
    color: #fff;
}

.head-box .f-r .box-info1 .box2 form {
    width: 50rem;
    display: flex;
    margin-top: 1.5rem;
}

.head-box .f-r .box-info1 .box2 .text {
    font-size: 1.5rem;
    flex: 1;
    width: 100%;
    padding: 0 1rem;
    border: none;
    background: #fff;
    height: 5rem;
}

.head-box .f-r .box-info1 .box2 .btns {
    font-size: 1.5rem;
    color: #fff;
    width: 6.875rem;
    cursor: pointer;
    border: none;
    background: #883700;
    height: 5rem;
    text-align: center;
}

.head-box .f-r .box-info1 .box2 i {
    width: 2.8125rem;
    height: 2.8125rem;
    position: absolute;
    right: 10.45rem;
    top: 1.7rem;
    background: url(../images/icon_close2.png) no-repeat center;
    background-size: 100%;
    cursor: pointer;
    transition: all .6s;
}

.head-box .f-r .box-info1 .box2 i:hover {
    transform: rotate(360deg);
}

.head-box .f-r .box-info1 .box1.active {
    background-image: url(../images/icon_close.png);
}

.head-box .f-r .box-info1 .box2.active {
    opacity: 1;
    transform: translate(0,0);
    pointer-events: auto;
}

.head-box .f-r .box-info2 {
    margin-left: 0.5rem;
}

.head-box .f-r .box-info2 a {
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    border: 1px solid #919191;
    border-radius: 100%;
    font-size: 12px;
    float: left;
    text-align: center;
    margin-left: 0.5rem;
}

.head-box .f-r .box-info2 a.active,.head-box .f-r .box-info2 a:hover {
    background: #873800;
    border-color: #873800;
    color: #fff;
}

.head-box .head-menu>ul>li {
    float: left;
    text-align: center;
    /* margin:0 -0.59375rem; */
    position: relative;
}

.head-box .head-menu>ul>li>a {
    float: left;
    padding: 0 2.25rem;
    font-size: 1.25rem;
    line-height: 2.3125rem;
    height: 2.3125rem;
    overflow: hidden;
    position: relative;
}

.head-box .head-menu>ul>li>a p {
    transition: all .6s;
}

.head-box .head-menu>ul>li>a p:first-child::after {
    content: '';
    width: calc(100% - 4.5rem);
    height: 100%;
    background: url(../images/bg_2_1.png) repeat-x center;
    background-size: auto 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
    opacity: 0;
    transition: all .6s;
}

.head-box .head-menu>ul>li>a::after {
    content: '';
    width: 2.25rem;
    height: 100%;
    background: url(../images/bg_2.png) no-repeat left;
    background-size: auto 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .6s;
}

.head-box .head-menu>ul>li>a::before {
    content: '';
    width: 2.25rem;
    height: 100%;
    background: url(../images/bg_2.png) no-repeat right;
    background-size: auto 100%;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all .6s;
}

.head-box .head-menu>ul>li:hover>a p:first-child {
    margin-top: -2.3125rem;
}

.head-box .head-menu>ul>li:hover>a p:first-child::after, .head-box .head-menu>ul>li:hover>a::after, .head-box .head-menu>ul>li:hover>a::before, .head-box .head-menu>ul>li.active a p:first-child::after, .head-box .head-menu>ul>li.active a::after, .head-box .head-menu>ul>li.active a::before {
    opacity: 1;
}

.head-box .head-menu>ul>li.active>a {
    color: #894614;
}

.head-box .head-menu ul li {
    position: relative;
}

.head-box .head-menu ul li ul {
    min-width: 10.3125rem;
    position: absolute;
    left: 50%;
    top: calc(100% + 1rem);
    transform: perspective(800px) rotateY(60deg) translate3d(-50%, 10px, 0px);
    background: #fff;
    box-shadow: 0 3px 29px -8px rgb(192 196 204 / 70%);
    opacity: 0;
    pointer-events: none;
    transition: all .6s ease-in-out;
    text-align: left;
    padding: 1.75rem 0;
    border: 1px solid #9D5E31;
}

.head-box .head-menu ul li ul::before {
    content: '';
    width: 100%;
    height: 1.5rem;
    position: absolute;
    left: 0;
    bottom: 100%;
}

.head-box .head-menu ul li ul::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -0.5rem;
    width: 1rem;
    height: 1rem;
    background: #9D5E31;
    transform: translate(-50%,0) rotate(45deg);
    transition: all .3s ease .1s;
}

.head-box .head-menu ul li ul li {
    padding: 0 0.875rem;
}

.head-box .head-menu ul li ul li a {
    display: block;
    line-height: 2rem;
    font-size: 1rem;
    border-bottom: 1px solid transparent;
    padding: 0 0.75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: url(../images/icon_jt3.png) no-repeat left;
    background-size: 0.3rem;
}

@media screen and (min-width: 1024px) {
    .head-box .head-menu ul li ul li:hover>a {
        border-color: #9D5E31;
        color: #9D5E31;
        background-image: url(../images/icon_jt3_h.png);
    }

    .head-box .head-menu ul li ul ul {
        transform: translate3d(10px,0,0);
        left: calc(100% + 0.5rem);
        top: 0;
        padding: 0.875rem 0;
    }

    .head-box .head-menu ul li ul ul::before {
        width: 2rem;
        height: 100%;
        top: 0;
        left: auto;
        right: 100%;
    }

    .head-box .head-menu ul li ul ul::after {
        display: none;
    }

    .head-box .head-menu li:hover>ul {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(-50%, 0px, 0);
    }

    .head-box .head-menu li:hover>ul ul {
        transform: translate3d(0,0,0);
    }

    .head-btn {
        width: 2rem;
    }

    .head-btn i {
        height: 0.1875rem;
        background: #434343;
    }
}

.head-menu-list {
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: all .6s;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.6);
    padding: 7.5rem 0 3.4375rem;
}

.head-menu-list.active {
    opacity: 1;
    pointer-events: auto;
}

.head-menu-list>.center-center {
    width: 100%;
    height: 100%;
}

.head-menu-list>.center-center .center-block {
    width: 100rem;
    height: 100%;
    background: #9D5E31;
    position: relative;
}

.head-menu-list>.center-center .center-block .close-btn {
    width: 3.1875rem;
    height: 3.1875rem;
    position: absolute;
    left: 50%;
    bottom: -1.5625rem;
    margin-left: -1.5625;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.head-menu-list>.center-center .center-block .close-btn img {
    width: 1.25rem;
    position: relative;
    z-index: 1;
}

.head-menu-list>.center-center .center-block .close-btn::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    transition: all .6s;
}

.head-menu-list>.center-center .center-block .close-btn:hover::after {
    transform: rotate(225deg);
}

.head-menu-list>.center-center .center-block .box-info1 {
    height: 100%;
    overflow: auto;
    padding: 0 7.5rem 3.75rem;
}

.head-menu-list>.center-center .center-block .box-info1 div {
    display: flex;
    flex-flow: wrap;
}

.head-menu-list>.center-center .center-block .box-info1 div ul {
    flex: 0 0 20%;
    height: 100%;
    min-height: 60px;
    margin-top: 3.125rem;
    color: #fff;
    position: relative;
    padding-left: 3.125rem;
}

.head-menu-list>.center-center .center-block .box-info1 div ul span {
    position: absolute;
    left: 0;
    writing-mode: vertical-rl;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.head-menu-list>.center-center .center-block .box-info1 div ul li {
    display: block;
    margin-bottom: 1rem;
    position: relative;
}

.head-menu-list>.center-center .center-block .box-info1 div ul li:last-child {
    margin-bottom: 0;
}

.head-menu-list>.center-center .center-block .box-info1 div ul li a {
    color: #fff;
    position: relative;
    padding-bottom: 4px;
}

.head-menu-list>.center-center .center-block .box-info1 div ul li a::after {
    content: '';
    width: 0%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: all .6s;
}

.head-menu-list>.center-center .center-block .box-info1 div ul li a:hover::after {
    width: 100%;
    opacity: 1;
}

.head-menu-list>.center-center .center-block .box-info1 div>ul::after {
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    opacity: 0.5;
    position: absolute;
    left: 2.3rem;
    top: 0;
}

.head-menu-list>.center-center .center-block .box-info1 div>ul::before {
    content: '';
    width: 3px;
    height: 3rem;
    background: #fff;
    position: absolute;
    left: calc(2.3rem - 2px);
    top: 0;
}

.head-menu-list>.center-center .center-block .box-info1 div ul ul {
    margin: 0;
    padding-left: 1rem;
    padding-top: 1rem;
    font-size: 0.875rem;
}

.head-btn.active i {
    background: #873800;
}

.home-box1 {
    height: 100vh;
    position: relative;
}

.home-box1 .box-info1,.home-box1 .box-info1 .swiper-container {
    height: 100%;
}

.home-box1 .box-info1 .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-box1 .box-info1 .swiper-pagination {
    bottom: 6.875rem;
}

.home-box1 .box-info1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 1rem;
    width: 1.375rem;
    height: 1.375rem;
    line-height: 1.375rem;
    color: #fff;
    text-align: center;
    background: none;
    opacity: 0.5;
    position: relative;
}

.home-box1 .box-info1 .swiper-pagination .swiper-pagination-bullet i {
    position: relative;
    z-index: 2;
}

.home-box1 .box-info1 .swiper-pagination .swiper-pagination-bullet::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,1);
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    transition: all .6s;
}

.home-box1 .box-info1 .swiper-pagination .swiper-pagination-bullet::before {
    content: '';
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid #AA0003;
    position: absolute;
    left: -0.25rem;
    top: -0.25rem;
    transform: rotate(45deg);
    transition: all .6s;
    opacity: 0;
}

.home-box1 .box-info1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

.home-box1 .box-info1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background: #AA0003;
}

.home-box1 .box-info1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    opacity: 1;
}

.home-box1 .box-info2 {
    position: absolute;
    left: 0;
    bottom: 1.75rem;
    z-index: 10;
}

.home-box1 .box-info2 .between-center {
    width: 58.75rem;
    border-radius: 50px;
    background: rgba(96,1,1,0.7);
    padding: 0.625rem;
}

.home-box1 .box-info2 .swiper-container {
    width: 100%;
    flex: 1;
    height: 2rem;
}

.home-box1 .box-info2 .swiper-container .swiper-slide a {
    width: 100%;
    float: left;
    display: flex;
    color: #fff;
    line-height: 2rem;
    padding: 0 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.home-box1 .box-info2 .swiper-container .swiper-slide a p {
    font-size: 1rem;
    width: 100%;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-box1 .box-info2 .swiper-container .swiper-slide a i {
    font-size: 0.875rem;
    opacity: 0.5;
}

.home-box1 .box-info2 .f-l img {
    width: 8.8125rem;
}

.home-box1 .box-info2 .f-r {
    width: 0.875rem;
    height: 1.125rem;
    position: relative;
    margin: 0 1rem;
}

.home-box1 .box-info2 .f-r .swiper-button-next,.home-box1 .box-info2 .f-r .swiper-button-prev {
    position: relative;
    left: auto;
    right: auto;
    top: 0;
    margin: 0;
    width: 100%;
    height: 0.4375rem;
    opacity: 0.7;
    transition: all .6s;
}

.home-box1 .box-info2 .f-r .swiper-button-prev::after {
    content: '';
    border-left: 0.4375rem solid transparent;
    border-right: 0.4375rem solid transparent;
    border-bottom: 0.4375rem solid #fff;
}

.home-box1 .box-info2 .f-r .swiper-button-next::after {
    content: '';
    border-left: 0.4375rem solid transparent;
    border-right: 0.4375rem solid transparent;
    border-top: 0.4375rem solid #fff;
}

.home-box1 .box-info2 .f-r .swiper-button-next:hover,.home-box1 .box-info2 .f-r .swiper-button-prev:hover {
    opacity: 1;
}

.all-title-box1 {
    width: 6.1875rem;
    height: 20.9375rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.875rem 0 8rem;
}

.all-title-box1::after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/bg_3.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.1;
    transition: all .6s;
}

.all-title-box1 span {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: bold;
    width: 2rem;
    padding: 1.3rem 0;
    line-height: 1.1;
    color: #000;
    transition: all .6s;
}

.all-title-box1 span::after {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border: 0.1875rem solid #000;
    position: absolute;
    left: 50%;
    top: 0;
    transform: rotate(45deg);
    margin-left: -0.375rem;
}

.all-title-box1 span::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border: 0.1875rem solid #000;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: rotate(45deg);
    margin-left: -0.375rem;
}

.all-title-box1.active::after {
    opacity: 1;
}

.all-title-box1.active span {
    color: #fff;
}

.all-title-box1.active span::after,.all-title-box1.active span::before {
    border-color: #E8D6C1;
}

.home-box2 {
    background: url(../images/ho2_img1.jpg) center fixed;
    background-size: cover;
}

.home-box2 .w-90 {
    position: relative;
    padding: 10rem 0 7.5rem;
}

.home-box2 .f-l {
    width: 6.1875rem;
}

.home-box2 .f-r {
    width: 100%;
    flex: 1;
    padding: 0 36.875rem 0 4.375rem;
    position: relative;
    z-index: 2;
}

.home-box2 .box-info3 {
    width: 44.25rem;
    height: 58.375rem;
    position: absolute;
    right: 0;
    bottom: 0;
}

.home-box2 .box-info1 {
    border: 1px dashed #600101;
    padding: 0 2.5rem 2.5rem;
    position: relative;
    margin-top: 2.5rem;
}

.home-box2 .box-info1 .box1 {
    margin-top: -6.25rem;
}

.home-box2 .box-info1 .box1 img {
    height: 9.8125rem;
}

.home-box2 .box-info1 .box2 div {
    width: 50%;
    float: left;
    margin-top: 1rem;
    font-size: 1.625rem;
    font-weight: bold;
    color: #600101;
    position: relative;
    padding-left: 1.75rem;
}

.home-box2 .box-info1 .box2 div::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border: 0.1875rem solid #B68D5A;
    position: absolute;
    left: 0.2rem;
    top: 50%;
    margin-top: -0.4375rem;
    transform: rotate(45deg);
    transition: all .6s;
}

.home-box2 .box-info1 .box2 div:hover::after {
    transform: rotate(225deg);
}

.home-box2 .box-info1 .box3 {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 1.5rem;
}

.home-box2 .box-info1 .box4 {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    right: -1.25rem;
    top: 50%;
    margin-top: -1.25rem;
}

.home-box2 .box-info1 .box4 svg {
    width: 0.625rem;
    height: 1.0625rem;
    position: relative;
    z-index: 2;
}

.home-box2 .box-info1 .box4::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #873800;
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    transition: all .6s;
}

.home-box2 .box-info1 .box4:hover::after {
    transform: rotate(225deg);
}

.home-box2 .box-info2 .box1 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
}

.home-box2 .box-info2 .box2 p {
    float: left;
    padding-left: 2.375rem;
    line-height: 1.9375rem;
    margin: 1.25rem 2rem 0 0;
    position: relative;
}

.home-box2 .box-info2 .box2 p.icon1::after {
    content: '';
    width: 1.9375rem;
    height: 1.9375rem;
    background: url(../images/icon_3.png) no-repeat center #885842;
    background-size: auto 1rem;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.home-box2 .box-info2 .box2 p.icon2::after {
    content: '';
    width: 1.9375rem;
    height: 1.9375rem;
    background: url(../images/icon_4.png) no-repeat center #885842;
    background-size: auto 1rem;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.home-box2 .box-info2 .box3 ul li {
    width: 5.625rem;
    float: left;
    margin: 3.125rem 2.125rem 0 0;
}

.home-box2 .box-info2 .box3 ul li a {
    width: 100%;
    float: left;
    position: relative;
    text-align: center;
}

.home-box2 .box-info2 .box3 ul li a p {
    font-size: 1.25rem;
    margin-top: 0.2rem;
    color: #885842;
}

.home-box2 .box-info2 .box3 ul li a i {
    width: 5.25rem;
    height: 5.25rem;
    border: 0.1875rem solid #885842;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 2.5rem;
    transition: all .6s;
}

.home-box2 .box-info2 .box3 ul li a div {
    width: 8.75rem;
    position: absolute;
    left: 50%;
    bottom: calc(100% + 1rem);
    margin-left: -4.375rem;
    opacity: 0;
    transition: all .6s;
    border: 1px dashed #885842;
}

.home-box2 .box-info2 .box3 ul li a i.icon1 {
    background-image: url(../images/icon_h2_1_h.png);
}

.home-box2 .box-info2 .box3 ul li a i.icon2 {
    background-image: url(../images/icon_h2_2_h.png);
}

.home-box2 .box-info2 .box3 ul li a i.icon3 {
    background-image: url(../images/icon_h2_3_h.png);
}

.home-box2 .box-info2 .box3 ul li a i.icon4 {
    background-image: url(../images/icon_h2_4_h.png);
}

.home-box2 .box-info2 .box3 ul li a i.icon5 {
    background-image: url(../images/icon_h2_5_h.png);
}

.home-box2 .box-info2 .box3 ul li a i.icon6 {
    background-image: url(../images/icon_h2_6_h.png);
}

.home-box2 .box-info2 .box3 ul li a i.icon7 {
    background-image: url(../images/icon_h2_7_h.png);
}

.home-box2 .box-info2 .box3 ul li a:hover i {
    background-color: #885842;
}

.home-box2 .box-info2 .box3 ul li a:hover i.icon1 {
    background-image: url(../images/icon_h2_1.png);
}

.home-box2 .box-info2 .box3 ul li a:hover i.icon2 {
    background-image: url(../images/icon_h2_2.png);
}

.home-box2 .box-info2 .box3 ul li a:hover i.icon3 {
    background-image: url(../images/icon_h2_3.png);
}

.home-box2 .box-info2 .box3 ul li a:hover i.icon4 {
    background-image: url(../images/icon_h2_4.png);
}

.home-box2 .box-info2 .box3 ul li a:hover i.icon5 {
    background-image: url(../images/icon_h2_5.png);
}

.home-box2 .box-info2 .box3 ul li a:hover i.icon6 {
    background-image: url(../images/icon_h2_6.png);
}

.home-box2 .box-info2 .box3 ul li a:hover i.icon7 {
    background-image: url(../images/icon_h2_7.png);
}
.home-box2 .box-info2 .box3 ul li a:hover div {
    opacity: 1;
}

.home-box3 {
    display: flex;
    background: url(../images/ho3_bg1.jpg);
    flex-flow: row-reverse;
}

.home-box3 .f-l {
    width: 100%;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.home-box3 .f-l::after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/ho3_bg2.png) no-repeat right;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.home-box3 .f-l .box-info1 {
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
}

.home-box3 .f-l .box-info1 div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.home-box3 .f-l .box-info1 div.active {
    opacity: 1;
    z-index: 2;
}

.home-box3 .f-l .box-info1 div img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .6s;
    object-fit: cover;
    opacity: 0;
    transform: translate(-5rem,0);
}

.home-box3 .f-l .box-info1 div img.active {
    transform: translate(0,0);
    opacity: 1;
}

.home-box3 .f-l .box-info2 {
    width: 36.625rem;
    height: 43.75rem;
    position: absolute;
    right: 5rem;
    top: 50%;
    margin-top: -21.875rem;
    z-index: 3;
}

.home-box3 .f-l .box-info2 .center-block {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .6s;
}

.home-box3 .f-l .box-info2 .center-block.active {
    opacity: 1;
    z-index: 2;
}

.home-box3 .f-l .box-info2 .center-block .column-between {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translate(3rem,0);
    transition: all .6s;
    background: rgba(135,56,0,0.8);
    color: #fff;
    padding: 3.75rem 4.375rem;
}

.home-box3 .f-l .box-info2 .center-block .column-between.active {
    opacity: 1;
    transform: translate(0,0);
    z-index: 2;
}

.home-box3 .f-l .box-info2 .center-block .column-between .box1 {
    font-size: 2.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.8);
    padding-bottom: 1.5rem;
}

.home-box3 .f-l .box-info2 .center-block .column-between .box2 {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 1.5rem;
    text-align: justify;
}

.home-box3 .f-l .box-info2 .center-block .column-between .box3 .all-more1 {
    float: right;
}

.home-box3 .f-r {
    width: 40.5rem;
    padding: 2rem 6.25rem 2em 5rem;
    flex-flow: row-reverse;
}

.home-box3 .f-r .box-info1 {
    display: flex;
}

.home-box3 .f-r .box-info1 ul {
    width: 15rem;
    opacity: 0;
    pointer-events: none;
    transform: translate(2rem,0);
    transition: all .6s;
}

.home-box3 .f-r .box-info1 ul:nth-child(2) {
    margin-left: -15rem;
}

.home-box3 .f-r .box-info1 ul li {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.2rem;
    padding: 1rem 0;
    cursor: pointer;
}

.home-box3 .f-r .box-info1 ul li::after {
    content: '';
    width: 0%;
    height: 1px;
    background: #873800;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .6s;
}

.home-box3 .f-r .box-info1 ul li i {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    color: #fff;
}

.home-box3 .f-r .box-info1 ul li i::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #B5B5B5;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transform: rotate(45deg);
    transition: all .6s;
}

.home-box3 .f-r .box-info1 ul li span {
    width: 100%;
    flex: 1;
    font-size: 1.4rem;
    padding-left: 1.5rem;
    transition: all .6s;
}

.home-box3 .f-r .box-info1 ul li.active::after {
    width: 100%;
}

.home-box3 .f-r .box-info1 ul li.active i::before {
    background: #873800;
    transform: rotate(225deg);
}

.home-box3 .f-r .box-info1 ul li.active span {
    color: #873800;
}

.home-box3 .f-r .box-info1 ul.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    transform: translate(0,0);
}

.home-box3 .f-r .box-info2 .all-title-box1 {
    cursor: pointer;
}

.all-more1 {
    position: relative;
    line-height: 2rem;
    display: flex;
    padding-right: 2.75rem;
}

.all-more1 span {
    color: #fff;
    font-size: 1.125rem;
    margin-right: 1rem;
}

.all-more1 i {
    width: 1.875rem;
    height: 1.875rem;
    position: relative;
    display: flex;
}

.all-more1 i::before {
    content: '';
    width: 1.875rem;
    height: 1.875rem;
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #fff;
    transform: rotate(45deg);
    transition: all .6s;
}

.all-more1 i svg {
    width: 4rem;
    height: 0.6875rem;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -0.375rem 0 0 -0.3rem;
}

.all-more1:hover i::before {
    transform: rotate(225deg);
}

.all-more1.style2 span {
    color: #555;
}

.all-more1.style2 i::before {
    border-color: #555;
}

.all-more1.style2 i svg path {
    fill: #555;
}

.home-box4 {
    background: url(../images/ho4_bg.jpg) no-repeat fixed;
    background-size: cover;
    padding: 5rem 0 3rem;
}

.home-box4 .f-l {
    width: 3rem;
    margin: 0 4rem 0 4.375rem;
}

.home-box4 .f-l span {
    width: 100%;
    float: left;
    color: #BCA07B;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
    cursor: pointer;
}

.home-box4 .f-l span i {
    padding: 0 0.75rem;
    background: rgba(236,189,128,0.22);
    min-height: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.home-box4 .f-l span::before,.home-box4 .f-l span::after {
    content: '';
    width: 100%;
    height: 1.75rem;
    background: url(../images/bg_4.png) no-repeat;
    background-size: 100%;
    transition: all .3s;
}

.home-box4 .f-l span::before {
    background-position: top;
}

.home-box4 .f-l span::after {
    background-position: bottom;
}

.home-box4 .f-l span:hover i,.home-box4 .f-l span.active i {
    background: #ECBD80;
    color: #4E3524;
}

.home-box4 .f-l span:hover::before,.home-box4 .f-l span:hover::after, .home-box4 .f-l span.active::before,.home-box4 .f-l span.active::after {
    background-image: url(../images/bg_4_h.png);
}

.home-box4 .f-r {
    width: 80%;
    flex: 1;
    color: #fff;
    padding-bottom: 2rem;
}

.home-box4 .f-r .box-info {
    display: none;
}

.home-box4 .f-r .center-block {
    display: flex;
    /* flex-flow: row wrap; align-content: flex-start; */
}

.home-box4 .f-r .center-block>div {
    width: 26.25rem;
    text-align: center;
    flex: 0 0 25%;
    margin-bottom: 1rem;
    cursor: pointer;
    padding: 0 1rem;
}

.home-box4 .f-r .center-block>div i {
    width: 100%;
    display: block;
    height: 18.125rem;
    padding: 0.5rem 0;
}

.home-box4 .f-r .center-block>div i img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all .6s;
}

.home-box4 .f-r .center-block>div p {
    margin-top: 0rem;
    color: #E1CCB0;
    font-size: 1.125rem;
    padding-bottom: 0.625rem;
    display: inline-block;
    position: relative;
}

.home-box4 .f-r .center-block>div p::after {
    content: '';
    width: 0%;
    height: 1px;
    background: #E1CCB0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: all .6s;
}

.home-box4 .f-r .center-block>div:hover p::after {
    width: 100%;
    left: 0;
}

.home-box5 {
    background: url(../images/ho5_bg.jpg) no-repeat center fixed;
    background-size: cover;
    padding: 5.625rem 0;
}

.home-box5 .w-90 {
    flex-flow: row-reverse;
}

.home-box5 .f-r .box-info1 {
    text-align: center;
    margin-top: 1.5rem;
}

.home-box5 .f-r .box-info1>div {
    width: 6.25rem;
    height: 6.25rem;
    position: relative;
}

.home-box5 .f-r .box-info1>div::after {
    content: '';
    width: 100%;
    height: 100%;
    border: 1px dashed #885842;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: rotation-clockwise2 40s linear infinite;
}

.home-box5 .f-r .box-info1>div i {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: rotation-clockwise 20s linear infinite;
}

.home-box5 .f-r .box-info1>div i::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #885842;
    border-radius: 100%;
    position: absolute;
    right: 0.6rem;
    top: 0.6rem;
}

.home-box5 .f-r .box-info1>div img {
    width: 2.75rem;
}

.home-box5 .f-r .box-info1>p {
    font-size: 1.5rem;
    font-style: italic;
    color: #885842;
    margin-top: 0.75rem;
}

.home-box5 .f-l {
    width: 80%;
    flex: 1;
    padding-right: 4.375rem;
    display: flex;
}

.home-box5 .f-l .center-block {
    width: auto;
    float: left;
    display: flex;
}

.home-box5 .f-l .center-block .box-info1 {
    width: 15.75rem;
    height: 48.9375rem;
    background: #43240E;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-box5 .f-l .center-block .box-info1 .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .6s;
}

.home-box5 .f-l .center-block .box-info1 .bg::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;
}

.home-box5 .f-l .center-block .box-info1 .column-between {
    position: relative;
    z-index: 2;
}

.home-box5 .f-l .center-block .box-info1 .box1 i {
    width: 4.375rem;
    height: 4.375rem;
    border: 1px dashed #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.home-box5 .f-l .center-block .box-info1 .box1 i img {
    width: 1.875rem;
}

.home-box5 .f-l .center-block .box-info1 .box1 p {
    margin: 0.7rem auto;
    font-size: 1.5rem;
    writing-mode: vertical-rl;
    letter-spacing: 0.25rem;
}

.home-box5 .f-l .center-block .box-info1 .all-more1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.home-box5 .f-l .center-block.active .box-info1 .bg {
    transform: scale(1.1);
    opacity: 0;
}

.home-box5 .f-l .center-block.active .box-info1 .all-more1 {
    opacity: 1;
    height: 3rem;
    margin-top: 17.5rem;
}

.home-box5 .f-l .center-block.active .box-info2 {
    width: 49.0625rem;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
}

.home-box5 .f-l .center-block .box-info2 {
    width: 0;
    height: 48.9375rem;
    background: #777777;
    padding: 3.125rem 0;
    transition: all .6s;
    overflow: hidden;
}

.home-box5 .f-l .center-block .box-info2 .box1 ul {
    margin: 0 -1rem;
}

.home-box5 .f-l .center-block .box-info2 .box1 ul li {
    width: 50%;
    height: 11rem;
    float: left;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.home-box5 .f-l .center-block .box-info2 .box1 ul li a {
    width: 100%;
    float: left;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.home-box5 .f-l .center-block .box-info2 .box1 ul li a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all .6s;
}

.home-box5 .f-l .center-block .box-info2 .box1 ul li a p {
    width: 100%;
    padding: 1.5rem 1rem 0.6rem;
    color: #fff;
    font-size: 1rem;
    overflow: hidden;
    background: linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,0.8));
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-box5 .f-l .center-block .box-info2 .box1 ul li:nth-child(5) {
    width: 100%;
    height: 16.6rem;
}

.home-box5 .f-l .center-block .box-info2 .box1 ul li a:hover img {
    transform: scale(1.1);
}

.home-box5 .f-l .center-block .box-info2 .box2 {
    height: 24.375rem;
    overflow: hidden;
}

.home-box5 .f-l .center-block .box-info2 .box2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s;
}

.home-box5 .f-l .center-block .box-info2 .box3 {
    font-size: 1.875rem;
    color: #fff;
    line-height: 1.2;
    font-weight: bold;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 0.75rem;
    height: 4.5rem;
}

.home-box5 .f-l .center-block .box-info2 .box4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-top: 1rem;
}

.home-box5 .f-l .center-block .box-info2 .box4 span {
    font-size: 1.875rem;
    margin-right: 1rem;
}

.home-box5 .f-l .center-block .box-info2 .box4 i {
    width: 100%;
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.5);
    position: relative;
}

.home-box5 .f-l .center-block .box-info2 .box4 i::after {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    top: -3px;
    background: #fff;
    border-radius: 100%;
}

.home-box5 .f-l .center-block .box-info2 .box5 {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1rem;
    color: #fff;
}

.home-box5 .f-l .center-block .box-info2 .box5 p {
    width: 100%;
    float: left;
    height: 5.25rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-align: justify;
}

.home-box5 .f-l .center-block .box-info2 .box5 a {
    float: right;
    margin-top: 1rem;
    color: #C8C8C8;
}

.home-box5 .f-l .center-block .box-info2 .box5 a:hover {
    color: #fff;
}

.home-box5 .f-l .center-block .box-info2:hover .box2 img {
    transform: scale(1.1);
}

@-webkit-keyframes rotation-clockwise {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

@keyframes rotation-clockwise {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

@-webkit-keyframes rotation-clockwise2 {
    0% {
        transform: rotate(1turn);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes rotation-clockwise2 {
    0% {
        transform: rotate(1turn);
    }

    to {
        transform: rotate(0deg);
    }
}

.home-box6 {
    background: url(../images/ho6_bg.jpg) no-repeat center;
    background-size: 100%;
    padding: 6.25rem 0;
}

.home-box6 .w-90 {
    display: flex;
}

.home-box6 .f-l {
    height: 100%;
}

.home-box6 .f-l .all-more1 {
    margin-top: 15rem;
}

.home-box6 .f-r {
    width: 80%;
    flex: 1;
    padding-left: 5.625rem;
}

.list-box1 ul {
    margin: 0 -1.875rem;
}

.list-box1 ul li {
    width: 33.33%;
    float: left;
    padding: 0 1.875rem;
    margin-bottom: 2.5rem;
}

.list-box1 ul li a {
    width: 100%;
    float: left;
}

.list-box1 ul li a .box1 {
    height: 18.125rem;
    overflow: hidden;
}

.list-box1 ul li a .box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s;
}

.list-box1 ul li a .box2 {
    font-size: 1.375rem;
    margin-top: 0.5rem;
    height: 3.625rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.list-box1 ul li a .box3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    color: #6C6C6C;
    font-size: 1.125rem;
}

.list-box1 ul li a .box3 span {
    min-width: 12.375rem;
    padding-right: 0.5rem;
}

.list-box1 ul li a .box3 i {
    width: 100%;
    flex: 1;
    height: 1px;
    background: #D8D8D8;
    position: relative;
}

.list-box1 ul li a .box3 i::after {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    top: -3px;
    background: #D8D8D8;
    border-radius: 100%;
}

.list-box1 ul li a:hover .box1 img {
    transform: scale(1.1);
}

.foot-box {
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-top: -2rem;
}

.foot-box .wave-box {
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.foot-box .wave-box .bg {
    background: url(../images/fo_bg.jpg) no-repeat bottom fixed;
    background-size: cover;
}

.foot-box .top-box {
    padding: 2.5rem 0 3.75rem;
    position: relative;
    z-index: 2;
}

.foot-box .top-box .box-info1 {
    text-align: center;
    padding-bottom: 2.5rem;
}

.foot-box .top-box .box-info1 img {
    height: 3.875rem;
}

.foot-box .top-box .box-info2 {
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    height: 6.875rem;
}

.foot-box .top-box .box-info2>.between-center .between-center i {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 1.5rem;
}

.foot-box .top-box .box-info2>.between-center .between-center i::after {
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid #E8D6C1;
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    transition: all .6s;
}

.foot-box .top-box .box-info2>.between-center .between-center i img {
    height: 1.5rem;
    position: relative;
    z-index: 2;
}

.foot-box .top-box .box-info2>.between-center .between-center p {
    font-size: 1.125rem;
    color: #E8D6C1;
}

.foot-box .top-box .box-info2>.between-center .between-center a {
    color: #C08C69;
}

.foot-box .top-box .box-info2>.between-center .between-center+.between-center {
    margin-left: 11.875rem;
}

.foot-box .top-box .box-info2>.between-center .between-center:hover i::after {
    transform: rotate(225deg);
}

.foot-box .top-box .box-info3 {
    color: #fff;
    padding-top: 2.625rem;
}

.foot-box .top-box .box-info3 .f-l .box1 {
    font-size: 1rem;
}

.foot-box .top-box .box-info3 .f-l .box1 a {
    float: left;
    color: #fff;
    padding: 0 1.5rem;
    border-left: 1px solid #5C5C5C;
    line-height: 1.25rem;
}

.foot-box .top-box .box-info3 .f-l .box1 a:first-child {
    padding-left: 0;
    border: none;
}

.foot-box .top-box .box-info3 .f-l .box1 a:hover {
    color: #C08C69;
}

.foot-box .top-box .box-info3 .f-l .box2 {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 1.5rem;
}

.foot-box .top-box .box-info3 .f-l .box2 p {
    margin-top: 0.5rem;
}

.foot-box .top-box .box-info3 .f-l .box2 p a {
    color: #FFF;
}

.foot-box .top-box .box-info3 .f-r {
    position: relative;
    height: 100%;
}

.foot-box .top-box .box-info3 .f-r div.between-center {
    background: rgba(137,137,137,0.5);
    width: 21.5rem;
    height: 3.125rem;
    padding: 0 1rem;
    border-radius: 4px;
}

.foot-box .top-box .box-info3 .f-r div.between-center span {
    font-size: 0.875rem;
}

.foot-box .top-box .box-info3 .f-r div.between-center svg {
    width: 0.875rem;
}

.foot-box .top-box .box-info3 .f-r div.between-center svg path {
    fill: #fff;
}

.foot-box .top-box .box-info3 .f-r ul {
    width: 100%;
    position: absolute;
    left: 0;
    padding: 0 1rem;
    top: 100%;
    background: rgba(137,137,137,0.5);
    border-radius: 4px;
    margin-top: 1px;
    opacity: 0;
    pointer-events: none;
    transform: translate(0,2rem);
    transition: all .6s;
    max-height: 5.5rem;
    overflow: auto;
}

.foot-box .top-box .box-info3 .f-r ul::after {
    content: '';
    width: 100%;
    height: 2rem;
    position: absolute;
    left: 0;
    top: -1rem;
}

.foot-box .top-box .box-info3 .f-r ul li {
    width: 100%;
    float: left;
}

.foot-box .top-box .box-info3 .f-r ul li a {
    width: 100%;
    float: left;
    line-height: 3rem;
    color: #fff;
    font-size: 0.875rem;
}

.foot-box .top-box .box-info3 .f-r ul li a:hover {
    color: #C08C69;
}

.foot-box .top-box .box-info3 .f-r:hover ul {
    opacity: 1;
    transform: translate(0,0);
    pointer-events: auto;
}

.foot-box .lower-box {
    position: relative;
    z-index: 2;
    background: #584B44;
}

.foot-box .lower-box .w-90 {
    height: 4.5rem;
}

.foot-box .lower-box .f-l {
    font-size: 1rem;
    color: #fff;
}

.foot-box .lower-box .f-l span {
    font-size: 1.125rem;
}

.foot-box .lower-box .f-l span i {
    width: 1.5625rem;
    line-height: 2rem;
    background: #352D29;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    text-align: center;
    margin-right: 0.3125rem;
}

.foot-box .lower-box .f-l img {
    height: 4rem;
}

.foot-box .lower-box .f-r a {
    float: left;
    margin-left: 2.5rem;
    position: relative;
    color: #BAB3AF;
    font-size: 0.875rem;
}

.foot-box .lower-box .f-r a>img {
    height: 1.5rem;
}

.foot-box .lower-box .f-r a p {
    width: 8.75rem;
    height: 8.75rem;
    position: absolute;
    left: 50%;
    bottom: 3rem;
    margin-left: -4.375rem;
    opacity: 0;
    pointer-events: none;
    transition: all .6s;
}

.foot-box .lower-box .f-r a:hover p {
    opacity: 1;
}

.foot-box .lower-box .f-r a.style2 {
    border-left: 1px solid #8E8581;
    line-height: 1.25rem;
    padding-left: 2.5rem;
}

.page-banner {
    height: 46rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    width: 100%;
    height: 7.6875rem;
    background: url(../images/page_bg.png) no-repeat bottom;
    background-size: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 10;
}

.page-banner .box-info1 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.page-banner .box-info1 .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    filter: blur(5px);
}

.page-banner .box-info1 .bg::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(135,56,0,0.8);
    position: absolute;
    left: 0;
    top: 0;
}

.page-banner .box-info1 .w-1300 {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    font-size: 2.8rem;
}

.page-banner .box-info1 .w-1300 span {
    border-bottom: 2px solid #fff;
    padding: 1rem 0;
    display: inline-block;
    font-weight: bold;
}

.page-banner.style2 {
    height: 38.75rem;
}

.page-center-box {
    padding: 2rem 0 5rem;
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
}

.page-center-box .w-90 .page-info-box5 {
    min-height: 25rem;
}

.page-menu .f-l {
    font-size: 4.5rem;
    font-family: '宋体';
    font-weight: bold;
    color: #3E3E3E;
    border-left: 0.625rem solid #600001;
    padding-left: 0.2rem;
    width: 5.5rem;
    line-height: 1;
}

.page-menu .f-r {
    width: 100%;
    flex: 1;
    margin-left: 5rem;
    background: url(../images/page_bg3.png);
    position: relative;
}

.page-menu .f-r::before {
    content: '';
    width: 1.125rem;
    height: 1.125rem;
    background: #600001;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%) rotate(45deg);
    margin-left: -0.5625rem;
    z-index: 2;
}

.page-menu .f-r::after {
    content: '';
    width: 19.5rem;
    height: 100%;
    position: absolute;
    right: 1rem;
    top: 0;
    transition: all 1s;
    background: url(../images/bg_10.png) no-repeat center;
    background-size: contain;
}

.page-menu .f-r:hover::after {
    right: 20%;
}

.page-menu .f-r ul {
    height: 5.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: auto;
}

.page-menu .f-r ul li {
    margin-left: 2.8125rem;
}

.page-menu .f-r ul li a {
    float: left;
    font-size: 1.125rem;
    line-height: 2rem;
    position: relative;
    color: #fff;
    white-space: nowrap;
    z-index: 1;
}

.page-menu .f-r ul li a:after {
    content: '';
    width: 115%;
    height: 0.875rem;
    background: url(../images/bg_3_1.png) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    left: -0.3rem;
    top: 1.8rem;
    opacity: 0;
    pointer-events: none;
    transition: all .6s;
    z-index: -1;
}

.page-menu .f-r ul li.active a {
    font-weight: bold;
    font-size: 1.5rem;
}

.page-menu .f-r ul li.active a::after {
    opacity: 1;
}

.page-menu .f-r ul li a:hover {
    font-weight: bold;
}

.page-info-box1 .box1 {
    text-align: center;
}

.page-info-box1 .box1 img {
    height: 17.25rem;
}

.page-info-box1 .box2 {
    border-top: 1px solid #BBBBBB;
    border-bottom: 1px solid #BBBBBB;
    padding: 0 9.375rem;
    height: 5.625rem;
    margin-top: 1.75rem;
}

.page-info-box1 .box2 div {
    display: inline-block;
    font-size: 1.625rem;
    font-weight: bold;
    color: #600101;
    position: relative;
    padding-left: 1.75rem;
}

.page-info-box1 .box2 div::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border: 0.1875rem solid #B68D5A;
    position: absolute;
    left: 0.2rem;
    top: 50%;
    margin-top: -0.4375rem;
    transform: rotate(45deg);
    transition: all .6s;
}

.page-info-box1 .box2 div:hover::after {
    transform: rotate(225deg);
}

.page-info-box1 .box3 {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 2rem;
}

.page-info-box2 {
    position: relative;
    padding-bottom: 6.25rem;
}

.page-info-box2 ul {
    display: flex;
    overflow-y: auto;
    margin: 0 -1.25rem;
    padding: 6.25rem 0 0;
}

.page-info-box2 ul li {
    flex: 0 0 16.66%;
    padding: 0 1.25rem;
}

.page-info-box2 ul li a {
    width: 100%;
    float: left;
    border: 1px dashed #873800;
    padding: 3rem 0;
}

.page-info-box2 ul li a .f-l {
    writing-mode: vertical-rl;
    line-height: 2rem;
}

.page-info-box2 ul li a .f-l span {
    font-size: 1.875rem;
}

.page-info-box2 ul li a .f-l i {
    width: 1.8rem;
    font-size: 1.375rem;
    background: #600001;
    color: #fff;
    display: inline-block;
    letter-spacing: 0.3rem;
    padding: 0.4rem 0 0.2rem;
    margin-top: 0.5rem;
    transition: all .6s;
}

.page-info-box2 ul li a .f-r {
    writing-mode: vertical-rl;
    font-size: 1.125rem;
    min-height: 21.875rem;
    padding-left: 1.25rem;
    margin-left: 1.25rem;
    position: relative;
    line-height: 1.8;
    letter-spacing: 0.125rem;
}

.page-info-box2 ul li a .f-r::after {
    content: '';
    width: 1px;
    height: 21.875rem;
    background: #959595;
    position: absolute;
    left: 0;
    top: 0;
}

.page-info-box2 ul li a:hover {
    background: #584B44;
    border-color: #584B44;
    color: #F4E3D0;
    transform: translate(0,-2rem);
}

.page-info-box2 ul li a:hover .f-l i {
    background: #F4E3D0;
    color: #584B44;
}

.page-info-box3 .w-1300 {
    position: relative;
    display: flow-root;
}

.page-info-box3 .w-1300::after {
    content: '';
    width: calc(100% + 5rem);
    position: absolute;
    left: -2.5rem;
    top: 5.9375rem;
    background: linear-gradient(180deg,rgba(0,0,0,0.2),rgba(0,0,0,0));
    height: 60%;
}

.page-info-box3 .w-1300>div {
    position: relative;
    z-index: 2;
}

.page-info-box3 .box-info1 .box1 {
    line-height: 1.2rem;
}

.page-info-box3 .box-info1 .box1 p {
    height: 1.125rem;
    float: left;
    margin-right: 2.5rem;
    color: #555555;
}

.page-info-box3 .box-info1 .box1 p.icon1 {
    padding-left: 23px;
    background: url(../images/icon_10.png) no-repeat left;
}

.page-info-box3 .box-info1 .box1 p.icon2 {
    padding-left: 28px;
    background: url(../images/icon_11.png) no-repeat left;
}

.page-info-box3 .box-info1 .box2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-info-box3 .box-info1 .box2 a {
    width: 1.75rem;
    height: 1.75rem;
    line-height: 1.75rem;
    text-align: center;
    border: 1px solid #B5B5B5;
    display: inline-block;
    float: left;
    margin-left: 0.5rem;
}

.page-info-box3 .box-info1 .box2 a:hover {
    background: #600001;
    color: #fff;
    border-color: #600001;
}

.page-info-box3 .box-info2 {
    background: #fff;
    border: 1px dashed #D2D2D2;
    padding: 3.125rem 3.125rem 5rem;
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 2;
    color: #555555;
}

.page-info-box3 .box-info2 img {
    margin: 1rem 0;
}

.page-info-box3 .box-info3 {
    margin-top: -2.125rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-info-box3 .box-info3 a {
    width: 17.75rem;
    height: 4.25rem;
    background: #fff;
    border: 1px solid #D2D2D2;
    margin: auto;
}

.page-info-box3 .box-info3 a span {
    display: inline-block;
    font-size: 1.125rem;
    padding-left: 2.1875rem;
    background: url(../images/icon_jt2.png) no-repeat left;
    background-size: auto 1.25rem;
    transition: all .6s;
}

.page-info-box3 .box-info3 a:hover {
    background: rgba(182,141,90,1);
    border-color: rgba(182,141,90,1);
}

.page-info-box3 .box-info3 a:hover span {
    background-image: url(../images/icon_jt2_h.png);
    color: #fff;
}

.page-info-box3 .box-info4 {
    display: flex;
    margin-top: 3.4375rem;
}

.page-info-box3 .box-info4 a {
    width: 49%;
    float: left;
}

.page-info-box3 .box-info4 a span {
    display: block;
    font-size: 1.5rem;
    color: #555;
}

.page-info-box3 .box-info4 a span i {
    font-size: 1rem;
    color: #A4A4A4;
    line-height: 1rem;
    border-left: 1px solid #C2C2C2;
    margin-left: 0.625rem;
    padding-left: 0.625rem;
}

.page-info-box3 .box-info4 a div {
    width: 100%;
    height: 6.25rem;
    background: rgba(0,0,0,0.1);
    padding: 1.25rem 1.5rem;
    color: #555;
    line-height: 1.8;
    margin-top: 1rem;
    transition: all .6s;
}

.page-info-box3 .box-info4 a div p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-info-box3 .box-info4 a:hover div {
    background: rgba(182,141,90,0.5);
}

.page-info-box4 {
    background: url(../images/ho6_bg.png) no-repeat top;
    background-size: 100%;
}

.page-info-box4 .top-box {
    padding: 2.5rem 0 4.375rem;
    position: relative;
    z-index: 2;
}

.page-info-box4 .top-box .box1 {
    width: 100%;
    flex: 1;
    margin-right: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    position: relative;
}

.page-info-box4 .top-box .box1 span {
    width: 100%;
    float: left;
    line-height: 2.5rem;
    font-size: 1.125rem;
    color: #8A8A8A;
    position: relative;
    cursor: pointer;
}

.page-info-box4 .top-box .box1 span::after {
    content: '';
    border-left: 0.375rem solid transparent;
    border-right: 0.375rem solid transparent;
    border-top: 0.5rem solid #959595;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.25rem;
}

.page-info-box4 .top-box .box1 ul {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(0,0,0,0.3);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all .6s;
    transform: translate(0,2rem);
    max-height: 12.5rem;
    overflow: auto;
}

.page-info-box4 .top-box .box1 ul li {
    width: 100%;
    float: left;
    line-height: 3rem;
    padding: 0 1rem;
    cursor: pointer;
    transition: all .6s;
}

.page-info-box4 .top-box .box1 ul li:hover {
    background: rgba(0,0,0,0.5);
}

.page-info-box4 .top-box .box1 .text {
    width: 100%;
    height: 2.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
}

.page-info-box4 .top-box .box1 .text::-webkit-input-placeholder {
    color: #8A8A8A;
}

@media screen and (min-width: 1024px) {
    .page-info-box4 .top-box .box1:hover ul {
        transform: translate(0,0);
        opacity: 1;
        pointer-events: auto;
    }
}

.page-info-box4 .top-box .box1 ul.active {
    transform: translate(0,0);
    opacity: 1;
    pointer-events: auto;
}

.page-info-box4 .top-box .box2 {
    width: 18.5625rem;
    height: 2.875rem;
    line-height: 2.875rem;
    background: rgba(0,0,0,0.3);
    color: #fff;
    text-align: center;
    font-size: 1.125rem;
    cursor: pointer;
}

.list-box2 ul li {
    width: 100%;
    float: left;
}

.list-box2 ul li a {
    width: 100%;
    float: left;
    padding: 3.75rem 0;
    border-bottom: 1px solid #D3D3D3;
}

.list-box2 ul li a .box-info1 {
    text-align: center;
    font-size: 0.875rem;
    font-style: italic;
    color: #333;
}

.list-box2 ul li a .box-info1 p {
    font-size: 3rem;
}

.list-box2 ul li a .box-info2 {
    width: 100%;
    flex: 1;
    padding-left: 2.125rem;
    margin-left: 2.125rem;
    border-left: 1px solid #D3D3D3;
}

.list-box2 ul li a .box-info2 .box1 {
    font-size: 1.375rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.list-box2 ul li a .box-info2 .box2 {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 2.75rem;
    color: #000000;
}

.list-box2 ul li a .box-info2 .all-more1 {
    float: left;
    margin-top: 3rem;
}

.list-box2 ul li a .box-info3 {
    width: 18.5rem;
    height: 12rem;
    overflow: hidden;
    margin-left: 5.625rem;
}

.list-box2 ul li a .box-info3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .6s;
}

.list-box2 ul li a:hover .box-info3 img {
    transform: scale(1.1);
}

.list-box2 ul li a:hover .all-more1 i::before {
    transform: rotate(225deg);
}

.page-info-box5 {
    padding: 3.125rem 0;
}

.page-info-box5 ul {
    width: 100%;
    float: left;
    position: relative;
}

.page-info-box5 ul::after {
    content: '';
    width: 1px;
    height: 100%;
    background: rgba(149,149,149,0.5);
    position: absolute;
    left: 11.25rem;
    top: 0;
}

.page-info-box5 ul li {
    width: 100%;
    float: left;
    margin-bottom: 3.125rem;
    display: flex;
    position: relative;
    z-index: 2;
}

.page-info-box5 ul li:last-child {
    margin-bottom: 0;
}

.page-info-box5 ul li .f-l {
    font-size: 3rem;
    color: #600001;
    font-weight: bold;
    width: 11.25rem;
    position: relative;
    margin-right: 4.375rem;
    margin-top: -1.3rem;
}

.page-info-box5 ul li .f-l::after {
    content: '';
    width: 1rem;
    height: 1rem;
    background: #600001;
    border-radius: 100%;
    position: absolute;
    right: -0.5rem;
    top: 1.2rem;
}

.page-info-box5 ul li .f-r {
    width: 100%;
    flex: 1;
    background: #fff;
    border: 1px dashed #600001;
    padding: 0 5.625rem;
}

.page-info-box5 ul li .f-r .between-top {
    padding: 3.125rem 0;
    border-bottom: 1px dashed #D1D1D1;
}

.page-info-box5 ul li .f-r .between-top .box1 {
    width: 3.3125rem;
    min-height: 5.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #600001;
    font-size: 1.5rem;
    color: #fff;
    padding: 0.5rem 1rem;
    line-height: 1;
    height: 100%;
}

.page-info-box5 ul li .f-r .between-top .box2 {
    width: 100%;
    flex: 1;
    padding-left: 1.75rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.page-info-box5 ul li .f-r .between-top:last-child {
    border: none;
}

.page-info-box6 .top-box {
    padding: 5.625rem 12.375rem;
}

.page-info-box6 .top-box .box1 {
    font-size: 1.5rem;
}

.page-info-box6 .top-box .box1 i {
    font-size: 3rem;
}

.page-info-box6 .top-box .box2 {
    font-size: 1.25rem;
    line-height: 2;
    border-left: 1px solid #B9B9B9;
    padding-left: 4.375rem;
    margin-left: 4.375rem;
}

.page-info-box6 .top-box .box2 a {
    color: #A2390F;
}

.page-info-box6 .lower-box {
    background: rgba(207,169,114,0.67);
    padding: 3.75rem;
}

.page-info-box6 .lower-box .center-block {
    border: 1px dashed #600001;
    padding: 5rem;
}

.page-info-box6 .lower-box .center-block .box1 {
    font-size: 1.875rem;
    color: #424242;
}

.page-info-box6 .lower-box .center-block .box2 {
    margin-top: 3.75rem;
}

.page-info-box6 .lower-box .center-block .box2 .center-center {
    background: #fff;
    border-radius: 1rem;
    padding: 0.625rem;
}

.page-info-box6 .lower-box .center-block .box2 .center-center>img {
    width: 100%;
    height: 10.4375rem;
    object-fit: contain;
}

.page-info-box6 .lower-box .center-block .box2 .center-center .between-center {
    padding: 0.3rem 0 0.5rem;
}

.page-info-box6 .lower-box .center-block .box2 .center-center .between-center img {
    margin-right: 0.5rem;
}

.page-info-box7 {
    position: relative;
    margin: 3.75rem 0 0;
    padding: 3rem 3.75rem;
    min-height: 26rem;
}

.page-info-box7>div {
    position: relative;
    z-index: 2;
}

.page-info-box7::after {
    content: '';
    width: calc(100% + 8px);
    height: 100%;
    border: 1px solid #B1B1B1;
    position: absolute;
    left: -4px;
    top: 0;
}

.page-info-box7::before {
    content: '';
    width: 100%;
    height: calc(100% + 8px);
    border: 1px solid #B1B1B1;
    position: absolute;
    left: 0;
    top: -4px;
}

.page-info-box7 .top-box .f-l {
    width: 72.75rem;
    height: 13.75rem;
    background: url(../images/bg_7.png) no-repeat left;
    background-size: cover;
    padding-left: 3.25rem;
}

.page-info-box7 .top-box .f-l p {
    width: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFE9D3;
}

.page-info-box7 .top-box .f-l span {
    width: 100%;
    font-size: 1.5rem;
    color: #fff;
}

.page-info-box7 .top-box .f-r {
    width: 35.5rem;
    color: #5D2D0F;
}

.page-info-box7 .top-box .f-r .box-info1 span {
    font-size: 4.5rem;
}

.page-info-box7 .top-box .f-r .box-info1 div {
    flex: 1;
    padding-left: 1rem;
    font-size: 1.125rem;
    color: #5E2E0F;
}

.page-info-box7 .top-box .f-r .box-info2 {
    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
    height: 7.5rem;
    margin-top: 1.5rem;
    padding: 0 3.125rem;
}

.page-info-box7 .top-box .f-r .box-info2 .box1 {
    font-size: 2.25rem;
}

.page-info-box7 .top-box .f-r .box-info2 .box2 {
    font-size: 1.125rem;
    color: #5C2D0F;
}

.page-info-box7 .lower-box {
    padding: 0 0 2rem;
}

.page-info-box7 .lower-box a {
    width: 13.75rem;
    height: 13.75rem;
    position: relative;
    z-index: 2;
    margin-top: 5rem;
    text-align: center;
}

.page-info-box7 .lower-box a::after {
    content: '';
    width: 100%;
    height: 100%;
    border: 1px dashed #959595;
    background: #fff;
    border-radius: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all .6s;
}

.page-info-box7 .lower-box a img {
    height: 3.375rem;
}

.page-info-box7 .lower-box a p {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: #333;
}

@media screen and (min-width: 1024px) {
    .page-info-box7 .lower-box a:hover::after {
        transform: rotate(225deg);
    }
}

.page-menu-lv2 {
    text-align: center;
    padding: 2rem 0 0;
}

.page-menu-lv2 a {
    display: flex;
    margin: 1rem 1rem 0;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
}

.page-menu-lv2 a::after,.page-menu-lv2 a::before {
    content: '';
    width: 1.75rem;
    height: 100%;
    background-repeat: no-repeat;
    background-size: auto 100%;
    transition: all .3s;
}

.page-menu-lv2 a::after {
    background-image: url(../images/bg_8.png);
    background-position: right;
}

.page-menu-lv2 a::before {
    background-image: url(../images/bg_8.png);
    background-position: left;
}

.page-menu-lv2 a i {
    min-width: 7.375rem;
    height: 3rem;
    background: #E5E5E5;
    color: #555555;
    font-size: 1.125rem;
    line-height: 3rem;
    padding: 0 1rem;
    transition: all .3s;
    white-space: nowrap;
}

.page-menu-lv2 a.active i,.page-menu-lv2 a:hover i {
    background: #873800;
    color: #fff;
}

.page-menu-lv2 a:hover::after,.page-menu-lv2 a:hover::before, .page-menu-lv2 a.active::after,.page-menu-lv2 a.active::before {
    background-image: url(../images/bg_8_h.png);
}

.list-box3 ul {
    margin: 0 -2.1875rem;
}

.list-box3 ul li {
    width: 33.33%;
    float: left;
    padding: 0 2.1875rem;
    margin-top: 4.375rem;
}

.list-box3 ul li a {
    width: 100%;
    float: left;
    position: relative;
    border-bottom: 1px solid #D8D8D8;
}

.list-box3 ul li a::after {
    content: '';
    width: 11px;
    height: 11px;
    background: #959595;
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: rotate(45deg);
    transition: all .6s;
}

.list-box3 ul li a i {
    width: 100%;
    float: left;
    height: 21.375rem;
    background: #875728;
    overflow: hidden;
    padding: 1rem;
}

.list-box3 ul li a i img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.list-box3 ul li a p {
    width: 100%;
    float: left;
    line-height: 5rem;
    font-size: 1.375rem;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 1rem;
}

.list-box3 ul li a:hover::after {
    background: #873800;
    transform: rotate(225deg);
}

.list-box3 ul li a:hover {
    border-color: #873800;
}

.popup-box {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: rgba(0,0,0,0.5);
    display: none;
}

.popup-box>.center-center {
    width: 100%;
    height: 100%;
    float: left;
}

.popup-box>.center-center>.center-block {
    width: 86.25rem;
    min-height: 31.25rem;
    max-height: 75vh;
    position: relative;
    padding: 5.5rem 5.5rem 4rem;
    background: #fff;
    margin-bottom: 5rem;
}

.popup-box>.center-center>.center-block .close-btn {
    width: 2.8125rem;
    height: 2.8125rem;
    background: url(../images/icon_close2.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    right: -3rem;
    top: -3rem;
    cursor: pointer;
    transition: all .6s;
}

.popup-box>.center-center>.center-block .close-btn:hover {
    transform: rotate(360deg);
}

.popup-box>.center-center>.center-block .popup-center {
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
    z-index: 2;
    flex-flow: row-reverse;
}

.popup-box>.center-center>.center-block::after {
    content: '';
    width: calc(100% + 7.5rem);
    height: 24.3125rem;
    position: absolute;
    left: -3.75rem;
    bottom: -8rem;
    background: url(../images/bg_5.png) no-repeat center;
    background-size: contain;
}

.popup-box>.center-center>.center-block .box-info1 {
    width: 50%;
    text-align: center;
}

.popup-box>.center-center>.center-block .box-info2 {
    width: 48%;
}

.popup-box>.center-center>.center-block .box-info2 .box1 {
    text-align: center;
    font-size: 1.875rem;
}

.popup-box>.center-center>.center-block .box-info2 .box2 {
    border-top: 1px solid #B2B2B2;
    border-bottom: 1px solid #B2B2B2;
    padding: 2rem 0.5rem;
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
    position: relative;
}

.popup-box>.center-center>.center-block .box-info2 .box2::after {
    content: '';
    width: 11px;
    height: 11px;
    background: #873800;
    position: absolute;
    left: 50%;
    top: -6px;
    transform: rotate(45deg);
    transition: all .6s;
}

.list-box4 ul {
    margin: 0 -1.375rem;
}

.list-box4 ul li {
    width: 16.66%;
    float: left;
    padding: 0 1.375rem;
    margin-top: 2.75rem;
}

.list-box4 ul li a {
    width: 100%;
    height: 21.375rem;
    float: left;
    overflow: hidden;
    position: relative;
}

.list-box4 ul li a .box1 {
    width: 100%;
    height: 100%;
    float: left;
}

.list-box4 ul li a .box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .6s;
}

.list-box4 ul li a .box2 {
    width: 100%;
    padding: 3rem 1rem 1rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,0.7));
    color: #fff;
    font-size: 1.375rem;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all .6s;
}

.list-box4 ul li a .box3 {
    width: 100%;
    height: 100%;
    background: rgba(135,87,40,0.9);
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transition: all .6s;
    transform: translate(0,2rem);
}

.list-box4 ul li a .box3>div {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 2.5rem 3rem;
}

.list-box4 ul li a .box3>div span {
    display: block;
    font-size: 1.375rem;
}

.list-box4 ul li a .box3>div div {
    font-size: 1rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    position: relative;
}

.list-box4 ul li a .box3>div div::after {
    content: '';
    width: 2rem;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -1rem;
}

.list-box4 ul li a:hover .box2 {
    opacity: 0;
}

.list-box4 ul li a:hover .box3 {
    opacity: 1;
    transform: translate(0,0);
}

.list-box5 ul {
    margin: 0 -2.5rem;
}

.list-box5 ul li {
    width: 50%;
    float: left;
    padding: 0 2.5rem;
    margin-top: 4.375rem;
}

.list-box5 ul li a {
    width: 100%;
    float: left;
}

.list-box5 ul li a .f-l {
    width: 23.4375rem;
    height: 16.875rem;
    overflow: hidden;
}

.list-box5 ul li a .f-l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .6s;
}

.list-box5 ul li a .f-r {
    width: 100%;
    flex: 1;
    padding-left: 1.75rem;
}

.list-box5 ul li a .f-r .box-info1 {
    font-size: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.list-box5 ul li a .f-r .box-info2 {
    font-size: 1rem;
    line-height: 1.8;
    height: 10rem;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    border-top: 1px solid #A9A9A9;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
}

.list-box5 ul li a .f-r .all-more1 {
    float: right;
    margin-top: 1.5rem;
}

.list-box5 ul li a:hover {
    color: #7B0F10;
}

.list-box5 ul li a:hover .f-l img {
    transform: scale(1.1);
}

.list-box5 ul li a:hover .f-r .all-more1 i::before {
    transform: rotate(225deg);
}

.page-info-box8 {
    position: relative;
    z-index: 2;
    margin-top: 2.8125rem;
    padding: 3.75rem 3rem;
    line-height: 2;
    font-size: 1.125rem;
    min-height: 26rem;
}

.page-info-box8::after {
    content: '';
    width: calc(100% + 8px);
    height: 100%;
    border: 1px solid #B1B1B1;
    position: absolute;
    left: -4px;
    top: 0;
}

.page-info-box8::before {
    content: '';
    width: 100%;
    height: calc(100% + 8px);
    border: 1px solid #B1B1B1;
    position: absolute;
    left: 0;
    top: -4px;
}

.list-box6 ul {
    margin: 0 -1rem;
}

.list-box6 ul li {
    width: 50%;
    float: left;
    margin-top: 2rem;
    padding: 0 1rem;
}

.list-box6 ul li a {
    width: 100%;
    float: left;
}

.list-box6 ul li a .box-info1 {
    height: 24.0625rem;
    overflow: hidden;
}

.list-box6 ul li a .box-info1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .6s;
}

.list-box6 ul li a .box-info2 {
    background: #fff;
    padding: 1.5rem 2.5rem 2rem;
    transition: all .6s;
}

.list-box6 ul li a .box-info2 .box1 {
    font-size: 1.875rem;
    font-weight: bold;
    height: 5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.list-box6 ul li a .box-info2 .box2 {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #CCCCCC;
    color: #333;
    position: relative;
    transition: all .6s;
}

.list-box6 ul li a .box-info2 .box2::after {
    content: '';
    width: 11px;
    height: 11px;
    background: #875728;
    position: absolute;
    left: 0;
    top: -5px;
    transform: rotate(45deg);
    transition: all .6s;
}

.list-box6 ul li a .box-info2 .box2 span {
    float: left;
    line-height: 1.75rem;
    font-size: 1rem;
    transition: all .6s;
}

.list-box6 ul li a .box-info2 .box2 span:nth-child(2) {
    border-left: 1px solid #ccc;
    padding-left: 1.2rem;
    margin-left: 1.2rem;
}

.list-box6 ul li a:hover .box-info1 img {
    transform: scale(1.1);
}

.list-box6 ul li a:hover .box-info2 {
    background: #875728;
    color: #fff;
}

.list-box6 ul li a:hover .box-info2 .box2,.list-box6 ul li a:hover .box-info2 .box2 span {
    border-color: #AB8A69;
    color: #fff;
}

.list-box6 ul li a:hover .box-info2 .box2::after {
    transform: rotate(225deg);
    background: #fff;
}

.page-info-box9 {
    margin: 4.375rem 0;
}

.page-info-box9 .f-l {
    width: 70.1875rem;
    position: relative;
    z-index: 2;
}

.page-info-box9 .f-l .box-info1 {
    font-size: 2.5rem;
}

.page-info-box9 .f-l .box-info2 {
    height: 39.75rem;
    overflow: hidden;
    margin: 2rem 0 0;
    position: relative;
    background: #ccc;
}

.page-info-box9 .f-l .box-info2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 1s;
    opacity: 0;
    transform: scale(1.1);
    position: absolute;
    left: 0;
    top: 0;
}

.page-info-box9 .f-l .box-info2 img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.page-info-box9 .f-l .box-info3 {
    padding-right: 6.875rem;
    margin-top: 1.25rem;
}

.page-info-box9 .f-l .box-info3 .swiper-container .swiper-slide {
    height: 6.75rem;
    position: relative;
    cursor: pointer;
}

.page-info-box9 .f-l .box-info3 .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-info-box9 .f-l .box-info3 .swiper-container .swiper-slide::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
    transition: all .6s;
}

.page-info-box9 .f-l .box-info3 .swiper-container .swiper-slide.swiper-slide-active::after {
    opacity: 0;
}

.page-info-box9 .f-r {
    width: 42.875rem;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #875728;
    padding: 6.25rem 8.125rem 8.75rem 7.5rem;
    color: #fff;
}

.page-info-box9 .f-r .box-info1 {
    width: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
    text-align: center;
    position: absolute;
    right: 2rem;
    top: 3.125rem;
}

.page-info-box9 .f-r .box-info1::after,.page-info-box9 .f-r .box-info1::before {
    content: '';
    width: 100%;
    height: 3.125rem;
    background: url(../images/bg_9.png) no-repeat;
    background-size: 100%;
}

.page-info-box9 .f-r .box-info1::after {
    background-position: bottom;
}

.page-info-box9 .f-r .box-info1::before {
    background-position: top;
}

.page-info-box9 .f-r .box-info1 i {
    font-size: 2.75rem;
    padding: 0.5rem 0 0.8rem;
    position: relative;
    background: url(../images/bg_9_2.png) repeat-y center;
    background-size: 100%;
}

.page-info-box9 .f-r .box-info2 {
    height: 100%;
    overflow: auto;
}

.page-info-box9 .f-r .box-info2::-webkit-scrollbar {
    background: #B68D5A;
}

.page-info-box9 .f-r .box-info2::-webkit-scrollbar-thumb {
    background: #fff;
}

.page-info-box9 .f-r .box-info3 {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 2.5rem;
}

.page-info-box9 .f-r .box-info3 .swiper-button-next,.page-info-box9 .f-r .box-info3 .swiper-button-prev {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    width: 3.5rem;
    height: 3.5rem;
}

.page-info-box9 .f-r .box-info3 .swiper-button-next::after,.page-info-box9 .f-r .box-info3 .swiper-button-prev::after {
    color: #fff;
    font-size: 1.5rem;
    transition: all .6s;
    z-index: 2;
}

.page-info-box9 .f-r .box-info3 .swiper-button-next::before,.page-info-box9 .f-r .box-info3 .swiper-button-prev::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #B68D5A;
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    transition: all .6s;
}

.page-info-box9 .f-r .box-info3 .swiper-button-next:hover::after,.page-info-box9 .f-r .box-info3 .swiper-button-prev:hover::after {
    color: #555;
}

.page-info-box9 .f-r .box-info3 .swiper-button-next:hover::before,.page-info-box9 .f-r .box-info3 .swiper-button-prev:hover::before {
    background: #fff;
    transform: rotate(225deg);
}

.page-info-box9 .f-r .box-info3 .swiper-pagination {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 0 2.5rem;
    flex: 1;
    font-size: 1.5rem;
}

.page-info-box9 .f-r .box-info3 .swiper-pagination .swiper-pagination-current {
    font-size: 2.25rem;
}

.list-box7 ul {
    margin: 0 -2.1875rem;
}

.list-box7 ul li {
    width: 33.33%;
    float: left;
    padding: 0 2.1875rem;
    margin-top: 4.375rem;
}

.list-box7 ul li a {
    width: 100%;
    height: 21.375rem;
    float: left;
    overflow: hidden;
    position: relative;
}

.list-box7 ul li a .box-info1 {
    height: 100%;
    background: #875728;
}

.list-box7 ul li a .box-info1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.list-box7 ul li a .box-info1 p {
    width: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,0.5));
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .6s;
}

.list-box7 ul li a .box-info2 {
    width: 100%;
    height: 100%;
    background: rgba(112,63,16,0.9);
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    transform: translate(0,2rem);
    transition: all .6s;
    padding: 0 2.8125rem;
}

.list-box7 ul li a .box-info2 .box1 {
    width: 100%;
    font-size: 1.5rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 1.3rem;
    text-align: center;
}

.list-box7 ul li a .box-info2 .box2 {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1.3rem;
    height: 5.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.list-box7 ul li a .box-info2 .all-more1 {
    margin-top: 1.5rem;
}

.list-box7 ul li a:hover .box-info1 p {
    opacity: 0;
}

.list-box7 ul li a:hover .box-info2 {
    opacity: 1;
    transform: translate(0,0);
}

.page-info-box10 {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.9);
    display: none;
}

.page-info-box10 .close-btn {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    right: 2rem;
    top: 2rem;
    background: url(../images/icon_close2.png) no-repeat center;
    background-size: 100%;
    transition: all .6s;
    cursor: pointer;
}

.page-info-box10 .close-btn:hover {
    transform: rotate(360deg);
}

.page-info-box10 .f-r {
    width: 36%;
    height: 100%;
    background: url(../images/bg_11.jpg);
    padding: 3.125rem;
    overflow: auto;
    color: #fff;
}

.page-info-box10 .f-r .box-info1 {
    margin-top: 7.5rem;
    font-size: 3rem;
    text-align: center;
}

.page-info-box10 .f-r .box-info2 {
    border: 1px solid #fff;
    padding: 2.5rem;
    margin-top: 1.25rem;
    line-height: 1.8;
    position: relative;
}

.page-info-box10 .f-r .box-info2::after {
    content: '';
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: -7px;
    margin-left: -7px;
    transform: rotate(45deg);
}

.page-info-box10 .f-l {
    width: 64%;
    padding: 5rem;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.page-info-box10 .f-l .box-info1 {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.page-info-box10 .f-l .box-info1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1);
    transition: all 1s;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.page-info-box10 .f-l .box-info1 img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.page-info-box10 .f-l .box-info2 {
    margin-top: 1.875rem;
    position: relative;
    padding: 0 1rem;
}

.page-info-box10 .f-l .box-info2 .swiper-button-next,.page-info-box10 .f-l .box-info2 .swiper-button-prev {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    width: 3.5rem;
    height: 3.5rem;
}

.page-info-box10 .f-l .box-info2 .swiper-button-next::after,.page-info-box10 .f-l .box-info2 .swiper-button-prev::after {
    color: #fff;
    font-size: 1.5rem;
    transition: all .6s;
    z-index: 2;
}

.page-info-box10 .f-l .box-info2 .swiper-button-next::before,.page-info-box10 .f-l .box-info2 .swiper-button-prev::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #C7C7C7;
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    transition: all .6s;
}

/* .page-info-box10 .f-l .box-info2 .swiper-button-next:hover::after,.page-info-box10 .f-l .box-info2 .swiper-button-prev:hover::after{ color: #555;} */
.page-info-box10 .f-l .box-info2 .swiper-button-next:hover::before,.page-info-box10 .f-l .box-info2 .swiper-button-prev:hover::before {
    background: #B68D5A;
    transform: rotate(225deg);
}

.page-info-box10 .f-l .box-info2 .swiper-container {
    width: 100%;
    flex: 1;
    margin: 0 2rem;
}

.page-info-box10 .f-l .box-info2 .swiper-container .swiper-slide {
    height: 6.6875rem;
}

.page-info-box10 .f-l .box-info2 .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-info-box10 .f-l .box-info2 .swiper-container .swiper-slide::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
    transition: all .6s;
}

.page-info-box10 .f-l .box-info2 .swiper-container .swiper-slide.swiper-slide-active::after {
    opacity: 0;
}

.page-info-box10.style2 {
    position: relative;
    display: flex;
    flex-flow: row-reverse;
    background: none;
    z-index: 1;
}

.page-info-box10.style2 .f-r {
    height: auto;
}

.page-info-box10.style2 .f-l .box-info1 {
    height: 34.375rem;
}

/* 屏幕分辨率放大为 125 */
@media (-webkit-min-device-pixel-ratio: 1.25) {
    /* html,body {zoom:0.9} */
}

/* 屏幕分辨率放大为 150 */
@media (-webkit-min-device-pixel-ratio: 1.5) {
    /* html,body {zoom:0.8} */
}

/* 小于等于多少高度的样式 */
@media screen and (max-height: 880px) {
}

@media screen and (max-height: 600px) {
}

/* 小于等于多少宽度的样式 */
@media screen and (max-width: 1660px) {
}

@media screen and (max-width: 1440px) {
    /* body,html{ font-size: calc(100vw / 100);} */
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1100px) {
}

@media screen and (max-width: 1024px) {
    html,body {
        font-size: 78%;
    }

    .w-90 {
        width: 92% !important;
    }

    .w-1200,.w-1400,.w-1600,.w-1300,.w-1500 {
        width: 92% !important;
    }

    .div-pc {
        display: none;
    }

    .div-phone {
        display: block;
    }

    .head-btn {
        display: block;
        margin: 0 0 0 1rem;
    }

    .fanye-box {
        padding: 1.5rem 0;
    }

    .fanye-box a {
        padding: 0 0.8rem;
        height: 2.3rem;
        line-height: 2.3rem;
    }

    .all-center-box {
    }

    .head-box .w-90 {
        height: 4rem;
    }

    .head-box .logo {
        height: 2.5rem;
    }

    .head-box .head-menu {
        width: 100%;
        position: fixed;
        left: 0;
        top: 4rem;
        background: url(../images/page_bg2.png);
        padding: 1.5rem 0;
        z-index: 10;
        display: none;
    }

    .head-box .head-menu ul li {
        width: 100%;
        float: left;
        text-align: center;
        margin: 0.2rem 0;
    }

    .head-box .head-menu ul li a {
        display: inline-block;
        float: none;
    }

    .head-box .f-r .box-info2 {
        margin-left: 0;
    }

    .head-box::after {
        height: 4.5rem;
    }

    .sidebar-right {
        display: none;
    }

    .home-box1 {
        height: 20rem;
    }

    .home-box1 .box-info1 .swiper-pagination {
        bottom: 2rem;
    }

    .home-box1 .box-info2 {
        bottom: -5rem;
    }

    .home-box1 .box-info2 .between-center {
        width: 92%;
    }

    .home-box2 {
        padding: 6rem 0 2rem;
    }

    .home-box2 .w-90 {
        padding: 0;
        display: block;
    }

    .home-box2 .f-l {
        width: 100%;
    }

    .home-box2 .f-r {
        padding: 0;
    }

    .home-box2 .box-info3 {
        display: none;
    }

    .home-box2 .box-info1 {
        padding: 0 2rem 2rem;
        margin-top: 4rem;
    }

    .home-box2 .box-info1 .box4 {
        top: 100%;
        right: 50%;
        margin-right: -1.25rem;
        margin-top: -1.2rem;
    }

    .home-box2 .box-info1 .box1 {
        margin-top: -4rem;
    }

    .home-box2 .box-info1 .box1 img {
        height: 7rem;
    }

    .home-box2 .box-info1 .box2 div {
        width: 100%;
    }

    .home-box2 .box-info2 .box1 {
        font-size: 1.5rem;
    }

    .home-box2 .box-info2 .box2 p {
        width: 100%;
        margin-top: 1rem;
    }

    .home-box2 .box-info2 .box3 ul {
        margin: 0 -0.5rem;
    }

    .home-box2 .box-info2 .box3 ul li {
        width: 20%;
        padding: 0 0.5rem;
        margin: 1rem 0 0;
    }

    .all-title-box1 {
        width: 100%;
        height: 5rem;
        padding: 0 1.5rem;
        justify-content: space-between;
    }

    .all-title-box1::after {
        background-image: url(../images/bg_3_1.png);
        background-position: left;
    }

    .all-title-box1 span {
        width: auto;
        padding: 0 1.3rem;
        font-size: 1.5rem;
    }

    .all-title-box1 span::before,.all-title-box1 span::after {
        top: 50%;
        margin: -0.375rem 0 0;
    }

    .all-title-box1 span::before {
        left: 0;
    }

    .all-title-box1 span::after {
        left: auto;
        right: 0;
    }

    .home-box3 {
        display: block;
    }

    .home-box3 .f-r {
        display: block;
        width: 100%;
        padding: 2rem;
    }

    .home-box3 .f-r .box-info1 {
        display: block;
    }

    .home-box3 .f-r .box-info1 ul {
        width: 100%;
        overflow: auto;
        display: flex;
    }

    .home-box3 .f-r .box-info1 ul:nth-child(2) {
        margin: -4.65rem 0 0;
    }

    .home-box3 .f-r .box-info1 ul li {
        padding: 1rem;
    }

    .home-box3 .f-r .box-info1 ul li span {
        white-space: nowrap;
    }

    .home-box3 .f-r .box-info1 ul li::after {
        display: none;
    }

    .home-box3 .f-r .box-info2 {
        display: flex;
    }

    .home-box3 .f-l {
        padding: 2rem 4vw;
    }

    .home-box3 .f-l .box-info1 {
        position: absolute;
        left: 0;
        top: 0;
    }

    .home-box3 .f-l .box-info2 {
        width: 100%;
        position: relative;
        right: 0;
        top: 0;
        margin: 0;
        height: 32rem;
    }

    .home-box3 .f-l .box-info2 .center-block .column-between {
        padding: 2rem;
    }

    .home-box3 .f-l .box-info2 .center-block .column-between .box1 {
        font-size: 1.8rem;
    }

    .home-box3 .f-r .box-info1 ul li span {
        font-size: 1.5rem;
    }

    .home-box3 .f-r .box-info1 ul li i {
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
        font-size: 1rem;
    }

    .home-box4 {
        padding: 2rem 0;
    }

    .home-box4 .w-90 {
        display: block;
    }

    .home-box4 .f-l {
        width: 100%;
        display: flex;
        overflow: auto;
        margin: 1.5rem 0 0;
    }

    .home-box4 .f-l span {
        white-space: nowrap;
        flex-flow: initial;
        line-height: 3rem;
        flex: 0 0 25%;
    }

    .home-box4 .f-l a {
        width: 100%;
    }

    .home-box4 .f-l span+span {
        margin-left: 1rem;
    }

    .home-box4 .f-l span::before, .home-box4 .f-l span::after {
        width: 1.75rem;
        display: none;
    }

    .home-box4 .f-l span i {
        width: 100%;
        min-height: auto;
    }

    .home-box4 .f-r {
        width: 100%;
        padding-bottom: 0;
    }

    .home-box4 .f-r .center-block>div {
        flex: 0 0 50%;
    }

    .home-box4 .f-r .center-block>div i {
        height: 15rem;
    }

    .nicescroll-rails.active {
        left: 4vw !important;
    }

    .home-box5 {
        padding: 2rem 0;
    }

    .home-box5 .w-90 {
        display: block;
    }

    .home-box5 .f-r {
        width: 100%;
        flex-flow: initial;
    }

    .home-box5 .f-r .box-info1 {
        margin-top: 0;
    }

    .home-box5 .f-l {
        display: block;
        width: 100%;
        padding: 0;
        margin-top: 1.5rem;
    }

    .home-box5 .f-l .center-block {
        width: 100%;
        display: block;
    }

    .home-box5 .f-l .center-block .box-info1 {
        width: 100%;
        height: 5rem;
    }

    .home-box5 .f-l .center-block .box-info1 .bg {
        display: none;
    }

    .home-box5 .f-l .center-block .box-info2 {
        width: 100%;
        height: auto;
        padding: 1.5rem;
    }

    .home-box5 .f-l .center-block .box-info1 .all-more1 {
        opacity: 1;
        height: auto;
        overflow: initial;
    }

    .home-box5 .f-l .center-block .box-info1 .column-between {
        width: 92%;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-items: center;
        -webkit-justify-content: space-between;
        -webkit-align-items: center;
        flex-direction: initial;
    }

    .home-box5 .f-l .center-block .box-info1 .box1 {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-items: center;
        -webkit-justify-content: space-between;
        -webkit-align-items: center;
    }

    .home-box5 .f-l .center-block .box-info1 .box1 p {
        writing-mode: initial;
    }

    .home-box5 .f-l .center-block .box-info1 .box1 i {
        width: 3.5rem;
        height: 3.5rem;
        margin-right: 0.5rem;
    }

    .home-box5 .f-l .center-block .box-info1 .box1 i img {
        width: 1.5rem;
    }

    .home-box5 .f-l .center-block.active .box-info2 {
        width: 100%;
        padding: 1.5rem !important;
    }

    .home-box5 .f-l .center-block.active .box-info1 .bg {
        transform: scale(1);
        opacity: 1;
    }

    .home-box5 .f-l .center-block.active .box-info1 .all-more1 {
        margin-top: 0;
    }

    .home-box5 .f-l .center-block .box-info2 .box1 ul {
        margin: 0 -0.5rem;
    }

    .home-box5 .f-l .center-block .box-info2 .box1 ul li {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .home-box5 .f-l .center-block .box-info2 .box2 {
        height: 16rem;
    }

    .home-box5 .f-l .center-block .box-info2 .box3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .home-box5 .f-l .center-block .box-info2 .box4 {
        margin-top: 0.5rem;
    }

    .home-box5 .f-l .center-block .box-info2 .box4 span {
        font-size: 1.5rem;
    }

    .home-box5 .f-l .center-block .box-info2 .box5 {
        margin-top: 0.5rem;
    }

    .home-box6 {
        padding: 2rem 0;
    }

    .home-box6 .w-90 {
        display: block;
    }

    .home-box6 .f-l {
        width: 100%;
        flex-flow: initial;
        justify-content: space-between;
    }

    .home-box6 .f-l .all-more1 {
        margin: 0;
        white-space: nowrap;
    }

    .home-box6 .f-r {
        width: 100%;
        padding: 0;
        margin-top: 1.5rem;
    }

    .list-box1 ul li {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .list-box1 ul li a .box1 {
        height: 16rem;
    }

    .foot-box .wave-box {
        -webkit-mask-size: auto 100%;
        -webkit-mask-position: top;
    }

    .foot-box .top-box {
        padding: 1.5rem 0;
    }

    .foot-box .top-box .box-info1 {
        padding-bottom: 1.5rem;
    }

    .foot-box .top-box .box-info2,.foot-box .top-box .box-info2>.between-center {
        display: block;
        height: auto;
    }

    .foot-box .top-box .box-info2>.between-center {
        padding: 1.5rem 0;
    }

    .foot-box .top-box .box-info2>.between-center .between-center+.between-center {
        margin: 1.5rem 0 0;
    }

    .foot-box .top-box .box-info2>.between-center .between-center i {
        width: 2rem;
        height: 2rem;
    }

    .foot-box .top-box .box-info2>.between-center .between-center i img {
        height: 1.2rem;
    }

    .foot-box .top-box .box-info2>.between-center .between-center p {
        width: 100%;
        flex: 1;
    }

    .foot-box .top-box .box-info3 {
        padding-top: 1.5rem;
        display: block;
    }

    .foot-box .top-box .box-info3 .f-r {
        width: 100%;
        margin-top: 1.5rem;
    }

    .foot-box .top-box .box-info3 .f-r div.between-center {
        width: 100%;
    }

    .foot-box .top-box .box-info3 .f-r ul {
        top: auto;
        bottom: 100%;
        margin: 0 0 1px;
        transform: translate(0,-2rem);
    }

    .foot-box .top-box .box-info3 .f-l .box1 a {
        padding: 0 1.2rem;
        margin-top: 0.5rem;
    }

    .foot-box .lower-box {
        padding: 1.2rem 0;
    }

    .foot-box .lower-box .w-90 {
        height: auto;
    }

    .foot-box .lower-box .f-r a {
        margin-left: 0.5rem;
    }

    .foot-box .lower-box .f-r a.style2 {
        padding-left: 0.5rem;
    }

    .foot-box .lower-box .f-l span i {
        width: 1.3rem;
        font-size: 12px;
        line-height: 1.8rem;
    }

    .page-banner {
        height: 19rem !important;
        background-size: auto 20rem;
        background-position: top;
    }

    .page-menu {
        position: relative;
        z-index: 2;
    }

    .page-menu .f-l {
        font-size: 2.5rem;
        writing-mode: initial;
        width: 100%;
    }

    .page-menu .f-l::after {
        content: '';
        width: 1.5rem;
        height: 100%;
        background: url(../images/icon_jt1.svg) no-repeat center;
        background-size: 100%;
        position: absolute;
        right: 0;
        top: 0;
        transition: all .6s;
    }

    .page-menu .f-l.active:after {
        transform: rotate(180deg);
    }

    .page-menu .f-r {
        margin: 0;
        position: absolute;
        left: 0;
        top: calc(100% + 1px);
        display: none;
    }

    .page-menu .f-r ul {
        width: 100%;
        float: left;
        display: block;
        height: auto;
        overflow: initial;
        padding: 1rem 0 1.5rem;
    }

    .page-menu .f-r ul li {
        width: 100%;
        float: left;
        margin: 1rem 0 0;
        text-align: center;
    }

    .page-menu .f-r ul li a {
        display: inline-block;
        float: none;
        margin: auto;
    }

    .page-menu .f-r ul li a:after {
        top: 1.6rem;
    }

    .page-menu .f-r::before {
        left: 50%;
        top: 0;
        display: none;
    }

    .page-menu .f-r::after {
        width: 12rem;
        background-position: bottom;
    }

    .page-info-box1 .box1 img {
        width: 80%;
        height: auto;
    }

    .page-info-box1 .box2 {
        display: block;
        padding: 1rem;
        height: auto;
        margin-top: 1rem;
    }

    .page-info-box1 .box2 div {
        width: 100%;
    }

    .page-info-box1 .box2 div+div {
        margin-top: 1rem;
    }

    .page-info-box1 .box3 {
        margin-top: 1rem;
    }

    .page-center-box {
        padding: 2rem 0;
    }

    .page-info-box2 {
        padding-bottom: 2rem;
    }

    .page-info-box2 ul {
        padding-top: 0rem;
        display: block;
    }

    .page-info-box2 ul li {
        flex: 1;
        width: 100%;
        margin-top: 1rem;
        float: left;
    }

    .page-info-box2 ul li a:hover {
        transform: translate(0,0);
    }

    .page-info-box2 ul li a {
        padding: 1.5rem;
    }

    .page-info-box2 ul li a .between-top {
        display: block;
        width: 100%;
    }

    .page-info-box2 ul li a .f-l {
        width: 100%;
        writing-mode: initial;
        display: flex;
    }

    .page-info-box2 ul li a .f-l i {
        width: auto;
        padding: 0 0.5rem;
        margin: 0 0 0 0.5rem;
    }

    .page-info-box2 ul li a .f-r {
        width: 100%;
        writing-mode: initial;
        padding: 0.5rem 0 0;
        margin: 1rem 0 0;
        min-height: 3rem;
    }

    .page-info-box2 ul li a .f-r::after {
        width: 100%;
        height: 1px;
    }

    .page-banner .box-info1 .w-1300 {
        font-size: 1.3rem;
        padding-top: 2.5rem;
    }

    .page-info-box3 {
        padding-bottom: 2rem;
    }

    .page-info-box3 .w-1300 {
        width: 100% !important;
    }

    .page-info-box3 .box-info1 .box1 p {
        height: 1.5rem;
        line-height: 1.5rem;
    }

    .page-info-box3 .box-info2 {
        font-size: 1rem;
        padding: 1.5rem 1.5rem 4rem;
    }

    .page-info-box3 .w-1300::after {
        display: none;
    }

    .page-info-box3 .box-info3 a {
        width: 12rem;
        height: 3.5rem;
    }

    .page-info-box3 .box-info4 {
        display: block;
        margin-top: 0;
    }

    .page-info-box3 .box-info4 a {
        width: 100%;
        margin-top: 1.5rem;
    }

    .page-info-box4 .top-box {
        display: block;
        padding: 1rem 0 2rem;
    }

    .page-info-box4 .top-box .box1 {
        margin: 1rem 0 0;
        float: left;
    }

    .page-info-box4 .top-box .box1:hover {
        z-index: 2;
    }

    .page-info-box4 .top-box .box2 {
        width: 100%;
        margin: 1rem 0 0;
        float: left;
    }

    .list-box2 ul li a {
        padding: 1.5rem 0 19rem;
    }

    .list-box2 ul li a .box-info2 {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .list-box2 ul li a .box-info3 {
        width: 100%;
        height: 16rem;
        position: absolute;
        left: 0;
        bottom: 1.5rem;
        margin: 0;
    }

    .list-box2 ul li a .box-info2 .all-more1 {
        margin-top: 2rem;
    }

    .page-info-box5 {
        padding: 2rem 0;
    }

    .page-info-box5 ul::after {
        display: none;
    }

    .page-info-box5 ul li {
        display: block;
        margin-bottom: 1.5rem;
    }

    .page-info-box5 ul li .f-l {
        font-size: 2rem;
        margin-right: 1rem;
        width: 6rem;
        margin-top: 0;
        padding-bottom: 0.5rem;
        padding-left: 1.3rem;
    }

    .page-info-box5 ul li .f-l::after {
        right: auto;
        left: 0;
        width: 0.8rem;
        height: 0.8rem;
        top: 0.8rem;
    }

    .page-info-box5 ul li .f-r {
        padding: 0 1.5rem;
    }

    .page-info-box5 ul li .f-r .between-top {
        padding: 1.5rem 0;
    }

    .page-info-box5 ul li .f-r .between-top .box2 {
        padding-left: 1rem;
    }

    .page-info-box6 {
        padding-bottom: 2rem;
    }

    .page-info-box6 .top-box {
        padding: 2rem 0;
    }

    .page-info-box6 .top-box .between-center {
        display: block;
    }

    .page-info-box6 .top-box .box1 {
        width: 100%;
    }

    .page-info-box6 .top-box .box2 {
        margin: 1rem 0 0;
        padding: 0;
        border: none;
        line-height: 1.8;
    }

    .page-info-box6 .lower-box,.page-info-box6 .lower-box .center-block {
        padding: 1rem;
    }

    .page-info-box6 .lower-box .center-block .box1 {
        font-size: 1.5rem;
    }

    .page-info-box6 .lower-box .center-block .box2 {
        margin-top: 0;
        display: block;
    }

    .page-info-box6 .lower-box .center-block .box2 .center-center {
        width: 48%;
        margin-top: 1rem;
        float: left;
    }

    .page-info-box6 .lower-box .center-block .box2 .center-center:nth-child(2n) {
        float: right;
    }

    .page-info-box6 .lower-box .center-block .box2 .center-center>img {
        height: 10rem;
    }

    .page-info-box7 {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .page-info-box7 .top-box {
        display: block;
    }

    .page-info-box7 .top-box .f-l {
        width: 100%;
        height: 6rem;
        padding: 0 2rem;
        background-size: 100%;
    }

    .page-info-box7 .top-box .f-l p {
        font-size: 1.3rem;
    }

    .page-info-box7 .top-box .f-l span {
        font-size: 0.875rem;
    }

    .page-info-box7 .top-box .f-r {
        width: 100%;
        margin-top: 1rem;
    }

    .page-info-box7 .top-box .f-r .box-info1 span {
        font-size: 3rem;
    }

    .page-info-box7 .top-box .f-r .box-info2 {
        margin-top: 1rem;
        height: 5rem;
        padding: 0 1.5rem;
    }

    .page-info-box7 .top-box .f-r .box-info2 .box1 {
        font-size: 2rem;
    }

    .page-info-box7 .lower-box {
        padding: 0;
    }

    .page-info-box7 .lower-box a {
        width: 23%;
        margin-top: 1.5rem;
        height: 6rem;
    }

    .page-info-box7 .lower-box a p {
        font-size: 1rem;
        margin-top: 0.5rem;
        line-height: 1;
    }

    .page-info-box7 .lower-box a img {
        height: 2rem;
    }

    .page-info-box7 .lower-box a::after {
        border-radius: 0.5rem;
    }

    .page-menu-lv2 {
        display: block;
        overflow: auto;
        padding-bottom: 0.5rem;
    }

    .page-menu-lv2 a {
        margin: 0 1rem 0 0;
    }

    .list-box3 ul li {
        width: 100%;
        margin-top: 1.5rem;
    }

    .list-box3 ul li a i {
        height: 16rem;
    }

    .popup-box>.center-center>.center-block {
        width: 90%;
        margin: 2rem 0 0;
        max-height: 85vh;
        padding: 1.5rem;
    }

    .popup-box>.center-center>.center-block::after {
        display: none;
    }

    .popup-box>.center-center>.center-block .close-btn {
        right: 0;
        top: -3.5rem;
    }

    .popup-box>.center-center>.center-block .popup-center {
        display: block;
    }

    .popup-box>.center-center>.center-block .box-info1 {
        width: 100%;
        margin-top: 1.5rem;
    }

    .popup-box>.center-center>.center-block .box-info2 {
        width: 100%;
    }

    .popup-box>.center-center>.center-block .box-info2 .box2 {
        padding: 1rem 0;
    }

    .list-box4 ul {
        margin: 0 -0.8rem;
    }

    .list-box4 ul li {
        width: 50%;
        padding: 0 0.8rem;
        margin-top: 1.5rem;
    }

    .list-box4 ul li a {
        height: 18rem;
    }

    .list-box4 ul li a .box3>div {
        padding: 0 1.5rem 2rem;
    }

    .list-box5 ul li {
        width: 100%;
        margin-top: 1.5rem;
    }

    .list-box5 ul li a {
        display: block;
    }

    .list-box5 ul li a .f-l {
        width: 100%;
        height: 18rem;
    }

    .list-box5 ul li a .f-r {
        margin-top: 1rem;
        padding: 0;
    }

    .list-box5 ul li a .f-r .box-info2 {
        margin-top: 1rem;
        padding-top: 1rem;
        height: auto;
    }

    .page-info-box8 {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        text-align: justify;
    }

    .list-box6 ul li {
        width: 100%;
        margin-top: 1.5rem;
    }

    .list-box6 ul li a .box-info1 {
        height: 12rem;
    }

    .list-box6 ul li a .box-info2 {
        padding: 1rem 1.5rem;
    }

    .list-box6 ul li a .box-info2 .box1 {
        font-size: 1.5rem;
        height: auto;
    }

    .list-box6 ul li a .box-info2 .box2 span {
        width: 100%;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .page-info-box9 {
        margin: 2rem 0;
    }

    .page-info-box9 .f-l {
        width: 100%;
    }

    .page-info-box9 .f-l .box-info1 {
        font-size: 1.8rem;
    }

    .page-info-box9 .f-l .box-info2 {
        height: 15rem;
        margin-top: 1rem;
    }

    .page-info-box9 .f-l .box-info3 {
        padding: 0;
    }

    .page-info-box9 .f-r {
        width: 100%;
        position: relative;
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .page-info-box9 .f-r .box-info1 {
        position: relative;
        width: 100%;
        flex-flow: initial;
        right: 0;
        top: 0;
        text-align: center;
    }

    .page-info-box9 .f-r .box-info1 i {
        font-size: 2rem;
        padding: 0 1rem;
        display: inline-block;
        background: none;
        margin: auto;
        font-size: 1.5rem;
    }

    .page-info-box9 .f-r .box-info1::after, .page-info-box9 .f-r .box-info1::before {
        display: none;
    }

    .page-info-box9 .f-r .box-info3 {
        position: relative;
        bottom: auto;
        padding: 1rem 0;
    }

    .page-info-box9 .f-r .box-info2 {
        height: 20rem;
        margin: 1rem 0;
    }

    .page-info-box9 .f-r .box-info3 .swiper-button-next, .page-info-box9 .f-r .box-info3 .swiper-button-prev {
        width: 2.5rem;
        height: 2.5rem;
    }

    .page-info-box9 .f-r .box-info3 .swiper-pagination {
        margin: 0 1.5rem;
    }

    .list-box7 ul li {
        width: 100%;
        margin-top: 1.5rem;
    }

    .list-box7 ul li a {
        height: 18rem;
    }

    .page-info-box10 {
        overflow: auto;
    }

    .page-info-box10 .f-l,.page-info-box10 .f-r {
        width: 100%;
        height: auto;
    }

    .page-info-box10 .f-r {
        padding: 3rem 2rem 2rem;
    }

    .page-info-box10 .f-r .box-info1 {
        margin-top: 0;
        font-size: 2rem;
    }

    .page-info-box10 .f-r .box-info2 {
        padding: 1.5rem;
    }

    .page-info-box10 .f-l {
        padding: 2rem;
    }

    .page-info-box10 .f-l .box-info1 {
        height: 20rem;
    }

    .page-info-box10 .f-l .box-info2 {
        padding: 0;
        margin-top: 1.5rem;
    }

    .page-info-box10 .f-l .box-info2 .swiper-button-next, .page-info-box10 .f-l .box-info2 .swiper-button-prev {
        display: none;
    }

    .page-info-box10 .f-l .box-info2 .swiper-container {
        margin: auto;
    }

    .page-info-box10 .f-l .box-info2 .swiper-container .swiper-slide {
        height: 5.8rem;
    }

    .head-box .f-r .box-info1 .box2 form {
        width: 90%;
    }

    .head-box .f-r .box-info1 .box2 .text,.head-box .f-r .box-info1 .box2 .btns {
        font-size: 1.2rem;
        height: 4rem;
    }

    .head-box .f-r .box-info1 .box2 i {
        right: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
}

@media screen and (max-width: 365px) {
}
