@charset "UTF-8";

/***
 *      ┌─┐       ┌─┐
 *   ┌──┘ ┴───────┘ ┴──┐
 *   │                 │
 *   │       ───       │
 *   │  ─┬┘       └┬─  │
 *   │                 │
 *   │       ─┴─       │
 *   │                 │
 *   └───┐         ┌───┘
 *       │         │
 *       │         │
 *       │         │
 *       │         └──────────────┐
 *       │                        │
 *       │                        ├─┐
 *       │                        ┌─┘
 *       │                        │
 *       └─┐  ┐  ┌───────┬──┐  ┌──┘
 *         │ ─┤ ─┤       │ ─┤ ─┤
 *         └──┴──┘       └──┴──┘
 *                神兽保佑
 *               代码无BUG!


/* ---------------------------------------------- 全局 ----------------------------------------------*/

::-webkit-scrollbar {
    display: none
}

/* body {
    background: url('/images/contactUs/index.png') no-repeat center;
    height: 1852px;
    background-size: 100%;
} */

/* ------------------------------ 头部  ------------------------------ */
header {
    text-align: center;
    background: #0d4739;
    padding: 28px 0;
}

header img {
    width: 240px;
}

/* ------------------------------ 导航  ------------------------------ */
nav {
    padding: 31px 0;
    margin-bottom: 13px;
}

nav ul {
    width: 680px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

nav ul li {
    display: inline-block;
    letter-spacing: 0px;
    font-weight: 500;
}

nav ul li a {
    color: #373435;
    text-decoration: none;
}

/* ------------------------------ 导航产品下拉 ------------------------------ */
nav {
    position: relative;
}

.nav-products {
    position: static;
}

.nav-dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 19%;
    top: 95%;
    width: 62%;
    background: #efefef;
    z-index: 99;
    padding: 40px 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-dropdown.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* 滚动容器 */
.dropdown-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.dropdown-scroll .disp {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.35s ease;
    justify-content: flex-start;
}

/* 箭头按钮 */
.dropdown-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.08);
    color: #373435;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    padding: 0;
    transition: background 0.2s;
}

.dropdown-arrow:hover {
    background: rgba(0, 0, 0, 0.15);
}

.dropdown-arrow.visible {
    display: block;
}

.dropdown-arrow-left {
    left: 6px;
}

.dropdown-arrow-right {
    right: 6px;
}

.nav-dropdown ul {
    width: 92%;
    margin: auto;
    justify-content: space-between;
}

.nav-dropdown li {
    width: 119px;
    flex-shrink: 0;
    margin-right: 15px;
    text-align: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.nav-dropdown li:nth-child(1) { transition-delay: 0.05s; }
.nav-dropdown li:nth-child(2) { transition-delay: 0.1s; }
.nav-dropdown li:nth-child(3) { transition-delay: 0.15s; }
.nav-dropdown li:nth-child(4) { transition-delay: 0.2s; }
.nav-dropdown li:nth-child(5) { transition-delay: 0.25s; }
.nav-dropdown li:nth-child(6) { transition-delay: 0.3s; }
.nav-dropdown li:nth-child(7) { transition-delay: 0.35s; }
.nav-dropdown li:nth-child(8) { transition-delay: 0.4s; }
.nav-dropdown li:nth-child(9) { transition-delay: 0.45s; }
.nav-dropdown li:nth-child(10) { transition-delay: 0.5s; }
.nav-dropdown li:nth-child(11) { transition-delay: 0.55s; }
.nav-dropdown li:nth-child(12) { transition-delay: 0.6s; }

.nav-dropdown.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-dropdown li img {
    width: 100%;
}

.nav-dropdown li p {
    font-size: 13px;
    color: #373435;
    margin-top: 12px;
    letter-spacing: 0px;
}

/* ------------------------------ afterSales  ------------------------------ */
.afterSales {
    width: 1080px;
    margin: auto;
    margin-bottom: 210px;
}

.afterSales p {
    text-align: center;
    font-size: 27px;
    color: #373435;
    margin-top: 125px;
    font-weight: bolder;
    letter-spacing: 0px;
    margin-bottom: 130px;
}

.afterSales .image {
    text-align: center;
}

.afterSales .text {
    margin-top: 102px;
    justify-content: space-between;
    margin-bottom: 172px;
}

.afterSales .text h1 {
    font-size: 29px;
    color: #373435;
    font-weight: bold;
    letter-spacing: 0px;
    line-height: 37px;
}

.afterSales .text h2 {
    font-size: 16px;
    color: #000000;
    width: 830px;
    line-height: 17px;
    /* text-align: justify; */
    margin-top: 6px;
    letter-spacing: 0px;
}

.afterSales .text2 {
    margin-bottom: 113px;
}

/* ------------------------------ 底部  ------------------------------ */
footer {
    background: #0d4739;
    padding: 123px 0 45px;
    margin-top: 80px;
    padding-bottom: 188px;
    position: relative;
}
footer #dianjimd{
   position: absolute;
    right: 5.1%;
    top: 15%;
}
.footer-nav ul li {
    margin-bottom: 14px;
}

.footer-nav ul li a {
    color: #fff;
    font-size: 15px;
    /* font-weight: bold; */
    letter-spacing: 0px;
        display: block;
}

