.sewing {
    height: 160px;
}

.header {
    width: 100%;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all .4s;
    background: var(--theme-color);
}


.header .contain {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.header h1 {
    width: 93px;
    height: 140px;
    background: url(../images/logo.png)
    no-repeat
    left center/contain;
}

.header h1 a {
    text-indent: -9999px;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.header .nav {
    display: flex;
    margin-left: auto;
}

.header .nav li {
    color: #fff;
    font-size: 22px;
    line-height: 40px;
    height: 40px;
    margin-right: 65px;
    transition: all .4s;
    position: relative;
}

.header .nav li.active,
.header .nav li:hover {
    color: #ffdc00;
}

.header .nav li::after {
    content: '';
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    transition: all .4s;
    background: #ffdc00;
}

.header .nav li.active::after,
.header .nav li:hover::after {
    width: 100%;
}

.header .nav li a {
    display: inline-block;
    height: 100%;
}

.header .icon {
    cursor: pointer;
    width: 22px;
    height: 22px;
    margin-left: 65px;
    background-position: right center;
    background-image: url(../images/search.png);
}

.header .form {
    font-size: 0;
    width: 100%;
    padding: 30px 0;
    display: none;
    position: fixed;
    left: 0;
    top: 140px;
    z-index: 999;
    background: rgba(0, 0, 0, .4);
}

.header .form form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    background: #fff;
}

.header .form input {
    color: #333;
    font-size: 15px;
    width: 100%;
    height: 50px;
    padding-left: 25px;
    padding-right: 45px;
}

.header .form button {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    background: url(../images/form-search.png) no-repeat right center/contain;
}




.contact {
    padding: 90px 0;
    background: #f3f2ef;
}

.contact h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

/* .contact .content .item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact .content .item:not(:last-child) {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1dfda;
}

.contact .content .text {
    font-size: 16px;
    line-height: 30px;
}

.contact .content .text:not(:nth-child(3n)) {
     padding-right: 60px;
} */

.contact .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
}

.contact .content .text {
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e1dfda;
}

.contact .content .text:not(:nth-child(3n)) {
     padding-right: 60px;
}
 



.copy {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    padding: 25px 0;
    background: var(--theme-color);
}




.news {
    padding-top: 80px;
}

.news .navbar {
    margin-bottom: 50px;
}

.news .list {
    padding-bottom: 70px;
    border-bottom: 1px solid #dcdcdc;
}

.news .column:not(:last-child) {
    margin-bottom: 65px;
}

.news .column a {
    display: flex;
}

.news .column .img {
    width: 570px;
    height: 350px;
}

.news .column .article {
    width: 650px;
    padding-top: 10px;
    margin-left: auto;
}

.news .column .article h4 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 25px;
}

.news .column:hover .article h4 {
    color: var(--theme-color);
}

.news .column .article p {
    color: #888;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}

.news .column .article span {
    font-size: 15px;
}

.news .page {
    padding: 45px 0 105px;
}




.newsv {
    padding: 100px 0;
}

.newsv .title {
    margin-bottom: 30px;
    text-align: center;
}

.newsv .title h2 {
    color: #444;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
}

.newsv .title span {
    color: #999;
    font-size: 18px;
    display: block;
}

.newsv .article {
    color: #666;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid #d2d2d2;
}

.newsv .button {
    text-align: center;
}

.newsv .button a {
    color: #666;
    font-size: 18px;
    display: inline-block;
    position: relative;
    margin-right: 101px;
}

.newsv .button a:last-child {
    margin-right: 0;
}

.newsv .button a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: auto;
    right: -51px;
    transform: translate(0, -50%);
    width: 1px;
    height: 20px;
    background-color: #bfbfbf;
}

.newsv .button a:last-child::after {
    display: none;
}

.newsv .button a:hover {
    color: var(--theme-color);
    text-decoration: underline;
}




.case {
    padding-top: 80px;
}

.case .navbar {
    margin-bottom: 60px;
}

.case .list {
    gap: 45px 35px;
    padding-bottom: 80px;
    border-bottom: 1px solid #dcdcdc;
}

.case .column {
    text-align: center;
}

.case .column .img {
    height: 300px;
    margin-bottom: 30px;
}

.case .column h4 {
    color: #222;
    font-size: 18px;
}

.case .column:hover h4 {
    color: var(--theme-color);
}

.case .page {
    padding: 45px 0 100px;
}




.message {
    padding: 95px 0 115px;
}

.message .title {
    margin-bottom: 100px;
}

.message .title h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.message .title p {
    color: #666;
    font-size: 16px;
}

.message .form {
    margin-bottom: 95px;
}

.message .group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 100px;
}

.message .group:nth-child(3) {
    grid-template-columns: 1fr;
}

.message .group:not(:last-child) {
    margin-bottom: 60px;
}

.message .label {
    position: relative;
    border-bottom: 1px solid #d2d2d2;
}

.message .label span {
    color: #222;
    font-size: 20px;
}

