@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

body {
    color: #333;
    background: #f4f0e7 url(../images/bg.jpg) repeat-x;
    font: 16px/30px 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
    color: #3c3c3b;
}

a {
    color: #3c3c3b;
    text-decoration: none;
}

a:hover {
    color: #f29c06;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    width: 1366px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:1366px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.header {
    margin-top: 40px;
    align-items: flex-end;
}

.header .logo {
    margin-bottom: 5px;
    margin-left: 10px;
}

.header .logo img {
    height: 70px;
}

.header .nav-con {
    height: 66px;
    background: url(../images/nav-bg.png)no-repeat left top;
    background-size: 100% 100%;
    padding-left: 20px;
}

.header .nav-con .lang {
    line-height: 66px;
    font-size: 18px;
    color: #FFF;
}

.header .nav-con .lang a {
    color: #FFF;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav li {
    width: 150px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.nav li::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: #FFF;
    opacity: .5;
}

.nav li:last-child {
    margin-right: 20px;
}

.nav li>a {
    line-height: 62px;
    font-size: 24px;
    color: #FFF;
}

.nav .drop {
    left: 0;
    top: 66px;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-image: linear-gradient(#ded9d7, #f7f7f6, #f7f7f6);
    line-height: 2;
    border: 1px #979aa4 solid;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.nav .drop a {
    padding: 0 15px;
    white-space: nowrap;
}

.nav li.on {
    margin-right: 30px;
    margin-left: 30px;
}

.nav li.on::after {
    right: -30px;
}

.nav li.on>a {
    background-color: #FFF;
    color: #4d2514;
    box-shadow: inset 0 0 20px #f3eeec;
}

.nav li.on .drop {
    opacity: 1;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
}

.banner {
    overflow: hidden;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    /* border: 1px #9a968a solid; */
}

.banner img {
    width: 100%;
}

.banner .swiper-pagination-bullet-active {
    background-color: #4d2514;
}

.footer {
    border-top: 2px #b0b0b0 solid;
    padding-top: 20px;
    padding-bottom: 15px;
    margin-top: 35px;
}

.footer .f-nav a {
    margin: 0 10px;
}

.footer .f-nav a:first-child {
    margin-left: 0;
}

.footer .copyright {
    font-size: 14px;
    line-height: 1.5;
    color: #a0a0a0;
    margin-top: 10px;
}

.l-con {
    width: 48%;
}

.home-news {
    margin-top: 30px;
}

.home-news .title {
    border-bottom: 5px #ded6ca solid;
}

.home-news .title span {
    color: #c56d40;
    font-size: 20px;
    line-height: 40px;
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    background-image: linear-gradient(#d8d1c4, #f4f1e8);
    padding: 0 10px;
}

.home-news ul {
    margin-top: 10px;
}

.home-news li {
    padding-left: 20px;
    line-height: 32px;
}

.home-news li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #b8b7b1;
}

.home-news li .date {
    color: #968063;
    margin-left: 20px;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype'), url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.home-con {
    background-image: linear-gradient(90deg, #f1ece0, #ebe6db);
    margin-top: 10px;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.home-con .item {
    padding: 10px 40px 10px 20px;
    width: 50%;
}

.home-con .item:last-child {
    padding-right: 90px;
}

.home-con .item:last-child:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../images/img.png)no-repeat center;
    width: 74px;
    height: 74px;
    background-size: 100%;
    z-index: 2;
}

.home-con .item .title {
    font-size: 18px;
}

.home-con .item .des {
    color: #342913;
}

.home-con .go {
    font-family: 'Poppins';
    color: #f57f1f;
    text-align: right;
}

.home-con .item.on {
    background-image: linear-gradient(90deg, #664730, #43332a);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.home-con .item.on .title {
    color: #FFF;
}

.home-con .item.on .des {
    color: #f9d5c6;
}

.r-con {
    width: 48%;
    background-color: #e3dcd3;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-top: 30px;
    padding: 15px 15px 20px 15px;
}

.focus {
    width: 75%;
}

.focus .swiper-container {
    margin-top: 33px;
    height: 206px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.focus .swiper-button-prev,
.focus .swiper-button-next {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #948169 url(../images/next.png)no-repeat center;
    background-size: 7px;
    top: 0;
    margin-top: 0;
    right: 0;
}

.focus .swiper-button-prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    right: 30px;
    left: auto;
}

.jishu {
    margin-right: 18px;
}

.jishu .title {
    font-size: 20px;
    color: #401609;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-image: linear-gradient(90deg, #ae9171, #d7c9bb, #d7c9bb, #ae9171);
    line-height: 32px;
    margin-left: 5px;
    margin-right: 5px;
}

.jishu .t1 {
    color: #f57f1f;
    font-size: 18px;
    margin-top: 10px;
}

.jishu .t2 {
    font-size: 26px;
}

.jishu ul {
    padding-left: 13px;
    margin-top: 10px;
}

.jishu li {
    padding-left: 10px;
}

.jishu li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: #3c3c3b;
}

.sidebar {
    width: 290px;
    margin-top: 40px;
}

.sidebar dl {
    width: 100%;
    min-height: 310px;
    background: url(../images/bg1.png)no-repeat left top;
    background-size: 100% 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.sidebar dt {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFF;
    line-height: 1.2;
    height: 110px;
    padding-top: 10px;
}

.sidebar dd {
    padding-top: 20px;
    padding-bottom: 20px;
}

.sidebar dd a {
    padding-left: 70px;
    background: url(../images/icon1.png)no-repeat 15px center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #FFF;
}

.sidebar dl .cn {
    font-size: 24px;
    line-height: 1.2;
}

.sidebar dl .en {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0px;
}

.sidebar dd.on a {
    background: #dcd1cb url(../images/icon2.png)no-repeat 15px center;
    border: 1px #9e7864 solid;
    border-left: 3px #98725f solid;
    color: #351005;
}

.sidebar .ad {
    margin-top: 40px;
}

.sidebar .ad img {
    width: 100%;
}

.sidebar .ad video {
    width: 100%;
}

.pub-content {
    margin-top: 30px;
}

.crumb {
    text-align: right;
    color: #a29e9a;
}

.crumb a {
    color: #a29e9a;
}

.pub-title {
    font-size: 32px;
    margin-left: 40px;
    padding-left: 20px;
}

.pub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    background-color: #b3a083;
    height: 35px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.pub-con {
    padding-top: 50px;
    padding-left: 38%;
    background: url(../images/tbg1.png)left center no-repeat;
    background-size: 37%;
    word-break: break-word;
}

.about .tit {
    font-size: 32px;
    color: #98866f;
    line-height: 1.2;
}

.about .tit span {
    color: #a67a0e;
}

.about .txt {
    font-size: 43px;
    color: #ae6c68;
    margin-top: 30px;
    line-height: 1.5;
}

.about .body {
    line-height: 1.8;
    color: #8e8c8c;
    min-height: 550px;
    overflow-wrap: break-word;
    margin-top: 20px;
}

.about .body p {
    margin-top: 20px;
}

.about .body img {
    max-width: 100%;
}

.yewu {
    padding-left: 40px;
}

.yewu li {
    width: 49%;
    margin-right: 2%;
    background-color: #FFF;
    border: 3px #d8bf9f solid;
    border-top-width: 6px;
    border-bottom-width: 6px;
    min-height: 310px;
    padding: 15px 10px;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 23px;
    line-height: 1.8;
    text-align: center;
}

.yewu li:nth-child(even) {
    margin-right: 0;
}

.yewu .item {
    width: 49%;
    margin-right: 2%;
    padding-top: 30.4%;
    overflow: hidden;
    border: 3px #d8bf9f solid;
    margin-top: 30px;
    margin-bottom: 30px;
}

.yewu .item:nth-child(even) {
    margin-right: 0;
}

.yewu .item img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.yewu .item .txt {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    font-size: 24px;
    z-index: 2;
    color: #000;
}

.yewu .item:nth-child(1) .txt,
.yewu .item:nth-child(4) .txt {
    color: #FFF;
}

.pro-list {
    margin-top: 30px;
    padding-left: 40px;
}
.pro-list li {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 20px;
}
.pro-list li:nth-of-type(4n) {
    margin-right: 0;
}
.pro-list li img{
    position: relative;
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border: 3px #d8bf9f solid;
}
.pro-list li .tit {
    text-align: center;
    padding: 10px;
}

.pro-con {
    padding-left: 40px;
    padding-top: 20px;
}

@media (min-width:1025px) {
    .nav li:hover .drop {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }
    .nav .drop a:hover {
        color: #f29c06;
    }
    .nav li:hover {
        /* margin-right: 30px; */
        /* margin-left: 30px; */
    }
    .nav li:hover::after {
        right: -30px;
    }
    .nav li:hover>a {
        background-color: #FFF;
        color: #4d2514;
        box-shadow: inset 0 0 20px #f3eeec;
    }
}

@media (max-width:1366px) {
    body {
        font-size: 14px;
    }
    .nav li>a {
        font-size: 20px;
    }
    .nav li {
        width: 130px;
    }
    .jishu .title,
    .home-news .title span {
        font-size: 18px;
    }
    .header .nav-con .lang,
    .home-con .item .title,
    .jishu .t1 {
        font-size: 16px;
    }
    .jishu .t2 {
        font-size: 22px;
    }
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .header {
        margin-top: .4rem;
    }
    .header.fixed {
        position: fixed;
        left: 0;
        top: 0;
        margin-top: 0;
        padding: .2rem 0;
        width: 100%;
        height: 1.1rem;
        background-color: #f4f0e7;
        z-index: 999;
    }
    .header .logo img {
        height: .7rem;
    }
    .header .nav-con {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.1rem;
        overflow-y: scroll!important;
        display: none;
        background: #f4f0e7;
        z-index: 999;
        height: calc(100vh - 1.1rem);
        padding: .2rem .3rem;
    }
    .header .nav-con .lang,
    .nav li::after,
    .sidebar {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .nav {
        display: block;
    }
    .nav li {
        width: 100%;
        margin: 0;
    }
    .nav li.on {
        margin: 0;
        background: none;
    }
    .nav li.on>a {
        background: none;
    }
    .nav li>a {
        text-align: left;
        color: #342913;
        line-height: .9rem;
        font-size: 16px;
    }
    .nav>li .drop>div {
        flex-wrap: wrap;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: .9rem;
        width: .6rem;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: .32rem;
        height: .32rem;
        position: absolute;
        left: .1rem;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop,
    .nav li.on .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        background: none;
        padding-bottom: 0;
        border: 0;
        box-shadow: none;
    }
    .jishu .t2,
    .about .tit {
        font-size: 20px;
    }
    .about {
        padding-left: 0;
        background: none;
    }
    .about .txt {
        font-size: 24px;
    }
    .pub-title {
        margin-left: 0px;
        font-size: 24px;
    }
    .pub-content {
        width: 100%;
    }
    .yewu {
        padding-left: 0px;
    }
    .yewu li {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .pro-list {
        padding-left: 0;
    }
    .pro-con {
        padding-left: 0;
    }
}

@media (max-width:950px) {
    .l-con,
    .r-con {
        width: 100%;
    }
    .yewu li {
        font-size: 18px;
    }
    .yewu .item .txt {
        font-size: 20px;
    }
}

@media (max-width:767px) {
    .banner {
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }
    .home-con .item,
    .focus {
        width: 100%;
    }
    .jishu ul {
        padding-left: 0;
        display: flex;
        flex-flow: column;
        align-items: center;
    }
    .about .body {
        min-height: auto;
    }
    .yewu li {
        font-size: 16px;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        height: 260px;
    }
    .yewu .item {
        width: 100%;
        margin-right: 0;
        padding-top: 60%;
        margin-bottom: 0;
    }
    .yewu .item .txt {
        font-size: 18px;
    }
    .pro-list li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 10px;
    }
    .pro-list li img {
        height: auto;
    }
}


.en .nav li {
    width: auto;
    padding: 2px 10px;
    max-width: 180px;
    display: flex;
    align-items: center;
}
.en .nav li>a {
    line-height: 1.2;
}

.en .r-con .jishu,
.en .r-con .focus {
    width: 100%;
}

.en .r-con .jishu ul {
    display: flex;
    flex-wrap: wrap;
}
.en .r-con .jishu ul li {
    width: 50%;
}

.kr .header .nav li {
    width: auto;
    min-width: 150px;
    padding: 2px 20px;
}

@media (min-width: 1025px) {
    .en .nav li:hover {
        margin: 0;
    }
    .en .nav li:hover::after {
        right: 0;
    }
}

@media (max-width: 1199px) {
    .en .nav li {
        display: block;
        max-width: unset;
    }
    .kr .nav li:last-of-type,
    .en .nav li:last-of-type {
        margin-right: 0;
    }
    .en .nav li>a {
        line-height: .9rem;
    }
    .kr .header .nav li {
        padding: 2px 0;
    }
}

@media (max-width: 767px) {
    .en .r-con .jishu ul li {
        width: auto;
    }
}