@charset "utf-8";

/*初始化*/

* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: calc(100vw/19.2);
}

html,
body {
    width: 100%;
    height: auto;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'SimSun', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'WenQuanYi Micro Hei', 'Arial', 'sans-serif';
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

input,
button {
    -webkit-appearance: none;
    border-radius: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

textarea {
    resize: none;
    overflow: auto;
}

input,
button,
textarea,
select {
    border: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: transparent;
}

img {
    border: 0;
    vertical-align: top;
}

li {
    list-style: none;
}

div,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/* placeholder修改 */

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #b6b1af !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #b6b1af !important;
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #b6b1af !important;
    opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #b6b1af !important;
}

select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}


/*公共样式*/

.c-clear {
    zoom: 1;
}

.c-clear:after {
    content: '';
    display: block;
    clear: both;
}

.c-fl {
    float: left;
}

.c-fr {
    float: right;
}

.c-container {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
}

body.c-open {
    position: fixed;
    left: 0;
    width: 100%;
}


/* 动画 */

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* 占位标签，设置导航样式 */

#c-placeholder {
    height: 120px;
}


/*顶部*/

#c-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    font-size: 16px;
    line-height: 74px;
    text-align: center;
    transition: all 0.5s;
    background: #fff;
}

#c-header a {
    color: #333;
    transition: all 0.5s;
}


/* #c-header.c-head-move {
    top: -46px;
} */

#c-header.c-style2 {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

#c-header .c-container {
    padding-top: 46px;
    max-width: 1720px;
    transition: .5s;
}

#c-header.c-head-move .c-container {
    padding-top: 0;
}

#c-header .c-left-box {
    display: flex;
    align-items: center;
}


/*顶部logo*/

#c-header .c-logo {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#c-header .c-logo img {
    height: 82px;
}

#c-header .c-logo img:last-child {
    display: none;
    height: 20px;
}

#c-header.c-head-move img:first-child {
    display: none;
}

#c-header.c-head-move img:last-child {
    display: inline-block;
}


/*顶部pc导航*/

#c-header .c-nav {
    display: flex;
    align-items: center;
}

#c-header .c-nav>li {
    position: relative;
    margin-right: 50px;
}

#c-header .c-nav>li:last-child {
    margin-right: 0;
}

#c-header .c-nav li a {
    position: relative;
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#c-header .c-nav li a i {
    margin-left: 8px;
    font-size: 20px;
}

#c-header .c-nav ul {
    position: absolute;
    top: 99%;
    left: 50%;
    display: none;
    width: 150px;
    line-height: 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#c-header .c-nav ul li {
    border-bottom: 1px solid #eee;
}

#c-header .c-nav ul li:last-child {
    border: 0;
}

#c-header .c-nav ul a {
    color: #666;
}

#c-header .c-nav .c-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#c-header .c-nav .c-menu .c-line {
    position: relative;
    margin-right: 10px;
    width: 12px;
    height: 14px;
}

#c-header .c-nav .c-menu .c-line i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #333;
}

#c-header .c-nav .c-menu .c-line i:nth-child(2) {
    top: 50%;
}

#c-header .c-nav .c-menu .c-line i:nth-child(3) {
    top: auto;
    bottom: 0;
}


/* 右侧 */

#c-header .c-right-box {
    display: flex;
    align-items: center;
}

#c-header .c-right-box a {
    margin-left: 30px;
    padding-left: 24px;
}

#c-header .c-right-box .c-hy {
    position: relative;
    background: url(../images/hy-ico.png)no-repeat left center / 14px auto;
}

#c-header .c-right-box .c-hy .c-quit {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
    height: 0;
    overflow: hidden;
}

#c-header .c-right-box .c-hy:hover .c-quit {
    display: block;
}

#c-header .c-right-box .c-hy .c-quit:hover {
    color: #7d716c;
}

#c-header .c-right-box .c-hy .c-quit::before {
    position: relative;
    z-index: 5;
    content: "";
    display: block;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-bottom: 10px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

#c-header .c-right-box .c-hy p {
    width: 90px;
    line-height: 40px;
    border-radius: 3px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    margin: 0 12px 12px;
}

#c-header .c-right-box .c-sc {
    background: url(../images/sc-ico.png)no-repeat left center / 16px auto;
}


/*顶部移动端导航*/

#c-header .c-nav2 {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    font-size: 14px;
    line-height: 50px;
    background: #fff;
    overflow-y: auto;
    transition: all 0.5s;
}

.c-open #c-header .c-nav2 {
    height: calc(100vh - 60px);
    height: -webkit-calc(100vh - 60px);
}

#c-header .c-nav2 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    border-bottom: 1px solid #f1f1f1;
    color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-header .c-nav2>li:first-child {
    border-top: 1px solid #f1f1f1;
}

#c-header .c-nav2 li:hover>a,
#c-header .c-nav2 li.active>a {
    color: #de2f09
}

#c-header .c-nav2 li a i {
    font-size: 20px;
}

#c-header .c-nav2 li ul {
    display: none;
}

#c-header .c-nav2 li ul a {
    padding-left: 15px;
}

#c-header .c-nav2 li li li a {
    padding-left: 30px;
}


/* 弹窗导航 */

#c-fixed-nav a {
    color: #fff;
}

#c-fixed-nav a:hover {
    text-decoration: underline;
}

#c-fixed-nav .c-container {
    max-width: 1720px;
}

#c-fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: 100%;
    height: 0;
    overflow: hidden;
}

#c-fixed-nav .c-main-wrap {
    position: relative;
    top: -50%;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0;
    transition: .6s;
}

#c-fixed-nav.on .c-main-wrap {
    top: 0;
    opacity: 1;
}

#c-fixed-nav .c-top {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding: 44px 0;
}

#c-fixed-nav .c-top .c-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 40px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-fixed-nav .c-top .c-close {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

#c-fixed-nav .c-top .c-close::before,
#c-fixed-nav .c-top .c-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#c-fixed-nav .c-top .c-close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#c-fixed-nav .c-center .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px 100px;
    border-top: 1px solid #515151;
    border-bottom: 1px solid #515151;
}

#c-fixed-nav .c-center .c-list>li {
    line-height: 26px;
    text-align: center;
}

#c-fixed-nav .c-center .c-list ul li {
    opacity: .7;
    padding: .24rem 0;
}

#c-fixed-nav .c-center .c-list ul li:first-child {
    opacity: 1;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
}

#c-fixed-nav .c-bottom {
    padding-top: 50px;
    text-align: center;
}

#c-fixed-nav .c-bottom .c-logo {
    margin-bottom: 10px;
    width: 414px;
}

#c-fixed-nav .c-bottom .c-text p {
    display: inline-block;
    vertical-align: top;
    padding-left: 30px;
    font-size: 18px;
    line-height: 28px;
    color: #cbc6c4;
    background: url(../images/phone.png)no-repeat left center / 18px auto;
}


/*首页轮播图*/

.c-banner1 {
    margin-top: 120px;
}

.c-banner1 .c-container {
    width: 1280px;
}

.c-banner1 .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 6.8rem;
}

.c-banner1 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner1 .swiper-slide .c-mb {
    display: none;
}

.c-banner1 video {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.c-banner1 .c-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.c-banner1 .c-wrap .c-title {
    margin-bottom: 30px;
    font-size: 60px;
    line-height: 70px;
    color: #48342d;
}

.c-banner1 .c-wrap .c-text {
    font-size: 24px;
    line-height: 34px;
    color: #403e3e;
}

.c-banner1 .c-pagination-wrap {
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 22px;
}

.c-banner1 .c-pagination-wrap .c-container {
    height: 22px;
}

.c-banner1 .swiper-pagination {
    right: 0;
}

.c-banner1 .swiper-pagination-bullet {
    position: relative;
    margin: 0 7px;
    width: 22px;
    height: 22px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    background-color: transparent;
    vertical-align: top;
    opacity: 1;
}

.c-banner1 .swiper-pagination-bullet i {
    display: none;
    font-style: normal;
}

.c-banner1 .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #d3b290;
}

.c-banner1 .swiper-pagination-bullet-active i {
    display: inline;
}

.c-banner1 .swiper-pagination-bullet-active::before {
    display: none;
}

.c-banner1 .c-scroll {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 4;
    margin-left: -40px;
    width: 80px;
    height: 65px;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #483713;
    cursor: pointer;
}

.c-banner1 .c-scroll::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 36px;
    border-left: 1px solid #483713;
}


/* 底部 */

.c-footer {
    background: #fff;
}

.c-footer .c-top-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 80px 0 50px;
}

.c-footer .c-top-box .c-text-box .c-phone {
    font-size: 30px;
    line-height: 1;
}

.c-footer .c-top-box .c-text-box .c-time {
    padding: 10px 0 30px;
    font-size: 14px;
    line-height: 24px;
    color: #999;
}

.c-footer .c-top-box .c-text-box .c-site {
    padding-left: 28px;
    font-size: 14px;
    line-height: 24px;
    background: url(../images/dz-ico.png)no-repeat left top 4px / auto 16px;
}

.c-footer .c-top-box .c-text-box .c-site a {
    padding-bottom: 5px;
    color: #7d716c;
    border-bottom: 1px solid#7d716c;
}

.c-footer .c-top-box .c-code-box {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.c-footer .c-top-box .c-code-box .c-img {
    width: 100px;
}

.c-footer .c-top-box .c-code-box .c-img:last-child {
    margin-left: 20px;
}

.c-footer .c-top-box .c-code-box .c-img img {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 3px;
}

.c-footer .c-top-box .c-code-box .c-img .c-text {
    padding-top: 15px;
    font-size: 12px;
    line-height: 22px;
    color: #999;
}

.c-footer .c-center-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 60px;
    border-top: 1px solid #f0f0f0;
}

.c-footer .c-center-box .c-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 33.59%;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
}

.c-footer .c-center-box .c-list a {
    color: #333;
}

.c-footer .c-center-box .c-list a:hover {
    text-decoration: underline;
}

.c-footer .c-center-box form {
    display: flex;
    align-items: flex-start;
    width: 36.7%;
}

.c-footer .c-center-box form input {
    padding: 0 5px;
    width: 69%;
    height: 40px;
    border-bottom: 1px solid #9b9491;
    line-height: 39px;
}

.c-footer .c-center-box form button {
    width: 31%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background: #231815;
    cursor: pointer;
    transition: .5s;
}

.c-footer .c-center-box form button:hover {
    background: #7d716c;
}

.c-footer .c-bottom-box {
    padding: 20px 0;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    background: #f9f9f9;
}

.c-footer .c-bottom-box .c-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.c-footer .c-bottom-box a {
    color: #666;
}

.c-footer .c-bottom-box a:hover {
    text-decoration: underline;
}