.footer-nav ul li:first-child a {
    /* font-weight: bold; */
}


.footer-brand {
    width: 242px;
    margin-top: 72px;
}

.footer-brand .logo {
    color: #d9c9a3;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0px;
}

.footer-brand .logo sub {
    font-size: 14px;
    margin-left: 4px;
}

.footer-line {
    height: 1px;
    background: rgb(63 86 82);
    margin: 32px 0;
}

.footer-brand .service {
    color: #fff;
    font-size: 20px;
    margin-bottom: 23px;
    text-align: right;
    margin-top: -3px;
    font-family: PingFang_Regular;
}

.footer-brand .phone {
    color: #fff;
    font-size: 24px;
    letter-spacing: 0px;
    margin-left: 3px;
    text-align: right;
    font-family: PingFang_Regular;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.footer-social a {
      display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border: 1px solid rgb(245 247 246);
    border-radius: 50%;
    margin-left: 49px;
    transition: all 0.3s;
}

.footer-social a svg {
    width: 42px;
    height: 23px;
    fill: #fff;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cont {
    width: 1530px;
    margin: 0 auto;
    border-top: 1px solid #435754;
    border-bottom: 1px solid #435754;
    padding-bottom: 66px;
}

.footer-nav {
    margin-top: 70px;
}

.footer-nav ul {
    margin-right: 115px;
}

.footer-top {
    justify-content: space-between;
}

.footer-line2 {
    margin: 26px 0;
}

/* brand */


/* ------------------------------ brand ------------------------------ */

.brand-hero {
    position: relative;
}

.brand-hero img {
    width: 100%;
    display: block;
}

.hero-text {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-text h1 {
    font-size: 56px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0px;
}

.hero-text p {
    font-size: 20px;
    color: #fff;
    margin-top: 14px;
    letter-spacing: 0px;
}

/* ------------------------------ 数据 ------------------------------ */
.brand-stats {

}

.brand-stats-title {
    font-size: 19px;
    color: #000;
    line-height: 27px;
    letter-spacing: 0;
     text-align: justify; 
    width: 1284px;
    margin: auto;
    margin-top: 74px;
}
.brand-stats {
	width: 1284px;
	margin: 152px auto 0;
}
.brand-stats img {
	display:block;
	width:593px;
	margin:auto;
}
.stats-grid {
	display: flex;
	gap: 030px 0;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: space-between;
}
.stat-item {
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-item:nth-child(1) {/* grid-column: 1 / span 2; */}
.stat-item:nth-child(2) {/* grid-column: 3 / span 2; */}
.stat-item:nth-child(3) {/* grid-column: 5 / span 2; */margin-right: 0;}
.stat-item:nth-child(4) {/* grid-column: 1 / span 3; */}
.stat-item:nth-child(5) {/* grid-column: 4 / span 3; */}
.stat-item.visible {
	opacity: 1;
	transform: translateY(0);
}
.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }
.stat-item:nth-child(5) {transition-delay: 0.5s;margin-right: 0;}
.stat-number {
	font-size: 070px;
	font-weight: bold;
	color: #1a1a1a;
	line-height: 1;
	margin-bottom: 010px;
}
.stat-number sup {
	font-size: 035px;
	vertical-align: super;
	margin-left: 002px;
}
.stat-number span{
    font-family: AdobeArabic-Bold;
}
.stat-desc {
	font-size: 013px;
	color: #555;
	line-height: 020px;
	letter-spacing: 0;
}

/* ------------------------------ 关于 ------------------------------ */
.brand-about {
    width: 1279px;
    margin: 138px auto 0;
}

.brand-about h1 {
    font-size: 40px;
    color: #000;
    margin-top: 132px;
    font-family: Vilsuve-Regular;
}

.about-text {
    margin-top: 37px;
}

.about-text p {
    font-size: 16px;
    color: #000;
    line-height: 29px;
    letter-spacing:0;
     text-align: justify; 
    margin-bottom: 27px;
}

/* ------------------------------ 工艺体系 ------------------------------ */
.brand-craft {
    width: 1279px;
    margin: 137px auto 221px;
}

.craft-text {
    display: flex;
    justify-content: space-between;
    margin-top: 98px;
}

.craft-text h1 {
    font-size: 29px;
    color: #000;
    font-weight: bold;
    margin-top: 34px;
    line-height: 31px;
    letter-spacing:0px;
}

.craft-text p {
    font-size: 19px;
    color: #000;
    line-height: 31px;
    letter-spacing: 0;
     text-align: justify; 
    margin-top: 33px;
    width: 754px;
}

/* ------------------------------ 品牌使命 ------------------------------ */
.brand-mission {
    margin-top: 140px;
    background-size: cover;
    padding: 15px 0;
    margin-bottom: 167px;
}

.mission-inner {
    width: 1025px;
    margin: auto;
}

.mission-inner h1 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0px;
}

.mission-inner p {
    font-size: 17px;
    color: #000;
    line-height: 26px;
    letter-spacing: 0;
    margin-top: 27px;
     text-align: justify; 
}

/* ------------------------------ 全球视野 ------------------------------ */
.brand-vision {
    background-size: cover;
    padding: 189px 0;
    margin-bottom: 20px;
}

.vision-inner {
    width: 1150px;
    margin: auto;
}

.vision-inner h1 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0px;
}

