:root * {
    box-sizing: border-box;
}
@font-face {
    font-family: "siyuan";
    src: url("siyuan.ttf");
}
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    line-height: 1.5;
    color: #333;
    background: #fff;
    font-size: 16px;
    min-width: 1284px;
    position: relative;
}

a, input, textarea, select, button {
    outline: 0;
}
a:hover{
    color: #d29953;
}
fieldset,
img {
    border: 0;
    vertical-align: middle;
}

ol, ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    text-decoration: none;
}


input, select, button {
    vertical-align: baseline;
    border-radius: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
}

i {
    font-style: normal;
}

button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
}

input[type=checkbox], input[type=radio] {
    vertical-align: middle;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    margin: 0;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

textarea {
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    overflow: auto;
    resize: none;
}


img {
    vertical-align: middle;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}


@keyframes animate-dropdown {
    0% {
        transform: translate3d(0, 30px, 0);
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes animate-dropup {
    0% {
        transform: translate3d(0, -30px, 0);
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes animate-flop {
    0% {
        transform: rotateX(270deg);
    }

    100% {
        transform: rotateX(360deg);
    }
}

@keyframes animate-up {
    0% {
        opacity: 0;
        transform: translateY(100vh)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes animate-left {
    0% {
        opacity: 0;
        transform: translateX(100vw)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes animate-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.inner{
    width: 1248px;
    margin: auto;
    overflow: hidden;
}
.inner.flex{
    display: flex;
    justify-content: space-between;
}

.swiper-container {
    width: 100%;
}
.swiper-container img{
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    bottom: 0 !important;
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    display: block;
    animation-name: animate-dropdown;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.header {
    background-color: transparent;
    background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,0));
    box-shadow: 0 1px 5px rgba(0,0,0, .1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    padding: 36px;
}


.header .logo {
    width: 100%;
}


.header .logo a{
    width: 200px;
    display: block;
}
.header .logo a img{
    width: 200px;
}

.header .nav {
    height: 100%;
    line-height: 50px;
}

.header .nav ul {
    list-style: none;
    display: flex;
    height: 100%;
}

.header .nav ul li {
    height: 100%;
    position: relative;
}

.header .nav ul li a {
    padding: 0 24px;
    display: flex;
    height: 100%;
    position: relative;
    transition: all .6s;
    font-size: 20px;
    align-items: center;
    color: #fff;
    white-space: nowrap;
}

.header .nav ul li:after {
    content: ' ';
    position: absolute;
    width: 2px;
    height: 3px;
    background: #d29956;
    bottom: 0;
    opacity: 0;
    transition: all .3s;
    left: 50%;
    margin-left: -1px;
}

.header .nav ul li:hover:after, .header .nav ul li.active:after {
    opacity: 1;
    width: calc(100% - 48px);
    left: calc(50% - 24px);
    margin-left: calc(-50% + 48px);
}

.header .nav ul li.active a {
    color: #d29956;
}

.header .nav ul li:hover a {
    color: #d29956;
}

.caff-bg{
    background: #f4f1ec;
    padding-bottom: 72px;
}
.inner{
    width: 1248px;
    margin: auto;
}
.inner .flex{
    display: flex;
    justify-content: space-between;
}

.section-title{
    padding: 96px 0  48px 0;
    font-family: 'siyuan';
}
.section-title .ch{
    font-size: 36px;
}
.section-title .en{
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    border-bottom: 3px solid #d29956;
    padding-bottom: 12px;
}
.section-title.center{
    text-align: center;
}

.section-title .info {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
}

.section-title .info i {
    font-size: 20px;
}
.section-title .info i:nth-child(3) {
    margin-left: 24px;
}
.ori-banner{
    width: 100%;
    height: 500px;
    background: url('../images/banner-ori.jpg') no-repeat center;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}
.ori-banner h2{
    font-family: 'siyuan';
    font-size: 36px;
}
.ori-banner p{
    padding: 48px 0;
}
.more{
    background: #d29956;
    color: #fff;
    width: 120px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: block;
    font-size: 14px;
    margin-bottom: 72px;
}
.more:hover{
    background: #946d3f;
    color: #fff;
}
.more.center{
    margin: auto;
}

.about{
    display: flex;
    justify-content: space-between;
}
.about.sub{
    padding-bottom: 72px;
}
.about .about-content{
    width: 100%;
    padding-right: 48px;
}
.about .about-content p{
    padding-bottom: 24px;
}
.about .about-thumb{
    width: 516px;
    flex-shrink: 0;
}
.about .about-thumb img{
    width: 100%;
}
.home-news{
    padding-bottom: 48px;
}
.home-news-left{
    width: 684px;
    border: 1px solid #dcd3c4;
    padding: 24px;
    height: 600px;
    background: #fff;
}
.home-news-left .thumb{
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.home-news-left img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all .5s;
}
.home-news-left a:hover img{
    transform: scale(1.05);
}
.home-news-left .news-title{
    font-family: 'siyuan';
    font-size: 24px;display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    padding-top: 20px;
}
.home-news-left .news-info {
    display: flex;
    color: #999;
    padding: 10px 0;
    align-items: center;
    font-size: 14px;
}
.home-news-left .news-info i{
    font-size: 20px;
}
.home-news-left .news-info span{
    padding: 0 24px 0 3px;
}
.home-news-left .description{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
}
.home-news-right{
    width: 516px;
    border: 1px solid #dcd3c4;
    padding: 12px 24px;
    height: 600px;
    background: #fff;
}

.home-news-right a {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f4f1ec;
}
.home-news-right a:hover img {
    transform: scale(1.1);
}
.home-news-right a:last-child {
    border-bottom: none;
}
.home-news-right a .thumb {
    width: 90px;
    height: 90px;
    overflow: hidden;
    flex-shrink: 0;

    margin-right: 12px;
}

.home-news-right a img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    transition: all .5s;
}

.home-news-right a .text {
    width: 100%;
    overflow: hidden;
}

.home-news-right a .text .news-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.home-news-right a .text .news-info {
    display: flex;
    color: #999;
    padding-top: 12px;
    align-items: center;
    font-size: 14px;
}
.home-news-right a .text .news-info i{
    font-size: 20px;
}
.home-news-right a .text .news-info span{
    padding: 0 24px 0 3px;
}




.works-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.works-list a {
    width: 384px;
    height: 410px;
    background: #fff;
    margin-bottom: 48px;
    transition: all .3s;
    overflow: hidden;
}

.works-list a:hover {
    transform: translate3d(0, -6px, 0);
}

.works-list a img {
    width: 384px;
    height: 264px;
    object-fit: cover;
}

.works-list a .text {
    padding: 16px 24px;
}

.works-list a .text .works-title {
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: 'siyuan';
}

.works-list a .text .description {
    line-height: 2;
    padding-bottom: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    color: #666;
}
.works-list a .text .description:after{
    content: '';
    height: 2px;
    width: 60px;
    background: #999;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .3s;
}
.works-list a:hover .text .description:after{
    width: 100%;
    background: #d29956;
}

.works-list a .detail {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
    padding-top: 12px;
}

.works-list a .detail i {
    font-size: 20px;
}

.footer{
    width: 100%;
    background-image: url("../images/footer.jpg");
    background-size: cover;
    padding: 72px 0;
    color: #c9caca;
    line-height: 2;
    font-size: 14px;
}
.footer a{
    color: #c9caca;
}
.footer a:hover{
    color: #d29956;
}

.footer-title{
    font-family: 'siyuan';
    font-size: 20px;
    color: #fff;
    padding-bottom: 24px;
}
.footer-item:nth-child(1){
    width: 100%;
}
.footer-item:nth-child(2){
    width: 240px;
    flex-shrink: 0;
    padding-left: 72px;
}
.footer-item:nth-child(3){
    width: 360px;
    flex-shrink: 0;
    padding-left: 48px;
}
.footer-item:nth-child(4){
    width: 180px;
    flex-shrink: 0;
    padding-left: 48px;
}
.copyright{
    background: #000;
    color: #c9caca;
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    line-height: 2;
}
.copyright a{
    color: #c9caca;
}
.sub-nav{
    padding: 72px 0;
    display: flex;
}
.sub-nav a{
    height: 36px;
    line-height: 36px;
    padding: 0 48px;
    background:#dcdddd;
    margin-right: 24px;
}
.sub-nav a.active{
    background: #c8280e;
    color: #fff;
}
.sub-nav ~ .section-title{
    padding-top: 0;
}
.contact hr{
    border: none;
    border-top: 1px solid #f0f0f0;
}
.contact  img{
    max-width: 100%;
}

.pages {
    display: flex;
    justify-content: center;
    padding: 0 24px 60px 24px;
}

.pages a {
    border: #f0f0f0 1px solid;
    padding: 3px 12px;
    margin: 6px;
    background: #fafafa;
    display: block;
    color: #333;
}

.pages a:hover {
    background: #fff;
}

.pages span {
    padding: 3px 12px;
    background: #c7000a;
    color: #fff;
    border: #c7000a 1px solid;
    margin: 6px;
    display: block;
}

.pages span em {
    font-style: normal;
}

.pages a, .pages span {
    margin: 24px 12px 24px 0;
}


.news-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-list a {
    width: 384px;
    background: #fff;
    margin-bottom: 48px;
    transition: all .3s;
    overflow: hidden;
}

.news-list a:hover {
    transform: translate3d(0, -6px, 0);
}

.news-list a img {
    width: 384px;
    height: 264px;
    object-fit: cover;
}
.news-list a .text{
    padding: 24px;
    border: 1px solid #dcd3c4;
    border-top: 0;
}

.news-list a .text .news-title {
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: 'siyuan';
    padding-bottom: 12px;
}

.news-list a .text .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    height: 72px;
    line-height: 24px;
}


.news-list a .detail {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
    padding-top: 24px;
}

.news-list a .detail i {
    font-size: 20px;
}
.news-list a .detail i:nth-child(3) {
    margin-left: 24px;
}
.common-content{
    line-height: 1.8;
    padding-bottom: 56px;
    overflow: hidden;
}
.common-content img{
    max-width: 100%;
}
.common-content p{
    padding: 12px 0;
}

.pre-next{
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
    margin-top: 24px;
    font-size: 14px;
    color: #999;
}
.pre-next a{
    color: #999;
}
.pre-next a:hover{
    color: #d29953;
}