.c-footer .c-bottom-box .c-copyright {
    word-wrap: break-word;
    word-break: break-all;
}

.c-footer.c-dt {
    background: transparent;
    color: #fff;
}

.c-footer.c-dt .c-top-box {
    padding: 60px 100px;
}

.c-footer.c-dt .c-top-box .c-text-box .c-time,
.c-footer .c-top-box .c-code-box .c-img .c-text,
.c-footer.c-dt .c-top-box .c-text-box .c-site {
    opacity: .7;
    color: #fff;
}

.c-footer.c-dt .c-top-box .c-text-box .c-site {
    background: url(../images/dz-ico2.png)no-repeat left top 4px / auto 16px;
}

.c-footer.c-dt .c-top-box .c-text-box .c-site a {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.c-footer.c-dt .c-top-box .c-text-box .c-site a:hover {
    text-decoration: none !important;
}


/* 回到顶部 */

#c-go-top {
    display: none;
    position: fixed;
    z-index: 5;
    bottom: 30px;
    right: 30px;
    width: 90px;
    height: 90px;
    background: #fff;
    cursor: pointer;
    transition: all .5s;
    box-shadow: 0 0 4px rgba(0, 0, 0, .08);
}

#c-go-top>div {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-go-top img {
    width: 18px;
}

#c-go-top p {
    font-size: 14px;
    line-height: 1;
    color: #7d716c;
}


/* 顶部banner */

#c-top-banner {
    position: relative;
}


/* #c-top-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
} */

#c-top-banner img {
    width: 100%;
}

#c-top-banner img:nth-child(2) {
    display: none;
}

#c-top-banner .c-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#c-top-banner .c-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #7d716c;
}

#c-top-banner .c-box .c-wrap {
    width: 100%;
}

#c-top-banner .c-title {
    margin-bottom: 10px;
    font-size: 48px;
    line-height: 58px;
}

#c-top-banner .c-en-title {
    max-width: 50%;
    font-size: 18px;
    line-height: 28px;
}


/* 顶部菜单 */

#c-top-menu {
    background: #f7f7f7;
    border-bottom: 1px solid #fafafa;
}

#c-top-menu .c-list {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    margin-bottom: -1px;
}

#c-top-menu .c-list li {
    flex: none;
    margin-right: .4rem;
    line-height: 80px;
    width: 190px;
}

#c-top-menu .c-list li a {
    position: relative;
    display: block;
    color: #666;
    transition: .5s;
}

#c-top-menu .c-list li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 2px solid #de2f09;
    transition: .5s;
}

#c-top-menu .c-list li.active a,
#c-top-menu .c-list li:hover a {
    color: #de2f09;
}

#c-top-menu .c-list li.active a::before,
#c-top-menu .c-list li:hover a::before {
    width: 100%;
}

#c-top-menu.c-click-move .c-list li {
    width: 25%;
    margin: 0;
}


/* 地图 */

.c-map {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
    border: 2px solid #7d726d;
}

.c-map .map-title {
    font-size: 14px;
    font-weight: bold;
    color: #7d716c;
}

.c-map .map-content {
    font-size: 12px;
    color: #333;
}

.c-map .anchorBL {
    display: none;
}


/* 分享 */

div.bsLogoLink,
#bsBox .bsTop,
#bsBox #bsMorePanel {
    width: 100% !important;
}

.bFind-wrapper-top {
    height: 26px !important;
}

#bsBox #bsMorePanel {
    height: 373px !important;
}

.bsPlatDiv {
    height: 312px !important;
}

.bFind {
    width: 204px !important;
}

#bsBox {
    height: 408px !important;
    width: 276px !important;
    margin-left: -138px !important;
}

.bsTop {
    width: 208px !important;
}

.bsFrameDiv div {
    width: 208px !important;
    height: 208px !important;
}

.bsFrameDiv img {
    width: 166px !important;
    height: 166px !important;
}


/* 上下页 */

#c-prevNext {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#c-prevNext a {
    max-width: 46%;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    transition: .5s;
}

#c-prevNext a:hover {
    color: #de2f09;
}

#c-prevNext .prev i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
}

#c-prevNext .next i {
    margin-left: 10px;
    font-size: 20px;
    vertical-align: middle;
}


/* 分页 */

.c-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.c-page a {
    margin: 5px;
    display: block;
    width: 60px;
    line-height: 60px;
    text-align: center;
    color: #333;
    transition: .5s;
}


/* .c-page .prev,
.c-page .next {
    width: 120px;
} */

.c-page a:hover,
.c-page a.active {
    color: #fff;
    background: #7d716c;
}


/* 产品 */

#c-product {
    padding: 140px 0;
}

#c-product .c-list1 {
    display: flex;
    align-items: flex-start;
    margin: 0 -10px 40px;
}

#c-product .c-list1 li {
    padding: 0 10px;
    width: 16.666666%;
}

#c-product .c-list1 .c-wrap {
    display: block;
    color: #333;
    background: #f5f5f5;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .5s;
}

#c-product .c-list1 li.on .c-wrap {
    border-color: #333;
}

#c-product .c-list1 .c-wrap .c-img-box {
    overflow: hidden;
}

#c-product .c-list1 .c-wrap .c-img-box img {
    width: 100%;
    transition: .5s;
}

#c-product .c-list1 .c-wrap .c-title {
    padding: 0 10px 20px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

#c-product .c-list2 li {
    display: none;
}

#c-product .c-list2 li.on {
    display: block;
}

#c-product .c-list2 .c-wrap {
    display: block;
    overflow: hidden;
}

#c-product .c-list2 .c-wrap img {
    width: 100%;
}


/* 新闻 */

#c-news {
    padding: 140px 0;
    background: #f8f8f8;
}

#c-news .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -20px;
}

#c-news .c-list li {
    padding: 0 20px;
    width: 33.333333%;
}

#c-news .c-list .c-wrap {
    display: block;
    color: #333;
}

#c-news .c-list .c-wrap .c-img-box {
    overflow: hidden;
}

#c-news .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 1s;
}

#c-news .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-news .c-list .c-wrap .c-title {
    margin: 25px 0 10px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

#c-news .c-list .c-wrap .c-subtitle {
    height: 26px;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

#c-news .c-list .c-wrap .c-text {
    position: relative;
    border-bottom: 1px solid #cccccc;
    padding: 20px 0 25px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

#c-news .c-list .c-wrap .c-text::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #333;
    transition: .5s;
}

#c-news .c-list .c-wrap:hover .c-text::before {
    width: 100%;
}

#c-news .c-more-box {
    padding-top: 55px;
    text-align: center;
}

#c-news .c-more-box a {
    display: inline-block;
    padding: 0 20px;
    line-height: 50px;
    color: #fff;
    background: #7d716c;
}


/* 关于我们 */

#c-about {
    position: relative;
    padding: 160px 0;
    background: #f5f5f5;
}

#c-about .c-text-box {
    width: 51%;
}

#c-about .c-text-box .c-title {
    font-size: 48px;
    line-height: 58px;
}

#c-about .c-text-box .c-text {
    padding: 20px 0 60px;
    line-height: 26px;
}

#c-about .c-text-box .c-more {
    position: relative;
    display: inline-block;
    line-height: 1;
    padding: 0 30px 20px 0;
    color: #333;
    overflow: hidden;
}

#c-about .c-text-box .c-more .c-line {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #666666;
}

#c-about .c-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 100px;
}

#c-about .c-list .c-top {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#c-about .c-list .c-top .c-num {
    font-size: 60px;
}

#c-about .c-list .c-top .c-text2 {
    margin-left: 10px;
    font-size: 18px;
}

#c-about .c-list .c-title2 {
    padding-top: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

#c-about .c-img-box {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 36%;
    overflow: hidden;
}

#c-about .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-about.c-dt {
    background: #f5f5f5;
}

#c-about.c-dt .c-title {
    display: inline-block;
    padding: 0 40px 25px 0;
    border-bottom: 1px solid #dcdcdc;
}

#c-about.c-dt .c-text-box .c-text {
    padding: 25px 0 50px;
}

#c-about.c-dt .c-list {
    padding: 0 0 100px;
}

#c-about.c-dt .c-text-box .c-more {
    padding: 0;
    width: 272px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #7d716c;
    transition: .5s;
}

#c-about.c-dt .c-text-box .c-more:hover {
    color: #fff;
    background: #7d716c;
}


/* 创新品质 */

#c-quality {
    padding: 140px 0;
}

#c-quality .c-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 -10px;
}

#c-quality .c-list li {
    margin-bottom: 10px;
    padding: 0 10px;
    width: 50%;
}

#c-quality .c-list li:last-child {
    margin-bottom: 0;
    width: 100%;
}

#c-quality .c-list .c-wrap {
    display: block;
}

#c-quality .c-list .c-wrap .c-img-box {
    overflow: hidden;
}

#c-quality .c-list .c-wrap .c-img-box img {
    width: 100%;
    transition: .5s ease;
}

#c-quality .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-quality .c-list .c-wrap .c-text-box {
    background: #fff;
    transition: .2s;
}

#c-quality .c-list .c-wrap:hover .c-text-box {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

#c-quality .c-list .c-wrap .c-title {
    padding-top: 25px;
    font-size: 20px;
    line-height: 30px;
    color: #564c3f;
}

#c-quality .c-list .c-wrap .c-text {
    font-size: 14px;
    line-height: 24px;
    color: #767676;
}

#c-quality .c-list .c-wrap .c-more {
    opacity: 0;
    font-size: 14px;
    line-height: 24px;
    color: #767676;
    text-decoration: underline;
    transition: .2s;
}

#c-quality .c-list .c-wrap:hover .c-more {
    opacity: 1;
}


/* 当前位置 */

#c-top-site {
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    line-height: 26px;
    color: #999;
    background: #fff;
}

#c-top-site p {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
}

#c-top-site span {
    flex: none;
}

#c-top-site a {
    flex: none;
    color: #999;
    transition: .5s;
}

#c-top-site a.on,
#c-top-site a:hover {
    color: #333;
}

#c-top-site a:first-child {
    padding-left: 22px;
    background: url(../images/home.png) no-repeat left center / auto 12px;
}


/* 联系我们 */

#c-contact {
    padding: 120px 0;
    background: #f5f5f5;
}

#c-contact .c-top-box {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-contact .c-top-box .c-text-box {
    padding: 85px 40px 105px;
    width: 33.6%;
    border-right: 30px solid #f5f5f5;
    color: #fff;
    background: #9e918c;
    background: -webkit-linear-gradient(top, #9e918c, #7d716c);
    background: linear-gradient(to bottom, #9e918c, #7d716c);
}

#c-contact .c-top-box .c-text-box .c-title {
    padding-bottom: 25px;
    border-bottom: 1px solid #aca19d;
    font-size: 48px;
    line-height: 1;
}