.vision-inner h2 {
    font-size: 28px;
    color: #000;
    letter-spacing: 0px;
    margin-top: 18px;
    font-weight: bold;
    line-height: 31px;
}

.vision-inner p {
    font-size: 17px;
    color: #000;
    line-height: 26px;
    letter-spacing: 0;
    margin-top: 55px;
     text-align: justify; 
}


/* ------------------------------ 透明工艺 ------------------------------ */
.transparentProcess {
    margin-bottom: 121px;
}

.transparentProcess p {
    text-align: center;
    color: #373435;
    font-size: 28px;
    font-weight: bold;
    margin-top: 101px;
}

.transparentProcess h1 {
    width: 850px;
    margin: 92px auto;
    color: #242424;
    line-height: 26px;
    /* text-align: justify; */
}

.transparentProcess img {
    margin: auto;
    display: block;
}

/* ------------------------------ maintenance ------------------------------ */
.maintenance {
    width: 832px;
    margin: auto;
    margin-bottom: 114px;
}

.maintenance h1 {
    font-size: 28px;
    color: #373435;
    font-weight: bold;
    letter-spacing: 0;
    margin-top: 144px;
}

.maint-sub {
    /* text-align: justify; */
    font-size: 14px;
    color: #333;
    line-height: 22px;
    letter-spacing:0;
    margin-top: 73px;
}

.maint-section {
    margin-top: 69px;
    padding-top: 62px;
    border-top: 1px solid #909093;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.maint-section:first-child {
    border-top: none;
    padding-top: 0;
}

.maint-section h2 {
    font-size: 28px;
    color: #373435;
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 95px;
}

.maint-item {
    margin-top: 65px;
}

.maint-item p {
    display: flex;
    font-size: 14px;
    color: #333;
    line-height: 24px;
    letter-spacing: 0;
    /* text-align: justify; */
    margin-top: 34px;
}

.maint-item p span {
    flex-shrink: 0;
    margin-right: 7px;
}

.maint-item .maint-title {
    color: #373435;
    font-size: 28px;
    color: #333;
    line-height: 26px;
    letter-spacing: 0;
    text-align: justify;
    font-weight: bold;
}

/* 真皮家具 */
.maint-leather {}

/* 布艺家具 */
.maint-fabric {}

/* 木质家具 */
.maint-material,
.maint-wooden {
    margin-top: 111px;
}

.maint-material .maint-item,
.maint-wooden .maint-item {
    margin-top: 60px;
}

.maint-material .maint-item p,
.maint-wooden .maint-item p {
    margin-top: 41px;
    line-height: 22px;
}

.maint-material .maint-item span,
.maint-wooden .maint-item span {
    margin-top: 3px;
    font-size: 19px;
    margin-right: 28px;
    color: #646466;
}

.maint-material h2,
.maint-wooden h2 {
    margin-bottom: 0;
}


/* ------------------------------ Secure Packaging ------------------------------ */

.securePackaging {
    width: 1034px;
    margin: auto;
    margin-bottom: 121px;
}

.securePackaging>p {
    text-align: center;
    margin-top: 124px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 114px;
}

.securePackaging .text {
    margin-top: 100px;
}

.securePackaging .text .left {
    width: 48.5%;
    margin-left: 32px;
    border-right: 1px solid #cecfd1;
    padding-top: 1px;
    padding-bottom: 10px;
}

.securePackaging .text .right {
    margin-left: 83px;
    margin-top: 2px;
    flex: 1;
}

.securePackaging .text p {
    font-size: 28px;
    font-weight: bold;
    line-height: 35px;
}

.securePackaging .text h1 {
    margin-top: 21px;
    line-height: 21px;
    font-size: 14px;
    /* text-align: justify; */
    margin-left: 2px;
    width: 455px;
}

.securePackaging .text .right h1 {
    width: 410px;
}

/* ------------------------------ 首页 ------------------------------ */
.index_banner {
    position: relative;
}

.index_banner .swiper-pagination {
    width: 100%;
    bottom: -5%;
}

.index_banner .swiper-slide img {
    width: 100%;
}

.index_banner .swiper-pagination-bullet {
    background: #a9abae;
    width: 61px;
    height: 2px;
    margin: 0px 4px;
    opacity: 1;
    border-radius: 0;
}

.index_banner .swiper-pagination .swiper-pagination-bullet-active {
    background: #0d4739;
    opacity: 1;
    border-radius: 0;
}

/* ------------------------------ 首页内容 ------------------------------ */
.index-intro {
    margin: auto;
    padding-top: 174px;
    margin-left: 16.6%;
}

.index-intro .intro-small {
    font-size: 24px;
    color: #848688;
    letter-spacing: 0;
    font-weight: bold;
}

.index-intro h1 {
    font-size: 50px;
    color: #000000;
    font-weight: bold;
    margin-top: 11px;
    line-height: 47px;
    letter-spacing: 0px;
    margin-left: 18.09%;
}

.index-intro h2 {
    font-size: 17px;
    color: #373435;
    letter-spacing: 0px;
    margin-top: 15px;
    margin-left: 18.4%;
    font-weight: bold;
    line-height: 28px;
}