.message .label input {
    color: #888;
    font-size: 15px;
    height: 60px;
}

.message .label .captcha {
    width: 170px;
    height: 60px;
    position: absolute;
    top: 5px;
    right: 0;
}

.message button {
    color: #fff;
    font-size: 20px;
    height: 60px;
    margin-top: auto;
    transition: all .4s;
    background: var(--theme-color);
}

.message button:hover {
    background: var(--theme-touch-color);
}

.message .img {
    height: 600px;
}




.product {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

.product .item {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
}

.product .select {
    width: 320px;
    padding: 90px 0;
}

.product .select h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.product .select .form {
    margin-bottom: 15px;
    position: relative;
}

.product .select .form input {
    color: #888;
    font-size: 15px;
    height: 50px;
    padding-right: 30px;
    border-bottom: 1px solid #d2d2d2;
}

.product .select .form button {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 16px;
    right: 0;
    background: url(../images/product-search.png)
    no-repeat
    right center/contain;
}

.product .select ul li {
    color: #666;
    font-size: 15px;
    line-height: 52px;
    height: 52px;
}

.product .select ul li.active {
    color: var(--theme-color);
    font-weight: bold;
}

.product .select ul li a {
    display: inline-block;
    height: 100%;
    padding-left: 35px;
    position: relative;
}

.product .select ul li a::after {
    content: '';
    width: 20px;
    height: 20px;
    top: 16px;
    left: 0;
    background-position: left center;
    background-image: url(../images/dot.png);
}

.product .select ul li.active a::after {
    background-image: url(../images/dot-on.png);
}

.product .contain {
    width: 915px;
    padding: 95px 0 0 50px;
    margin-left: auto;
    position: relative;
    background: #f8f8f8;
}
.product .contain::after {
    content: '';
    width: 620px;
    height: 100%;
    top: 0;
    right: -620px;
    z-index: 9;
    background: #f8f8f8;
}

.product .list {
    max-width: 865px;
    gap: 50px 20px;
    padding-bottom: 75px;
    border-bottom: 1px solid #dcdcdc;
}

.product .column .img {
    height: 275px;
    margin-bottom: 25px;
    background: #fff;
}

.product .column p {
    font-size: 16px;
}

.product .column:hover p {
    color: var(--theme-color);
} 

.product .page {
    text-align: left;
    padding: 40px 0 105px;
}

.product .page li {
    text-align: center;
}




.introduce {
    padding: 35px 0;
}

.introduce .breadcrumbs {
    margin-bottom: 65px;
}

.introduce .contain {
    display: flex;
}

.introduce .img {
    width: 600px;
    height: 600px;
    border: 1px solid #dcdcdc;
}

.introduce .content {
    font-size: 16px;
    width: 600px;
    padding-top: 20px;
    margin-left: auto;
}

.introduce .content h2 {
    font-size: 36px;
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid #dcdcdc;
}

.introduce .content .introd {
    line-height: 30px;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #dcdcdc;
}

.introduce .content .button {
    display: flex;
    margin-bottom: 35px;
}

.introduce .content .button a {
    display: block;
}

.introduce .content .button a:not(:last-child) {
    margin-right: 35px;
}

.introduce .content .button a:hover {
    color: var(--theme-color);
    text-decoration: underline;
}

.introduce .content .link {
    font-size: 20px;
    text-align: center;
    line-height: 60px;
    display: block;
    transition: all .4s;
    background: #f3f2ef;
}

.introduce .content .link:hover {
    color: #fff;
    background: var(--theme-color);
}




.details {
    padding: 35px 0;
}

.details h3 {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 60px;
    padding: 0 30px;
    margin-bottom: 65px;
    border: 1px solid #dcdcdc;
}

.details .article {
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 90px;
    border-bottom: 1px solid #dcdcdc;
}



.other {
    padding: 20px 0 105px;
}

.other h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.other .list {
   gap: 0 20px;
}

.other .column .img {
    height: 310px;
    margin-bottom: 22px;
    border: 1px solid #dcdcdc;
}

.other .column p {
    font-size: 18px;
}

.other .column:hover p {
    color: var(--theme-color);
}





.about {
    padding: 110px 0 55px;
}

.about h2 {
    font-size: 50px;
    margin-bottom: 45px;
}

.about .article {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 95px;
}




.life {
    padding: 80px 0 130px;
}

.life h2 {
    font-size: 50px;
    margin-bottom: 40px;
}

.life .article {
    font-size: 18px;
    line-height: 30px;
}

.life>.main>.article {
    max-width: 650px;
    margin: 0 0 70px auto;
}

.life .contain {
    position: relative;
}

.life .contain .article {
    width: 50%;
    padding-right: 80px;
    position: absolute;
    top: 470px;
    left: 0;
}



.banner {
    position: relative;
}

.banner .banner-page {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    position: absolute;
    left: 50%;
    bottom: 95px;
    z-index: 99;
    transform: translateX(-50%);
}

.banner .banner-page .swiper-pagination {
    width: auto;
    position: static;
}

.banner .banner-page .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 20px 0 0!important;
    background: rgba(255, 255, 255, .5);
}