#c-contact .c-top-box .c-text-box .c-text {
    padding: 30px 0 40px;
    line-height: 26px;
}

#c-contact .c-top-box .c-text-box .c-text p {
    margin-bottom: 10px;
}

#c-contact .c-top-box .c-text-box img {
    width: 135px;
}

#c-contact .c-top-box .c-form-box {
    width: 66.4%;
    background: #fff;
}

#c-contact .c-top-box .c-form-box .c-list1 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-bottom: 1px solid #dfdfdf;
}

#c-contact .c-top-box .c-form-box .c-list1 li {
    margin: 0 24px -1px;
    border-bottom: 2px solid transparent;
    font-size: 24px;
    line-height: 94px;
    color: #999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

#c-contact .c-top-box .c-form-box .c-list1 li.on {
    color: #7d716c;
    border-color: #7d716c;
}

#c-contact .c-top-box .c-form-box form {
    max-width: 620px;
    margin: 0 auto;
    padding: 60px 50px 80px;
}

#c-contact .c-top-box .c-form-box form.on {
    display: block;
}

#c-contact .c-top-box .c-form-box form .c-title {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 34px;
}

#c-contact .c-top-box .c-form-box form input {
    margin-bottom: 30px;
    width: 100%;
    height: 35px;
    border-bottom: 1px solid #dfdfdf;
    font-size: 14px;
    line-height: 34px;
}

#c-contact .c-top-box .c-form-box form textarea {
    padding: 5px 10px;
    margin-bottom: 30px;
    width: 100%;
    height: 104px;
    border: 1px solid #dfdfdf;
    font-size: 14px;
    line-height: 34px;
    overflow-y: auto;
}

#c-contact .c-top-box .c-form-box form .c-btn-box {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#c-contact .c-top-box .c-form-box form .c-btn-box button {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    border: 1px solid #7d716c;
    line-height: 58px;
    color: #7d716c;
    cursor: pointer;
}

#c-contact .c-top-box .c-form-box form .c-btn-box button:first-child {
    background: #7d716c;
    color: #fff;
}


/* 加入我们 */

#c-join {
    padding: 120px 0;
    background: #f5f5f5;
}

#c-join .c-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #fcfbfa;
}

#c-join .c-img-box {
    width: 46.875%;
}

#c-join .c-img-box img {
    width: 100%;
}

#c-join .c-text-box {
    padding: 30px 80px;
    width: 53.125%;
}

#c-join .c-text-box .c-title {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
    font-size: 36px;
    line-height: 46px;
    color: #7d716c;
}

#c-join .c-text-box .c-text {
    line-height: 30px;
    color: #666;
}


/* 公共标题 */

.c-common-title {
    text-align: center;
}

.c-common-title .c-en-title {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 6px;
    color: #7d716c;
}

.c-common-title .c-title {
    font-size: 48px;
    line-height: 58px;
}

.c-common-title .c-text {
    padding-top: 10px;
    line-height: 26px;
    color: #7d716c;
}

.c-common-title .c-line {
    height: 10px;
    background: url(../images/line.png)no-repeat center / auto 100%;
}

.c-common-title2 {
    text-align: center;
}

.c-common-title2 .c-title {
    margin-bottom: 60px;
    font-size: 48px;
    line-height: 58px;
}

.c-common-title3 {
    margin-bottom: 35px;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}


/* 招聘 */

.c-join2 {
    padding: 120px 0;
}

.c-join2.c-unique {
    background: #f5f5f5;
}

.c-join2 .c-list1 {
    display: flex;
    align-items: center;
    margin-top: 55px;
    font-size: 24px;
    line-height: 84px;
    color: #fff;
    background: #9e918c;
    background: -webkit-linear-gradient(left, #9e918c, #7d716c);
    background: linear-gradient(to right, #9e918c, #7d716c);
}

.c-join2 .c-item1 {
    padding: 0 30px 0 120px;
    width: 27%;
}

.c-join2 .c-item2 {
    padding: 0 30px;
    width: 11%;
}

.c-join2 .c-item3 {
    padding: 0 30px;
    width: 16%;
    text-align: center;
}

.c-join2 .c-item4 {
    padding: 0 30px;
    width: 16%;
    text-align: center;
}

.c-join2 .c-item5 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 30px;
    width: 30%;
    text-align: right;
}

.c-join2 .c-item5 .c-line {
    position: relative;
    width: 20px;
    height: 20px;
}

.c-join2 .c-item5 .c-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    width: 100%;
    border-top: 2px solid #999;
}

.c-join2 .c-item5 .c-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    height: 100%;
    border-left: 2px solid #999;
}

.c-join2 .c-list2 {
    margin-bottom: 75px;
}

.c-join2 .c-list2>li.on {
    background: #f5f5f5;
}

.c-join2.c-unique .c-list2>li.on {
    background: #fff;
}

.c-join2 .c-list2>li.on .c-item5 .c-line::after {
    display: none;
}

.c-join2 .c-list2>li {
    border-bottom: 1px solid #b2b2b2;
    transition: .3s;
}

.c-join2 .c-list3 {
    display: flex;
    align-items: center;
    padding: 25px 0;
    line-height: 26px;
    cursor: pointer;
}

.c-join2 .c-list2 .c-text {
    display: none;
    padding: 0 120px 25px;
    line-height: 30px;
    color: #666;
}

.c-join2 .c-list2 .c-common-btn {
    margin: 15px 0 0;
}


/* 服务列表 */

#c-service {
    padding: 120px 0 40px;
}

#c-service .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -20px;
    padding-top: 60px;
}

#c-service .c-list li {
    margin-bottom: 40px;
    padding: 0 20px;
    width: 50%;
}

#c-service .c-list .c-wrap {
    position: relative;
    display: block;
    height: 302px;
    overflow: hidden;
}

#c-service .c-list .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-service .c-list .c-wrap:hover img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-service .c-list .c-wrap .c-text-box {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    /* background: rgba(0, 0, 0, .5); */
}

#c-service .c-list .c-wrap .c-text-box>div {
    width: 100%;
}

#c-service .c-list .c-wrap .c-text-box .c-title {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 46px;
}

#c-service .c-list .c-wrap .c-text-box .c-text {
    line-height: 26px;
}


/* 标语 */

#c-gg {
    padding-bottom: 120px;
}

#c-gg .c-title {
    margin-bottom: 60px;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
}

#c-gg .c-btn {
    display: block;
    margin: 0 auto;
    width: 228px;
    border: 1px solid #7d716c;
    line-height: 58px;
    text-align: center;
    color: #7d716c;
    transition: .5s;
}

#c-gg .c-btn:hover {
    color: #fff;
    background: #7d716c;
}


/* 底部链接 */

#c-link {
    padding: 120px 0;
    background: #f5f5f5;
}

#c-link.c-dt {
    background: #f9f9f9;
}

#c-link .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 -25px;
}

#c-link .c-list li {
    padding: 0 25px;
    width: 50%;
}

#c-link .c-list .c-wrap {
    position: relative;
    display: block;
    color: #fff;
    background: #7d716c;
}

#c-link .c-list .c-box1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    height: 170px;
}

#c-link .c-list .c-title {
    font-size: 24px;
    line-height: 34px;
}

#c-link .c-list .c-en-title {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 6px;
}

#c-link .c-list .c-jt {
    width: 26px;
    height: 26px;
    background: url(../images/jt2.png) no-repeat center / 12px auto;
}

#c-link .c-list .c-box2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

#c-link .c-list .c-wrap:hover .c-box2 {
    opacity: 1;
}

#c-link .c-list .c-box2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-link .c-list .c-box2>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: rgba(0, 0, 0, .6); */
}


/* 分类 */

.c-common-menu {
    margin: 30px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-common-menu.c-dt {
    justify-content: center;
}

.c-common-menu li {
    position: relative;
    padding: 0 20px;
}

.c-common-menu li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 16px;
    margin-top: -8px;
    border-left: 1px solid #dbdad7;
}

.c-common-menu li:last-child::before {
    display: none;
}

.c-common-menu .c-wrap {
    display: inline-block;
    padding: 0 20px;
    line-height: 36px;
    color: #999;
    transition: .5s;
}

.c-common-menu li.on .c-wrap,
.c-common-menu li .c-wrap:hover {
    color: #fff;
    background: #7d716c;
}


/* 下载. */

#c-download {
    padding: 120px 0;
    border-bottom: 1px solid #ddd;
}

#c-download .c-list {
    margin-bottom: 60px;
    border-top: 1px solid #bcbbb8;
}

#c-download .c-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #dbdad7;
}

#c-download .c-list .c-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    width: 12%;
    height: 150px;
    background: #f1f1f1;
}

#c-download .c-list .c-text-box {
    padding: 0 28px;
    width: 58%;
}

#c-download .c-list .c-btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 28px;
    width: 30%;
}

#c-download .c-list .c-img-box .c-img img {
    max-width: 100%;
    max-height: 100%;
}

#c-download .c-list .c-text-box .c-title {
    font-size: 18px;
    line-height: 28px;
}

#c-download .c-list .c-text-box .c-text {
    height: 72px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

#c-download .c-list .c-text-box .c-time {
    font-size: 14px;
    line-height: 24px;
    color: #999;
}

#c-download .c-list .c-btn-box .c-btn {
    margin-right: 50px;
    display: inline-block;
    padding-left: 22px;
    color: #999;
    background: url(../images/xz-ico.png)no-repeat left center / auto 12px;
}

#c-download .c-list .c-btn-box .c-btn:hover {
    color: #7d716c;
    background: url(../images/xz-ico-h.png)no-repeat left center / auto 12px;
}


/* 售后保养 */

#c-maintain {
    padding: 120px 0 80px;
}

#c-maintain .c-common-title .c-title {
    padding: 0;
}

#c-maintain .c-list {
    margin: 0 -20px;
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-maintain .c-list li {
    margin-bottom: 40px;
    padding: 0 20px;
    width: 50%;
}

#c-maintain .c-list .c-wrap {
    position: relative;
    height: 300px;
}

#c-maintain .c-list .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-maintain .c-list .c-wrap .c-text-box {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

#c-maintain .c-list .c-wrap .c-text-box>div {
    width: 100%;
    color: #fff;
    text-align: center;
}

#c-maintain .c-list .c-wrap .c-text-box .c-title {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 46px;
}

#c-maintain .c-list .c-wrap .c-text-box .c-text {
    height: 78px;
    font-size: 16px;
    line-height: 26px;
}


/* 工艺 */

#c-technology {
    padding: 120px 0;
    background: #f5f5f5;
}

#c-technology .c-wrap {
    position: relative;
    overflow: hidden;
}

#c-technology .c-wrap img {
    width: 100%;
}

