@font-face {
    font-family: "DINCond-Bold";
    src: url("../fonts/DINCond-Bold.otf");
}

@font-face {
    font-family: "SourceHanSansCN-Regular r";
    src: url("https://www.sansg.com/fonts/SourceHanSansCN-Regular.otf");
}

@font-face {
    font-family: "SourceHanSansCN-Regular b";
    src: url("https://www.sansg.com/fonts/SOURCEHANSANSCN-BOLD.OTF");
}


@font-face {
    font-family: "Akzidenz-Grotesk BQ Condensed A";
    src: url("../fonts/AkzidenzGroteskBQ-MdCndAlt.otf");
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif !important;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif !important;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0;
}

img {
    object-fit: cover;
    vertical-align: middle;
}

* img:not(#container img) {
    max-width: 100%;
    max-height: 100%;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-word;
    font-size: 14px;
    transition: 0.5s;
    line-height: 1.5
}

img {
    max-width: 100%;
    width: auto;
    display: block;
    margin: 0 auto
}

h1, h2, h3, h4, h5 {
    font-family: 'bold';
    line-height: 1.2
}

input, button, textarea, video, select {
    border: transparent;
    outline: transparent;
    background: none;
}

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

a {
    text-decoration: none;
    color: #3a3a3a;
    transition: 0.5s
}

i {
    list-style: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}


.color-white a, .color-white {
    color: #fff;
}

.wid {
    max-width: 1620px;
    margin: 0 auto;
    width: 94%;
}

.fixed {
    position: fixed;
}

.header-all {
    width: 100%;
    z-index: 99;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-around {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.none {
    display: none;
}

.flex-1 {
    flex: 1;
}

.flex-5 {
    flex: 0.5;
}

.flex-25 {
    flex: 0.25;
}

.mask_wrap {
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 9999999999;
}

.mask_wrap .block {
    width: 100vw;
    height: 100vh;
    position: absolute;
}

.mask_wrap .block1 {
    background-color: #292929;
}

.mask_wrap .block2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #c69661;
}

.mask_wrap .block2 p {
    font-size: 16px;
    color: #fff;
    margin: 30px auto 28px;
}

.mask_wrap .block2 .count {
    font-size: 14px;
    color: #fff;
    min-height: 20px;
}

.mask_wrap.on .block1 {
    animation: 0.6s cubic-bezier(0.6, 0.16, 0.81, 0.56) 0.4s block-transition forwards;
}

.mask_wrap.on .block2 {
    animation: 0.8s cubic-bezier(0.6, 0.16, 0.81, 0.56) block-transition forwards;
}

body {
    opacity: 0;
}

.mask_wrap .black {
    background-color: #292929;
}

.mask_wrap .black .joke img,
.mask_wrap .black .joke p,
.mask_wrap .black .joke .count,
.mask_wrap .black .joke svg {
    filter: grayscale(2) brightness(8);
}

.mask_wrap .white {
    background-color: white;
}

.mask_wrap svg {
    width: 224px;
}

.mask_wrap .images {
    width: 417px;
    position: relative;
    height: 70px;
}

.mask_wrap .line {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 50px auto;
}

.mask_wrap .line div {
    width: 0;
    height: 100%;
    background: #fff;
}

.mask_wrap .images svg {
    width: 100%;
}

.mask_wrap .images img {
    position: relative;
    z-index: 5;
    width: 217px;
}

.mask_wrap .images svg {
    height: 70px;
    transition: 1.5s;
    box-sizing: border-box;
}

.mask_wrap .images svg path {
    fill: none;
    stroke: #fff;
    stroke-width: 10px;
    animation: dash_2 11s ease forwards;
}

.mask_wrap .images .position {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 70px;
    max-height: fit-content !important;
    opacity: 0;
    transition: 0.7s;
}

.mask_wrap .images.on svg {
    opacity: 0;
}

.mask_wrap .images.on .position {
    opacity: 1 !important;
}

@keyframes dash_2 {
    0% {
        stroke-dasharray: 4000;
        stroke-dashoffset: 4000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.mask_wrap svg path {
    stroke: #fff;
    stroke-width: 5px;
}

@keyframes block-transition {
    0% {
        clip-path: ellipse(80% 80% at 50% 40%);
    }
    100% {
        clip-path: ellipse(120% 80% at 50% -80%);
    }
}


.header-all {
    padding: 20px 0;
}

.header-right-list a {
    padding: 3px 15px;
    font-size: 16px;
}

.header-right-list a:hover {
    color: #c69661;
}

.header-right-list {
    margin-right: 50px;
}

.fg {
    margin: 0 25px;
}

.header-right-right-item-lang svg {
    margin-right: 5px;
}

header.fixed.header-all.active {
    background-color: #00000050;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}


.pc {
    display: block;
}

.md {
    display: none;
}

/* 轮播图样式 */
.index_banner {
    height: 100vh;
    overflow: hidden;
}

.mySwiperone {
    height: 100%;
}

.banner-silde {
    height: 100vh;
    position: relative;
}

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

/* 轮播图导航控制 */
.index_banner.rel .index_banner_bt {
    margin-left: 50%;
    bottom: 40px;
    transform: translate(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1620px;
    padding: 0 20px;
    position: absolute;
}

.swiper-pagination.banner-pagination {
    width: 100%;
}

/* 自定义分页指示器 - 同时显示圆点和文字 */
.banner-pagination {
    position: static !important;
}

.pagination-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.index_banner.rel .pagination-dots {
    display: flex;
    width: auto;
}

.pagination-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 8px rgba(255, 255, 255, 0.2),
    0 0 16px rgba(255, 255, 255, 0.1);
}

.pagination-dots .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 12px rgba(255, 255, 255, 0.3),
    0 0 24px rgba(255, 255, 255, 0.2);
}

.pagination-dots .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3),
    0 0 12px rgba(255, 255, 255, 0.4),
    0 0 24px rgba(255, 255, 255, 0.3),
    0 0 36px rgba(255, 255, 255, 0.2);
}

.index_banner .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 0.5;
    width: 16px;
    height: 16px;
}