.intro-sub {
    font-size: 13px;
    color: #666;
    letter-spacing: 0px;
    margin-top: 10px;
}

.intro-desc {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

/* ------------------------------ 产品分类 ------------------------------ */
.index-category {
    margin: 112px auto 0;
}

.index-category ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0;
    grid-auto-rows: minmax(99px, auto);
}

.index-category li {
    border: 1px solid #202020;
    margin-left: -1px;
    margin-top: -1px;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.index-category li:nth-child(1) { transition-delay: 0.1s; }
.index-category li:nth-child(2) { transition-delay: 0.2s; }
.index-category li:nth-child(3) { transition-delay: 0.3s; }
.index-category li:nth-child(4) { transition-delay: 0.4s; }
.index-category li:nth-child(5) { transition-delay: 0.5s; }
.index-category li:nth-child(6) { transition-delay: 0.6s; }
.index-category li:nth-child(7) { transition-delay: 0.7s; }
.index-category li:nth-child(8) { transition-delay: 0.8s; }

.index-category.in-view li {
    opacity: 1;
    transform: translateX(0);
}
.index-category.in-view li:last-child{
    border: 1px solid #202020 !important;
}
.index-category li a {
    display: block;
}

.index-category li .image img {
    width: 100%;    height: 481px;
}

.index-category li p {
    font-size: 18px;
    color: #373435;
    letter-spacing: 0px;
    margin-top: 19px;
    margin-left: 25px;
}

.index-category li .flex {
    margin-top: 47px;
    margin-bottom: 18px;
}

.index-category li .flex h1 {
    margin-left: 27px;
    border: 1px solid #e6e6e6;
    color: #101010;
    font-size: 7px;
    padding: 3px 5px;
    margin-top: 0px;
}

.index-category li .flex img {
    width: auto;
    margin-right: 24px;
    margin-top: 4px;
}

/* ------------------------------ 生活美学 ------------------------------ */
.index-lifestyle {
    margin-top: 212px;
    cursor: pointer;
}

/* ------------------------------ 系列 ------------------------------ */
.index-collections {
    background: #f4f1ec;
    padding-bottom: 118px;
}

.index-collections .intro-small {
    font-family: AdobeArabic-Italic;
    font-size: 37px;
    text-align: center;
    padding-top: 112px;    color: #000;
}

.index-collections h1 {
    font-size: 44px;
    color: #373435;
    margin-top: -4px;
    letter-spacing: 0;
    text-align: center;
    color: #000;
    font-family: Vilsuve-Regular;
}

.index-collections .intro-sub {
    margin-top: 76px;
    margin-bottom: 60px;
    text-align: center;
}

.index-collections .intro-sub a {
    font-size: 16px;
    letter-spacing: 0.5px;
    border: 1px solid #d4d1cd;
    padding: 5px 9px;
}

.index-collections ul {
    justify-content: space-between;
    width: 1354px;
    margin: auto;
    margin-top: 99px;
}

.index-collections li {
    width: 29.2%;
    padding-bottom: 66px;
    border-radius: 24px;
    background: #fefefe;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.index-collections li:nth-child(1) { transition-delay: 0.1s; }
.index-collections li:nth-child(2) { transition-delay: 0.25s; }
.index-collections li:nth-child(3) { transition-delay: 0.4s; }

.index-collections.in-view li {
    opacity: 1;
    transform: translateX(0);
}
.index-collections li .image {
   border-radius: 24px 24px 0 0;
}
.index-collections li img {
    width: 100%;
}

.index-collections li p {
    font-size: 24px;
    color: #373435;
    font-weight: bold;
    letter-spacing: 0px;
    margin-top: 18px;
    text-align: center;
    margin-top: 66px;
}

/* ------------------------------ 工艺 ------------------------------ */
.index-craft {
    width: 1381px;
    margin: 211px auto 210px;
}

.index-craft ul {
    justify-content: space-between;
    flex-wrap: wrap;
}

.index-craft li {
    /* width: 23.5%; */
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.index-craft li:nth-child(1) { transition-delay: 0.1s; }
.index-craft li:nth-child(2) { transition-delay: 0.2s; }
.index-craft li:nth-child(3) { transition-delay: 0.3s; }
.index-craft li:nth-child(4) { transition-delay: 0.4s; }
.index-craft li:nth-child(5) { transition-delay: 0.5s; }
.index-craft li:nth-child(6) { transition-delay: 0.6s; }

.index-craft.in-view li {
    opacity: 1;
    transform: translateX(0);
}

.index-craft li:nth-child(1) {
    width: 690px;
}

.index-craft li:nth-child(2) {
    width: 345px;
}

.index-craft li:nth-child(3) {
    width: 346px;
}

.index-craft li:nth-child(4) {
    width: 346px;
}

.index-craft li:nth-child(5) {
    width: 345px;
}

.index-craft li:nth-child(6) {
    width: 690px;
}

.index-craft li img {
    width: 100%;
    filter: grayscale(100%);
    height: 100%;
}

.index-craft h1 {
    font-size: 27px;
    font-weight: bold;
    line-height: 31px;
        color: #000;
    letter-spacing: 0;
    text-align: left;
    margin-top: 113px;
}

.index-craft p {
    letter-spacing: 0.5px;
    /*width: 641px;*/
    width: 602px;
    text-align: justify;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
    margin-top: 113px;
}

/* ------------------------------ 联系 ------------------------------ */
.index-contact {
    width: 1157px;
    margin: 142px auto 0;
    padding-bottom: 117px;
}

.index-contact h1 {
   font-size: 37px;
    color: #000000;
    letter-spacing: -1px;
    text-align: center;
}

.contact-info {
    margin-top: 78px;
    /* justify-content: space-between; */
    padding-left: 166px;
}

.info-item {
    display: flex;
}

.info-label {
    font-size: 22px;
    color: #000;
}

.info-line {
    width: 2px;
    background: #c9c9c9;
    margin: 0 14px 0 12px;
    align-self: stretch;
}

.info-text p {
    font-size: 14px;
    color: #000;
    line-height: 18px;
    letter-spacing: 0;
    margin-bottom: 14px;
    max-width: 412px;
    margin-top: -1px;
}

.contact-form {
    margin-top: 134px;
}

.form-row {
    justify-content: space-between;
}

.form-row .form-group {
    width: 31.5%;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    font-size: 19px;
    color: #000;
    margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
    width: 91%;
    border: 1px solid #a9abad;
    padding: 9px 16px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border-radius: 7px;
}

.form-group textarea {
    height: 197px;
    resize: vertical;
    width: 97%;
}

.index-contact button {
    display: block;
    margin-left: auto;
    background: #0d4739;
    color: #fff;
    border: none;
    padding: 8px 40px;
    font-size: 24px;
    letter-spacing: 0px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 78px;
}

.index-contact button:hover {
    background: #0a3a2e;
}

.index-weioj {
    width: 1278px;
    margin: 210px auto 213px;
}

.index-weioj .text {
    display: flex;
    justify-content: space-between;
    margin-top: 118px;
}

.index-weioj .text p {
    font-size: 27px;
    font-weight: bold;
    line-height: 31px;
    letter-spacing: 0;
    color: #000;
}

.index-weioj .text h1 {
    width: 615px;
     text-align: justify; 
    font-size: 17px;
    margin-top: 4px;
    line-height: 21px;
    color: #000000;
}

/*  */
.products-container {
    width: 1260px;
    margin: auto;
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    margin-top: 71px;
        flex-wrap: wrap;
    line-height: 26px;
}

.products-breadcrumb a {
    font-size: 13px;
    color: #3a3737;
    text-decoration: none;
}

.products-breadcrumb span {
    margin: 0 8px;
    color: #3a3737;
}

.products-container .title {
    font-size: 27px;
    font-weight: bold;
    line-height: 31px;
    letter-spacing:0px;
    margin-top: 18px;
    margin-left: -2px;
}

.products-container ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 48px 37px;
    margin-top: 38px;
    margin-bottom: 144px
}

.products-container ul li {
    width: 287px;
}

.products-container ul li .flex {
    margin-top: 21px;
    width: 287px;
}

.products-container ul li .flex h1 {
    font-size: 10px;
    color: #484545;
}

.products-container ul li .flex h2 {
    font-size: 10px;
    color: #484545;
}

/* 分页器 */
.products-container .products-pages {
    margin-top: -84px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-container .products-pages li {
    width: auto;
    margin: 0 15px;
}

.products-container .products-pages li a {
    display: inline-block;
    min-width: 0;
    height: auto;
    line-height: 1;
    padding: 0;
    font-size: 17px;
    color: #a3a3a3;
    text-decoration: none;
    border: none;
    border-radius: 0;
    background: none;
    letter-spacing: 1px;
}

.products-container .products-pages li a:hover {
    color: #78a595;
}

/* 当前页高亮 */
.products-container .products-pages li.active a,
.products-container .products-pages li.thisclass a {
    color: #78a595;
    background: none;
}

/* 上一页/下一页文字替换为箭头 */
.products-container .products-pages li:first-child a,
.products-container .products-pages li:last-child a {
    font-size: 0;
}

.products-container .products-pages li:first-child a::before {
    content: '<';
    font-size: 20px;
}

.products-container .products-pages li:last-child a::before {
    content: '>';
    font-size: 20px;
}
/* 视频容器  */

.video-container {
    width: 864px;
    margin: auto;
    margin-top: 123px;
        margin-bottom: 104px;
}

.video-container ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 28px;
}

.video-container ul li {
    background: #a9abae;
    height: 259px;
    position: relative;
    cursor: pointer;
}

.video-container ul li img {}

.video-container ul li img.video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#container {
    width: 100%;
    height: 743px;
    margin-top: 30px;
}

/* ==================================================================================
   自适应媒体查询（desktop-first）
   断点：1600 / 1440 / 1200 / 992 / 768 / 480
   ========================================================================== */

/* 全局图片防溢出 */
img {
    max-width: 100%;
    height: auto;
}

/* ------------------------------ ≤1600px ------------------------------ */
@media (max-width: 1600px) {
    .cont {
        width: 92%;
    }
}

/* ------------------------------ ≤1440px ------------------------------ */
@media (max-width: 1440px) {
    body {
        height: auto;
        background-size: cover;
    }

    .brand-stats {
        width: 90%;
    }

    .brand-stats-title {
        width: 90%;
    }

    .brand-about {
        width: 90%;
    }

    .brand-craft {
        width: 90%;
    }

    .mission-inner {
        width: 90%;
    }

    .vision-inner {
        width: 90%;
    }

    .afterSales {
        width: 92%;
    }

    .securePackaging {
        width: 92%;
    }

    .maintenance {
        width: 92%;
    }

    .video-container {
        width: 92%;
    }

    .index-collections ul {
        width: 94%;
    }

    .index-craft {
        width: 94%;
    }

    .index-contact {
        width: 94%;
    }

    .index-weioj {
        width: 94%;
    }

    .products-container {
        width: 94%;
    }

    .index-weioj .flex .image {
        width: 49%;
    }

    .index-weioj .flex .image img {
        width: 100%;
    }
}

/* ------------------------------ ≤1200px ------------------------------ */
@media (max-width: 1200px) {
    .cont {
        width: 94%;
    }

    .afterSales .text h2 {
        width: 100%;
    }

    .craft-text p {
        width: 100%;
    }

    .transparentProcess h1 {
        width: 90%;
    }

    .securePackaging .text h1,
    .securePackaging .text .right h1 {
        width: 100%;
    }

    .index-craft li:nth-child(1),
    .index-craft li:nth-child(6) {
        width: 50%;
    }

    .index-craft li:nth-child(2),
    .index-craft li:nth-child(3),
    .index-craft li:nth-child(4),
    .index-craft li:nth-child(5) {
        width: 25%;
    }

    .index-craft p {
        width: 100%;
    }

    .index-weioj .text h1 {
        width: 55%;
    }

    .products-container ul li,
    .products-container ul li .flex {
        width: 100%;
    }

    .contact-info {
        padding-left: 60px;
    }

    .nav-dropdown {
        left: 10%;
        width: 80%;
    }

    .nav-dropdown ul {
        width: 94%;
    }
}

/* ------------------------------ ≤992px（平板） ------------------------------ */
@media (max-width: 992px) {
    nav ul {
        width: auto;
        padding: 0 4%;
    }

    .nav-dropdown ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 0;
    }

    .nav-dropdown li {
        width: 30%;
    }

    /* 992px以下隐藏箭头，恢复换行 */
    .dropdown-arrow {
        display: none !important;
    }

    .dropdown-scroll {
        overflow: visible;
    }

    .dropdown-scroll .disp {
        flex-wrap: wrap;
        transform: none !important;
    }

    .nav-dropdown li {
        flex-shrink: initial;
    }

    /* brand 工艺体系 */
    .craft-text {
        flex-direction: column;
    }

    .craft-text p {
        margin-top: 25px;
    }

    /* afterSales 文字区块 */
    .afterSales .text {
        flex-direction: column;
    }

    .afterSales .text h2 {
        margin-top: 20px;
    }

    /* securePackaging 左右布局 */
    .securePackaging .text {
        flex-direction: column;
    }

    .securePackaging .text .left {
        width: 100%;
        margin-left: 0;
        border-right: none;
        border-bottom: 1px solid #cecfd1;
        padding-bottom: 40px;
    }

    .securePackaging .text .right {
        margin-left: 0;
        margin-top: 40px;
    }

    /* 首页分类 */
    .index-category ul {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 首页系列 */
    .index-collections ul {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .index-collections li {
        width: 47%;
    }

    /* 首页工艺 */
    .index-craft li:nth-child(1),
    .index-craft li:nth-child(2),
    .index-craft li:nth-child(3),
    .index-craft li:nth-child(4),
    .index-craft li:nth-child(5),
    .index-craft li:nth-child(6) {
        width: 50%;
    }

    .index-craft .jsp {
        flex-direction: column;
        align-items: flex-start;
    }

    .index-craft p {
        margin-top: 30px;
    }

    /* 首页 weioj 区块 */
    .index-weioj .text {
        flex-direction: column;
        align-items: flex-start;
    }

    .index-weioj .text h1 {
        width: 100%;
        margin-top: 25px;
    }

    /* 联系区块 */
    .contact-info {
        flex-direction: column;
        padding-left: 0;
    }

    .contact-info .info-item {
        margin-left: 0 !important;
    }

    .contact-info .info-item + .info-item {
        margin-top: 40px;
    }

    /* 产品页 */
    .products-container ul {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 视频页 */
    .video-container ul {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 底部 */
    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-nav ul {
        margin-right: 60px;
        margin-bottom: 25px;
    }

    .footer-brand {
        margin-top: 30px;
    }

    /* 地图 */
    #container {
        height: 500px;
    }
}

/* ------------------------------ ≤768px（手机横屏/小平板） ------------------------------ */
@media (max-width: 768px) {
    /* 头部 */
    header {
        padding: 20px 0;
    }

    header img {
        width: 180px;
    }

    /* 导航 */
    nav {
        padding: 20px 0;
    }

    nav ul {
        padding: 0 3%;
    }

    nav ul li {
        font-size: 13px;
    }

    .nav-dropdown {
        left: 0;
        width: 100%;
        padding: 25px 15px;
    }

    .nav-dropdown ul {
        width: 100%;
    }

    /* brand hero */
    .hero-text {
        top: 60px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 16px;
        letter-spacing: 0px;
    }

    /* brand 各区块间距 */
    .brand-stats {
        margin-top: 80px;
    }

    .brand-about {
        margin-top: 70px;
    }

    .brand-about h1 {
        font-size: 32px;
        margin-top: 60px;
    }

    .brand-craft {
        margin: 70px auto 100px;
    }

    .craft-text {
        margin-top: 50px;
    }

    .brand-mission {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .mission-inner h1 {
        font-size: 28px;
    }

    .brand-vision {
        padding: 100px 0;
    }

    .vision-inner h2 {
        font-size: 22px;
    }

    .vision-inner p {
        margin-top: 30px;
    }

    /* afterSales */
    .afterSales {
        margin-bottom: 100px;
    }

    .afterSales p {
        font-size: 22px;
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .afterSales .text {
        margin-top: 60px;
        margin-bottom: 80px;
    }

    .afterSales .text2 {
        margin-bottom: 60px;
    }

    /* transparentProcess */
    .transparentProcess {
        margin-bottom: 70px;
    }

    .transparentProcess p {
        font-size: 24px;
        margin-top: 60px;
    }

    .transparentProcess h1 {
        margin: 50px auto;
    }

    /* maintenance */
    .maintenance {
        width: auto;
        padding: 0 24px;
        margin-bottom: 70px;
    }

    .maintenance h1 {
        font-size: 24px;
        margin-top: 80px;
    }

    .maint-sub {
        margin-top: 40px;
    }

    .maint-section {
        margin-top: 45px;
        padding-top: 40px;
    }

    .maint-section h2 {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .maint-item {
        margin-top: 40px;
    }

    .maint-item .maint-title {
        font-size: 22px;
    }

    /* securePackaging */
    .securePackaging {
        margin-bottom: 70px;
    }

    .securePackaging > p {
        font-size: 24px;
        margin-top: 70px;
        margin-bottom: 60px;
    }

    .securePackaging .text {
        margin-top: 60px;
    }

    .securePackaging .text p {
        font-size: 22px;
    }

    /* 首页介绍 */
    .index-intro {
        padding-top: 100px;
        margin-left: 8%;
    }

    .index-intro .intro-small {
        font-size: 18px;
    }

    .index-intro h1 {
        font-size: 34px;
        line-height: 34px;
        margin-left: 8%;
    }

    .index-intro h2 {
        font-size: 15px;
        margin-left: 8%;
    }

    /* 首页分类 */
    .index-category {
        margin-top: 70px;
    }

    .index-category li p {
        font-size: 16px;
        margin-left: 15px;
    }

    .index-category li .flex h1 {
        margin-left: 15px;
    }

    /* 生活美学 */
    .index-lifestyle {
        margin-top: 120px;
    }

    /* weioj */
    .index-weioj {
        margin: 120px auto;
    }

    .index-weioj .text {
        margin-top: 60px;
    }

    .index-weioj .text p {
        font-size: 20px;
    }

    /* 系列 */
    .index-collections {
        padding-bottom: 70px;
    }

    .index-collections .intro-small {
        font-size: 28px;
        padding-top: 70px;
    }

    .index-collections h1 {
        font-size: 32px;
    }

    .index-collections .intro-sub {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .index-collections ul {
        margin-top: 60px;
    }

    .index-collections li {
        padding-bottom: 40px;
    }

    .index-collections li p {
        font-size: 20px;
        margin-top: 40px;
    }

    /* 工艺 */
    .index-craft {
        margin: 120px auto;
    }

    .index-craft h1 {
        font-size: 22px;
        margin-top: 60px;
    }

    .index-craft p {
        margin-top: 25px;
    }

    /* 联系 */
    .index-contact {
        padding-bottom: 80px;
    }

    .index-contact h1 {
        font-size: 28px;
    }

    .contact-info {
        margin-top: 50px;
    }

    .info-label {
        font-size: 18px;
    }

    .contact-form {
        margin-top: 70px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-group {
        width: 100%;
    }

    .form-group label {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
    }

    .index-contact button {
        font-size: 18px;
        padding: 8px 30px;
        margin-top: 40px;
    }

    /* 产品页 */
    .products-breadcrumb {
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .products-container ul {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 20px;
        margin-bottom: 80px;
    }

    /* 视频页 */
    .video-container {
        margin-top: 70px;
        margin-bottom: 60px;
    }

    .video-container ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-container ul li {
        height: 200px;
    }

    /* 底部 */
    footer {
        padding: 70px 0 90px;
    }

    .footer-nav ul {
        margin-right: 40px;
    }

    .footer-nav ul li a {
        font-size: 14px;
    }

    .footer-brand .phone {
        font-size: 20px;
    }

    .footer-social a {
        margin-left: 25px;
    }

    /* 地图 */
    #container {
        height: 400px;
    }
}

/* ------------------------------ ≤480px（手机竖屏） ------------------------------ */
@media (max-width: 480px) {
    /* 头部 */
    header {
        padding: 15px 0;
    }

    header img {
        width: 150px;
    }

    /* 导航 */
    nav {
        padding: 15px 0;
        margin-bottom: 8px;
    }

    nav ul {
        padding: 0 12px;
    }

    nav ul li {
        font-size: 12px;
        letter-spacing: 0;
    }

    .nav-dropdown {
        padding: 20px 10px;
    }

    .nav-dropdown li {
        width: 46%;
    }

    .nav-dropdown li p {
        font-size: 12px;
    }

    /* brand hero */
    .hero-text {
        top: 40px;
    }

    .hero-text h1 {
        font-size: 28px;
        letter-spacing: 0px;
    }

    .hero-text p {
        font-size: 13px;
        letter-spacing: 0px;
        margin-top: 10px;
    }

    /* brand */
    .brand-stats {
        margin-top: 50px;
    }

    .brand-stats-title {
        font-size: 15px;
        margin-top: 40px;
    }

    .brand-about {
        margin-top: 50px;
    }

    .brand-about h1 {
        font-size: 26px;
        margin-top: 40px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 24px;
    }

    .brand-craft {
        margin: 50px auto 70px;
    }

    .craft-text h1 {
        font-size: 24px;
    }

    .craft-text p {
        font-size: 15px;
    }

    .mission-inner h1 {
        font-size: 22px;
    }

    .mission-inner p {
        font-size: 14px;
    }

    .brand-vision {
        padding: 70px 0;
    }

    .vision-inner h2 {
        font-size: 18px;
    }

    .vision-inner p {
        font-size: 14px;
    }

    /* afterSales */
    .afterSales p {
        font-size: 18px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .afterSales .text h1 {
        font-size: 24px;
    }

    .afterSales .text h2 {
        font-size: 14px;
    }

    /* transparentProcess */
    .transparentProcess p {
        font-size: 20px;
    }

    .transparentProcess h1 {
        font-size: 13px;
    }

    /* maintenance */
    .maintenance {
        padding: 0 16px;
    }

    .maintenance h1 {
        font-size: 20px;
        margin-top: 60px;
    }

    .maint-section h2 {
        font-size: 20px;
        margin-bottom: 35px;
    }

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

    /* securePackaging */
    .securePackaging > p {
        font-size: 20px;
    }

    .securePackaging .text p {
        font-size: 18px;
        line-height: 28px;
    }

    .securePackaging .text h1 {
        font-size: 13px;
    }

    /* 首页介绍 */
    .index-intro {
        padding-top: 70px;
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .index-intro .intro-small {
        font-size: 16px;
    }

    .index-intro h1 {
        font-size: 24px;
        line-height: 26px;
        margin-left: 0;
    }

    .index-intro h2 {
        font-size: 13px;
        margin-left: 0;
    }

    /* 首页分类 */
    .index-category ul {
        grid-template-columns: 1fr;
    }

    .index-category li p {
        font-size: 18px;
        margin-left: 25px;
    }

    .index-category li .flex h1 {
        margin-left: 27px;
    }

    /* weioj */
    .index-weioj {
        margin: 80px auto;
    }

    .index-weioj .flex {
        flex-direction: column;
    }

    .index-weioj .flex .image {
        width: 100%;
    }

    .index-weioj .flex .image + .image {
        margin-top: 20px;
    }

    .index-weioj .text p {
        font-size: 18px;
    }

    .index-weioj .text h1 {
        font-size: 14px;
    }

    /* 系列 */
    .index-collections .intro-small {
        font-size: 24px;
    }

    .index-collections h1 {
        font-size: 24px;
    }

    .index-collections li {
        width: 100%;
    }

    .index-collections li p {
        font-size: 18px;
    }

    /* 工艺 */
    .index-craft {
        margin: 80px auto;
    }

    .index-craft li:nth-child(1),
    .index-craft li:nth-child(2),
    .index-craft li:nth-child(3),
    .index-craft li:nth-child(4),
    .index-craft li:nth-child(5),
    .index-craft li:nth-child(6) {
        width: 100%;
    }

    .index-craft h1 {
        font-size: 20px;
        margin-top: 40px;
    }

    .index-craft p {
        font-size: 14px;
    }

    /* 联系 */
    .index-contact h1 {
        font-size: 24px;
    }

    .info-label {
        font-size: 16px;
    }

    .info-text p {
        font-size: 13px;
    }

    .index-contact button {
        margin-left: auto;
        margin-right: auto;
    }

    /* 产品页 */
    .products-container ul {
        grid-gap: 20px 12px;
    }

    .products-container .title {
        font-size: 22px;
    }

    /* 视频页 */
    .video-container ul li {
        height: 160px;
    }

    /* 底部 */
    footer {
        padding: 50px 0 60px;
    }

    .footer-nav ul {
        margin-right: 25px;
    }

    .footer-nav ul li a {
        font-size: 13px;
    }

    .footer-brand {
        width: 200px;
    }

    .footer-brand .service {
        font-size: 17px;
    }

    .footer-brand .phone {
        font-size: 18px;
    }

    .footer-social a {
        margin-left: 15px;
        width: 38px;
        height: 38px;
    }

    .footer-social a svg {
        width: 36px;
        height: 20px;
    }

    /* 地图 */
    #container {
        height: 320px;
    }
}

/* 产品弹窗轮播：隐藏的附加图片（仅供 fancybox 弹窗使用） */
.fancybox-extra {
    display: none;
}