#c-technology .c-wrap .c-text-box {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

#c-technology .c-wrap .c-text-box>div {
    padding: 20px;
    max-width: 760px;
    color: #fff;
    text-align: center;
}

#c-technology .c-wrap .c-text-box .c-title {
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 58px;
}

#c-technology .c-wrap .c-text-box .c-text {
    line-height: 30px;
}


/* 售后规则 */

#c-rule {
    padding: 120px 0;
    border-bottom: 1px solid #ddd;
}

#c-rule .c-box-wrap {
    padding-top: 55px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}

#c-rule .c-text-box {
    width: 48.6%;
    line-height: 2;
}

#c-rule .c-img-box {
    width: 36%;
    overflow: hidden;
}

#c-rule .c-img-box img {
    width: 100%;
}


/* 定制服务 */

#c-customized {
    padding: 120px 0;
}

#c-customized .c-wrap {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

#c-customized .c-wrap img {
    width: 100%;
}

#c-customized .c-wrap .c-text-box {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

#c-customized .c-wrap .c-text-box>div {
    padding: 20px;
    max-width: 760px;
    color: #fff;
    text-align: center;
}

#c-customized .c-wrap .c-text-box .c-title {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 58px;
}

#c-customized .c-wrap .c-text-box .c-text {
    line-height: 30px;
}


/* 优势 */

#c-advantage {
    padding: 120px 0;
    background: #f5f5f5;
}

#c-advantage .c-list {
    margin: 0 -20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-advantage .c-list li {
    padding: 0 20px;
    width: 33.3333%;
}

#c-advantage .c-list .c-wrap {
    position: relative;
    height: 560px;
}

#c-advantage .c-list .c-wrap>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-advantage .c-list .c-wrap .c-mask {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

#c-advantage .c-list .c-wrap .c-box {
    width: 100%;
    padding: 0 20px;
    color: #fff;
    text-align: center;
}

#c-advantage .c-list .c-wrap .c-box .c-ico img {
    height: 60px;
}

#c-advantage .c-list .c-wrap .c-box .c-title {
    padding: 80px 0 20px;
    font-size: 36px;
    line-height: 46px;
}

#c-advantage .c-list .c-wrap .c-box .c-text {
    margin: 0 auto;
    max-width: 230px;
    height: 130px;
    line-height: 26px;
}


/* 合作案例 */

#c-case {
    padding: 120px 0;
}

#c-case .c-common-title .c-title {
    padding: 0;
}

.c-banner2 {
    padding-top: 60px;
}

.c-banner2 .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f8f8f8;
}

.c-banner2 .c-img-box {
    width: 46.875%;
    height: 450px;
}

.c-banner2 .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner2 .c-text-box {
    padding: 0 80px;
    width: 53.125%;
}

.c-banner2 .c-text-box .c-title {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    font-size: 48px;
    line-height: 58px;
    color: #7d716c;
}

.c-banner2 .c-text-box .c-text {
    height: 120px;
    color: #666;
    line-height: 30px;
    overflow: hidden;
}

.c-banner2 .c-text-box .c-time {
    font-weight: bold;
    line-height: 26px;
    color: #999;
}

.c-banner2 .c-box {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.c-banner2 .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-banner2 .swiper-pagination-bullet {
    margin: 0 15px;
    opacity: 1;
    border: 1px solid #7e726d;
    background: transparent;
}

.c-banner2 .swiper-pagination-bullet-active {
    background: #7e726d;
}

.c-banner2 .c-prev {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/prev.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner2 .c-next {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/next.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner2 .c-prev:hover,
.c-banner2 .c-next:hover {
    opacity: 1;
}


/* 定制表单 */

#c-form2 {
    padding: 120px 0;
    background: #f8f8f8;
}

#c-form2 .c-title {
    margin-bottom: 50px;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #7d716c;
}

#c-form2 form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

#c-form2 .c-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 15px;
    width: 50%;
}

#c-form2 .c-wrap:last-child,
#c-form2 .c-wrap:nth-last-child(2) {
    width: 100%;
}

#c-form2 .c-wrap:nth-last-child(2) {
    align-items: flex-start;
    margin-bottom: 60px;
}

#c-form2 .c-wrap:nth-last-child(2) label {
    padding-top: 12px;
}

#c-form2 .c-wrap:last-child {
    margin-bottom: 0;
}

#c-form2 .c-wrap label {
    display: inline-block;
    width: 120px;
    font-size: 18px;
    text-align: right;
}

#c-form2 .c-wrap input {
    padding: 0 20px;
    width: 100%;
    height: 54px;
    line-height: 52px;
    border: 1px solid #92928f;
    color: #666;
}

#c-form2 .c-wrap select {
    padding: 0 52px 0 20px;
    width: 100%;
    height: 54px;
    line-height: 52px;
    border: 1px solid #92928f;
    color: #666;
    background: url(../images/jt3.png)no-repeat right 20px center / 12px auto;
}

#c-form2 .c-wrap textarea {
    padding: 15px 20px;
    width: 100%;
    height: 220px;
    line-height: 26px;
    border: 1px solid #92928f;
    color: #666;
}

#c-form2 .c-wrap button {
    width: 228px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    background: #7d716c;
    cursor: pointer;
}

#c-form2 input::-webkit-input-placeholder,
#c-form2 textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #666 !important;
}

#c-form2 input:-moz-placeholder,
#c-form2 textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #666 !important;
    opacity: 1;
}

#c-form2 input::-moz-placeholder,
#c-form2 textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #666 !important;
    opacity: 1;
}

#c-form2 input::-ms-input-placeholder,
#c-form2 textarea::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #666 !important;
}


/* 营销支持 */

#c-marketing {
    padding: 120px 0;
}

#c-marketing .c-wrap {
    margin-top: 55px;
    position: relative;
    overflow: hidden;
}

#c-marketing .c-wrap img {
    width: 100%;
}

#c-marketing .c-wrap .c-text-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

#c-marketing .c-wrap .c-text-box .c-title {
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: #fff;
}


/* 公共盒子 */

.c-common-box {
    padding: 120px 0;
    background: #f5f5f5;
}

.c-common-box.c-dt {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.c-common-box .c-container {
    max-width: 1600px;
}

.c-common-box .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding-top: 55px;
    margin: 0 -10px -30px;
}

.c-common-box .c-list li {
    width: 20%;
    margin-bottom: 30px;
    padding: 0 10px;
}

.c-common-box .c-list .c-wrap .c-img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.c-common-box .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-common-box .c-list .c-wrap .c-title {
    padding-top: 15px;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}


/* 新闻列表 */

#c-news2 {
    padding: 120px 0;
    border-bottom: 1px solid #ddd;
}

#c-news2 .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -20px;
}

#c-news2 .c-list li {
    margin-bottom: 40px;
    padding: 0 20px;
    width: 33.333333%;
}

#c-news2 .c-list .c-wrap {
    display: block;
}

#c-news2 .c-list .c-wrap .c-img-box {
    height: 220px;
    overflow: hidden;
}

#c-news2 .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-news2 .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-news2 .c-list .c-wrap .c-title {
    margin: 20px 0 15px;
    font-size: 20px;
    line-height: 30px;
    color: #333;
    transition: .5s;
}

#c-news2 .c-list .c-wrap:hover .c-title {
    color: #7d716c;
}

#c-news2 .c-list .c-wrap .c-time {
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    line-height: 24px;
    color: #999;
}

#c-news2 .c-list .c-wrap .c-time::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #333;
    transition: .5s;
}

#c-news2 .c-list .c-wrap:hover .c-time::before {
    width: 100%;
}


/* 新闻详情 */

#c-news3 {
    padding: 120px 0;
    border-bottom: 1px solid #ddd;
}

#c-news3 .c-box-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

#c-news3 .c-title-box {
    padding-bottom: 20px;
}

#c-news3 .c-title-box .c-title {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
}

#c-news3 .c-title-box .c-text {
    line-height: 26px;
    text-align: center;
    color: #999;
}

#c-news3 .c-title-box .c-share {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

#c-news3 .bshare-custom .bshare-more.more-style-addthis {
    font-size: 16px;
    height: 26px;
    line-height: 26px;
    color: #999 !important;
    background: url(../images/fx-ico.png)no-repeat left center / 14px;
}

#c-news3 .bshare-custom .bshare-more.more-style-addthis:hover {
    color: #7d716c !important;
    opacity: 1;
    background-image: url(../images/fx-ico-h.png);
    text-decoration: none;
}

#c-news3 .c-text-box {
    margin-bottom: 60px;
    padding: 50px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    line-height: 2;
}

#c-news3 .c-text-box img {
    max-width: 100%;
    height: auto !important;
}

#c-news3 .c-pnbox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#c-news3 .c-pnbox a {
    opacity: .5;
    width: 40%;
    max-width: 360px;
    height: 22px;
    line-height: 22px;
    color: #555;
    transition: .5s;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

#c-news3 .c-pnbox a:last-child {
    text-align: right;
}

#c-news3 .c-pnbox .c-prev {
    padding-left: 30px;
    width: 40%;
    background: url(../images/prev.png)no-repeat left center / auto 14px;
}

#c-news3 .c-pnbox .c-next {
    padding-right: 30px;
    width: 40%;
    text-align: right;
    background: url(../images/next.png)no-repeat right center / auto 14px;
}

#c-news3 .c-pnbox .c-return {
    width: 10%;
    height: 22px;
    background: url(../images/fhlb-ico.png)no-repeat center / 22px;
}

#c-news3 .c-pnbox a:hover {
    color: #7d716c;
    opacity: 1;
}


/* 外观专利 */

#c-product2 {
    padding: 120px 0;
}

#c-product2 .c-box-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f5f5f5;
}

#c-product2 .c-box-wrap .c-img-box {
    width: 50%;
    height: 480px;
    overflow: hidden;
}

#c-product2 .c-box-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-product2 .c-box-wrap .c-text-box {
    padding: 60px 100px;
    width: 50%;
    text-align: center;
}

#c-product2 .c-box-wrap .c-text-box img {
    margin-bottom: 55px;
    max-width: 250px;
}

#c-product2 .c-box-wrap .c-text-box .c-title {
    font-size: 30px;
    line-height: 40px;
    color: #564c3f;
}

#c-product2 .c-box-wrap .c-text-box .c-line {
    margin: 20px auto;
    height: 20px;
    width: 1px;
    background: #564c3f;
}

#c-product2 .c-box-wrap .c-text-box .c-text {
    line-height: 26px;
    color: #666;
}


/* 推荐产品 */

#c-product3 {
    padding: 120px 0;
    background: #f5f5f5;
}

#c-product3 .c-list {
    padding-top: 40px;
    margin: 0 -10px 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-product3 .c-list li {
    margin-bottom: 20px;
    padding: 0 10px;
    width: 33.333333%;
}

