.prev {
    position: absolute;
    width: 60px;
    height: 60px;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 10;
}

.prev:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/about/btn6.png);
    background-size: 100% 100%;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.prev .swiper-button-prev {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../img/about/btn5.png);
    background-size: 100% 100%;
    margin-top: 0;
    top: 0;
    left: 0;
}

.prev .swiper-button-prev:after {
    content: '\e601';
    font-family: iconfont;
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.prev:hover:before {
    left: -10px;
    top: -10px;
    opacity: 1;
}

.next {
    position: absolute;
    width: 60px;
    height: 60px;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 10;
}

.next:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../img/about/btn4.png);
    background-size: 100% 100%;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.next .swiper-button-next {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../img/about/btn3.png);
    background-size: 100% 100%;
    margin-top: 0;
    top: 0;
    right: 0;
}

.next .swiper-button-next:after {
    content: '\e683';
    font-family: iconfont;
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.next:hover:before {
    right: -10px;
    bottom: -10px;
    opacity: 1;
}

.mores {
    margin-top: 3.5vw;
}

.mores a {
    display: block;
    width: 300px;
    height: 50px;
    background: url(../img/product/btn4.png) no-repeat;
    background-size: cover;
    position: relative;
    margin: 0 auto;
    color: #44372e;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.mores a:before {
    content: '';
    width: 0;
    height: 100%;
    background: url(../img/product/btn5.png) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.mores a h3 {
    position: relative;
    text-align: center;
    line-height: 50px;
    letter-spacing: 4px;
}

.mores a h3 span {
    margin-left: 10px;
}

.mores a:hover {
    color: #fff;
}

.mores a:hover:before {
    width: 100%;
    opacity: 1;
}

.ctn1 {
    padding: 5vw 0;
    background: url(../img/product/bg12.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.ctn1 .top {
    margin-bottom: 5vw;
}

.ctn1 .top ul {
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 1200px) {
    .ctn1 .top {
      
    }

    .ctn1 .top ul li {

        margin-right: 10px;
    }
}


.ctn1 .top ul li {
    width: 15.4%;
    padding: 2vw 1.7vw;
    background: #f4f4f4;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ctn1 .top ul li .icon {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ctn1 .top ul li .icon img {
    max-height: 100%;
}

.ctn1 .top ul li h2 {
    margin-top: 1.5vw;
    letter-spacing: 1px;
    color: #44372d;
}

.ctn1 .top ul li:hover .icon img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.ctn1 .bottom {
    margin-top: 3vw;
}

.ctn1 .bottom .center {
    width: 72%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.ctn1 .bottom .center .box {
    display: flex;
    width: calc(100% - 270px);
    height: 60px;
    border: 1px solid #917b59;
    background: #fff;
}

.ctn1 .bottom .center .box .inp {
    width: 43%;
    position: relative;
}

.ctn1 .bottom .center .box .inp img {
    position: absolute;
    left: 24px;
    top: 49%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ctn1 .bottom .center .box .inp input {
    width: 100%;
    height: 100%;
    border: none;
    padding-left: 56px;
}

.ctn1 .bottom .center .box .inp:nth-child(2) {
    width: 57%;
}

.ctn1 .bottom .center .box .inp:nth-child(2):before {
    content: '';
    width: 1px;
    height: 30px;
    background: #957b54;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ctn1 .bottom .center .btn {
    width: 260px;
    height: 60px;
    background: url(../img/product/btn1.png) no-repeat;
    background-size: 100% 100%;
}

.ctn1 .bottom .center .btn button {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    letter-spacing: 1px;
    color: #332a24;
    font-weight: bold;
}

.ctn2 {
    padding: 5vw 0;
    background: url(../img/product/bg13.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.ctn2 .ctn-list {
    margin-top: 3vw;
    position: relative;
}

.ctn2 .ctn-list .center {
    width: 90%;
    margin: 0 auto;
}

.ctn2 .ctn-list .center .top .swiper-slide {
    position: relative;
}

.ctn2 .ctn-list .center .top .swiper-slide .tu {
    position: relative;
}

.ctn2 .ctn-list .center .top .swiper-slide .tu img {
    width: 100%;
}

.ctn2 .ctn-list .center .top .swiper-slide .tu .text {
    position: absolute;
    left: 26%;
    top: 12%;
}

.ctn2 .ctn-list .center .top .swiper-slide .tu .text h2 {
    letter-spacing: 2px;
    color: #554841;
}

.ctn2 .ctn-list .center .top .swiper-slide .tu .text p {
    padding-left: 42px;
    letter-spacing: 1px;
    color: #554841;
    position: relative;
    margin-top: 6px;
}

.ctn2 .ctn-list .center .top .swiper-slide .tu .text p:before {
    content: '';
    width: 30px;
    height: 84%;
    background: #f0d06e;
    position: absolute;
    left: 0;
    top: 4px;
}

.ctn2 .ctn-list .center .bottom {
    position: absolute;
    width: 90%;
    left: 5%;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 1vw 1.5vw;
    z-index: 2;
}

.ctn2 .ctn-list .center .bottom ul {
    display: flex;
    justify-content: space-between;
}

.ctn2 .ctn-list .center .bottom ul li {
    cursor: pointer;
}

.ctn2 .ctn-list .center .bottom ul li .icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    border: 1px solid #bdae96;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.ctn2 .ctn-list .center .bottom ul li .icon img {
    max-width: 62%;
    max-height: 62%;
}

.ctn2 .ctn-list .center .bottom ul li h2 {
    text-align: center;
    margin-top: 10px;
    color: #221d1a;
    line-height: 1.3;
}

.ctn2 .ctn-list .center .bottom ul li:hover .icon {
    background: #f0d06e;
    border: 1px solid #f0d06e;
}

.ctn2 .ctn-list .center .bottom ul li.active .icon {
    background: #f0d06e !important;
    border: 1px solid #f0d06e !important;
}

.ctn2 .ctn-list .swiper-pagination {
    display: none;
}

.ctn3 {
    padding: 5vw 0;
    background: url(../img/product/bg14.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.ctn3 .ctn-list {
    margin-top: 3vw;
}

.ctn3 .ctn-list ul {
    display: flex;
    justify-content: space-between;
}

.ctn3 .ctn-list ul li {
    width: 33%;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.ctn3 .ctn-list ul li .tu {
    position: relative;
    height: 500px;
}

.ctn3 .ctn-list ul li .tu:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/product/mask3.png) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.ctn3 .ctn-list ul li .tu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctn3 .ctn-list ul li .tu .text {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.ctn3 .ctn-list ul li .tu .text .center {
    position: absolute;
    padding: 0 1vw 0 3vw;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #fff;
}

.ctn3 .ctn-list ul li .tu .text .center .title {
    opacity: 0;
    transform: translateX(-40px);
}

.ctn3 .ctn-list ul li .tu .text .center .title h2 {
    font-weight: bold;
}

.ctn3 .ctn-list ul li .tu .text .center .title h3 {
    letter-spacing: 4px;
    margin-top: 4px;
}

.ctn3 .ctn-list ul li .tu .text .center .txt {
    margin-top: 1.5vw;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    justify-content: space-between;
    width: 70%;
    flex-wrap: wrap;
}

.ctn3 .ctn-list ul li .tu .text .center .txt p {
    letter-spacing: 2px;
    padding-left: 14px;
    position: relative;
    margin-top: 10px;
    width: 50%;
}

.ctn3 .ctn-list ul li .tu .text .center .txt p:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f9d255;
    position: absolute;
    left: 0;
    top: 10px;
}

.ctn3 .ctn-list ul li .masks {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.ctn3 .ctn-list ul li .masks .kuang {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
}

.ctn3 .ctn-list ul li .masks .kuang img {
    width: 100%;
    height: 100%;
}

.ctn3 .ctn-list ul li .masks .center {
    position: absolute;
    width: 80%;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.ctn3 .ctn-list ul li .masks .center .icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.ctn3 .ctn-list ul li .masks .center .icon img {
    max-width: 100%;
    max-height: 100%;
}

.ctn3 .ctn-list ul li .masks .center h2 {
    color: #fff;
    text-align: center;
    letter-spacing: 4px;
    margin-top: 2vw;
}

.ctn3 .ctn-list ul li .masks .center h3 {
    color: #fff;
    text-align: center;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 14px;
}

.ctn3 .ctn-list ul li .masks .center h3:after {
    content: '';
    width: 30px;
    height: 1px;
    background: #957b54;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 0;
}

.ctn3 .ctn-list ul li:not(:last-child) {
    margin-right: 0.5%;
}

.ctn3 .ctn-list ul li:hover {
    width: 66%;
}

.ctn3 .ctn-list ul li:hover .tu .text .title {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease 0.3s;
    -webkit-transition: all 0.5s ease 0.3s;
    -moz-transition: all 0.5s ease 0.3s;
    -ms-transition: all 0.5s ease 0.3s;
}

.ctn3 .ctn-list ul li:hover .tu .text .txt {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease 0.5s;
    -webkit-transition: all 0.5s ease 0.5s;
    -moz-transition: all 0.5s ease 0.5s;
    -ms-transition: all 0.5s ease 0.5s;
}

.ctn3 .ctn-list ul li:hover .masks {
    opacity: 0;
}

.ctn4 {
    padding: 5vw 0;
    background: url(../img/product/bg15.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.ctn4 .ctn-list {
    position: relative;
    margin-top: 3vw;
}

.ctn4 .ctn-list .center {
    width: 90%;
    margin: 0 auto;
}

.ctn4 .ctn-list .center .swiper-slide img {
    width: 100%;
}

.ctn4 .ctn-list .center .swiper-pagination {
    display: none;
}

.ctn5 {
    padding: 5vw 0;
    overflow: hidden;
}

.ctn5 .ctn-list {
    margin-top: 3vw;
}

.ctn5 .ctn-list ul {
    display: flex;
    flex-wrap: wrap;
}

.ctn5 .ctn-list ul li {
    width: 50%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.ctn5 .ctn-list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctn5 .ctn-list ul li .text {
    position: absolute;
    padding: 0 1vw 0 3vw;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ctn5 .ctn-list ul li .text h2 {
    letter-spacing: 2px;
    color: #231815;
}

.ctn5 .ctn-list ul li .text h3 {
    font-family: '宋体';
    color: #957b54;
    letter-spacing: -1px;
}

.ctn5 .ctn-list ul li .text p {
    width: 54%;
    letter-spacing: 2px;
    margin-top: 1vw;
    color: #231815;
}

.ctn5 .ctn-list ul li .text .more {
    display: block;
    width: 180px;
    height: 36px;
    background: url(../img/product/btn6.png) no-repeat;
    background-size: cover;
    position: relative;
    color: #44372e;
    margin-top: 2vw;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.ctn5 .ctn-list ul li .text .more:before {
    content: '';
    width: 0;
    height: 100%;
    background: url(../img/product/btn7.png) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.ctn5 .ctn-list ul li .text .more h4 {
    position: relative;
    text-align: center;
    line-height: 36px;
    letter-spacing: 4px;
}

.ctn5 .ctn-list ul li .text .more h4 span {
    margin-left: 10px;
}

.ctn5 .ctn-list ul li .text.white h2 {
    color: #fff;
}

.ctn5 .ctn-list ul li .text.white h3 {
    color: #fff;
}

.ctn5 .ctn-list ul li .text.white p {
    color: #fff;
}

.ctn5 .ctn-list ul li:nth-child(3) {
    width: 33.3%;
    height: 320px;
}

.ctn5 .ctn-list ul li:nth-child(4) {
    width: 66.7%;
    height: 320px;
}

.ctn5 .ctn-list ul li:nth-child(4) .text .more {
    position: absolute;
    right: 18%;
    bottom: 0;
}

.ctn5 .ctn-list ul li:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.ctn5 .ctn-list ul li:hover .text .more {
    color: #fff;
}

.ctn5 .ctn-list ul li:hover .text .more:before {
    width: 100%;
    opacity: 1;
}

.ctn6 {
    padding: 5vw 0;
    background: url(../img/product/bg16.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.ctn6 .ctn-list {
    margin-top: 3vw;
}

.ctn6 .ctn-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ctn6 .ctn-list ul li {
    width: 32.6%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vw 1vw 3vw 3vw;
}

.ctn6 .ctn-list ul li .icon {
    width: 80px;
}

.ctn6 .ctn-list ul li .icon img {
    width: 100%;
}

.ctn6 .ctn-list ul li .text {
    width: calc(100% - 110px);
}

.ctn6 .ctn-list ul li .text h2 {
    letter-spacing: 2px;
    color: #554941;
}

.ctn6 .ctn-list ul li .text p {
    letter-spacing: 2px;
    color: #554941;
    margin-top: 8px;
    line-height: 1.4;
}

.ctn6 .ctn-list ul li:nth-child(n+4) {
    margin-top: 16px;
}

.ctn6 .ctn-list ul li:hover .icon img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.ctn7 {
    padding: 5vw 0;
    overflow: hidden;
}

.ctn7 .ctn-list {
    margin-top: 3vw;
}

.ctn7 .ctn-list ul {
    display: flex;
}

.ctn7 .ctn-list ul li {
    flex: 1;
    height: 640px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.ctn7 .ctn-list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctn7 .ctn-list ul li .text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    padding: 1.5vw 2vw;
    color: #fff;
}

.ctn7 .ctn-list ul li .text h2 {
    font-weight: bold;
    letter-spacing: 2px;
}

.ctn7 .ctn-list ul li .text p {
    letter-spacing: 1px;
    margin-top: 6px;
}

.ctn7 .ctn-list ul li.active {
    flex: 2;
}

.ctn8 {
    padding: 5vw 0;
    overflow: hidden;
}

.ctn8 .ctn-list {
    margin-top: 3vw;
}

.ctn8 .ctn-list ul {
    display: flex;
    flex-wrap: wrap;
}

.ctn8 .ctn-list ul li {
    width: 33.333%;
    background: #fbfbfb;
    padding: 3vw 1vw;
    position: relative;
}

.ctn8 .ctn-list ul li:after {
    content: '';
    width: 1px;
    height: 76%;
    background: #d7d7d7;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ctn8 .ctn-list ul li .tu {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.ctn8 .ctn-list ul li .tu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctn8 .ctn-list ul li .text {
    text-align: center;
}

.ctn8 .ctn-list ul li .text h2 {
    font-size: 90px;
    color: #2b2b2b;
    opacity: 0.1;
    font-family: Arial;
    line-height: 1;
    margin-top: 1vw;
}

.ctn8 .ctn-list ul li .text h3 {
    letter-spacing: 1px;
    color: #2b2b2b;
    margin-top: -36px;
}

.ctn8 .ctn-list ul li:nth-child(n+4) {
    margin-top: 4px;
}

.ctn8 .ctn-list ul li:nth-child(3n):after {
    display: none;
}

.ctn8 .ctn-list ul li:hover .tu img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.ctn9 {
    padding: 5vw 0;
    background: url(../img/product/bg17.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.ctn9 .text {
    margin-top: 3vw;
}

.ctn9 .text ul {
    display: flex;
    justify-content: center;
}

.ctn9 .text ul li {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 3vw;
}

.ctn9 .text ul li:after {
    content: '\e683';
    font-family: iconfont;
    color: #917b59;
    font-size: 18px;
    position: absolute;
    right: 1vw;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ctn9 .text ul li span {
    font-family: Arial;
    color: #b6a286;
    font-weight: bold;
}

.ctn9 .text ul li h2 {
    color: #44372d;
    margin-left: 8px;
    letter-spacing: 1px;
    position: relative;
    top: -1px;
}

.ctn9 .text ul li:last-child {
    padding-right: 0;
}

.ctn9 .text ul li:last-child:after {
    display: none;
}

.ctn9 .bottom {
    margin-top: 3vw;
}

.ctn9 .bottom .center {
    display: flex;
    justify-content: space-between;
}

.ctn9 .bottom .center .box {
    display: flex;
    width: calc(100% - 270px);
    height: 60px;
    border: 1px solid #917b59;
    background: #fff;
}

.ctn9 .bottom .center .box .inp {
    width: 33.333%;
    position: relative;
}

.ctn9 .bottom .center .box .inp:before {
    content: '';
    width: 1px;
    height: 30px;
    background: #957b54;
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ctn9 .bottom .center .box .inp img {
    position: absolute;
    left: 24px;
    top: 49%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.ctn9 .bottom .center .box .inp input {
    width: 100%;
    height: 100%;
    border: none;
    padding-left: 56px;
}

.ctn9 .bottom .center .box .inp:last-child:before {
    display: none;
}

.ctn9 .bottom .center .btn {
    width: 260px;
    height: 60px;
    background: url(../img/product/btn1.png) no-repeat;
    background-size: 100% 100%;
}

.ctn9 .bottom .center .btn button {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    letter-spacing: 2px;
    color: #332a24;
    font-weight: bold;
}

@media screen and (max-width: 1600px) {
    .mores a {
        width: 280px;
        height: 44px;
    }

    .mores a h3 {
        line-height: 44px;
    }

    .ctn1 .bottom .center .box {
        width: calc(100% - 250px);
    }

    .ctn1 .bottom .center .btn {
        width: 240px;
    }

    .ctn3 .ctn-list ul li .tu {
        height: 27vw;
    }

    .ctn3 .ctn-list ul li .tu .text .center .txt p {
        margin-top: 6px;
    }

    .ctn3 .ctn-list ul li .tu .text .center .txt p:before {
        top: 9px;
    }

    .ctn3 .ctn-list ul li .masks .center .icon {
        height: 90px;
    }

    .ctn5 .ctn-list ul li {
        height: 23vw;
    }

    .ctn5 .ctn-list ul li:nth-child(3) {
        height: 18vw;
    }

    .ctn5 .ctn-list ul li:nth-child(4) {
        height: 18vw;
    }

    .ctn6 .ctn-list ul li .icon {
        width: 70px;
    }

    .ctn6 .ctn-list ul li .text {
        width: calc(100% - 90px);
    }

    .ctn7 .ctn-list ul li {
        height: 35vw;
    }

    .ctn8 .ctn-list ul li .tu {
        width: 250px;
        height: 250px;
    }

    .ctn8 .ctn-list ul li .text h2 {
        font-size: 4.68vw;
    }

    .ctn8 .ctn-list ul li .text h3 {
        margin-top: -30px;
    }

    .ctn9 .text ul li:after {
        top: 46%;
    }

    .ctn9 .bottom .center .box {
        width: calc(100% - 250px);
    }

    .ctn9 .bottom .center .btn {
        width: 240px;
    }
}

@media screen and (max-width: 1440px) {
    .prev {
        left: -40px;
    }

    .next {
        right: -40px;
    }

    .ctn1 .top ul li .icon {
        height: 54px;
    }

    .ctn2 .ctn-list .center .bottom ul li .icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    .ctn8 .ctn-list ul li .tu {
        width: 200px;
        height: 200px;
    }

    .ctn8 .ctn-list ul li .text h3 {
        margin-top: -24px;
    }
}

@media screen and (max-width: 1200px) {
    .prev {
        width: 50px;
        height: 50px;
        left: -20px;
    }

    .prev .swiper-button-prev:after {
        font-size: 20px;
    }

    .prev:hover:before {
        left: -6px;
        top: -6px;
    }

    .next {
        width: 50px;
        height: 50px;
        right: -20px;
    }

    .next .swiper-button-next:after {
        font-size: 20px;
    }

    .next:hover:before {
        right: -6px;
        bottom: -6px;
    }

    .ctn1 .top ul li .icon {
        height: 44px;
    }

    .ctn1 .bottom .center .box {
        height: 54px;
    }

    .ctn1 .bottom .center .box .inp img {
        left: 16px;
    }

    .ctn1 .bottom .center .box .inp input {
        padding-left: 46px;
    }

    .ctn1 .bottom .center .btn {
        height: 54px;
    }

    .ctn3 .ctn-list ul li .tu {
        height: 30vw;
    }

    .ctn3 .ctn-list ul li .tu .text .center .title h3 {
        letter-spacing: 2px;
    }

    .ctn3 .ctn-list ul li .tu .text .center .txt p {
        margin-top: 4px;
    }

    .ctn3 .ctn-list ul li .masks .center .icon {
        height: 70px;
    }

    .ctn3 .ctn-list ul li .masks .center h2 {
        letter-spacing: 2px;
    }

    .ctn3 .ctn-list ul li .masks .center h3 {
        letter-spacing: 2px;
    }

    .ctn5 .ctn-list ul li {
        height: 25vw;
    }

    .ctn5 .ctn-list ul li .text p {
        width: 62%;
    }

    .ctn5 .ctn-list ul li:nth-child(3) {
        height: 20vw;
    }

    .ctn5 .ctn-list ul li:nth-child(4) {
        height: 20vw;
    }

    .ctn5 .ctn-list ul li:nth-child(4) .text .more {
        right: 5%;
    }

    .ctn6 .ctn-list ul li .icon {
        width: 60px;
    }

    .ctn6 .ctn-list ul li .text {
        width: calc(100% - 80px);
    }

    .ctn7 .ctn-list ul li {
        height: 37vw;
    }

    .ctn8 .ctn-list ul li .tu {
        width: 180px;
        height: 180px;
    }

    .ctn9 .text ul li {
        padding-right: 20px;
    }

    .ctn9 .text ul li:after {
        font-size: 16px;
        right: 1px;
    }

    .ctn9 .text ul li span {
        font-size: 18px;
    }

    .ctn9 .text ul li h2 {
        font-size: 16px;
    }

    .ctn9 .bottom .center .box {
        width: calc(100% - 230px);
        height: 54px;
    }

    .ctn9 .bottom .center .btn {
        width: 220px;
        height: 54px;
    }
}

@media screen and (max-width: 768px) {
    .prev {
        width: 40px;
        height: 40px;
        display: none;
    }

    .prev .swiper-button-prev:after {
        font-size: 16px;
    }

    .prev:hover:before {
        left: -4px;
        top: -4px;
    }

    .next {
        width: 40px;
        height: 40px;
        display: none;
    }

    .next .swiper-button-next:after {
        font-size: 16px;
    }

    .next:hover:before {
        right: -4px;
        bottom: -4px;
    }

    .mores {
        margin-top: 30px;
    }

    .mores a {
        width: 250px;
        height: 40px;
    }

    .mores a h3 {
        line-height: 40px;
    }

    .mores a h3 span {
        margin-left: 20px;
    }

    .ctn1 {
        padding: 40px 0;
    }

    .ctn1 .top {
        margin-bottom: 30px;
    }

    .ctn1 .top ul {
        flex-wrap: wrap;
    }

    .ctn1 .top ul li {
        width: 48.5%;
        padding: 20px 10px;
        border-radius: 8px;
    }

    .ctn1 .top ul li h2 {
        margin-top: 10px;
        letter-spacing: 0;
    }

    .ctn1 .top ul li:nth-child(n+3) {
        margin-top: 14px;
    }

    .ctn1 .bottom {
        margin-top: 20px;
    }

    .ctn1 .bottom .center {
        display: block;
        width: 100%;
    }

    .ctn1 .bottom .center .box {
        display: block;
        width: 100%;
        height: auto;
        border: none;
        background: none;
    }

    .ctn1 .bottom .center .box .inp {
        margin-top: 14px;
        width: 100% !important;
    }

    .ctn1 .bottom .center .box .inp img {
        left: 18px;
    }

    .ctn1 .bottom .center .box .inp input {
        height: 50px;
        border: 1px solid #917b59;
        background: #fff;
        padding-left: 50px;
    }

    .ctn1 .bottom .center .box .inp:nth-child(2) img {
        left: 19px;
    }

    .ctn1 .bottom .center .btn {
        width: 100%;
        height: 50px;
        margin-top: 14px;
    }

    .ctn1 .bottom .center .btn button {
        letter-spacing: 1px;
    }

    .ctn2 {
        padding: 40px 0;
    }

    .ctn2 .ctn-list {
        margin-top: 30px;
    }

    .ctn2 .ctn-list .center {
        width: 100%;
    }

    .ctn2 .ctn-list .center .top .swiper-slide .tu .text {
        top: 20px;
        left: 20px;
    }

    .ctn2 .ctn-list .center .top .swiper-slide .tu .text h2 {
        letter-spacing: 0;
    }

    .ctn2 .ctn-list .center .top .swiper-slide .tu .text p {
        letter-spacing: 0;
        padding-left: 24px;
    }

    .ctn2 .ctn-list .center .top .swiper-slide .tu .text p:before {
        width: 14px;
    }

    .ctn2 .ctn-list .center .bottom {
        width: 100%;
        left: 0;
        position: relative;
        padding: 30px 0;
    }

    .ctn2 .ctn-list .center .bottom ul {
        flex-wrap: wrap;
    }

    .ctn2 .ctn-list .center .bottom ul li {
        width: 33.33%;
    }

    .ctn2 .ctn-list .center .bottom ul li:nth-child(n+4) {
        margin-top: 20px;
    }

    .ctn2 .ctn-list .center .bottom ul li:hover .icon {
        background: none;
        border: 1px solid #bdae96;
    }

    .ctn3 {
        padding: 40px 0;
    }

    .ctn3 .ctn-list {
        margin-top: 30px;
    }

    .ctn3 .ctn-list ul {
        flex-wrap: wrap;
    }

    .ctn3 .ctn-list ul li {
        width: 100% !important;
    }

    .ctn3 .ctn-list ul li .tu {
        height: 320px;
    }

    .ctn3 .ctn-list ul li .tu .text .center {
        padding: 0 20px 0;
    }

    .ctn3 .ctn-list ul li .tu .text .center .title h3 {
        letter-spacing: 0;
    }

    .ctn3 .ctn-list ul li .tu .text .center .txt {
        margin-top: 10px;
        width: 100%;
    }

    .ctn3 .ctn-list ul li .tu .text .center .txt p {
        letter-spacing: 0;
    }

    .ctn3 .ctn-list ul li .masks .center {
        top: 50%;
    }

    .ctn3 .ctn-list ul li .masks .center .icon {
        height: 60px;
    }

    .ctn3 .ctn-list ul li .masks .center h2 {
        letter-spacing: 0;
        margin-top: 20px;
    }

    .ctn3 .ctn-list ul li .masks .center h3 {
        letter-spacing: 0;
        padding-bottom: 10px;
    }

    .ctn3 .ctn-list ul li:nth-child(n+2) {
        margin-top: 20px;
    }

    .ctn4 {
        padding: 40px 0;
    }

    .ctn4 .ctn-list {
        margin-top: 30px;
    }

    .ctn4 .ctn-list .center {
        width: 100%;
    }

    .ctn4 .ctn-list .center .swiper-pagination {
        display: block;
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }

    .ctn4 .ctn-list .center .swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        background: #fff;
        opacity: 1;
        border-radius: 4px;
    }

    .ctn4 .ctn-list .center .swiper-pagination .swiper-pagination-bullet-active {
        width: 18px;
        background: #f9d255;
    }

    .ctn5 {
        padding: 40px 0;
    }

    .ctn5 .ctn-list {
        margin-top: 30px;
    }

    .ctn5 .ctn-list ul li {
        width: 100% !important;
        height: auto !important;
    }

    .ctn5 .ctn-list ul li img {
        height: auto;
    }

    .ctn5 .ctn-list ul li .text {
        position: relative;
        padding: 14px 0 0;
        top: 0;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
    }

    .ctn5 .ctn-list ul li .text h2 {
        letter-spacing: 0;
    }

    .ctn5 .ctn-list ul li .text h3 {
        letter-spacing: 0;
    }

    .ctn5 .ctn-list ul li .text p {
        width: 100%;
        letter-spacing: 0;
        margin-top: 6px;
    }

    .ctn5 .ctn-list ul li .text .more {
        margin-top: 20px;
    }

    .ctn5 .ctn-list ul li .text.white h2 {
        color: #231815;
    }

    .ctn5 .ctn-list ul li .text.white h3 {
        color: #957b54;
    }

    .ctn5 .ctn-list ul li .text.white p {
        color: #231815;
    }

    .ctn5 .ctn-list ul li:nth-child(n+2) {
        margin-top: 30px;
    }

    .ctn5 .ctn-list ul li:nth-child(4) .text .more {
        position: relative;
        right: auto;
    }

    .ctn6 {
        padding: 40px 0;
    }

    .ctn6 .ctn-list {
        margin-top: 16px;
    }

    .ctn6 .ctn-list ul li {
        border-radius: 8px;
        width: 100%;
        margin-top: 14px !important;
        padding: 20px;
    }

    .ctn7 {
        padding: 40px 0;
    }

    .ctn7 .ctn-list {
        margin-top: 30px;
    }

    .ctn7 .ctn-list ul {
        display: block;
    }

    .ctn7 .ctn-list ul li {
        width: 100% !important;
        height: 240px;
    }

    .ctn7 .ctn-list ul li .text {
        padding: 14px 20px;
    }

    .ctn7 .ctn-list ul li .text h2 {
        letter-spacing: 0;
    }

    .ctn7 .ctn-list ul li .text p {
        letter-spacing: 0;
        margin-top: 0;
    }

    .ctn7 .ctn-list ul li:nth-child(n+2) {
        margin-top: 20px;
    }

    .ctn8 {
        padding: 0 0 40px;
    }

    .ctn8 .ctn-list {
        margin-top: 30px;
    }

    .ctn8 .ctn-list ul li {
        width: 50%;
        padding: 20px;
        margin-top: 4px !important;
    }

    .ctn8 .ctn-list ul li .tu {
        width: 120px;
        height: 120px;
    }

    .ctn8 .ctn-list ul li .text h2 {
        font-size: 40px;
        margin-top: 10px;
    }

    .ctn8 .ctn-list ul li .text h3 {
        letter-spacing: 0;
        margin-top: -14px;
    }

    .ctn8 .ctn-list ul li:nth-child(3n):after {
        display: block;
    }

    .ctn8 .ctn-list ul li:nth-child(even):after {
        display: none;
    }

    .ctn9 {
        padding: 40px 0;
    }

    .ctn9 .text {
        margin-top: 20px;
    }

    .ctn9 .text ul {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .ctn9 .text ul li {
        width: 50%;
        padding-right: 0;
        margin-top: 10px;
        justify-content: center;
    }

    .ctn9 .text ul li:after {
        display: none;
    }

    .ctn9 .text ul li span {
        font-size: 16px;
    }

    .ctn9 .text ul li h2 {
        margin-left: 6px;
    }

    .ctn9 .bottom {
        margin-top: 20px;
    }

    .ctn9 .bottom .center {
        display: block;
    }

    .ctn9 .bottom .center .box {
        display: block;
        width: 100%;
        height: auto;
        border: none;
        background: none;
    }

    .ctn9 .bottom .center .box .inp {
        margin-top: 14px;
        width: 100% !important;
    }

    .ctn9 .bottom .center .box .inp img {
        left: 18px;
    }

    .ctn9 .bottom .center .box .inp input {
        height: 50px;
        border: 1px solid #917b59;
        background: #fff;
        padding-left: 50px;
    }

    .ctn9 .bottom .center .box .inp:nth-child(3) img {
        left: 19px;
    }

    .ctn9 .bottom .center .btn {
        width: 100%;
        height: 50px;
        margin-top: 14px;
    }

    .ctn9 .bottom .center .btn button {
        letter-spacing: 1px;
    }
}