.index_banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

/* 分页计数器 */
.pagination-counter {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.current-slide {
    font-size: 24px;
    font-weight: bold;
}

/* 导航箭头 */
.index_banner_bt-one {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.index_banner_bt-one:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .pc {
        display: none;
    }

    .md {
        display: block;
    }

    .index_banner_bt {
        bottom: 20px;
        padding: 0 15px;
    }

    .pagination-content {
        gap: 15px;
    }

    .pagination-counter {
        font-size: 12px;
    }

    .current-slide {
        font-size: 14px;
    }

    .index_banner_bt-one {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* 新闻轮播图样式 - 完全按照图片效果 */
.news-carousel-container {
    position: relative;
    padding: 40px 0;
    background: white;
    overflow: hidden;
}

.newsCarousel {
    overflow: visible;
    padding: 0 20px;
}

.news-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border: none;
    box-shadow: none;
    margin: 0 2px;
}

.news-image {
    width: 100%;
    height: 355px;
    overflow: hidden;
    position: relative;
}

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

.news-text {
    padding: 15px 0;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 11px;
    color: #999;
    margin-bottom: 6px;
}

.news-title {
    font-size: 13px;
    color: #333;
    line-height: 1.3;
    margin-bottom: 8px;
    flex: 1;
    transition: 0.5s;
}

.news-line {
    width: 60px;
    height: 1px;
    background: #ff6b35;
    margin: 6px 0;
}

.news-link {
    font-size: 15px;
    color: #999;
    cursor: pointer;
    align-self: flex-start;
}

.news-image {
    transition: 0.5s;
    overflow: hidden;
}

.news-image img {
    transition: 0.5s;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-item:hover .news-title {
    border-bottom: 2px solid #c69661;
}

.bj-title h3 {
    font-size: 82px;
    font-weight: bold;
    color: #eeeeee;
    display: inline-block;
}

.bj-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bj-title-text h4 {
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 20px;
}

.bj-title-text h4 span {
    color: #c69661;
    font-size: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
    display: inline-block;
}

.new {
    padding: 100px 0;
}

.new-all {
    margin-left: calc((100% - 1620px) / 2);
}

.news-image {
    margin-bottom: 20px;
    border-radius: 10px;
}

.news-date {
    font-size: 14px;
    margin-bottom: 15px;
}

.news-title {
    font-size: 21px;
    margin-bottom: 20px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e5e5e5;
}

.news-link {
    font-size: 13px;
    color: #999999;
    cursor: pointer;
}

.fp-viewing-page3 .footer-all-detail {
    padding-top: 83px;
}

.footer-top {
    display: flex;
    width: 100%;
}

.footer-top a {
    background-color: #2b2b2b;
    color: #989898;
    width: 50%;
    text-align: center;
    height: 70px;
    line-height: 70px;
    font-size: 16px;
}

.footer-top a.active {
    background-color: #151515;
}

.footer {
    background-color: #000000;
    color: #efefef;
    padding: 60px 0;
    height: 100%;
}

.footer-item-title h4 {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-item-title ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-item-title ul li a {
    color: #ffffff;
    display: block;
}
.footer-item-title ul li a:hover {
    color: #c69661;
}

.ewm {
    text-align: left;
    margin: 30px 0;
    display: inline-block;
}

.ewm p {
    text-align: center;
    margin: 10px 0;
}

.ewm img {
    margin-left: 0;
}

.footer-item-title ul.footer-item-title-w {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer-item-title ul.footer-item-title-w li {
    width: 49%;
}

.footer-bottom {
    height: 70px;
    border-top: 1px solid #333333;
    background-color: #000000;
    color: #ffffff;

}

.section .footer-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-bottom-all {
    height: 100%;
}

.index_banner .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 100%;
    /*transition: 1s linear 2s;*/
    /*transform: scale(1.1, 1.1);*/
}

.index_banner .swiper-slide-active img, .swiper-slide-duplicate-active img {
    /*transition: 6s linear;*/
    /*transform: scale(1, 1);*/
}

.w50 {
    width: 50%;
}

.about-one {
    background: url(../images/about1.png) no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.ny-title {
    margin-bottom: 30px;
    width: 100%;
}

.ny-title h2 {
    font-size: 82px;
    color: rgba(238, 238, 238, 1);
    font-weight: 700;
    line-height: 108px;
    margin-bottom: 20px;
}

.ny-title h3 {
    font-size: 36px;
}

.ny-title h3 span {
    font-size: 36px;
    color: #c69661;
    padding-bottom: 20px;
    border-bottom: 2px solid #0B0B0B;
    display: inline-block;
}

.about_banner img {
    width: 100%;
}

.about-one {
    padding: 55px 0;
}

.about-one-l-text {
    color: #333333;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.about-one-right.w50 img {
    padding-left: 50px;
}

.about-two {
    height: 438px;
    background: url(../images//about3.png) no-repeat;
    background-size: cover;
    background-position: right bottom;
    display: flex;
    align-items: center;
}

.about-two-left, .about-two-right {
    color: #ffffff;
}

.about-wid {
    display: flex;
}

.about-two-left span, .about-two-right span {
    font-size: 24px;
    display: inline-block;
}

.about-two-left h2, .about-two-right h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
}

.about-wid {
    padding: 50px 0
}

.about-three-left-text h4 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: normal;
}

.about-three-left-text li {
    display: flex;
}

.about-three-left-text li h4:nth-child(1) {
    margin-right: 20px;
}

.about-three-left .ny-title h2 {
    width: 900px;
    position: relative;
    z-index: 9;
    font-weight: normal;
}

.about-three {
    background: url(../images/about4.png) no-repeat;
    background-size: auto;
}

.about-wid {
    position: relative
}

.about-three-left {
    width: 50%;
    left: 0;
}

.about-three-right {
    width: 50%;
    margin-left: auto;
}

.about-four {
    padding: 80px 0;
    background: rgba(248, 248, 247, 1);
}

.about-four .about-wid {
    flex-wrap: wrap;
}

.about-four-all {
    display: block;
    width: 100%;
}

.about-four-all .swiper-slide {
    padding-bottom: 120px;

}

.about-four-all .swiper-slide .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 62px;
    text-align: center;
    margin-top: 10px;
}

.about-four {
    background-color: rgba(248, 248, 247, 1);;
}

.about-four-all .swiper-pagination-bullet {
    width: 80px;
    height: 50px;
    border-radius: 5px;
    background-color: #ffffff;
    line-height: 50px;
    font-size: 16px;
    opacity: 1;
    margin-right: 15px !important;
}

.about-four-all .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #D09357;
    color: #ffffff;
}

.contact-one {
    padding: 80px 0
}

.contact-one-all {
    padding: 40px 0;
}

.contact-one-left ul li {
    display: flex;
    margin-bottom: 15px;
    font-size: 16px;
    align-items: center;
}

.contact-one-left ul li span {
    margin-right: 20px;
}

.w30 {
    width: 30%;
}

.w70 {
    width: 70%;
}

.w20 {
    width: 20%;
}

.w80 {
    width: 80%;
}

.contact-one-right form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-one-right form .contact-one-right-item {
    margin-bottom: 20px;
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    line-height: 60px;
    background-color: #f0f0f0;
    padding: 10px 20px;
    min-height: 60px;
}

.contact-one-right-item input {
    height: 100%;
}

.contact-one-right form .contact-one-right-item:nth-child(2n) {
    margin-right: 0;

}

.contact-one-right form .contact-one-right-itemtextarea {
    width: 100%;
    height: 160px;
    margin-right: 0;
}

.contact-one-right-itemtextarea textarea {
    height: 100%;
    width: 100%;
    resize: none;
}

.contact-button {
    width: 289px;
    height: 70px;
    opacity: 1;
    border-radius: 6px;
    background: rgba(208, 147, 87, 1);
    font-size: 20px;
    color: #ffffff;
    margin-top: 10px;
}

.clickbtn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.w100 {
    width: 100%;
}

.contact-two {
    margin-top: 20px
}

.contact-two iframe {
    width: 100%;
    height: 500px;
}

.zxtd-one {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.contact-one-right form .contact-one-right-item.zxtd-one-email {
    width: 100%;
}

#jobForm input {
    width: 100%;
    display: block;
    min-height: 60px;
}

.zxtd-one-form-sc {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    justify-content: center;
    margin-bottom: 30px;
}

.zp-one {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.zp-one-all-top {
    display: flex;
}

.zp-one-all-top h4 {
    padding: 30px 50px;
    font-size: 22px;
    font-weight: normal;
    color: rgba(51, 51, 51, 1);
    background-color: rgba(240, 240, 240, 1);
    width: 20%
}

.zp-one-all-item-top {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.zp-one-all-item-top h5 {
    color: rgba(68, 68, 68, 1);
    font-size: 22px;
    font-weight: normal;
    padding: 30px 50px;
    width: 20%;
}

.zp-one-all-item-bottom {
    padding: 30px 50px;
    font-size: 22px;
    line-height: 1.75;
}

.zp-one-all-item-bottom h3 {
    font-size: 22px;
    font-weight: normal;
    color: rgba(68, 68, 68, 1);
    margin-bottom: 15px;
}

.zp-one-all-item-bottom p {
    font-size: 22px;
    line-height: 1.75;
    font-weight: normal;
    color: rgba(68, 68, 68, 1);
}

.zp-one-all-item-top .iconfont {
    font-size: 32px;
}

.btn {
    width: 289px;
    height: 70px;
    opacity: 1;
    border-radius: 6px;
    background: rgba(208, 147, 87, 1);
    font-size: 20px;
    color: #ffffff;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    line-height: 70px;
}

.btn-div {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.zp-one-all-item-bottom {
    display: none;
}

.zp-one-all-item * {
    transition: none;
}

.zp-one-all-item.active .zp-one-all-item-bottom {
    display: block;
}

.new-all-left ul li {
    font-size: 18px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 30px;
}

.new-all-left ul li.active {
    color: rgba(199, 150, 97, 1);
}

.new-all-right-item-left h3 {
    font-size: 60px;
    color: rgba(68, 68, 68, 1);;
}

.new-all-right-item-left h4 {
    font-size: 20px;
    color: #cfcfcf;
    font-weight: normal;
}

.new-all-right-item-right h2 {
    font-size: 18px;
    color: rgba(68, 68, 68, 1);
    font-weight: 700;
    margin-bottom: 15px;

}

.new-all-right-item-right p {
    font-size: 18px;
    color: rgba(68, 68, 68, 1);
    font-weight: normal;
    line-height: 1.75;
}

.new-all-right-item {
    padding-bottom: 55px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 55px;
    transition: 0.5s;
}

.new-all-right-item:hover h2 {
    color: rgba(199, 150, 97, 1);
}

.new-all-right-item:hover h3 {
    color: rgba(199, 150, 97, 1);
}

.new-all-left ul li a {
    font-size: 18px;
}

.new-all-left ul li.active a {
    color: rgba(199, 150, 97, 1);
    transition: 0.5s;
}

.new-all.flex.flex-between {
    align-items: baseline;
}

.new-all-left ul li a:hover {
    color: rgba(199, 150, 97, 1);
}


.products {
    padding: 60px 0;
}

.products-all-left {
    max-width: 388px;
}

.products-all-left img {
    width: 100%;
}

.products-all-right {
    flex: 1;
    padding-left: 27px;
    box-sizing: border-box;
    display: flex;
    flex-flow: wrap;
}


.products-all-right h2 {
    font-size: 22px;
    color: rgba(51, 51, 51, 1);
    line-height: 1.75;
    font-weight: normal;
    margin-bottom: 35px;
    width: 100%;
}

.products-all-right-item h3 {
    font-size: 16px;
    color: rgba(208, 147, 87, 1);
    margin-bottom: 5px;
}

.products-all-right-item {
    margin-bottom: 15px;
}

.products-all-right-item p, .products-all-right-item ul li {
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 5px;
}

.products-all-right-all-right {
    padding-left: 5px;
}


.product-all-item {
    width: calc((100% - 50px) / 2);
    margin-right: 50px;
    margin-bottom: 40px;
}

.product-all-item:nth-child(2n) {
    margin-right: 0;
}

.product-all-item-left {
    max-width: 300px;
    width: 30%;
}

.product-all-item-right {
    flex: 1;
    padding-left: 20px;
    width: 70%;
    background: rgba(239, 239, 239, 1);
    display: flex;
    align-items: center;
    flex-flow: wrap;
}

.product-all-item {
    display: flex;
}

.product-all-item-right-all h2 {
    font-size: 22px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 35px;
}

.product-all-item-right-item h3 {
    font-size: 16px;
    color: rgba(208, 147, 87, 1);
    margin-bottom: 5px;
}

.product-all-item-right-item p {
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 5px;
}

.product-all-item-right-item {
    margin-bottom: 15px;
}

.product-all .wid {
    flex-wrap: wrap;
}

.pages_box.bm.flex-sb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
}

/** pages css*/
.pages_list-all {
    width: 100%;
    justify-content: center;
}

.pages_box {
    width: auto;
    min-width: 200px;
    padding: 5px;
    margin: 20px auto 40px;
}

.pages_box .iconfont {
    width: 80px;
    height: 50px;
    background: transparent;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    font-size: 22px;
    color: rgba(208, 147, 87, 1);
}

.pages_box .iconfont.active {
    background: rgba(208, 147, 87, 1);;
    color: #ffffff;
}

.pages_box .pages_list {
    width: auto;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.pages_box .pages_list a {
    width: 80px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    font-size: 22px;
    color: rgba(208, 147, 87, 1);
}

.pages_box .pages_list a.active {
    background: rgba(208, 147, 87, 1);
    color: #ffffff;
}

.products {
    background-color: #fff;
}

.page_item {
    margin: 10px 20px;
}

.pages_box .pages_list a.active {
    color: #ffffff;
}

.team > a {
    width: 157px;
    height: 60px;
    border: 1px solid rgba(208, 147, 87, 1);
    font-size: 18px;
    color: rgba(51, 51, 51, 1);
    display: inline-block;
    text-align: center;
    line-height: 60px;
    background-color: #ffffff;
    margin-bottom: 35px;
}

.team-all h3 {
    color: rgba(51, 51, 51, 1);
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 30px;
}

.team-all-show li {
    width: calc(100% / 13);
    font-size: 18px;
    color: rgba(238, 238, 238, 1);
    text-align: center;

}

.team-all-show li a {
    display: block;
    line-height: 70px;
}

.team-all-show {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(210, 210, 210, 1);
    margin-bottom: 30px;
    background-color: #ffffff;
}

.team-all-teamsearch {
    display: flex;
    margin-bottom: 40px;
}


ul.application-ul.application-left.w20 li {
    font-size: 18px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 30px;
}

ul.application-ul.application-left.w20 li a {
    font-size: 18px;
}

ul.application-ul.application-left.w20 li.active a {
    color: rgba(199, 150, 97, 1);
    transition: 0.5s;
}

.application-right.w80 > h2 {
    font-size: 26px;
    color: rgba(199, 150, 97, 1);
    font-weight: normal;
    margin-bottom: 25px;
}

.application-right-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 15px;
}

.application-right-item p {
    font-size: 16px;
    font-weight: normal;
    color: rgba(51, 51, 51, 1);
    line-height: 1.75;
    margin-bottom: 5px;
}

.application-right-item {
    margin-bottom: 25px;
}

.product-all-item-left {
    overflow: hidden;
}

.product-all-item img {
    transition: 0.5s;
}

.product-all-item:hover img {
    transform: scale(1.1);
}

.product-all-item:hover h2 {
    color: rgba(199, 150, 97, 1);
}

.new-all-search h2 {
    font-size: 16px;
    color: rgba(199, 150, 97, 1);
    padding-bottom: 0px;
    margin-bottom: 15px;
}

.new-all-search {
    width: 80%;
    padding: 30px 20px;
    background: #efefef;
    border-radius: 5px;
    margin-bottom: 20px;
}

.new-all-search input {
    display: block;
    width: 100%;
    height: 34px;
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #222;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    margin-bottom: 20px;
}

.new-all-search—a {
    background: rgba(199, 150, 97, 1);;
    height: 35px;
    line-height: 35px;
    letter-spacing: 2px;
    padding: 0;
    border: 0;
    color: #fff;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.foot-and-all, .footer-all-detail {
    position: relative;
    height: 100%;
}

.index_banner {
    position: relative;
}

.index_nav_click {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    z-index: 9999;
    transform: rotate(180deg);
    font-size: 24px;
}

@keyframes Tmouse {
    0% {
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    100% {
        -webkit-transform: translate(-50%, 12px);
        -moz-transform: translate(-50%, 12px);
        -ms-transform: translate(-50%, 12px);
        -o-transform: translate(-50%, 12px);
        transform: translate(-50%, 12px);
    }
}

.index_nav_click svg {
    width: 30px;
    height: 60px;
    color: #ffffff;
    filter: brightness(1111);
    animation: Tmouse 0.9s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .new-all-search {
        width: 100%;
    }
}

.new-all-search input {
    width: 100%;

}

.gosearchnews {
    position: absolute;
    right: 10px;
    font-size: 18px;
}

@media (max-width: 1620px) {
    .new-all {
        margin-left: 3%;
    }

    .contact-one-left.w30 {
        padding-right: 3%;
    }

    .product-all-item-right {
        padding: 5% 0px 5% 20px;
    }

    .product-all-item-left {
        max-width: initial;
        width: 40%;
    }
}

@media screen and (max-width: 1280px) {
    .header-right-list a, .header-right-right-item-lang svg, .header-right-right-item span {
        font-size: 12px;
    }

    .product-all-item-left {
        max-width: initial;
        width: 50%;
    }

    .about-one .flex {
        align-items: self-end;
    }

    .header-right-right-item-lang svg {
        width: 20px;
    }

    .header-left img {
        height: 35px;
    }

    .new-all {
        margin-left: 3%;
    }

    .new .new-all {
        margin-left: 0;
    }
}

@media screen and (max-width: 1100px) {
    .header-right-list {
        margin-right: 15px;
    }

    .header-right-list a {
        padding: 3px 10px;
    }
}

@media screen and (max-width: 1024px) {
    .new-all-search {
        width: 100%;
    }

    .products-all-right-all-right.w50, .products-all-right-all.w50 {
        width: 100%;
        padding-left: 0;
    }

    .zp-one-all-top h4, .zp-one-all-item-top h5, .zp-one-all-item.active .zp-one-all-item-bottom {
        padding: 2% 3%;
    }

    .product-all-item {
        width: 100%;
        margin-right: 0;
    }

    .product-all-item-left {
        width: 30%;
    }

    .product-all-item-right {
        width: 100%;
    }

    .new-all.flex {
        flex-wrap: wrap;
    }

    .zp-one-all-item-bottom p, .zp-one-all-item-bottom h3, .zp-one-all-item-top h5, .zp-one-all-top h4, .new-all-left ul li a, ul.application-ul.application-left.w20 li a {
        font-size: 16px;
    }

    .new-all-right-item-right p, .new-all-right-item-right h2, .new-all-left ul li, ul.application-ul.application-left.w20 li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-one-right.w70, .contact-one-left.w30, .new-all-right.w80, .new-all-left.w20, ul.application-ul.application-left.w20, .application-right.w80 {
        width: 100%;
        margin-bottom: 30px;
    }

    .application.flex {
        flex-wrap: wrap;
    }

    .about-one-left.w50, .about-one-right.w50 {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-two-left.w50 h2, .about-two-right h2 {
        font-size: 32px;
    }

    .about-three .about-wid.wid {
        align-items: self-end;
        flex-wrap: wrap;
    }

    .ny-title, .new-all-right-item-left h3 {
        font-size: 62px;
    }

    .new-all-right-item-left h4 {
        font-size: 24px;
    }

    .about-three {
        background-size: cover;
    }

    .about-one-right.w50 img {
        padding-left: 0;
    }

    .about-three-left, .about-three-left .ny-title h2, .about-three-right {
        width: 100%;
    }

    .header-right.flex.align-center.color-white {
        position: absolute;
        width: 100%;
        top: 75px;
        background-color: #000000;
        left: 0;
        padding: 10px 3%;
        padding-bottom: 40px;
    }

    ul.header-right-list.flex li a {
        line-height: 35px;
    }

    .header-right {
        display: none;
    }

    .header-right-right.flex.align-center > div {
        width: 50%;
        text-align: center;
    }

    .header-right-right-item-lang.flex.align-center {
        justify-content: center;
    }

    .fg {
        display: none;
    }

    .wid.header.flex-between.align-center, .header-right.flex.align-center.color-white, .flex {
        flex-wrap: wrap;
    }

    .iconfont-ego-caidan {
        font-size: 32px;
        color: #ffffff;
    }

    header.fixed.header-all.activemd {
        background-color: #000000;
    }

    .bj-title h3 {
        font-size: 48px;
    }

    .new {
        margin: 50px 0;
    }

    .bj-title span img {
        width: 50px;
    }

    header.fixed.header-all.activemd .header-right {
        display: block;
    }

    .news-carousel-container {
        padding: 20px 0;
    }

    .header-right.flex.align-center.color-white, ul.header-right-list.flex, .header-right.flex.align-center.color-white .align-center, ul.header-right-list.flex li {
        width: 100%;
    }

    .footer-item.flex {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .footer-item-title {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .products-all-left.w30, .products-all-right.w70, .products-all-left.w30 img {
        max-width: 100%;
        width: 100%;
    }

    .products-all-left.w30 {
        margin-bottom: 30px;

    }

    .products-all-right.w70 {
        padding-left: 0;
    }

    .products {
        padding: 20px 0;
    }

    .product-all-item-left {
        width: 50%;
    }

    .ny-title h2 {
        font-size: 42px;
        height: auto;
        line-height: 1.75;
        margin-bottom: 5px;
    }

    .about-two-left span, .about-two-right span {
        font-size: 16px;
    }

    .ny-title h3, .ny-title h3 span, .about-two-left.w50 h2, .about-two-right h2 {
        font-size: 24px;
    }

}

@media screen and (max-width: 500px) {
    .pages_box .pages_list a {
        font-size: 14px;
        width: auto;
        height: auto;
        padding: 10px;
    }

    .pages_box .iconfont {
        width: auto;
        height: auto;
        padding: 10px;
        font-size: 14px;
    }

    .new-all-right-item.flex.align-center, .product-all-item {
        flex-wrap: wrap;
    }

    .new-all-right-item-left.w20 {
        margin-bottom: 20px;
    }

    .ny-title h2, .new-all-right-item-left h3 {
        font-size: 30px;
        height: auto;
        line-height: 1.75;
        margin-bottom: 5px;
    }

    .product-all-item-left img, .product-all-item-left, .contact-button, .new-all-right-item-left.w20, .new-all-right-item-right.w80, .team > a, .btn {
        width: 100%;
    }

    .new-all-right-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .contact-one-all.flex {
        padding-top: 0;
    }

    .contact-one-right-item.flex.align-center {
        width: 100%;
        margin-right: 0;
    }

    .new-all-left.w20 {
        margin-bottom: 20px;
    }

    .team-all h3 {
        margin-bottom: 10px;
    }

    .contact-one-left ul li, .zp-one-all-item-bottom p, .zp-one-all-item-bottom h3, .zp-one-all-item-top h5, .zp-one-all-top h4, .new-all-right-item-right p, .new-all-right-item-right h2, .new-all-right-item-left h4, .btn, .team > a, .team-all h3, .about-two-left span, .about-two-right span, ul.application-ul.application-left.w20 li a, .application-right-item p {
        font-size: 14px;
    }

    .application-right-item h3, .ny-title h3, .ny-title h3 span, .about-two-left.w50 h2, .about-two-right h2 {
        font-size: 18px;
    }

    .application-right.w80 > h2 {
        font-size: 22px;
    }

    .application-right.w80 > h2 {
        margin-bottom: 15px;
    }

    .teamsearch {
        flex-wrap: wrap;
    }

    .teamsearch-left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .zp-one-all-item-top h5.flex.flex-between {
        justify-content: center;
    }
}

#fp-nav {
    display: none;
}

.more {
    display: block;
    width: 180px;
    line-height: 50px;
    border: 1px solid #ccc;
    color: #000;
    text-align: center;
    margin: 50px auto 0 auto;
    cursor: pointer;
}

.news-detail-content {
    max-width: 1620px;
    margin: 80px auto;
}

.news-detail-content .title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.news-detail-content .border {
    width: 50px;
    height: 3px;
    margin: 28px auto 0 auto;
    background: #c69661;
}

.news-detail-content .time {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: 40px;
}

.news-detail-content .html {
    margin-top: 40px;
}

.scroll-top {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 40px;
    bottom: 40px;
}

.fenye {
    text-align: center;
    margin-top: 40px;
}

.fenye a {
    display: inline-block;
    width: 60px;
    height: 40px;
    line-height: 40px;
    background: #ddd;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 6px;
}

.fenye a.active {
    background: #c69661;
    border: 1px solid #c69661;
    color: #fff;
}

.teamsearch {
    font-size: 0;
}

.teamsearch .item {
    font-size: 18px;
    margin-right: 2%;
    width: 49%;
    height: 61px;
    padding: 0 20px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid rgba(210, 210, 210, 1);
    margin-bottom: 20px;
    color: #999;
    justify-content: flex-start;
}

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

.peoples {
    width: 100%;
    font-size: 0;
}

.peoples .item {

    width: 49%;
    margin-right: 2%;
    height: 330px;
    display: inline-flex;
    background: rgba(239, 239, 239, 1);
    margin-bottom: 20px;
}

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

.peoples .item .avatar {
    flex: none;
    width: auto;
    margin: 0;
}

.peoples .item .desc {
    margin-left: 20px;
    width: 100%;
}

.peoples .item .desc h2 {
    font-size: 22px;
    line-height: 28px;
    margin-top: 44px;
}

.peoples .item .desc .row {
    margin-top: 14px;
}

.peoples .item .desc .row h3 {
    font-size: 16px;
    line-height: 32px;
    color: rgba(208, 147, 87, 1);
    font-weight: bold;
}

.peoples .item .desc .row p {
    font-size: 16px;
    line-height: 32px;
    white-space: pre-wrap;
}