#c-product3 .c-list .c-wrap {
    position: relative;
    display: block;
    background: #fff;
}

#c-product3 .c-list .c-wrap .c-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    overflow: hidden;
}

#c-product3 .c-list .c-wrap .c-img-box img {
    max-width: 80%;
    max-height: 80%;
    transition: 1s;
}

#c-product3 .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-product3 .c-list .c-wrap .c-text-box {
    position: relative;
    z-index: 5;
    padding: 0 30px 20px;
    text-align: center;
    transition: .5s;
}

#c-product3 .c-list .c-wrap:hover .c-text-box {
    -webkit-transform: translateY(-20px) scale(1.1, 1.1);
    transform: translateY(-20px) scale(1.1, 1.1);
}

#c-product3 .c-list .c-wrap .c-text-box .c-title {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    transition: all .5s;
}

#c-product3 .c-list .c-wrap:hover .c-text-box .c-title {
    color: #fff;
}

#c-product3 .c-list .c-wrap .c-text-box .c-text {
    line-height: 26px;
    color: #999;
}

#c-product3 .c-list .c-wrap .c-mask {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    transition: .5s;
}

#c-product3 .c-list .c-wrap:hover .c-mask {
    opacity: 1;
}

#c-product3 .c-list .c-wrap .c-mask .c-ico {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff url(../images/xq-ico.png)no-repeat center / 20px auto;
}


/* #c-product3 .c-list .c-wrap .c-mask .c-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 125px;
    padding-bottom: 20px;
    text-align: center;
}

#c-product3 .c-list .c-wrap .c-mask .c-box .c-title {
    font-size: 24px;
    line-height: 34px;
    color: #fff;
}

#c-product3 .c-list .c-wrap .c-mask .c-box .c-text {
    font-size: 18px;
    line-height: 28px;
    color: #999;
} */

#c-product3 .c-more-btn {
    margin: 0 auto;
    display: block;
    width: 272px;
    border: 1px solid #7d716c;
    line-height: 70px;
    text-align: center;
    color: #333;
    transition: all .5s;
}

#c-product3 .c-more-btn:hover {
    color: #fff;
    background: #7d716c;
}

#c-product3.c-dt {
    padding-bottom: 0;
}

#c-product3 .c-top-box {
    padding: 60px 60px 50px;
    background: #fff;
}

#c-product3.c-dt .c-list {
    padding-top: 20px;
}

#c-product3 .c-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

#c-product3 .c-top .c-title-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    color: #53443b;
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
}

#c-product3 .c-top .c-title-box .c-title {
    margin-right: 30px;
    font-size: 30px;
    line-height: 40px;
}

#c-product3 .c-top .c-title-box .c-text {
    line-height: 26px;
}

#c-product3 .c-top input {
    padding: 0 20px 0 40px;
    width: 220px;
    height: 40px;
    line-height: 38px;
    background: url(../images/xq-ico.png)no-repeat left 20px center / 14px auto;
    border: 1px solid transparent;
    transition: .5s;
}

#c-product3 .c-top input:focus {
    border-color: #53443b;
}

#c-product3 .c-list-box {
    padding-top: 10px;
    display: flex;
    align-items: flex-start;
}

#c-product3 .c-list-box .c-text {
    width: 60px;
    line-height: 26px;
}

#c-product3 .c-list-box .c-list2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
}

#c-product3 .c-list-box .c-list2 li {
    margin: 0 35px 10px 0;
}

#c-product3 .c-list-box .c-list2 a {
    position: relative;
    display: block;
    line-height: 26px;
    color: #999;
    transition: all .5s;
    border-bottom: 1px solid transparent;
}

#c-product3 .c-list-box .c-list2 li.on a {
    color: #564c3f;
    border-color: #564c3f;
}


/* 推荐产品 */

#c-product5 {
    padding: 120px 0;
    background: #f5f5f5;
}

.c-banner3 {
    padding-top: 40px;
}

.c-banner3 .c-box {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.c-banner3 .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-banner3 .swiper-pagination-bullet {
    margin: 0 15px;
    opacity: 1;
    border: 1px solid #7e726d;
    background: transparent;
}

.c-banner3 .swiper-pagination-bullet-active {
    background: #7e726d;
}

.c-banner3 .c-prev {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/prev.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner3 .c-next {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/next.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner3 .c-prev:hover,
.c-banner3 .c-next:hover {
    opacity: 1;
}

.c-banner3 .c-wrap {
    position: relative;
    display: block;
    background: #fff;
}

.c-banner3 .c-wrap .c-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    overflow: hidden;
}

.c-banner3 .c-wrap .c-img-box img {
    max-width: 80%;
    max-height: 80%;
    transition: 1s;
}

.c-banner3 .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

.c-banner3 .c-wrap .c-text-box {
    position: relative;
    z-index: 5;
    padding: 0 30px 20px;
    text-align: center;
    transition: .5s;
}

.c-banner3 .c-wrap:hover .c-text-box {
    -webkit-transform: translateY(-20px) scale(1.1, 1.1);
    transform: translateY(-20px) scale(1.1, 1.1);
}

.c-banner3 .c-wrap .c-text-box .c-title {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    transition: all .5s;
}

.c-banner3 .c-wrap:hover .c-text-box .c-title {
    color: #fff;
}

.c-banner3 .c-wrap .c-text-box .c-text {
    line-height: 26px;
    color: #999;
}

.c-banner3 .c-wrap .c-mask {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    transition: .5s;
}

.c-banner3 .c-wrap:hover .c-mask {
    opacity: 1;
}

.c-banner3 .c-wrap .c-mask .c-ico {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff url(../images/xq-ico.png)no-repeat center / 20px auto;
}


/* 产品详情 */

#c-product4 {
    padding: 120px 0;
}

#c-product4 .c-box-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-product4 .c-left {
    position: relative;
    padding-right: 80px;
    width: 50%;
}

#c-product4 .c-right {
    width: 50%;
}

#c-product4 .c-right .c-title-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 25px 0;
}

#c-product4 .c-right .c-title-box .c-title {
    font-size: 36px;
    line-height: 46px;
    color: #53443b;
    width: -webkit-calc(100% - 80px);
    width: calc(100% - 80px);
}

#c-product4 .c-right .c-title-box .c-return {
    font-size: 14px;
    line-height: 24px;
    color: #999;
    transition: .5s;
}

#c-product4 .c-right .c-title-box .c-return:hover {
    color: #7d716c;
}

#c-product4 .c-right .c-text1 {
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    line-height: 26px;
    color: #666;
}

#c-product4 .c-right .c-text1 p {
    margin-bottom: 5px;
}

#c-product4 .c-right .c-text1 p:last-child {
    margin-bottom: 0;
}

#c-product4 .c-right .c-text1 span {
    font-weight: bold;
    color: #333;
}

#c-product4 .c-right .c-text2 {
    padding: 25px 0 50px;
    line-height: 26px;
    color: #999;
}

#c-product4 .c-right .c-collection {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 54px;
    color: #fff;
    background: #7d716c;
    transition: .5s;
}

#c-product4 .c-right .c-collection img {
    margin-right: 14px;
    height: 14px;
}

.c-banner4-top {
    background: #f8f8f8;
}

.c-banner4-top .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 568px;
}

.c-banner4-top .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

.c-banner4-bottom {
    padding: 20px 0;
}

.c-banner4-bottom .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 56px;
    background: #f8f8f8;
    border: 1px solid transparent;
    cursor: pointer;
}

.c-banner4-bottom .swiper-slide-thumb-active {
    border-color: #666;
}

.c-banner4-bottom .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

.c-banner4-bottom .c-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #eee;
}

.c-banner4-bottom .c-pagination .c-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #7d716c;
    transition: .5s;
}

#c-product4 .c-left .c-big-img {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #f8f8f8;
    overflow: hidden;
}

#c-product4 .c-left .c-magnifier {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    z-index: 10;
    background: rgba(0, 0, 0, .3);
}

#c-product4 .c-left .c-magnifier2 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 9;
    background: #fff url(../images/fdj-ico.png)no-repeat center / 20px auto;
}

#c-product4 .c-left .c-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
}


/* .c-banner4-bottom .swiper-pagination {
    top: auto;
    bottom: 0;
    background: #eee;
}

.c-banner4-bottom .swiper-pagination-progressbar-fill {
    background: #7d716c;
} */


/* 登录注册 */

.c-common-box2 {
    padding: 80px 0;
    background: #f5f5f5;
}

.c-common-box2 .c-box-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background: #fff;
}

.c-common-box2 .c-img-box {
    width: 50%;
    overflow: hidden;
}

.c-common-box2 .c-img-box img {
    width: 100%;
}

.c-common-box2 .c-form1 {
    padding: 110px 140px 30px;
    width: 50%;
}

.c-common-box2 .c-form1 .c-title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 34px;
    color: #7d716c;
    text-align: center;
}

.c-common-box2 .c-form1 .c-subtitle {
    margin-bottom: 100px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    text-align: center;
}

.c-common-box2 .c-list input {
    width: 100%;
    height: 34px;
    line-height: 34px;
}

.c-common-box2 .c-list li {
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.c-common-box2 .c-list #code {
    padding-right: 80px;
}

.c-common-box2 .c-list .c-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    cursor: pointer;
}

.c-common-box2 button {
    display: block;
    margin: 54px auto 100px;
    width: 228px;
    line-height: 60px;
    color: #fff;
    background: #7d716c;
    cursor: pointer;
}

.c-common-box2 .c-btn-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-common-box2 .c-btn-box a {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #333;
    transition: .5s;
}

.c-common-box2 .c-btn-box a:hover {
    color: #7d716c;
}

.c-common-box2 .c-form2 {
    width: 50%;
    position: relative;
    padding: 90px 140px 0;
}

.c-common-box2 .c-form2 .c-return {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #333;
    line-height: 26px;
}

.c-common-box2 .c-form2 .c-return:hover {
    color: #7d716c;
}

.c-common-box2 .c-form2 .c-code-text {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.c-common-box2 .c-form2 li {
    display: flex;
    align-items: center;
}

.c-common-box2 .c-name select {
    position: relative;
    width: 100px;
    line-height: 34px;
    padding: 0 42px 0 20px;
    background: url(../images/jt3.png)no-repeat right 20px center / 12px auto;
}

.c-common-box2 .c-name input {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
}

.c-common-box2 .c-name .c-select-box {
    position: relative;
}

.c-common-box2 .c-name .c-select-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    height: 14px;
    border-left: 1px solid #e5e5e5;
}

.c-common-box2 .c-phone .c-num {
    position: relative;
    width: 50px;
    line-height: 34px;
}