.banner .banner-page .swiper-pagination-bullet-active {
    background: #fff;
}

.banner .banner-page .num {
    color: #fff;
    font-size: 15px;
    line-height: 1;
    margin-left: auto;
}




.index-product {
    overflow: hidden;
    max-width: 1920px;
    padding: 95px 0 125px;
    margin: 0 auto;
    background: #f3f2ef;
}

.index-product .hd {
    margin-bottom: 70px;
}

.ipro-swiper {
    overflow: visible;
    width: 420px;
    margin: 0;
}

.ipro-swiper .swiper-wrapper {
    margin-bottom: 80px;
}

.ipro-swiper .img {
    height: 420px;
    padding: 40px;
    margin-bottom: 30px;
    background: #fff;
}

.ipro-swiper p {
    font-size: 18px;
}

.ipro-swiper .swiper-slide:hover p {
    color: var(--theme-color);
}

.ipro-swiper .swiper-scrollbar {
    width: 320px;
    height: 2px;
    position: static;
    background: #d2d2d2;
}

.ipro-swiper .swiper-scrollbar-drag {
    background: #222;
}




.index-about {
    display: flex;
    max-width: 1300px;
    padding: 120px 0 135px;
    margin: 0 auto;
}

.index-about .content {
    width: 580px;
    padding-top: 55px;
}

.index-about .theme-title {
    margin-bottom: 50px;
}

.index-about .theme-article {
    margin-bottom: 65px;
}

.index-about .picture {
    width: 630px;
    margin-left: auto;
}




.index-case {
    display: flex;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
    background: #f3f2ef;
}

.index-case .img {
    width: 900px;
    height: 750px;
}

.index-case .content {
    width: 1020px;
    padding: 120px 310px 120px 120px;
}

.index-case .theme-title {
    margin-bottom: 50px;
}

.index-case .theme-article {
    margin-bottom: 55px;
}




.index-news {
    max-width: 1300px;
    padding: 120px 0 140px;
    margin: 0 auto;
}

.index-news .hd {
    margin-bottom: 85px;
}

.index-news .contain {
    display: flex;
}

.index-news .list {
    width: 590px;
    height: 100%;
    border-bottom: 1px solid #dcdcdc;
}

.index-news .column {
    transition: all .4s;
    border-top: 1px solid #dcdcdc;
}

.index-news .column.on {
    border-top: 1px solid var(--theme-color);
}

.index-news .column a {
    display: inline-block;
    width: 100%;
    padding: 22px 0 55px;
}

.index-news .column p {
    font-size: 18px;
    margin-bottom: 25px;
}

.index-news .column.on p {
    color: var(--theme-color);
}

.index-news .column .icon {
    width: 20px;
    height: 12px;
    background-image: url(../images/more.png);
}

.index-news .column.on .icon {
    background-image: url(../images/more2.png);
}

.index-news .img {
    width: 650px;
    height: 409px;
    margin-left: auto;
}




.service {
    padding: 60px 0 70px;
    border-top: 1px solid #dcdcdc;
}

.service .contain {
    max-width: 1300px;
    margin: 0 auto;
}

.service h2 {
    font-size: 22px;
    margin-bottom: 25px;
}

.service .share {
    display: flex;
    align-items: center;
}

.service form {
    display: flex;
    align-items: center;
    width: 590px;
    border: 1px solid #dcdcdc;
}

.service form input,
.service form button {
    font-size: 15px;
    height: 45px;
}

.service form input {
    color: #888;
    width: 480px;
    padding: 0 15px;
}

.service form button {
    color: #fff;
    font-weight: bold;
    width: 110px;
    transition: all .4s;
    background: var(--theme-color);
}

.service form button:hover {
    background: var(--theme-touch-color);
}

.service .share p {
    font-size: 22px;
    margin-left: auto;
}

.service .button {
    display: flex;
    margin-left: 55px;
}

.service .button a {
    display: block;
    width: 24px;
    height: 24px;
    transition: all .4s;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.service .button a:not(:last-child) {
    margin-right: 25px;
}

.service .button a:nth-child(1) {
    background-image: url(../images/facebook.png);
}

.service .button a:nth-child(1):hover {
    background-image: url(../images/facebook2.png);
}

.service .button a:nth-child(2) {
    background-image: url(../images/instagram.png);
}

.service .button a:nth-child(2):hover {
    background-image: url(../images/instagram2.png);
}

.service .button a:nth-child(3) {
    background-image: url(../images/twitter.png);
}

.service .button a:nth-child(3):hover {
    background-image: url(../images/twitter2.png);
}

.service .button a:nth-child(4) {
    background-image: url(../images/tiktok.png);
}

.service .button a:nth-child(4):hover {
    background-image: url(../images/tiktok2.png);
}