.c-common-box2 .c-phone .c-num::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
    height: 14px;
    border-left: 1px solid #e5e5e5;
}

.c-common-box2 .c-phone input {
    padding-left: 20px;
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
}

.c-common-box2 .c-text-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-common-box2 .c-text-box input {
    margin-right: 5px;
    width: 14px;
    height: 14px;
    border: 1px solid #7d716c;
    border-radius: 50%;
    cursor: pointer;
}

.c-common-box2 .c-text-box input.on {
    background: url(../images/xzbj.png)no-repeat center/ 10px;
}

.c-common-box2 .c-text-box p {
    color: #999;
    line-height: 26px;
}

.c-common-box2 .c-text-box a {
    color: #333;
    transition: .5s;
    text-decoration: underline;
}

.c-common-box2 .c-text-box a:hover {
    color: #7d716c;
}

.c-common-box2 .c-form2 button {
    margin: 35px auto;
}

.c-common-box2 .c-form2 .c-text2 {
    text-align: center;
    color: #999;
}


/* 用户 */

#c-user {
    padding: 120px 0;
    border-bottom: 1px solid #ddd;
}

#c-user .c-top-box .c-photo {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

#c-user .c-top-box .c-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-user .c-top-box .c-photo .c-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 36px;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, .65);
}

#c-user .c-top-box .c-title {
    padding: 25px 0;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

#c-user .c-top-box .c-btn-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 60px;
}

#c-user .c-top-box .c-btn-box .c-wrap {
    padding: 0 60px;
    border-right: 1px solid #e5e5e5;
}

#c-user .c-top-box .c-btn-box .c-wrap:last-child {
    border: 0;
}

#c-user .c-top-box .c-btn-box a {
    display: block;
    padding-top: 50px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #999;
}

#c-user .c-top-box .c-btn-box .c-phone {
    background: url(../images/bdsjh.png)no-repeat center top / auto 45px;
}

#c-user .c-top-box .c-btn-box .c-email {
    background: url(../images/xgyx.png)no-repeat center top / auto 45px;
}

#c-user .c-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #9e918c;
    background: -webkit-linear-gradient(left, #9e918c, #7d716c);
    background: linear-gradient(to right, #9e918c, #7d716c);
}

#c-user .c-list li {
    padding: 0 100px;
}

#c-user .c-list a {
    opacity: .5;
    position: relative;
    display: block;
    font-weight: bold;
    font-size: 24px;
    line-height: 80px;
    color: #fff;
}

#c-user .c-list a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    height: 10px;
    border-left: 2px solid transparent;
    transition: .5s;
}

#c-user .c-list li.on a {
    opacity: 1;
}

#c-user .c-list li.on a::before {
    border-color: #fff;
}

#c-user .c-list2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    color: #999;
    border: 1px solid #c4c4c4;
    border-top: 0;
}

#c-user .c-list2 li {
    padding: 0 80px 0 60px;
    font-size: 24px;
    line-height: 80px;
}

#c-user .c-list2.c-dt li:nth-child(1) {
    padding: 0 15px 0 80px;
    width: 43%;
    text-align: left;
}

#c-user .c-list2.c-dt li:nth-child(2) {
    padding: 0 15px;
    width: 20%;
    text-align: center;
}

#c-user .c-list2.c-dt li:nth-child(3) {
    padding: 0 15px;
    width: 20%;
    text-align: center;
}

#c-user .c-list2.c-dt li:nth-child(4) {
    padding: 0 80px 0 15px;
    width: 17%;
    text-align: right;
}

#c-user .c-list3 {
    margin-bottom: 60px;
}

#c-user .c-list3 li {
    display: flex;
    align-items: center;
    padding: 30px 80px 30px 60px;
    border: 1px solid #c4c4c4;
    border-top: 0;
}

#c-user .c-list3 .c-box1 {
    width: 120px;
    height: 120px;
    background: #f1f1f1;
    overflow: hidden;
}

#c-user .c-list3 .c-box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-user .c-list3 .c-box2 {
    padding: 0 200px 0 30px;
    width: -webkit-calc(100% - 180px);
    width: calc(100% - 180px);
}

#c-user .c-list3 .c-box2 .c-title {
    font-size: 18px;
    line-height: 28px;
}

#c-user .c-list3 .c-box2 .c-text {
    color: #999;
    height: 72px;
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

#c-user .c-list3 .c-box3 {
    width: 60px;
    text-align: right;
}

#c-user .c-list3 .c-box3 a {
    display: inline-block;
    padding-left: 22px;
    line-height: 26px;
    color: #999;
    background: url(../images/xzwd.png)no-repeat left center / 12px auto;
}

#c-user .c-list3 .c-box3 a:hover {
    text-decoration: underline;
}

#c-user .c-list4 {
    margin-bottom: 60px;
}

#c-user .c-list4 li {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border: 1px solid #c4c4c4;
    border-top: 0;
}

#c-user .c-list4 .c-box1 {
    display: flex;
    align-items: center;
    padding: 0 15px 0 30px;
    width: 43%;
}

#c-user .c-list4 .c-box2 {
    padding: 0 15px;
    width: 20%;
    text-align: center;
    line-height: 26px;
    color: #666;
}

#c-user .c-list4 .c-box3 {
    padding: 0 15px;
    width: 20%;
    text-align: center;
    line-height: 26px;
    color: #666;
}

#c-user .c-list4 .c-box4 {
    display: flex;
    justify-content: flex-end;
    padding-right: 80px;
    width: 17%;
    text-align: right;
    color: #e12c2c;
    line-height: 26px;
}

#c-user .c-list4 .c-box4 .c-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

#c-user .c-list4 .c-box1 .c-radio {
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    border: 1px solid #c4c4c4;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

#c-user .c-list4 li.on .c-box1 .c-radio {
    background: #7d716c;
}

#c-user .c-list4 .c-box1 .c-img-box {
    margin: 0 30px;
    width: 120px;
    height: 120px;
    border: 1px solid #eee;
    background: #f1f1f1;
    overflow: hidden;
}

#c-user .c-list4 .c-box1 .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-user .c-list4 .c-box1 .c-title {
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    font-size: 18px;
    line-height: 28px;
}

#c-user .c-btn-wrap {
    position: relative;
}

#c-user .c-btn-wrap .c-btn1 {
    position: absolute;
    top: 50%;
    left: 0;
    line-height: 26px;
    border-bottom: 1px solid #999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

#c-user .c-btn-wrap .c-btn2 {
    position: absolute;
    top: 50%;
    right: 0;
    width: 228px;
    line-height: 60px;
    text-align: center;
    border-bottom: 1px solid #999;
    color: #fff;
    background: #7d716c;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

#c-user .c-btn-wrap .c-page {
    margin: 0 auto;
    width: -webkit-calc(100% - 500px);
    width: calc(100% - 500px);
}


/* 产品系列 */

#c-product6 {
    padding: 120px 0;
    background: #f5f5f5;
}

#c-product6 .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -20px -55px;
    padding-top: 60px;
}

#c-product6 .c-list li {
    margin-bottom: 55px;
    padding: 0 20px;
    width: 33.333333%;
}

#c-product6 .c-list .c-wrap {
    display: block;
    cursor: default;
}

#c-product6 .c-list .c-wrap .c-img-box {
    position: relative;
    height: 322px;
    overflow: hidden;
}

#c-product6 .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-product6 .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-product6 .c-list .c-wrap .c-img-box .c-mask {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    transition: .5s;
}

#c-product6 .c-list .c-wrap .c-img-box .c-mask .c-ico {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff url(../images/xq-ico.png)no-repeat center / 20px auto;
}


/* #c-product6 .c-list .c-wrap:hover .c-img-box .c-mask {
    opacity: 1;
} */

#c-product6 .c-list .c-wrap .c-title {
    padding-top: 25px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #333;
}


/* 展厅环境 */

#c-exhibition {
    padding: 120px 0;
}

.c-banner5 {
    padding-top: 60px;
}

.c-banner5 .swiper-slide {
    transition: .5s;
}

.c-banner5 .swiper-slide img {
    width: 100%;
    height: 6rem;
    object-fit: cover;
}

.c-banner5 .swiper-slide .c-mask {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    transition: .5s;
}

.c-banner5 .swiper-slide-active .c-mask {
    opacity: 0;
}

.c-banner5 .swiper-slide .c-title {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 40px 2rem;
    line-height: 26px;
    text-align: center;
    color: #fff;
    background: rgba(121, 93, 63, .8);
    transition: .5s;
}

.c-banner5 .swiper-slide-active .c-title {
    opacity: 1;
}

.c-banner5 .swiper-slide-prev {
    transform: scale(.8) translateX(.8rem);
    -webkit-transform: scale(.8) translateX(.8rem);
}

.c-banner5 .swiper-slide-next {
    transform: scale(.8) translateX(-.8rem);
    -webkit-transform: scale(.8) translateX(-.8rem);
}

.c-banner5 .c-box {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.c-banner5 .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-banner5 .swiper-pagination-bullet {
    margin: 0 15px;
    opacity: 1;
    border: 1px solid #7e726d;
    background: transparent;
}

.c-banner5 .swiper-pagination-bullet-active {
    background: #7e726d;
}

.c-banner5 .c-prev {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/prev.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner5 .c-next {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/next.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner5 .c-prev:hover,
.c-banner5 .c-next:hover {
    opacity: 1;
}


/* 公共盒子3 */

.c-common-box3 {
    padding: 120px 0;
    background: #f5f5f5;
}

.c-common-box3 .c-list {
    padding-top: 55px;
    margin-bottom: -20px;
}

.c-common-box3 .c-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
}

.c-common-box3 .c-list li:nth-child(even) {
    flex-direction: row-reverse;
}

.c-common-box3 .c-list .c-img-box {
    width: 50%;
    height: 440px;
    overflow: hidden;
}

.c-common-box3 .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-common-box3 .c-list .c-text-box {
    padding: 70px;
    width: 50%;
}

.c-common-box3 .c-list .c-text-box .c-title {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    font-size: 36px;
    line-height: 46px;
    color: #7d716c;
}

.c-common-box3 .c-list .c-text-box .c-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.c-common-box3 .c-list .c-text-box .c-box .c-num {
    max-width: 20px;
    line-height: 26px;
    border-bottom: 1px solid #999;
    color: #999;
}

.c-common-box3 .c-list .c-text-box .c-box .c-text {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    padding-left: 40px;
    line-height: 26px;
    color: #666;
}


/* 专利资质、荣誉 */

.c-common-box4 {
    padding: 120px 0;
    background: #fff;
}

.c-banner6 {
    padding-top: 55px;
}

.c-banner6 .c-wrap {
    position: relative;
    background: #f8f8f8;
    cursor: pointer;
}

.c-banner6 .c-wrap .c-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 330px;
}

.c-banner6 .c-wrap .c-img-box img {
    max-width: 100%;
    max-height: 100%;
}

.c-banner6 .c-wrap .c-title {
    line-height: 26px;
    padding: 0 30px 25px;
    text-align: center;
}

.c-banner6 .c-wrap .c-mask {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    transition: .5s;
}

.c-banner6 .c-wrap:hover .c-mask {
    opacity: 1;
}

.c-banner6 .c-wrap .c-mask .c-ico {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff url(../images/xq-ico.png)no-repeat center / 20px auto;
}

.c-banner6 .c-box {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.c-banner6 .swiper-pagination {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    line-height: 24px;
}

.c-banner6 .swiper-pagination-bullet {
    margin: 0 15px;
    opacity: 1;
    border: 1px solid #7e726d;
    background: transparent;
    vertical-align: middle;
}

.c-banner6 .swiper-pagination-bullet-active {
    background: #7e726d;
}

.c-banner6 .c-prev {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/prev.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner6 .c-next {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/next.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner6 .c-prev:hover,
.c-banner6 .c-next:hover {
    opacity: 1;
}

.c-banner6 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.c-banner6 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.c-banner6 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.c-banner6 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.c-banner6 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.c-banner7-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: -10;
}

.c-banner7-wrap.on {
    z-index: 910;
}

.c-banner7 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-banner7 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76vh;
}

.c-banner7 .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

.c-banner7 .swiper-button-next,
.c-banner7 .swiper-button-prev {
    opacity: .6;
    width: 40px;
    height: 60px;
    margin-top: -30px;
    transition: .5s;
}

.c-banner7 .swiper-button-next {
    background: #fff url(../images/next.png)no-repeat center / 20px auto;
}

.c-banner7 .swiper-button-prev {
    background: #fff url(../images/prev.png)no-repeat center / 20px auto;
}

.c-banner7 .swiper-button-next:hover,
.c-banner7 .swiper-button-prev:hover {
    opacity: 1;
}

.c-banner7-wrap .c-close {
    position: fixed;
    top: 90%;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    color: #fff;
    background: #fff;
    border-radius: 50%;
    transition: .5s;
    cursor: pointer;
}

.c-banner7-wrap .c-close:after,
.c-banner7-wrap .c-close:before {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 10px;
    width: 30px;
    height: 2px;
    background: #7d716c;
    transition: .5s;
}

.c-banner7-wrap .c-close:hover {
    background: #7d716c;
}

.c-banner7-wrap .c-close:hover:after,
.c-banner7-wrap .c-close:hover:before {
    background: #fff;
}

.c-banner7-wrap .c-close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-banner7-wrap .c-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* 国际奖项 */

#c-prize {
    padding: 120px 0;
}

.c-banner8 {
    padding-top: 55px;
}

.c-banner8 .c-wrap {
    margin: 0 auto;
    width: 62.5%;
}

.c-banner8 .c-wrap .c-img-box {
    height: 480px;
    overflow: hidden;
}

.c-banner8 .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner8 .c-wrap .c-title {
    padding-top: 20px;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

.c-banner8 .swiper-button-next,
.c-banner8 .swiper-button-prev {
    margin-top: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .08);
    background: #fff;
    transition: .5s;
}

.c-banner8 .swiper-button-next {
    right: 9.375%;
    background: url(../images/next.png)no-repeat center / 8px auto;
}

.c-banner8 .swiper-button-prev {
    left: 9.375%;
    background: url(../images/prev.png)no-repeat center / 8px auto;
}

.c-banner8 .swiper-button-next:hover {
    background-color: #7d716c;
    background-image: url(../images/next-h.png);
}

.c-banner8 .swiper-button-prev:hover {
    background-color: #7d716c;
    background-image: url(../images/prev-h.png);
}


/* 视频鉴赏 */

#c-appreciate {
    padding: 120px 0 400px;
    background: #f5f5f5;
}

#c-appreciate-video {
    position: relative;
    margin-top: -350px;
}

#c-appreciate-video .c-box {
    position: relative;
}

#c-appreciate-video .c-box video {
    width: 100%;
}

#c-appreciate-video .c-box .c-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#c-appreciate-video .c-box .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-appreciate-video .c-box .c-wrap .c-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
}

#c-appreciate-video .c-box .c-wrap .c-mask .c-ico {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: url(../images/play.png)no-repeat center / 100%;
}

#c-appreciate-video .c-box .c-wrap .c-mask .c-ico::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border: 1px dashed rgba(255, 255, 255, .3);
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    animation: rotate 10s linear infinite;
    -webkit-animation: rotate 10s linear infinite;
}


/* 完美珠宝 */

#c-perfect {
    padding: 120px 0;
}

.c-banner9 {
    padding-top: 55px;
}

.c-banner9 .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f8f8f8;
}

.c-banner9 .swiper-slide .c-img-box {
    width: 46.8755%;
    height: 450px;
    overflow: hidden;
}

.c-banner9 .swiper-slide .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner9 .swiper-slide .c-text-box {
    padding: 70px;
    width: 53.125%;
}

.c-banner9 .swiper-slide .c-text-box .c-num {
    position: relative;
    padding-left: 55px;
    line-height: 26px;
    color: #7d716c;
}

.c-banner9 .swiper-slide .c-text-box .c-num::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 35px;
    border-top: 1px solid #7d716c;
}

.c-banner9 .swiper-slide .c-text-box .c-title {
    margin-bottom: 45px;
    padding: 10px 0 25px;
    border-bottom: 1px solid #eee;
    font-size: 36px;
    line-height: 46px;
    color: #7d716c;
}

.c-banner9 .swiper-slide .c-text-box .c-text {
    line-height: 26px;
    color: #666;
}

.c-banner9 .c-box {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.c-banner9 .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-banner9 .swiper-pagination-bullet {
    margin: 0 15px;
    opacity: 1;
    border: 1px solid #7e726d;
    background: transparent;
}

.c-banner9 .swiper-pagination-bullet-active {
    background: #7e726d;
}

.c-banner9 .c-prev {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/prev.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner9 .c-next {
    opacity: .5;
    width: 24px;
    height: 24px;
    background: url(../images/next.png)no-repeat center / auto 14px;
    cursor: pointer;
}

.c-banner9 .c-prev:hover,
.c-banner9 .c-next:hover {
    opacity: 1;
}


/* 公司简介 */

#c-about2 {
    padding: 120px 0;
    background: #fff;
}

#c-about2 .c-box-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#c-about2 .c-text-box {
    padding-top: 60px;
    width: 46.875%;
}

#c-about2 .c-img-box {
    width: 41%;
}

#c-about2 .c-img-box img {
    width: 100%;
}

#c-about2 .c-text-box .c-title {
    font-size: 48px;
    line-height: 58px;
}

#c-about2 .c-text-box .c-text {
    padding: 40px 0;
    line-height: 26px;
    color: #666;
}

#c-about2 .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: -40px;
}

#c-about2 .c-list li {
    width: 33.333%;
    margin-bottom: 40px;
}

#c-about2 .c-list .c-top {
    display: flex;
    align-items: flex-end;
    line-height: 1;
    color: #7d716c;
}

#c-about2 .c-list .c-top .c-num {
    font-size: 48px;
}

#c-about2 .c-list .c-top .c-text2 {
    margin-left: 10px;
    font-size: 18px;
    line-height: 28px;
}

#c-about2 .c-list .c-top .c-text2 {
    margin-left: 5px;
}

#c-about2 .c-list .c-title2 {
    padding-top: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}


/* 企业责任 */

#c-responsibility {
    padding: 120px 0;
    background: #f5f5f5;
}

#c-responsibility .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -30px;
    padding-top: 55px;
}

#c-responsibility .c-list li {
    margin-bottom: 50px;
    padding: 0 30px;
    width: 33.333333%;
}

#c-responsibility .c-list .c-wrap {
    display: block;
}

#c-responsibility .c-list .c-wrap .c-img-box {
    position: relative;
    height: 270px;
    overflow: hidden;
}

#c-responsibility .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-responsibility .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-responsibility .c-list .c-wrap .c-img-box .c-mask {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    transition: .5s;
}

#c-responsibility .c-list .c-wrap:hover .c-img-box .c-mask {
    opacity: 1;
}

#c-responsibility .c-list .c-wrap .c-img-box .c-mask .c-ico {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff url(../images/xq-ico.png)no-repeat center / 20px auto;
}

#c-responsibility .c-list .c-wrap .c-title {
    padding: 15px 0 10px;
    font-size: 24px;
    line-height: 34px;
    color: #333;
}

#c-responsibility .c-list .c-wrap .c-time {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

#c-responsibility .c-more-btn {
    display: block;
    margin: 0 auto;
    width: 272px;
    line-height: 72px;
    text-align: center;
    color: #fff;
    background: #7d716c;
}


/* 集团子公司 */

#c-subsidiary {
    padding: 120px 0;
    background: #fff;
}

#c-subsidiary .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -15px -30px;
    padding-top: 55px;
}

#c-subsidiary .c-list li {
    margin-bottom: 30px;
    padding: 0 15px;
    width: 33.333333%;
}

#c-subsidiary .c-list .c-wrap {
    position: relative;
    display: block;
    height: 500px;
    overflow: hidden;
    color: #fff;
}

#c-subsidiary .c-list .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-subsidiary .c-list .c-wrap:hover img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-subsidiary .c-list .c-wrap .c-title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    background: url(../images/zgs-bg.png)repeat-x left bottom;
    transition: .5s;
}

#c-subsidiary .c-list .c-wrap:hover .c-title {
    opacity: 0;
}

#c-subsidiary .c-list .c-wrap .c-mask {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transition: .5s;
}

#c-subsidiary .c-list .c-wrap:hover .c-mask {
    opacity: 1;
}

#c-subsidiary .c-list .c-wrap .c-mask .c-ico {
    margin: 0 auto 35px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff url(../images/lj-ico.png)no-repeat center / 20px auto;
}

#c-subsidiary .c-list .c-wrap .c-mask .c-title2 {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}


/* 发展历程 */

#c-history {
    padding: 120px 0;
    background: #f5f5f5;
}

.c-banner10-top {
    margin-top: 55px;
}

.c-banner10-top::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 9px;
    width: 100%;
    height: 1px;
    background: #b8b4af;
}

.c-banner10-top .c-num {
    font-size: 16px;
    line-height: 26px;
    color: #7c7469;
    text-align: center;
}

.c-banner10-top .c-line {
    margin: 0 auto;
    height: 20px;
    width: 2px;
    background: #b8b4af;
}

.c-banner10-top .swiper-slide-thumb-active .c-num {
    font-size: 24px;
    color: #7d716c;
}

.c-banner10-top .swiper-slide-thumb-active .c-line {
    background: #7d716c;
}

.c-banner10-bottom .swiper-slide {
    padding: 40px 40px 0;
}

.c-banner10-bottom .c-wrap {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.c-banner10-bottom .c-wrap .c-num {
    position: absolute;
    bottom: 0;
    right: 30px;
    font-size: 240px;
    line-height: 1;
    color: #7d716c;
    opacity: .05;
    -webkit-transform: translateY(40%);
    transform: translateY(40%);
}

.c-banner10-bottom .c-box-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 120px;
}

.c-banner10-bottom .c-box-wrap .c-img-box {
    width: 50%;
    height: 306px;
    overflow: hidden;
}

.c-banner10-bottom .c-box-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner10-bottom .c-box-wrap .c-text-box {
    padding: 30px 0 30px 60px;
    width: 50%;
}

.c-banner10-bottom .c-box-wrap .c-text-box .c-title {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    font-size: 48px;
    line-height: 28px;
    color: #7d716c;
}

.c-banner10-bottom .c-box-wrap .c-text-box .c-text {
    line-height: 26px;
    color: #666;
}

.c-banner10-bottom .swiper-button-next,
.c-banner10-bottom .swiper-button-prev {
    margin-top: -25px;
    width: 90px;
    height: 50px;
    background-color: #b7a59a;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px auto;
    transition: .5s;
}

.c-banner10-bottom .swiper-button-next {
    right: 0;
    background-image: url(../images/next-h.png);
}

.c-banner10-bottom .swiper-button-prev {
    left: 0;
    background-image: url(../images/prev-h.png);
}

.c-banner10-bottom .swiper-button-next:hover,
.c-banner10-bottom .swiper-button-prev:hover {
    background-color: #7d716c;
}

.c-banner10-bottom .swiper-button-disabled {
    opacity: 0;
}


/* 下单弹窗 */

#c-order {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 910;
    padding: 50px;
    width: 80%;
    max-width: 600px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

#c-order .c-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    background: #fff url(../images/close2.png)no-repeat center / 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 50%;
    cursor: pointer;
    transition: .5s;
}

#c-order .c-close:hover {
    background-color: #7d716c;
    background-image: url(../images/close.png);
}

#c-order .c-list1 {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    font-size: 24px;
    line-height: 34px;
}

#c-order .c-list-box {
    margin: 15px 0;
    height: 240px;
    overflow-y: auto;
}

#c-order .c-list2 {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 30px;
}

#c-order .c-list2 li {
    padding: 15px 0;
}

#c-order .c-list1 li,
#c-order .c-list2 li {
    width: 33.333333%;
    text-align: left;
}

#c-order .c-list1 li:nth-child(2),
#c-order .c-list2 li:nth-child(2) {
    padding: 0 30px;
    text-align: center;
}

#c-order .c-list1 li:nth-child(3),
#c-order .c-list2 li:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#c-order .c-list2 .c-reduce,
#c-order .c-list2 .c-add {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid#7d716c;
    cursor: pointer;
}

#c-order .c-list2 .c-reduce::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #7d716c;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-order .c-list2 .c-add::before,
#c-order .c-list2 .c-add::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #7d716c;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-order .c-list2 .c-add::after {
    width: 2px;
    height: 12px;
}

#c-order .c-list2 .c-add:hover,
#c-order .c-list2 .c-add:hover,
#c-order .c-list2 .c-reduce:hover {
    background: #7d716c;
}

#c-order .c-list2 .c-add:hover::before,
#c-order .c-list2 .c-add:hover::after,
#c-order .c-list2 .c-reduce:hover::before {
    background: #fff;
}

#c-order .c-list2 .c-num {
    padding: 0 10px;
    width: 52px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    overflow: hidden;
}

#c-order .c-btn {
    margin: 0 auto;
    width: 80%;
    font-size: 20px;
    line-height: 74px;
    text-align: center;
    color: #fff;
    background: #7d716c;
    cursor: pointer;
}

#c-order .c-text {
    padding-top: 30px;
    line-height: 26px;
    text-align: center;
    color: #999;
}


/* 法律声明 */

#c-statement {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}

#c-statement .c-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 60px;
    width: 1280px;
    max-width: 80%;
    max-height: 80vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
}

#c-statement .c-wrap .c-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #7d716c url(../images/close.png)no-repeat center / 20px;
    cursor: pointer;
}

#c-statement .c-box {
    max-height: -webkit-calc(80vh - 120px);
    max-height: calc(80vh - 120px);
    overflow-y: auto;
}

#c-statement .c-title {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
}

#c-statement .c-text-box {
    line-height: 2;
}


/* 头像修改\信息修改 */

.c-common-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.c-common-form .c-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #7d716c url(../images/close.png)no-repeat center / 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.c-common-form .c-title-box {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.c-common-form .c-box1 {
    padding: 30px 0;
}

.c-common-form .c-box1 .c-sc {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.c-common-form .c-box1 .c-sc .c-text {
    margin-right: 30px;
}

.c-common-form .c-box1 .c-input-box {
    position: relative;
    background: #7d716c;
}

.c-common-form .c-box1 .c-input-box p {
    max-width: 160px;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space: nowrap;
}

.c-common-form .c-box1 .c-input-box input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.c-common-form .c-box1 .c-img-box {
    margin: 0 auto;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.c-common-form .c-box1 .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-common-form button {
    display: block;
    margin: 0 auto;
    width: 130px;
    height: 50px;
    color: #fff;
    background: #7d716c;
    cursor: pointer;
}

.c-common-form .c-box2 {
    padding: 30px 0;
    font-size: 16px;
    line-height: 26px;
}

.c-common-form .c-box2 .c-top {
    display: flex;
    align-items: flex-end;
}

.c-common-form .c-box2 .c-top .c-photo {
    width: 130px;
    cursor: pointer;
}

.c-common-form .c-box2 .c-top .c-photo .c-img {
    width: 130px;
    height: 130px;
    border: 1px solid #eee;
    overflow: hidden;
}

.c-common-form .c-box2 .c-top .c-photo .c-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-common-form .c-box2 .c-top .c-photo .c-text {
    padding-top: 10px;
    text-align: center;
}

.c-common-form .c-box2 .c-top .c-tr-box {
    width: -webkit-calc(100% - 130px);
    width: calc(100% - 130px);
    padding: 0 0 36px 30px;
}

.c-common-form .c-box2 .c-wrap {
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.c-common-form .c-box2 .c-wrap .c-text2 {
    width: 64px;
}

.c-common-form .c-box2 .c-wrap input {
    padding: 0 10px;
    border: 1px solid #eee;
    width: -webkit-calc(100% - 64px);
    width: calc(100% - 64px);
    height: 36px;
    line-height: 34px;
}

.c-common-form .c-box2 .c-wrap select {
    padding: 0 34px 0 10px;
    border: 1px solid #eee;
    width: -webkit-calc(100% - 64px);
    width: calc(100% - 64px);
    height: 36px;
    line-height: 34px;
    background: url(../images/jt3.png)no-repeat right 10px center / 14px;
}

.c-common-form .c-box2 .c-bottom .c-wrap .c-text2 {
    width: 150px;
}

.c-common-form .c-box2 .c-bottom .c-wrap input {
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px);
}


/* 加载更多按钮 */

.c-common-btn {
    margin: 0 auto;
    width: 120px;
    line-height: 60px;
    text-align: center;
    background: #7d716c;
    color: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* 网站地图 */

#c-sitemap {
    padding: 120px 0;
    border-bottom: 1px solid #ddd;
}

#c-sitemap .c-box {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 80px;
    background: #f5f6f7;
}

#c-sitemap .c-list>li {
    padding: 80px 0;
    border-bottom: 1px solid #ccc;
}

#c-sitemap .c-list>li:last-child {
    border: 0;
}

#c-sitemap .c-list .c-title-box {
    font-size: 24px;
    line-height: 34px;
}

#c-sitemap .c-list .c-title-box a {
    font-weight: bold;
    color: #7d716c;
}

#c-sitemap .c-list2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 10px;
    margin: 0 -15px -10px;
}

#c-sitemap .c-list2>li {
    margin-bottom: 10px;
    padding: 0 15px;
    width: 20%;
    line-height: 26px;
}

#c-sitemap .c-list2 a {
    color: #666;
    transition: .5s;
}

#c-sitemap .c-list2 a:hover {
    color: #7d716c;
}


/* 法律声明 */

#c-statement2 {
    padding: 120px 0;
    border-bottom: 1px solid #ddd;
}

#c-statement2 .c-text-box {
    margin: 0 auto;
    max-width: 1400px;
    padding: 80px;
    background: #f5f6f7;
    line-height: 2;
}


/* 投递简历弹窗 */

#c-fixed-pop {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

#c-fixed-pop form {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 400px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-fixed-pop form .c-title-box {
    position: relative;
    padding: 0 30px;
    background: #7d716c;
}

#c-fixed-pop form .c-title-box .c-title {
    line-height: 60px;
    font-size: 20px;
    color: #fff;
}

#c-fixed-pop form .c-title-box .c-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    width: 80px;
    height: 60px;
    background: url(../images/close.png) no-repeat center center;
    background-size: 20px auto;
    cursor: pointer;
}

#c-fixed-pop form .c-box {
    padding: 30px;
    font-size: 14px;
}

#c-fixed-pop form input {
    margin-bottom: 20px;
    padding: 0 15px;
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
}

#c-fixed-pop form button {
    width: 100%;
    height: 50px;
    background: #7d716c;
    color: #fff;
    cursor: pointer;
}

#c-fixed-pop form .c-file {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#c-fixed-pop form .c-file .c-input-box {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    padding: 9px 15px;
    background: #7d716c;
}

#c-fixed-pop form .c-file input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
}

#c-fixed-pop form .c-file .c-text {
    color: #fff;
    text-align: center;
}

#c-fixed-pop form .c-file .c-text2 {
    line-height: 30px;
}

#c-fixed-pop .f_yanzheng {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#c-fixed-pop .f_yanzheng input {
    margin-bottom: 0;
    width: calc(100% - 256px) !important;
}

#c-fixed-pop .f_yanzheng img {
    width: 240px;
}

#c-fixed-pop .f_yanzheng {
    margin-bottom: 20px;
}

#c-fixed-pop .f_yanzheng input {
    margin-bottom: 0;
    width: calc(100% - 146px) !important;
}

#c-fixed-pop .f_yanzheng img {
    width: 130px;
}


/* .c-common-box2 .c-list li {
    position: relative;
}
.c-common-box2 .c-list .c-ts {
    position: absolute;
    top: 100%;
    right: 0;
    padding:20px;
    width: 40%;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.c-common-box2 .c-list #mima {
    width: 60%;
} */