@font-face {
    font-family: 'Baloo 2';
    src: url('../fonts/Baloo2-Medium.eot');
    src: url('../fonts/Baloo2-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Baloo2-Medium.woff2') format('woff2'), url('../fonts/Baloo2-Medium.woff') format('woff'), url('../fonts/Baloo2-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Baloo 2';
    src: url('../fonts/Baloo2-Bold.eot');
    src: url('../fonts/Baloo2-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Baloo2-Bold.woff2') format('woff2'), url('../fonts/Baloo2-Bold.woff') format('woff'), url('../fonts/Baloo2-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Baloo 2';
    src: url('../fonts/Baloo2-SemiBold.eot');
    src: url('../fonts/Baloo2-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Baloo2-SemiBold.woff2') format('woff2'), url('../fonts/Baloo2-SemiBold.woff') format('woff'), url('../fonts/Baloo2-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Baloo 2';
    src: url('../fonts/Baloo2-Regular.eot');
    src: url('../fonts/Baloo2-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Baloo2-Regular.woff2') format('woff2'), url('../fonts/Baloo2-Regular.woff') format('woff'), url('../fonts/Baloo2-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Baloo 2';
    font-weight: 400;
    font-size: 18px;
    --color: #f67d35;
    --color2: #97a27a;
    --color3: #f2ab37;
    margin: 0 auto;
    color: #555;
}

.container {
    width: 1590px;
}

.bigtt-zt {
    font-family: 'Baloo 2';
    font-weight: bold;
    color: #5c4428;
}

.color-5c4428 {
    color: #5c4428;
}

#header {
    z-index: 20;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 15px -5px 28px 4px rgba(201, 201, 201, 0.3);
    padding: 0 70px;
}

#header .nav {
    position: relative;
    height: 96px;
}

#header .nav .ui.menu {
    border-radius: 10px;
}

#header .nav .ui.menu .menu-box {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

#header .nav .ui.menu .menu-box .menu-menu-container {
    height: 100%;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu::after {
    content: '\20';
    display: block;
    height: 0;
    line-height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
    margin: 0 40px;
    font-size: 20px;
    height: 100%;
    color: #555;
    -webkit-perspective: 500px;
    perspective: 500px;
    transform-style: preserve-3d;
    z-index: 100;
    float: left;
    position: relative;
    transition: all 0.5s;
    display: flex;
    align-items: center;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li:hover {
    color: var(--color);
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li:hover>a::after {
    opacity: 1;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li.active {
    color: var(--color);
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li.active>a::after {
    opacity: 1;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li>a {
    display: block;
    position: relative;
    z-index: 0;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li>a::after {
    content: '';
    display: flex;
    width: 42px;
    height: 42px;
    background-image: url(../images/h-navbg.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -12%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu {
    text-align: left;
    position: absolute;
    font-size: 15px;
    font-weight: 400;
    background: #fff;
    top: 100%;
    left: -10px;
    min-width: 180px;
    transform: scaleY(0);
    transform-origin: 0 0;
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--color);
    display: none \9;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu li {
    position: relative;
    display: block;
    float: none;
    padding: 0 15px;
    line-height: 40px;
    color: black;
    font-size: 15px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-transform: capitalize;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu li a {
    display: block;
    white-space: nowrap;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu li:hover {
    background: var(--color);
    color: white;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu>li ul.sub-menu {
    top: 0;
    left: 100%;
    transform: scaleY(0);
    opacity: 0;
    display: none \9;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu>li:hover>ul.sub-menu {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    transform: scaleY(1);
    display: block \9;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li:hover ul.sub-menu {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    transform: scaleY(1);
    display: block \9;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu li:last-child {
    margin-right: 0;
}

#header .nav .ui.menu .right .h-language {
    position: relative;
    cursor: pointer;
}

#header .nav .ui.menu .right .h-language span img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all 0.5s;
}

#header .nav .ui.menu .right .h-language ul.sub-menu {
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    text-align: left;
    position: absolute;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    top: 110%;
    right: 0;
    width: 130px;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #60b242;
    display: none \9;
}

#header .nav .ui.menu .right .h-language ul.sub-menu li {
    display: block;
    line-height: 40px;
    text-transform: capitalize;
    text-align: center;
}

#header .nav .ui.menu .right .h-language ul.sub-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#header .nav .ui.menu .right .h-language ul.sub-menu li a img {
    vertical-align: middle;
    width: auto;
    height: 15px;
    margin-right: 6px;
}

#header .nav .ui.menu .right .h-language ul.sub-menu li:hover {
    background: #000;
    color: #fff;
}

#header .nav .ui.menu .right .h-language:hover ul.sub-menu {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    transform: rotate3d(0, 0, 0, 0);
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    display: block \9;
}

#header .nav .ui.menu .right .h-language:hover img {
    filter: none;
}

#header .nav .ui.menu .right .h-search {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#header .nav .ui.menu .right .h-search img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all 0.5s;
}

#header .nav .ui.menu .right .h-search:hover img {
    filter: none;
}

#banner {
    height: 100vh;
    padding: 96px 70px 62px;
    position: relative;
    z-index: 0;
}

#banner::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 36%;
    min-height: 365px;
    background: var(--color2);
}

#banner .banner-content {
    height: 100%;
}

#banner .banner-content .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

#banner .banner-content .swiper-slide .txt-content {
    height: 100%;
}

#banner .banner-content .swiper-slide .txt-content h3 {
    max-width: 680px;
    line-height: 1.3;
    color: #5c4428;
}

#banner .swiper-pagination {
    bottom: 14px;
}

#banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 20px;
    background-color: transparent;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    opacity: 1;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#banner .swiper-pagination .swiper-pagination-bullet svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#banner .swiper-pagination .swiper-pagination-bullet circle {
    opacity: 0;
    transition: all 0.5s;
}

#banner .swiper-pagination .swiper-pagination-bullet:hover {
    color: var(--color3);
}

#banner .swiper-pagination .swiper-pagination-bullet-active {
    color: var(--color3);
}

#banner .swiper-pagination .swiper-pagination-bullet-active circle {
    animation: rotate 5s linear both;
    opacity: 1;
    animation-delay: 0s;
}

#banner .swiper-pagination .swiper-pagination-bullet-active circle.delayed {
    animation-delay: 1.5s;
}

#banner .mediabox {
    position: absolute;
    left: 28px;
    bottom: 8%;
    transform: translateY(-100%);
}

#banner .mediabox>span {
    transform: rotate(90deg);
    transform-origin: 5% center;
}

#banner .mediabox>span::before {
    content: '';
    display: block;
    width: 77px;
    height: 1px;
    background-color: #7d7d7d;
    margin: 0 23px;
}

#banner .mediabox .share li:nth-child(1) a {
    color: var(--color);
}

#banner .mediabox .share li:nth-child(2) a {
    color: var(--color3);
}

#banner .mediabox .share li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: #fff;
}

.btn-go {
    width: auto;
    min-width: 185px;
    padding: 0 22px;
    height: 56px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    border: 1px solid transparent;
    background-color: var(--color);
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.btn-go:hover {
    border-color: var(--color);
    background-color: #fff;
    color: var(--color);
}

.btn-go.c2 {
    background-color: var(--color2);
    min-width: 215px;
    padding: 0 40px;
}

.btn-go.c2:hover {
    background-color: #fff;
    border-color: var(--color2);
    color: var(--color2);
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 1;
    color: #fff;
    background-color: var(--color2);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.5s;
}

.btn-more:hover {
    background-color: var(--color);
}

.mk-tt .tags::before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    background-color: var(--color2);
    border-radius: 50%;
}

.mk-tt .tags em {
    transform: translateY(2px);
}

.mk-tt .tt {
    color: #5c4428;
}

.circle-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.circle-container svg {
    fill: #777777;
}

.circle-container .rotating-text {
    animation: rotate2 15s linear infinite;
    transform-origin: center;
}

.circle-container .cirico {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: var(--color2);
    font-size: 22px;
    line-height: 1;
}

#index-body .init-about .datashow {
    border-bottom: 1px solid rgba(52, 70, 129, 0.2);
}

#index-body .init-about .datashow ul li .content {
    position: relative;
}

#index-body .init-about .datashow ul li .content h4 {
    font-size: 120px;
    font-weight: bold;
    line-height: 1;
    color: rgba(246, 124, 53, 0.2);
}

#index-body .init-about .datashow ul li .content p {
    color: #5c4428;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

#index-body .init-category {
    overflow: hidden;
}

#index-body .init-category .mk-content .swiper {
    overflow: visible;
}

#index-body .init-category .mk-content .swiper .swiper-wrapper {
    align-items: center;
}

#index-body .init-category .mk-content ul li .box .imgbox {
    display: block;
    box-shadow: 0px 12px 21px 0px rgba(100, 100, 100, 0.39);
    border-radius: 20px;
    overflow: hidden;
}

#index-body .init-category .mk-content ul li .box .txtbox {
    padding: 0 30px;
}

#index-body .init-category .mk-content ul li .box .txtbox .bt {
    opacity: 0;
    transition: all 0.5s;
}

#index-body .init-category .mk-content ul li .box:hover .txtbox .bt {
    opacity: 1;
}

#index-body .init-category .mk-content ul li:nth-child(odd) .box .imgbox img {
    height: 438px;
    object-fit: cover;
}

#index-body .init-category .mk-content ul li:nth-child(odd) .box .txtbox {
    margin-top: 40px;
}

#index-body .init-product {
    background-color: #f8f4ec;
}

#index-body .init-product .mk-content ul li {
    padding: 15px;
}

#index-body .init-product .mk-content ul li .box {
    background-color: rgba(205, 205, 205, 0.2);
    border-radius: 10px 20px 20px 20px;
    transition: all 0.5s;
    padding: 20px;
}

#index-body .init-product .mk-content ul li .box .imgbox {
    background-color: #fff;
    transition: all 0.5s;
}

#index-body .init-product .mk-content ul li .box .imgbox .btn-more {
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    bottom: 0;
    left: 0;
}

#index-body .init-product .mk-content ul li .box .tt {
    color: #5c4428;
}

#index-body .init-product .mk-content ul li:hover .box {
    background-color: rgba(246, 124, 53, 0.2);
    box-shadow: 0px 0px 15px 0px rgba(100, 100, 100, 0.288);
}

#index-body .init-product .mk-content ul li:hover .box .imgbox {
    border-radius: 0px 0px 0px 100px;
}

#index-body .init-product .mk-content ul li:hover .box .imgbox .btn-more {
    opacity: 1;
}

#index-body .init-product .mk-content ul li:hover .box .tt {
    color: var(--color);
}

#index-body .init-advantage {
    position: relative;
    z-index: 0;
}

#index-body .init-advantage::before {
    content: '';
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 18%;
    background-color: #f8f4ec;
}

#index-body .init-advantage .mk-content .left .mk-list ul {
    margin: -12px;
}

#index-body .init-advantage .mk-content .left .mk-list ul li {
    padding: 12px;
}

#index-body .init-advantage .mk-content .right .imgbox {
    margin-right: calc((1560px - 100vw) / 2);
}

#index-body .init-advantage .mk-content .right .imgbox img {
    border-radius: 20px 0 0 20px;
}

#index-body .init-advantage .mk-bottom ul {
    margin: 0 -20px;
}

#index-body .init-advantage .mk-bottom ul li {
    padding: 0 20px;
}

#index-body .init-advantage .mk-bottom ul li .box {
    transition: all 0.5s;
    padding: 50px 20px;
    min-height: 276px;
    cursor: pointer;
}

#index-body .init-advantage .mk-bottom ul li .box i {
    width: 71px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#index-body .init-advantage .mk-bottom ul li .box h2 {
    color: #5c4428;
    transition: all 0.5s;
}

#index-body .init-advantage .mk-bottom ul li:hover .box {
    background-color: #f8f4ec;
    border-radius: 20px;
}

#index-body .init-advantage .mk-bottom ul li:hover .box h2 {
    color: var(--color2);
}

#index-body .init-news .mk-content {
    background-color: #f8f4ec;
    border-radius: 30px;
}

#index-body .init-news .mk-content .mk-list ul li .box .title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#index-body .init-news .mk-content .mk-list ul li .box .tt {
    color: #353535;
}

#index-body .init-news .mk-content .mk-list ul li .box .time {
    width: auto;
    min-width: 215px;
    padding: 0 30px;
    height: 56px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    border: 1px solid transparent;
    background-color: var(--color2);
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

@keyframes rotate {
    from {
        stroke-dashoffset: 119.38px;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes rotate2 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

#footer .footer-top .form form {
    position: relative;
    display: flex;
    gap: 24px;
    width: 100%;
    padding-left: 8%;
}

#footer .footer-top .form form .send {
    position: absolute;
    right: 0;
    bottom: 10px;
    cursor: pointer;
}

#footer .footer-top .form form input {
    width: 22%;
    height: 36px;
    border: 0;
    border-bottom: 1px solid #111111;
    background-color: transparent;
    padding: 2px 0;
    font-size: 22px;
}

#footer .footer-top .form form .content {
    width: 58%;
    padding-right: 35px;
}

#footer .footer-center {
    background-color: var(--color2);
}

#footer .footer-center .footer-t .footer-t-gird {
    width: 100%;
}

#footer .footer-center .footer-t .footer-t-gird .line {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

#footer .footer-center .footer-t .footer-t-gird .t-list {
    width: 100%;
}

#footer .footer-center .footer-t .footer-t-gird .t-list li {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.5s;
}

#footer .footer-center .footer-t .footer-t-gird .t-list li:hover {
    color: #fff;
}

#footer .footer-center .footer-t .footer-t-gird .t-list.logo img {
    max-width: 20%;
}

#footer .footer-center .footer-t .footer-t-gird .t-list.contact ul li {
    position: relative;
    padding-left: 40px;
    line-height: 2;
}

#footer .footer-center .footer-t .footer-t-gird .t-list.contact ul li i {
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-center .footer-b {
    background-color: rgba(248, 244, 236, 0.2);
}

#footer .footer-center .footer-b .con {
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 0;
}

#footer .footer-center .footer-b .con p {
    margin: 0 10px;
}

#footer .footer-center .footer-b .con .svg {
    transform: translateY(2px);
}

#footer .footer-center .footer-b .con svg {
    width: auto;
    max-height: 32px;
    transition: all 0.5s;
    fill: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1700px) {
    #header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li{
        margin: 0 30px;
    }
    #index-body .init-about .datashow ul li .content h4 {
        font-size: 100px;
    }

    #index-body .init-category .mk-content ul li:nth-child(odd) .box .imgbox img {
        height: 400px;
    }

    #index-body .init-advantage .mk-content .right .imgbox {
        margin-right: calc((1370px - 100vw) / 2);
    }
}

@media screen and (max-width: 1450px) {
    body {
        font-size: 16px;
    }

    .btn-go {
        zoom: 0.9;
    }

    .pt-btn {
        zoom: 0.9;
    }

    .btn-more {
        zoom: 0.9;
    }

    #header {
        padding: 0 50px;
    }
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
    margin: 0 25px;
    font-size: 18px;
}
    #banner {
        padding: 96px 50px 50px;
    }

    #banner .mediabox {
        zoom: 0.8;
        left: 20px;
        bottom: 15%;
    }

    #banner .swiper-pagination .swiper-pagination-bullet {
        zoom: 0.8;
    }

    #index-body .init-about .datashow ul li .content h4 {
        font-size: 80px;
    }

    #index-body .init-category .mk-content ul li:nth-child(odd) .box .imgbox img {
        height: 346px;
    }

    #index-body .init-advantage .mk-bottom ul {
        margin: 0 -12px;
    }

    #index-body .init-advantage .mk-bottom ul li {
        padding: 0 12px;
    }

    #index-body .init-advantage .mk-bottom ul li .box {
        padding: 30px 10px;
        min-height: unset;
    }

    #index-body .init-advantage .mk-content .right .imgbox {
        margin-right: calc((1170px - 100vw) / 2);
    }

    #index-body .init-news .mk-content .mk-list ul li .box .time {
        zoom: 0.9;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list.contact ul li i {
        zoom: 0.8;
    }
}

@media screen and (max-width: 1250px) {
    #banner {
        padding: 0px 50px 50px;
        height: 40vw;
    }

    #banner::after {
        min-height: 270px;
    }

    #index-body .init-about .datashow ul li .content h4 {
        font-size: 60px;
    }

    #index-body .init-category .mk-content ul li:nth-child(odd) .box .imgbox img {
        height: 280px;
    }

    #index-body .init-category .mk-content ul li:nth-child(odd) .box .txtbox {
        margin-top: 20px;
    }

    #index-body .init-advantage .mk-bottom ul li {
        width: 33.3%;
    }

    #index-body .init-advantage .mk-content .right .imgbox {
        margin-right: calc((940px - 100vw) / 2);
    }

    #footer .footer-top .form form {
        gap: 12px;
        padding-left: 5%;
    }

    #footer .footer-top .form form input {
        width: 30%;
    }

    #footer .footer-top .form form .content {
        width: 40%;
    }
}

@media screen and (max-width: 1000px) {
    #banner {
        height: 400px;
        padding: 0px 0 50px;
    }

    #banner .mediabox {
        display: none;
    }

    #banner .banner-content .swiper-slide {
        border-radius: 5px;
    }

    #footer .footer-center .footer-t .footer-t-gird .link {
        display: none;
    }

    #footer .footer-center .footer-b p {
        justify-content: center;
    }

    #footer .footer-center .footer-b .con p {
        font-size: 16px;
    }

    #index-body .init-about .datashow ul li .content h4 {
        font-size: 50px;
    }

    #index-body .init-category .mk-content ul li:nth-child(odd) .box .imgbox img {
        height: auto;
    }

    #index-body .init-advantage .mk-content .right .imgbox {
        margin-right: 0;
    }

    #index-body .init-advantage .mk-content .right .imgbox img {
        border-radius: 20px;
    }

    #footer .footer-top .form {
        flex-wrap: wrap;
    }

    #footer .footer-top .form form {
        padding-left: 0;
        margin-top: 3%;
    }

    #footer .footer-top .form form input::placeholder {
        font-size: 16px;
    }
}

@media screen and (max-width: 700px) {
    body {
        font-size: 15px;
    }

    .btn-go {
        zoom: 0.8;
    }

    .pt-btn {
        zoom: 0.8;
    }

    .btn-more {
        zoom: 0.8;
    }

    .phone_hide {
        display: none;
    }

    #index-body .init-about .datashow ul li .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #index-body .init-about .datashow ul li .content h4 {
        font-size: 40px;
    }

    #index-body .init-about .datashow ul li .content p {
        position: static;
        transform: none;
        width: auto;
    }

    #index-body .init-product .mk-content ul li {
        padding: 0;
    }

    #index-body .init-product .mk-content ul li .box {
        box-shadow: none !important;
    }

    #index-body .init-advantage .mk-bottom ul li {
        width: 50%;
    }

    #index-body .init-news .mk-content .mk-list ul li .box .time {
        zoom: 0.8;
    }

    #index-body .init-news .mk-content .mk-list ul li .box .title {
        flex-wrap: wrap;
    }

    #footer .footer-top .form form {
        flex-wrap: wrap;
    }

    #footer .footer-top .form form input {
        width: 100% !important;
    }
}

@media screen and (max-width: 500px) {
    #index-body .init-about .datashow ul li .content h4 {
        font-size: 30px;
    }

    #index-body .init-advantage .mk-bottom ul {
        margin: -10px;
    }

    #index-body .init-advantage .mk-bottom ul li {
        width: 100%;
        padding: 10px;
    }

    #index-body .init-advantage .mk-bottom ul li .box {
        background-color: #f8f4ec;
        border-radius: 20px;
    }

    #index-body .init-advantage .mk-content .left .mk-list ul li {
        width: 100%;
    }
}

/*----- inner-page -----*/
.oxy-nav-menu .mb2-search input[type='submit'] {
    background-image: url(../images/icon-search-white.png);
}

#mobile3 .m-search form input[type='submit'] {
    background-image: url(../images/icon-search-white.png);
}

#innerMobileBanner .banner2{
    background-image: linear-gradient(-160deg, #ffb386, rgba(0, 0, 0, 0.05));
}

@media (max-width: 1250px) {
    .inner-page {
        margin-top: 50px;
    }
}

@media (max-width: 1000px) {
    #innerMobileBanner .banner2 .text {
        font-size: 26px;
    }
}

@media (max-width: 700px) {
    #innerMobileBanner .banner2 .text {
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    #innerMobileBanner .banner2 .text {
        font-size: 22px;
    }

}

.page-header02 {
    background: linear-gradient(to right, rgba(246, 125, 53, 0.2), rgba(246, 125, 53, 0.6) 20%, #f67d35 80%, #f67d35);
}

.inner-banner {
    margin-top: 96px;
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
}

.inner-banner .mbx {
    color: #666;
}

/*
    product2-page
==============================================*/
.product2-page {
    background: #f8f4ec;
}

.product2-page .product-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
}

.product2-page .product-list ul li {
    padding: 15px;
}


.product2-page .product-list ul li .box i {
    position: absolute;
    z-index: 1;
    background: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    width: 0;
    height: 0;
}

.product2-page .product-list ul li .box i.ie1 {
    width: 2px;
    top: 0;
    left: 0;
}

.product2-page .product-list ul li .box i.ie2 {
    width: 2px;
    bottom: 0;
    right: 0;
}

.product2-page .product-list ul li .box i.ie3 {
    height: 2px;
    top: 0;
    right: 0;
}

.product2-page .product-list ul li .box i.ie4 {
    height: 2px;
    bottom: 0;
    left: 0;
}

.product2-page .product-list ul li .box:hover i.ie1 {
    height: 100%;
    bottom: 0;
    top: auto;
}

.product2-page .product-list ul li .box:hover i.ie2 {
    height: 100%;
    top: 0;
}

.product2-page .product-list ul li .box:hover i.ie3 {
    width: 100%;
    left: 0;
}

.product2-page .product-list ul li .box:hover i.ie4 {
    width: 100%;
    right: 0;
    left: auto;
}

.product2-page .product-list ul li .img {
    overflow: hidden;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    transition: all 1.2s ease;
    background: #fff;
    position: relative;
    border-radius: 8px;
}

.product2-page .product-list ul li .img img {
    width: 100%;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    transition: all 1.2s ease;
}

.product2-page .product-list ul li .img:hover img {
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    transition: all 1.2s ease;
}

.product2-page .product-list ul li .text .btm .slick-slide img {
    padding: 5px;
}

.product2-page .product-list ul li.wid-100 {
    width: 100%;
}

.product2-page .product-list ul li .pro-box .imgbox img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.product2-page .product-list ul li .pro-box .btm .tupianji .slick-list.draggable .slick-slide:last-child {
    display: none;
}

.product2-page .product-list ul li .pro-box .btm .tupianji img {
    max-height: 145px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product2-page .product-list ul li .text {
    margin-top: 0;
    padding: 10px;
}

.product2-page .product-list ul li .text .neirong p {
    font-size: 14px;
    color: #aaa;
    text-transform: lowercase;
    font-weight: 300;
}

.product2-page .product-list ul li .text h2 {
    font-weight: bold;
    margin-top: 10px;
    line-height: 32px;
    text-transform: capitalize;
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.product2-page .product-list ul li .img img.yin {
    position: absolute;
    left: 0;
    opacity: 0;
}

.product2-page .product-list ul li:hover .img img.yin {
    opacity: 1;
}

.inner-page .sidebar-box .sidebar-left {
    width: 28%;
    position: sticky;
    top: 100px;
    padding-right: 45px;
}

.inner-page .sidebar-box .sidebar-left .inner {
    max-width: 375px;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 10px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-title {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
    text-transform: uppercase;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search {
    margin-bottom: 12px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search form {
    width: 100%;
    position: relative;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
    width: 100%;
    height: 43px;
    border: 1px solid #eee;
    padding: 10px 20px;
    padding-right: 50px;
    font-size: 14px;
    color: #555555;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
    position: absolute;
    width: 43px;
    height: 43px;
    border: none;
    background: url(../images/search-icon.png) no-repeat center center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat {
    margin-bottom: 40px;
    padding-right: 5px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
    padding: 8px 0;
    font-size: 24px;
    font-weight: bold;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    line-height: 2.4;
    word-break: break-all;
    position: relative;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i {
    float: right;
    position: relative;
    padding-top: 15px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
    color: #aaa;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover,
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
    color: var(--color);
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active>a {
    color: var(--color);
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active>ol {
    display: block;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol>li {
    margin-left: 10px;
    color: #7b7b7b;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol>li a {
    font-size: 20px;
    line-height: 32px;
    color: #666;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent {
    margin-bottom: 40px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
    padding: 15px 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
    margin-right: 20px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
    height: 80px;
    max-width: 100px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
    color: #aaa;
    display: block;
    font-size: 14px;
    line-height: 2;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    line-height: 30px;
    display: -webkit-box;
    margin-bottom: 8px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
    color: var(--color);
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
    padding-top: 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
    padding-bottom: 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
    background: url(../images/ny-bg.jpg) no-repeat center center;
    padding: 215px 40px 30px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    line-height: 2;
    margin-bottom: 20px;
    font-weight: bold;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
    display: block;
}

.inner-page .sidebar-box .sidebar-right {
    width: 72%;
}

.inner-page.product2-page .sidebar-left {
    padding-right: 45px;
}

.product2-page .sidebar-right .Auxil-catdes {
    color: #666;
    margin-bottom: 18px;
    max-height: 300px;
    overflow: auto;
}

.inner-page .m-page {
    text-align: center;
    margin-top: 97px;
    margin-bottom: 10px;
}

.inner-page .m-page a,
.inner-page .m-page span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    display: inline-block;
    margin-right: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
}

.inner-page .m-page a:hover,
.inner-page .m-page span.current {
    background: var(--color);
    color: white;
}

@media screen and (max-width: 1000px) {

    .inner-page .sidebar-box .sidebar-left,
    .inner-page.product2-page .sidebar-left {
        display: none;
    }

    .inner-page .sidebar-box .sidebar-right,
    .inner-page .sidebar-box .sidebar-right {
        width: 100%;
    }

    .product2-page .sidebar-right h1 {
        margin-bottom: 15px;
        font-size: 24px;
        line-height: 44px;
        color: #111;
        font-weight: 700;
        text-transform: uppercase;
    }

}

/*==============================================
    product2-page
*/


.seoPublic>div {
    padding: 90px 0;
}

.seoPublic .Auxil-about .box .right {
    padding-top: 0;
    padding-bottom: 0;
}

.seoPublic .Auxil-about .box .left img {
   border-radius: 10px;
}

.seoPublic .Auxil-about .box .right .text {
    max-height: calc(1.8em * 8);
    overflow-y: auto;
}

.seoPublic .Auxil-news .list ul li a.img-box {
    height: auto;
}

.seoPublic .Auxil-news .list ul li .content {
    margin-top: 0;
}

.seoPublic .Auxil-news .list ul li .content div.h6 {
    height: 2.8em;
        font-weight: bold;
    color: #5c4428;
    font-size: 30px;
}

.seoPublic .Auxil-news .list ul li .content p {
    height: 4.3em;
        font-size: 22px;
}

.seoPublic .Auxil-related .list ul {
    margin: -20px -18px;
}

.seoPublic .Auxil-related .list ul li {
    padding: 20px 18px;
}

.seoPublic .Auxil-related .list ul li .box {
    box-shadow: unset;
    background-color: transparent;
}

.seoPublic .Auxil-related .list ul li .box a.img-box {
    box-shadow: 0 0 8px rgba(125, 125, 125, .2);
    background-color: #fff;
}

@media screen and (max-width: 1700px) {
    .seoPublic>div {
        padding: 80px 0;
    }
}

@media screen and (max-width: 1450px) {
    .seoPublic>div {
        padding: 70px 0;
    }
}

@media screen and (max-width: 1250px) {
    .seoPublic>div {
        padding: 60px 0;
    }
}

@media screen and (max-width: 1000px) {
    .seoPublic>div {
        padding: 50px 0;
    }
}

@media screen and (max-width: 700px) {
    .seoPublic>div {
        padding: 40px 0;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -12px -8px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 12px 8px;
    }
}

@media screen and (max-width: 500px) {
    .seoPublic>div {
        padding: 35px 0;
    }
}



/*
    prodet-page
===============================================*/
.prodet-page {
    padding: 100px 0 0;
    background: #f8f4ec;
}

.prodet-page .prodet-1 .box .left .big {
    width: 84.3%;
}

.prodet-page .prodet-1 .box .left .big .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    border: none;
    font-size: 20px;
    color: #fff;
    background-color: var(--color);
    font-family: FontAwesome;
}

.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-prev {
    left: 20px;
}

.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-next {
    right: 20px;
}

.prodet-page .prodet-1 .box .left .big ul li .imgbox img {
    background-color: #fff;
    border-radius: 10px;
}

.prodet-page .prodet-1 .box .left .small {
    width: 15.7%;
}

.prodet-page .prodet-1 .box .left .small ul {
    margin: -4%;
}

.prodet-page .prodet-1 .box .left .small ul li {
    padding: 4%;
}

.prodet-page .prodet-1 .box .left .small ul li .imgbox img {
    background-color: #fff;
    border-radius: 5px;
}

.prodet-page .prodet-1 .box .right .content bt {
    padding-bottom: 20px;
    color: var(--color);
}

.prodet-page .prodet-1 .box .right .content .text {
    line-height: 2;
    max-height: 403px;
    padding-right: 20px;
    overflow: auto;
}

.prodet-page .prodet-1 .box .right .content a.msg {
    color: #fff;
    background-color: var(--color);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    text-align: center;
    font-weight: bold;
    width: 36%;
    padding: 12px 0;
}

.prodet-page .prodet-1 .box .right .content a.msg:hover {
    color: white;
    background-color: #000000;
}

.prodet-page .prodet-1 .box .right .content .social-links h4,
.prodet-page .prodet-1 .box .right .content .social-links ul {
    display: inline-block;
    vertical-align: middle;
}

.prodet-page .prodet-2 {
    padding-top: 60px;
    background: #fff;
    padding-bottom: 80px;

}

.prodet-page .prodet-2 form input,
.prodet-page .prodet-2 form textarea {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    border: 1px solid #e5e5e5;
    margin-bottom: 17px;
}

.prodet-page .prodet-2 form textarea {
    height: 170px;
}

.prodet-page .prodet-2 form button {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;

    color: #FFFFFF;
    background-color: var(--color);
    border: none;
    padding: 10px 45px;
    text-transform: uppercase;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.prodet-page .prodet-2 form button:hover {
    background-color: #000000;
}

.prodet-page .prodet-2 .options ul {
    position: relative;
}

.prodet-page .prodet-2 .options ul::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid #cbcbcb;
}

.prodet-page .prodet-2 .options ul li {
    width: 33.333%;
    position: relative;
}

.prodet-page .prodet-2 .options ul li a {
    padding: 15px 40px;
    line-height: 44px;
    font-size: 30px;
    color: #5c4428;
    font-weight:bold;
}

.prodet-page .prodet-2 .options ul li a::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -1px;
    display: block;
    height: 3px;
    width: 0;
    background-color: var(--color);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    color: #00aba7;
}

.prodet-page .prodet-2 .options ul li.active a::after {
    width: 100%;
}

.prodet-page .prodet-2 .ret ul li .content {
    /*padding-left: 90px;
    padding-right: 90px;*/
}

.prodet-page .prodet-2 .ret ul li .content.form {
    padding-top: 60px;
    padding-bottom: 60px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-left: 90px;
    padding-right: 90px;
}

.prodet-page .prodet-2 .ret ul li .content.form h4 {
    /*text-transform: uppercase;*/
    font-size: 50px;
    font-weight:bold;
    color: #5c4428;
}

.prodet-page .prodet-3 {
    padding-top: 80px;
}

.prodet-page .prodet-3 h2 {
    text-transform: uppercase;
    text-align: center;
}

.prodet-page .prodet-3 ul li .img img {
    width: 100%;
}

.prodet-page .prodet-3 .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    border: none;
    font-size: 20px;
    color: #FFFFFF;
    background-color: var(--color);
}

.prodet-page .prodet-3 .slick-arrow.slick-prev {
    left: -50px;
}

.prodet-page .prodet-3 .slick-arrow.slick-next {
    right: -50px;
}

@media screen and (max-width: 1450px) {
    .prodet-page .prodet-2 .options ul li a {
        font-size: 22px;
        padding: 15px 26px;
        line-height: 30px;
    }
}

@media screen and (max-width: 1250px) {
    .prodet-page .prodet-1 .box .right .content h1 {
        margin: 0;
    }

    .prodet-page .prodet-1 .box .right .content a.msg {
        margin-top: 30px;
    }

    .prodet-page .prodet-2 .options ul li a {
        font-size: 20px;
        padding: 10px 20px;
        line-height: 22px;
    }
}

@media screen and (max-width: 1000px) {
    .prodet-page {
        padding: 60px 0 0;
    }

    .prodet-page .prodet-1 .box .left {
        width: 100%;
    }

    .prodet-page .prodet-1 .box .right {
        width: 100%;
        padding: 0;
        margin-top: 40px;
    }

    .prodet-page .prodet-2 {
        padding-top: 40px;
    }

    .prodet-page .prodet-3 {
        padding-top: 40px;
    }

    .prodet-page .prodet-2 .ret ul li .content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .prodet-page .prodet-2 .ret ul li .content.form {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .prodet-page .prodet-2 .options ul li a {
        font-size: 18px;
    }
}

@media screen and (max-width: 500px) {
    .prodet-page .prodet-1 .box .left .big .slick-arrow {
        zoom: 0.8;
        display: none !important;
    }

    .prodet-page .prodet-2 form input,
    .prodet-page .prodet-2 form textarea {
        padding: 10px;
    }

    .prodet-page .prodet-2 .options ul li {
        width: 100%;
    }

    .prodet-page .prodet-2 .options ul li+li {
        margin: 0;
    }

    .prodet-page .prodet-2 .ret ul li .content {
        padding-left: 0;
        padding-right: 0;
    }

    .prodet-page .prodet-2 .ret ul li .content.form {
        padding-left: 15px;
        padding-right: 15px;
    }

    .prodet-page .prodet-2 form textarea {
        height: 100px;
    }
}

/*==============================================
    prodet-page
*/



/*
    service-page
==============================================*/
.service-page {
    background: #f8f4ec;
}

.service-page .service-1 {
    padding-bottom: 120px;
}

.service-page .service-1 .top .text .title {
        color: #5c4428;
}

.service-page .service-1 .top .text .btn a.link {
    display: inline-block;
    vertical-align: top;
}

.service-page .service-1 .top .text .btn a.link em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
 
.service-page .service-1 .top .text .btn a.link span {
    display: inline-block;
    padding-left: 5px;
}

.service-page .service-1 .top .img {
    text-align: right;
    padding: 0 0 50px 0;
}

.service-page .service-1 .top .img .i2 {
    position: absolute;
    left: 0;
    bottom: -25px;
    top: auto;
    z-index: 1;max-width: 60%;
}

.service-page .service-2 {
    background: #fff;
    padding: 100px 0;
}

.service-page .service-2 .header .title {
        color: #5c4428;
}

.service-page .service-2 .content {
    margin-top: 80px;
}

.service-page .service-2 .content ul {
    margin-right: -30px;
}

.service-page .service-2 .content ul li {
    padding-right: 30px;
}

.service-page .service-2 .content ul li .ig {
    text-align: center;
}

.service-page .service-2 .content ul li .ig .img-box {
    display: block;
    width: 75%;
    margin: 0 auto;
    border-radius: 50%;
}

.service-page .service-2 .content ul li .ig .text {
    padding-top: 28px;
}

.service-page .service-2 .content ul li .ig .text span {
    font-size: 17px;
    color: #83827F;
    line-height: 1.6;
    text-transform: uppercase;
}

.service-page .service-2 .content ul li .ig .text p {
    font-size: 20px;
    line-height: 30px;
    color: #83827F;
    margin-top: 10px;
    padding: 0 30px;
}

.service-page .service-2 .content ul li .ig .text .mores {
    width: 47px;
    height: 47px;
    line-height: 45px;
    text-align: center;
    background: #fff;
    border: 1px solid #d1d0c8;
    border-radius: 50%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-top: 25px;
    display: inline-block;
}

.service-page .service-2 .content ul li .ig .text .mores img {
    display: inline-block;
    vertical-align: middle;
}

.service-page .service-2 .content ul li .ig .text .mores:hover {
    background: var(--color);
    border-color: var(--color);
}

.service-page .service-3{
  background-color: var(--color2);
}

.service-page .service-3 h3{
  color: #fff;
}

.service-page .service-4 h2{
        color: #5c4428;
}

.service-page .service-4 .content ul li .box{
    background: #fff;
     padding: 60px 60px 30px 60px;
    /*min-height: 350px;*/
    border-radius: 12px;
}
.service-page .service-4 .content ul li .box .desc{
  color: #7b7b7b;
  /*max-height: calc(30px * 6);*/
  /*overflow-y: auto;*/
}

@media screen and (max-width: 1450px) {
    .service-page .service-1 {
        padding-bottom: 80px;
    }

    .service-page .service-2 {
        padding: 70px 0;
    }

}

@media screen and (max-width: 1250px) {
  .service-page .service-4 .content ul li .box {
      padding: 30px;
  }
}

@media screen and (max-width: 1000px) {
    .service-page .service-1 {
        padding-bottom: 60px;
    }

    .service-page .service-2 {
        padding: 50px 0;
    }
    .service-page .service-4 .content ul li .box{
      min-height: 300px;
    }

    
}

@media screen and (max-width: 700px) {
    .service-page .service-1 {
        padding-bottom: 40px;
    }


    .service-page .service-2 .header {
        width: 100%;
    }

    .service-page .service-2 .content {
        margin-top: 30px;
    }

    .service-page .service-2 .content ul {
        margin-right: -15px;
    }

    .service-page .service-2 .content ul li {
        padding-right: 15px;
    }

    .service-page .service-2 .content ul li .ig .text {
        padding-top: 14px;
    }

    .service-page .service-2 .content ul li .ig .text span {
        font-size: 15px;
    }
}

@media screen and (max-width: 500px) {
    .service-page .service-2 {
        padding: 40px 0;
    }
}

/*==============================================
    service-page
*/

/*
    faq-page
==============================================*/
.faq-page .marginBox {
    text-align: center;
}

.faq-page .marginBox .h2 {
    line-height: 1.2;
    margin-top: 12px;
}

.faq-page .marginBox .box {
    margin-top: 50px;
    text-align: left;
}

.faq-page .marginBox .box .right {
    width: 100%;
}

.faq-page .marginBox .box .right .list ul li {
    margin-bottom: 20px;
    padding: 15px 35px 25px 35px;
    background: #f8f4ec;
    border: 1px solid #bfbfbf;
}

.faq-page .marginBox .box .right .list ul li span.title {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #5c4428;
    text-align: left;
    display: block;
    position: relative;
    padding-left: 25px;
    padding-top: 20px;
}

.faq-page .marginBox .box .right .list ul li span.title i {
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 27px;
    cursor: pointer;
    cursor: hand;
}

.faq-page .marginBox .box .right .list ul li span.title i:after,
.faq-page .marginBox .box .right .list ul li span.title i:before {
    content: '';
    background: #5c4428;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.faq-page .marginBox .box .right .list ul li span.title i:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-page .marginBox .box .right .list ul li .text {
    font-size: 22px;
    color: #8e8e8e;
    line-height: 2;
    margin-top: 10px;
    display: none;
}

.faq-page .marginBox .box .right .list ul li.active {
    background: white;
}

.faq-page .marginBox .box .right .list ul li.active span.title i:before {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
}

.faq-page .marginBox .box .right .list ul li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1250px) {
    .faq-page .marginBox .box .right {
        width: 100%;
        padding-left: 0;
    }
}

/*==============================================
    faq-page
*/



/*
    video-page
==============================================*/
.video-page .video-1 {
    padding: 38px 0 90px;
    background: #f6f6f6;
}

.video-page .video-1 .tag,
.video-page .video-2 .tag {
    color: var(--color);
}

.video-page .video-1 .header h2.title {
    margin-top: 14px;
    line-height: 1.2;
}

.video-page .video-1 .content {
    margin-top: 40px;
}

.video-page .video-1 .content ul {
    margin: -10px -12px;
}

.video-page .video-1 .content ul li {
    padding: 10px 12px;
}

.video-page .video-1 .content ul li .ig {
    display: block;
    -webkit-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
    background-color: #fff;
    padding: 14px;
}

.video-page .video-1 .content ul li .ig video {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

.video-page .video-2 {
    padding: 93px 0 107px;
}

.video-page .video-2 .header h2.title {
    margin-top: 14px;
}

.video-page .video-2 .content {
    margin-top: 57px;
}

.video-page .video-2 .content ul {
    margin: 0 -26px -25px 0;
}

.video-page .video-2 .content ul li {
    padding: 0 26px 25px 0;
}

.video-page .video-2 .content ul li .ig {
    background: #eee;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.video-page .video-2 .content ul li .ig span {
    display: inline-block;
}

.video-page .video-2 .content ul li .ig .fl {
    padding: 0 15px;
    width: 75%;
}

.video-page .video-2 .content ul li .ig .fr {
    width: 150px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-page .video-2 .content ul li .ig .fr img {
    margin-right: 15px;
}

.video-page .video-2 .content ul li .ig:hover {
    background: var(--color);
    color: white;
}

.video-page .video-2 .content ul li .ig:hover .fr img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 1280px) {
    .video-page .video-2 .content ul li .ig .fl {
        width: 70%;
    }
}

@media screen and (max-width: 1100px) {
    .video-page .video-2 .content ul li .ig .fl {
        width: 68%;
    }
}

@media screen and (max-width: 1000px) {
    .video-page .video-1 {
        padding: 38px 0 60px;
    }

    .video-page .video-1 .content ul li {
        width: 50%;
    }

    .video-page .video-2 .content ul li {
        width: 100%;
    }

    .video-page .video-2 {
        padding: 60px 0;
    }

    .video-page .video-2 .content {
        margin-top: 30px;
    }
}

@media screen and (max-width: 500px) {
    .video-page .video-1 {
        padding: 30px 0;
    }

    .video-page .video-1 .content ul li {
        width: 100%;
    }

    .video-page .video-2 .content ul li .ig {
        font-size: 16px;
        height: auto;
        line-height: 1;
        padding: 10px 0;
    }

    .video-page .video-2 .content ul li .ig .fl {
        width: 100%;
    }

    .video-page .video-2 .content ul li .ig .fr {
        width: 100%;
        padding: 10px 0 0 15px;
    }
}

/*==============================================
    video-page
*/

@keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    10% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    80% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: .3;
    }

    to {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}


/*
    about-page
==============================================*/

.about-page .about-1 .top .img {
    position: relative;
}

.about-page .about-1 .top .img .play {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    color: var(--color2);
}

.about-page .about-1 .top .img .play::before,
.about-page .about-1 .top .img .play::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: -15px;
    top: -15px;
    right: -15px;
    bottom: -15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
}

.about-page .about-1 .top .img .play::after {
    -webkit-animation-delay: .5s;
    -o-animation-delay: .5s;
    -ms-animation-delay: .5s;
    -moz-animation-delay: .5s;
    animation-delay: .5s;
}

.about-page .about-1 .top .text {
    max-width: 86%;
    width: 100%;
    margin: -8% auto 0;
    background: #f8f4ec;
box-shadow: 1px 3px 21px 0px rgb(100 100 100 / 20%);
    position: relative;
    z-index: 1;
    padding: 85px 68px 108px;
    border-radius: 20px;
}

.about-page .about-1 .top .text .title {
    line-height: 1.2;
    /*text-transform: uppercase;*/
    color: #5c4428;
}

.about-page .about-1 .top .text .con {
    color: #7b7b7b;
}

.about-page .about-1 .bottom {
    max-width: 86%;
    width: 100%;
    margin: 80px auto 0;
}

.about-page .about-1 .bottom ul {
    margin-right: -70px;
}

.about-page .about-1 .bottom ul li {
    padding-right: 70px;
}

.about-page .about-1 .bottom ul li .data {
    padding-bottom: 16px;
    border-bottom: 1px solid #58596c;
}

.about-page .about-1 .bottom ul li .data em {
    font-size: calc(3.4375vw + 14px);
    font-weight: bold;
    line-height: 1;
    color:  var(--color3);;
    display: inline-block;
    vertical-align: bottom;
}

.about-page .about-1 .bottom ul li .data sub {
    font-size: 22px;
    color: var(--color3);
    display: inline-block;
    vertical-align: bottom;
    line-height: 1;
    text-transform: capitalize;
    margin: 0 0 9px 7px;
}

.about-page .about-1 .bottom ul li .text .tit {
    font-size: 24px;
    font-weight: 700;
        color: #5c4428;
    line-height: 2;
    margin-top: 18px;
}

.about-page .about-1 .bottom ul li .text p {
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
}

.about-page .about-2 {
    margin-top: 137px;
}

.about-page .about-2 .box {
    padding: 122px 0;
    position: relative;
    z-index: 1;
}

.about-page .about-2 .box .img {
    width: 40%;
    vertical-align: middle;
}

.about-page .about-2 .box .text {
    width: 60%;
    max-width: 975px;
    padding-left: 110px;
    vertical-align: middle;
    color: #fff;
}

.about-page .about-2 .box .text .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-right: 24px;
}

.about-page .about-2 .box .text .header .left {
    width: 100%;
}

.about-page .about-2 .box .text .header .title {
    margin-top: 12px;
    line-height: 1.2;

}

.about-page .about-2 .box .text .header .more {
    color: #000;
    margin-bottom: 10px;
    background: #fff;
}

.about-page .about-2 .box .text .header .more span {
    text-decoration: none;
}

.about-page .about-2 .box .text .con {
    font-size: 22px;
    line-height: 1.8;
    margin-top: 41px;
}

.about-page .about-2 .box .text .list {
    margin-top: 29px;
}

.about-page .about-2 .box .text .list ul {
    margin-bottom: -25px;
}

.about-page .about-2 .box .text .list ul li {
    position: relative;
    padding-left: 47px;
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 25px;
}

.about-page .about-2 .box .text .list ul li::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    width: 30px;
    height: 2px;
    background: white;
}

.about-page .about-2 .box::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 100%;
    background: #97a27a;
    border-radius: 15px;
}

.about-page .about-3 {
    background-color: #f8f4ec;
    padding: 230px 0 130px;
    margin-top: -122px;
}

.about-page .about-3 .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 63px;
    border-bottom: 1px solid #b8b8bc;
}

.about-page .about-3 .header .left {
    width: 50%;
}

.about-page .about-3 .header .left span.tag {
    color: var(--color);
}

.about-page .about-3 .header .left .title {
    margin-top: 12px;
    line-height: 1.2;
    /*text-transform: uppercase;*/
       color: #5c4428;
    
}

.about-page .about-3 .header .right {
    width: 50%;
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
    padding: 0 0 0 20px;
}

.about-page .about-3 .content {
    margin-top: 88px;
}

.about-page .about-3 .content ul {
    display: flex;
    flex-wrap: wrap;
    margin: -18px;
}

.about-page .about-3 .content ul li {
    padding: 18px;
    width: 33.3%;
}

.about-page .about-3 .content ul li .box {
    background: #fff;
    padding: 39px 35px;
    transition: .5s;
    color: #121212;
    border-radius: 10px;
}

.about-page .about-3 .content ul li i {
    transition: all 0.5s;
    height: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-page .about-3 .content ul li .tit {
    font-size: 24px;
    font-weight: 700;
    /*text-transform: uppercase;*/
    padding: 20px 0;
}

.about-page .about-3 .content ul li p {
    font-size: 20px;
    line-height: 1.8;
    color: #7b7b7b;
     /*padding-top: 20px;*/
         max-height: 216px;
    overflow: auto;
}

.about-page .about-3 .content ul li:hover .box {
    background: var(--color2);
}

.about-page .about-3 .content ul li:hover i img {
    -webkit-filter: grayscale(100%) brightness(300);
    filter: grayscale(100%) brightness(300);
}

.about-page .about-3 .content ul li:hover .tit,
.about-page .about-3 .content ul li:hover p {
    color: white;
}

.about-page .about-3 .list {
    margin-top: 151px;
}

.about-page .about-3 .list .img-box {
    display: block;
}

.about-page .about-3 .list .img-box img {
    width: 100%;
}

.about-page .about-3 .list .slick-dots {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -54px;
    width: 100%;
    margin: 0;
    text-align: right;
    padding-right: 22px;
}

.about-page .about-3 .list .slick-dots li {
    width: 14px;
    height: 14px;
    background-color: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-right: 14px;
    cursor: pointer;
    -webkit-transition: .5;
    -moz-transition: .5;
    transition: .5;
    padding: 0;
}

.about-page .about-3 .list .slick-dots li:last-child {
    margin-right: 0;
}

.about-page .about-3 .list .slick-dots li button {
    display: none;
}

.about-page .about-3 .list .slick-dots li.slick-active {
    background: var(--color);
}

.about-page .about-4 {
    background: var(--color);
    padding: 68px 0 70px;
    max-width: 959px;
    width: 100%;
    margin-top: -17%;
    position: relative;
    z-index: 1;
    color: #fff;
}

.about-page .about-4 .box {
    max-width: 507px;
    margin: 0 94px 0 auto;
}

.about-page .about-4 .box .title {
    margin-top: 27px;
}

.about-page .about-4 .box .con {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 27px;
}

.about-page .about-4 .box .info {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
}

.about-page .about-4 .box .info .tit {
    font-size: 20px;
    line-height: 1.5;
}

.about-page .about-4 .box .info p {
    font-size: 16px;
    line-height: 1.8;
}

.about-page .about-4 .box .more {
    margin-top: 36px;
    background: #000;
}

.about-page .about-4 .box .more:hover {
    background: #fff;
    color: var(--color);
}

.about-page .about-5 .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 45px;
    border-bottom: 1px solid #b8b8bc;
}

.about-page .about-5 .header span.tag {
    color: var(--color);
}

.about-page .about-5 .header .title {
    margin-top: 12px;
    line-height: 1.2;
    /*text-transform: uppercase;*/
        color: #5c4428;
}

.about-page .about-5 .header .more {
    background: var(--color);
    margin-bottom: 4px;
}

.about-page .about-5 .header .more:hover {
    background: #000;
}

.about-page .about-5 .content {
    margin-top: 47px;
}

.about-page .about-5 .content ul {
    margin-right: -42px;
}

.about-page .about-5 .content ul li {
    padding-right: 42px;
}

.about-page .about-5 .content ul li .img-box {
    display: block;
}

.about-page .about-5 .content ul li .img-box img {
    width: 100%;
}

.about-page .about-5 .content ul .slick-dots {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -54px;
    width: 100%;
    margin: 0;
    text-align: center;
}

.about-page .about-5 .content ul .slick-dots li {
    width: 14px;
    height: 14px;
    background-color: #d2d2d2;
    display: inline-block;
    border-radius: 50%;
    margin-right: 14px;
    cursor: pointer;
    -webkit-transition: .5;
    -moz-transition: .5;
    transition: .5;
    padding: 0;
}

.about-page .about-5 .content ul .slick-dots li:last-child {
    margin-right: 0;
}

.about-page .about-5 .content ul .slick-dots li button {
    display: none;
}

.about-page .about-5 .content ul .slick-dots li.slick-active {
    background: var(--color);
}

@media screen and (max-width: 1450px) {
    .about-page .about-1 .top .img .play {
        zoom: 0.8;
    }

    .about-page .about-3 {
        padding: 80px 0;
        margin-top: 0;
    }

    .about-page .about-3 .content ul li .tit {
        font-size: 22px;
    }

    .about-page .about-3 .content ul li p {
        max-height: 140px;
        overflow-y: auto;
    }

    .about-page .about-4 .box {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1250px) {

    .about-page .about-1 .top .text {
        padding: 70px 50px 90px;
    }

    .about-page .about-1 .bottom ul li .data em {
        font-size: calc(3.0vw + 14px);
    }

    .about-page .about-1 .bottom ul {
        margin-right: -35px;
    }

    .about-page .about-1 .bottom ul li {
        padding-right: 35px;
    }

    .about-page .about-2 .box .text {
        padding: 0 15px 0 30px;
    }

    .about-page .about-3 .content ul {
        margin: -9px;
    }

    .about-page .about-3 .content ul li {
        padding: 9px;
    }

    .about-page .about-3 .content ul li .box {
        padding: 30px 15px;
    }

    .about-page .about-3 .content ul li .tit {
        font-size: 20px;
    }

    .about-page .about-4 {
        max-width: 800px;
    }
}

@media screen and (max-width: 1000px) {
    .about-page .about-1 .top .img .play {
        zoom: 0.7;
    }

    .about-page .about-1 .top .text {
        padding: 50px 40px;
        max-width: unset;
        margin-top: 20px;
    }

    .about-page .about-1 .top .text .con {
        font-size: 18px;
    }

    .about-page .about-1 .bottom ul {
        margin-right: -20px;
    }

    .about-page .about-1 .bottom ul li {
        padding-right: 20px;
    }

    .about-page .about-1 .bottom {
        max-width: unset;
        margin: 60px auto 0;
    }

    .about-page .about-1 .bottom ul li .text .tit {
        font-size: 20px;
        line-height: 1.8;
    }

    .about-page .about-1 .bottom ul li .text p {
        font-size: 16px;
        line-height: 30px;
    }

    .about-page .about-2 {
        margin-top: 60px;
    }

    .about-page .about-2 .box {
        padding: 0 0 60px;
    }

    .about-page .about-2 .box .img {
        width: 100%;
    }

    .about-page .about-2 .box .text {
        width: 100%;
        margin-top: 20px;
    }

    .about-page .about-2 .box::after {
        width: 100%;
    }

    .about-page .about-3 {
        margin-top: 0;
        padding: 60px 0;
    }

    .about-page .about-3 .header {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 30px;
    }

    .about-page .about-3 .header .left {
        width: 100%;
    }

    .about-page .about-3 .header .right {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .about-page .about-3 .content {
        margin-top: 30px;
    }

    .about-page .about-3 .content ul li {
        width: 50%;
    }


    .about-page .about-3 .list {
        margin-top: 60px;
    }

    .about-page .about-3 .list .slick-dots {
        bottom: -40px;
    }

    .about-page .about-4 {
        max-width: 700px;
    }

    .about-page .about-4 {
        max-width: 680px;
        margin-top: 0;
    }

    .about-page .about-5 .header {
        padding-bottom: 30px;
    }

    .about-page .about-5 .header .left {
        width: 52%;
    }

    .about-page .about-5 .content ul {
        margin-right: -20px;
    }

    .about-page .about-5 .content ul li {
        padding-right: 20px;
    }
}

@media screen and (max-width: 700px) {
    .about-page .about-1 .top .text {
        padding: 30px 15px;
    }

    .about-page .about-1 .top .text .con {
        margin-top: 20px;
    }

    .about-page .about-1 .bottom ul li {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .about-page .about-1 .bottom ul li .data {
        padding-bottom: 0;
    }

    .about-page .about-1 .bottom {
        margin: 30px auto 0;
    }

    .about-page .about-2 .box .text .con {
        margin-top: 20px;
    }

    .about-page .about-2 {
        margin-top: 30px;
    }

    .about-page .about-3 {
        padding: 30px 0;
    }

    .about-page .about-3 .content ul li {
        width: 100%;
    }

    .about-page .about-3 .content ul li .tit {
        font-size: 18px;
        line-height: 1.8;
    }

    .about-page .about-3 .content ul li p {
        font-size: 17px;
        margin-top: 10px;
    }

    .about-page .about-3 .list {
        margin-top: 30px;
    }

    .about-page .about-4 {
        padding: 30px 15px;
    }

    .about-page .about-5 .header {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .about-page .about-5 .header .left {
        width: 100%;
    }

    .about-page .about-5 .header .left .title {
        margin-top: 15px;
    }

    .about-page .about-5 .header .right {
        margin-top: 20px;
    }

    .about-page .about-5 .content {
        margin-top: 20px;
    }

    .about-page .about-5 .content ul .slick-dots {
        bottom: -25px;
    }
}

@media screen and (max-width: 500px) {

    .about-page .about-1 .top .text .con {
        font-size: 16px;
        line-height: 30px;
    }

    .about-page .about-2 .box {
        padding-bottom: 30px;
    }

    .about-page .about-2 .box .text .header {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .about-page .about-2 .box .text .header .left {
        width: 100%;
    }

    .about-page .about-2 .box .text .header .left .title {
        margin-top: 10px;
    }

    .about-page .about-2 .box .text .header .right {
        padding: 20px 0 0;
    }

    .about-page .about-2 .box .text .con {
        font-size: 16px;
        margin-top: 10px;
        line-height: 30px;
    }

    .about-page .about-2 .box .text .list ul li {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-page .about-3 .header {
        padding-bottom: 10px;
    }

    .about-page .about-3 .header .left .title {
        margin-top: 10px;
    }

    .about-page .about-3 .header .right {
        font-size: 16px;
        line-height: 30px;
    }

    .about-page .about-3 .content ul li p {
        font-size: 16px;
        line-height: 30px;
    }

    .about-page .about-4 .box .title {
        margin-top: 10px;
    }

    .about-page .about-4 .box .con {
        margin-top: 10px;
    }

    .about-page .about-4 .box .info {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 10px;
    }

    .about-page .about-4 .box .info p {
        font-size: 14px;
        line-height: 2;
    }

    .about-page .about-4 .box .info .left {
        width: 100%;
    }

    .about-page .about-4 .box .info .right {
        width: 100%;
        margin-top: 20px;
    }

    .about-page .about-4 .box .more {
        margin-top: 20px;
    }

    .about-page .about-5 .header .left .title {
        margin-top: 10px;
    }
}

/*==============================================
    about-page
*/


/*
    development-page
==============================================*/

.development-page .development-1 {
    background: var(--color);
    padding: 110px 0 141px;
    color: white;
}

.development-page .development-1 .header .title {
    margin-top: 12px;
    line-height: 1.2;
}

.development-page .development-1 .header .con {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 29px;
}

.development-page .development-1 .time {
    margin-top: 113px;
}

.development-page .development-1 .time ul {
    padding: 0 0 0 60px;
    position: relative;
    z-index: 1;
}

.development-page .development-1 .time ul .slick-slide:nth-child(1) li {
    padding-left: 0;
}

.development-page .development-1 .time ul li {
    padding-left: 120px;
    cursor: pointer;
}

.development-page .development-1 .time ul li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 12px;
    position: relative;
    z-index: 2;
    margin-top: 5px;
}

.development-page .development-1 .time ul li i::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
}

.development-page .development-1 .time ul li i::after {
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    opacity: 0;
}

.development-page .development-1 .time ul li p {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 8px;
}

.development-page .development-1 .time ul li.active i {
    background: white;
}

.development-page .development-1 .time ul li.active i::before {
    background: var(--color);
}

.development-page .development-1 .time ul li.active i::after {
    opacity: 1;
}

.development-page .development-1 .time ul li.hide {
    opacity: 0;
    cursor: inherit;
}

.development-page .development-1 .time ul::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 17px;
    width: 100%;
    height: 1px;
    background: white;
}

.development-page .development-1 .content {
    margin-top: 99px;
}

.development-page .development-1 .content ul li {
    background: white;
    padding: 53px 94px 53px 37px;
}

.development-page .development-1 .content ul li .left {
    width: 12%;
    vertical-align: middle;
}

.development-page .development-1 .content ul li .left .title {
    color: #121212;
    font-size: 40px;
    font-weight: bold;
}

.development-page .development-1 .content ul li .right {
    font-size: 20px;
    line-height: 1.5;
    color: #656565;
    vertical-align: middle;
    width: 88%;
    max-height: 120px;
    padding-right: 5px;
    overflow-y: auto;
}

.development-page .development-1 .content ul li .right::-webkit-scrollbar-thumb {
    background: var(--color);
}

.development-page .development-2 {
    padding: 49px 0 167px;
}

.development-page .development-2 .box .text {
    padding: 9px 36px 0 0;
}

.development-page .development-2 .box .text span.tag {
    color: var(--color);
}

.development-page .development-2 .box .text .title {
    margin-top: 12px;
    color: #121212;
    line-height: 1.2;
}

.development-page .development-2 .box .text .con {
    font-size: 20px;
    color: #474747;
    line-height: 1.5;
    margin-top: 40px;
}

.development-page .development-2 .box .text .arrow {
    margin-top: 42px;
}

.development-page .development-2 .box .text .arrow .prev,
.development-page .development-2 .box .text .arrow .next {
    width: 59px;
    height: 59px;
    background-color: #f6f6f6;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
}

.development-page .development-2 .box .text .arrow .prev::after,
.development-page .development-2 .box .text .arrow .next::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 18px;
    width: 23px;
    height: 16px;
    background: url(../images/arrow.png) no-repeat;
    -webkit-filter: brightness(0);
    filter: brightness(0);
}

.development-page .development-2 .box .text .arrow .prev:hover,
.development-page .development-2 .box .text .arrow .next:hover {
    background: var(--color);
}

.development-page .development-2 .box .text .arrow .prev:hover::after,
.development-page .development-2 .box .text .arrow .next:hover::after {
    -webkit-filter: none;
    filter: none;
}

.development-page .development-2 .box .text .arrow .prev::after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.development-page .development-2 .box .text .arrow .next {
    margin-left: 29px;
}

.development-page .development-2 .box .img {
    padding-left: 30px;
}

#index-body .partner {
    padding: 141px 0 202px;
}

#index-body .partner .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 64px;
    border-bottom: 1px solid #b8b8bc;
}

#index-body .partner .header .left {
    width: 55%;
    padding-right: 60px;
}

#index-body .partner .header .left .title {
    margin-top: 12px;
    line-height: 1.2;
    font-size: 40px;
}

#index-body .partner .header .right {
    width: 45%;
    font-size: 20px;
    line-height: 1.5;
    color: #474747;
}

#index-body .partner .content {
    margin-top: 55px;
}

#index-body .partner .content ul {
    margin: 0 -41px -58px 0;
}

#index-body .partner .content ul li {
    padding: 0 41px 59px 0;
}

@media screen and (max-width: 1250px) {
    .development-page .development-1 .time ul li {
        padding-left: 90px;
    }
}

@media screen and (max-width: 1000px) {
    .development-page .development-1 .time ul li {
        padding-left: 70px;
    }
}

@media screen and (max-width: 1000px) {
    .development-page .development-1 {
        padding: 60px 0;
    }

    .development-page .development-1 .time {
        margin-top: 60px;
    }

    .development-page .development-1 .content {
        margin-top: 60px;
    }

    .development-page .development-1 .content ul li {
        padding: 53px 30px;
    }

    .development-page .development-1 .content ul li .left {
        width: 15%;
    }

    .development-page .development-1 .content ul li .right {
        width: 85%;
    }

    .development-page .development-2 {
        padding: 49px 0 60px;
    }

    .development-page .development-2 .box .text {
        vertical-align: middle;
        padding: 0 15px 0 0;
    }

    .development-page .development-2 .box .img {
        vertical-align: middle;
        padding-left: 15px;
    }
}

@media screen and (max-width: 700px) {
    .development-page .development-1 .time ul li {
        padding-left: 20px;
    }

    .development-page .development-1 {
        padding: 30px 0;
    }

    .development-page .development-1 .header .title {
        margin-top: 10px;
    }

    .development-page .development-1 .header .con {
        margin-top: 10px;
    }

    .development-page .development-1 .time {
        margin-top: 30px;
    }

    .development-page .development-1 .content {
        margin-top: 30px;
    }

    .development-page .development-1 .content ul li {
        padding: 30px 15px;
    }

    .development-page .development-1 .content ul li .left {
        width: 20%;
    }

    .development-page .development-1 .content ul li .right {
        width: 80%;
    }

    .development-page .development-2 {
        padding: 30px 0;
    }

    .development-page .development-2 .box .text {
        width: 100%;
        padding: 0;
    }

    .development-page .development-2 .box .img {
        width: 100%;
        padding: 20px 0 0 0;
    }
}

@media screen and (max-width: 500px) {
    .development-page .development-1 .header .con {
        font-size: 15px;
        line-height: 1.9;
    }

    .development-page .development-1 .time ul li {
        padding-left: 0;
    }

    .development-page .development-1 .content ul li .left {
        width: 100%;
    }

    .development-page .development-1 .content ul li .right {
        width: 100%;
        font-size: 18px;
        line-height: 1.6;
        margin-top: 20px;
    }

    .development-page #index-body .partner {
        display: block;
        padding: 30px 0 0;
    }

    .development-page #index-body .partner .header .title {
        margin-top: 10px;
    }

    .development-page #index-body .partner .header .right {
        font-size: 16px;
        line-height: 1.8;
    }

    .development-page .development-2 .box .text .title {
        margin-top: 10px;
    }

    .development-page .development-2 .box .text .con {
        font-size: 16px;
        line-height: 1.8;
        margin-top: 10px;
    }

    .development-page .development-2 .box .text .arrow {
        margin-top: 15px;
    }
}

/*==============================================
    development-page
*/


/*
    gallery-page
==============================================*/
.gallery-page ul {
    margin: -15px;
}

.gallery-page ul li {
    padding: 15px;
}

.gallery-page ul li a {
    display: block;
    background: white;
}

/*==============================================
    gallery-page
*/



/*
    contact-page
==============================================*/
.contact-page {
    padding-top: 100px;
    background: #f8f4ec;
}

.contact-page .contact-1 .left form ul {
    margin: 0 -30px -37px 0;
}

.contact-page .contact-1 .left form ul li {
    padding: 0 30px 37px 0;
}

.contact-page .contact-1 .left form ul li .box {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d1d0c8;
}

.contact-page .contact-1 .left form ul li .box input,
.contact-page .contact-1 .left form ul li .box textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0 13px 36px;
    font-size: 20px;
    line-height: 30px;
    color: #7b7b7b;
}

.contact-page .contact-1 .left form ul li .box textarea {
    height: 144px;
}

.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
    color: #83827F;
}

.contact-page .contact-1 .left form ul li .box input:-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
    color: #83827F;
}

.contact-page .contact-1 .left form ul li .box input::-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
    color: #83827F;
}

.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
    color: #83827F;
}

.contact-page .contact-1 .left form ul li .box input::placeholder,
.contact-page .contact-1 .left form ul li .box textarea::placeholder {
    color: #83827F;
}

.contact-page .contact-1 .left form ul li .box i {
    position: absolute;
    left: 0;
    top: 14px;
    font-size: 20px;
}

.contact-page .contact-1 .left form ul li .box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.contact-page .contact-1 .left form ul li .btn-go input[type="submit"] {
    background: transparent;
    border: none;
    width: 100%;
}

.contact-page .contact-1 .left form ul li p {
    display: inline-block;
    vertical-align: middle;
    padding-left: 26px;
    font-size: 14px;
    line-height: 28px;
    color: #83827F;
}

.contact-page .contact-1 .left form ul li p span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
}

.contact-page .contact-1 .left form ul li:hover .box::before,
.contact-page .contact-1 .left form ul li.active .box::before {
    width: 100%;
}

.contact-page .contact-1 .left form ul li.wid-100 {
    width: 100% !important;
}

.contact-page .contact-1 .right {
    padding-left: 7.65%;
}

.contact-page .contact-1 .right .title {
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-page .contact-1 .right p {
    font-size: 22px;
    line-height: 30px;
    color: #83827F;
    margin-top: 30px;
}

.contact-page .contact-1 .right .list {
    margin-top: 40px;
}

.contact-page .contact-1 .right .list ul li {
    color: #83827F;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 25px;
}

.contact-page .contact-1 .right .list ul li i {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    width: 20px;
    text-align: center;
    margin-top: 5px;
}

.contact-page .contact-1 .right .list ul li span {
    display: inline-block;
    vertical-align: top;
    width: 90%;
    padding-left: 20px;
}

.contact-page .contact-1 .right .list ul li:last-child {
    margin-bottom: 0;
}

.contact-page .contact-2 {
    padding-top: 120px;
}

.contact-page .contact-2 #mapContainer {
    height: 520px;
}

@media screen and (max-width: 1250px) {
    .contact-page .contact-1 .right {
        padding-left: 5.65%;
    }
}

@media screen and (max-width: 1000px) {
    .contact-page {
        padding-top: 60px;
    }

    .contact-page .contact-1 .left {
        width: 100%;
    }

    .contact-page .contact-1 .right {
        width: 100%;
        padding: 30px 0 0 0;
    }

    .contact-page .contact-2 {
        padding-top: 60px;
    }

    .contact-page .contact-2 #mapContainer {
        height: 360px;
    }
}

@media screen and (max-width: 700px) {

    .contact-page .contact-1 .left form ul li .more {
        padding: 18px 20px;
    }

    .contact-page .contact-2 {
        padding-top: 30px;
    }
}

@media screen and (max-width: 500px) {
    .contact-page .contact-1 .left form ul li .more {
        padding: 2px 12px;
    }

    .contact-page .contact-1 .left form ul li p {
        display: block;
        padding: 10px 0 0 0;
    }

    .contact-page .contact-1 .left form ul {
        margin-bottom: -20px;
    }

    .contact-page .contact-1 .left form ul li {
        padding-bottom: 20px;
    }

    .contact-page .contact-1 .left form ul li .box input,
    .contact-page .contact-1 .left form ul li .box textarea {
        padding: 10px 0 10px 36px;
    }

    .contact-page .contact-1 .right p {
        font-size: 16px;
        line-height: 30px;
    }

    .contact-page .contact-1 .right .list ul li {
        font-size: 16px;
    }

    .contact-page .contact-2 #mapContainer {
        height: 260px;
    }
}

/*==============================================
    contact-page
*/


/*
    design-page
===============================================*/

.design-page .design-1 .ui.container {
    max-width: 100%;
}



.design-page .design-1 .ui.container  img {
    border-radius: 20px;
}

.design-page .design-2 {
    padding: 140px 0 110px;
}

.design-page .design-2 .i-title {
    line-height: 1.2;
    margin-bottom: 65px;
    margin-top: 10px;
    /*text-transform: uppercase;*/
        color: #5c4428;
}

.design-page .design-2 .left .img {
    text-align: left;
}

.design-page .design-2 .left .img img {
    border-radius: 10px;
}


.design-page .design-2 .right {
    padding-left: 55px;
}

.design-page .design-2 .right img {
    border-radius: 10px;
}

.design-page .design-2 .right .txt {
    font-size: 22px;
    color: #7b7b7b;
    margin-top: 90px;
}

.design-page .design-3 {
    padding-bottom: 120px;
}

.design-page .design-3 .i-title {
    margin-bottom: 48px;
    color: #5c4428;
}

.design-page .design-3 ul {
    margin: -40px;
}

.design-page .design-3 ul li {
    padding: 40px 20px;
}

.design-page .design-3 ul .slick-list {
    padding: 0 28%;
}

.design-page .design-3 ul li .box {
    position: relative;
    box-shadow: 0px -0.4px 9px 3px rgb(0 0 0 / 2%);
    border-radius: 10px;
    padding: 60px;
    background-color: #f8f4ec;
    min-height: 17.5vw;
}

.design-page .design-3 ul li .box img {
    width: 100%;
}

.design-page .design-3 ul li .content {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    background: white;
    position: absolute;
    left: 0;
    bottom: 18%;
    padding: 20px;
    opacity: 0;
}

.design-page .design-3 ul li .content h4 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1.2;
}

.design-page .design-3 ul li .content p {
    font-size: 18px;
    font-weight: bold;
}

.design-page .design-3 ul li:hover .content {
    opacity: 1;
}

.design-page .design-3 ul .slick-dots {
    margin: 0;
    text-align: center;
}

.design-page .design-3 ul .slick-dots li {
    padding: 0;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #e5e5e5;
    display: inline-block;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.design-page .design-3 ul .slick-dots li button {
    display: none;
}

.design-page .design-3 ul .slick-dots li.slick-active {
    background: var(--color);
}

.design-page .design-4 {
    background: url(../images/design-4-bg.jpg) no-repeat;
    color: white;
    padding: 107px 0 70px;
    background-attachment: fixed;
}

.design-page .design-4 .left {
    position: sticky;
    top: 170px;
    width: 30%;
}

.design-page .design-4 .left .i-title {
    line-height: 1.2;
    /*text-transform: uppercase;*/
}

.design-page .design-4 .right {
    padding-left: 90px;
    width: 70%;
}

.design-page .design-4 .right ul li {
    padding-left: 140px;
    position: relative;
    padding-bottom: 100px;
}

.design-page .design-4 .right ul li .icon {
    width: 77px;
    height: 77px;
    border-radius: 100%;
    background: #f8f4ec;
    text-align: center;
    line-height: 77px;
    position: absolute;
    left: 0;
    top: 0;
}

.design-page .design-4 .right ul li .icon img {
    vertical-align: middle;
}

.design-page .design-4 .right ul li .icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 130%;
    width: 1px;
    height: 262%;
    background: rgba(255, 255, 255, 0.3);
}

.design-page .design-4 .right ul li:last-child .icon::after {
    content: none;
}

.design-page .design-4 .right ul li h4 {
    font-size: 30px;
    font-weight: bold;
    /*text-transform: uppercase;*/
}

.design-page .design-4 .right ul li .des {
    font-size: 22px;
    line-height: 32px;
    margin-top: 14px;
    opacity: 0.7;
}


.design-page .design-5{
 
  position: relative;
}
.design-page .design-5 .i-title{
  line-height: 1.2;
  color: #5c4428;
}
.design-page .design-5 .wrap{
  margin-top: 70px;
}
.design-page .design-5 .left{
  
}

.design-page .design-5 .left .txt{
  font-size: 22px;
  line-height: 36px;
  color: #7b7b7b;
  margin-bottom: 45px;
}
.design-page .design-5 .left .txt span{
  font-weight:bold;
  color: #626262;
}
.design-page .design-5 .left img{
  width: 100%;
}

.design-page .design-5 .right{

 
}
.design-page .design-5 .right img{
 border-radius: 10px;
}


@media screen and (max-width:1600px) {
 
}

@media screen and (max-width:1450px) {
    .design-page .design-2 .right .txt{
        font-size: 20px;
            max-height: calc(1.5em * 12);
    overflow-y: auto;
    }
    .design-page .design-4 .right {
        padding-left: 30px;
    }

    .design-page .design-5 .wrap {
        padding-left: 0;
    }
}

@media screen and (max-width:1250px) {
    .design-page .design-2 .right {
        padding-left: 50px;
    }

    .design-page .design-3 ul li {
        padding: 20px;
    }

    .design-page .design-3 ul {
        margin: -20px;
    }

    .design-page .design-3 ul li .content h4 {
        font-size: 21px;
    }

    .design-page .design-4 .right ul li {
        padding-left: 105px;
        padding-bottom: 40px;
    }

    .design-page .design-4 .right ul li .icon:after {
        height: 225%;
    }

    .design-page .design-5 .wrap .right {
        padding-left: 50px;
    }
}

@media screen and (max-width:1000px) {


    .design-page .design-1 .ui.container {
        padding: 0 20px;
    }

    .design-page .design-2 {
        padding: 60px 0 65px;
    }    
    .design-page .design-2 .right .txt{
        font-size: 18px;
    }
    .design-page .design-3 ul li {
        width: 100%;
    }


    .design-page .design-4 .left {
        position: relative;
        top: 0;
    }

    .design-page .design-4 .right {
        width: 100%;
        margin-top: 20px;
    }

    .design-page .design-5 {
        padding: 55px 0 50px;
    }

    .design-page .design-5 .wrap .left {
        width: 100%;
    }

    .design-page .design-5 .wrap .right {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }

    .design-page .design-5 .ui.container {
        padding: 0 15px;
    }
}

@media screen and (max-width:700px) {

    .design-page .design-2 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 25px;
    }

    .design-page .design-2 .left {
        width: 100%;
    }

    .design-page .design-2 .i-title {
        margin-bottom: 30px;
    }

    .design-page .design-3 ul .slick-list {
        padding: 0;
    }

    .design-page .design-3 {
        padding: 0 0 50px;
    }

    .design-page .design-4 .right {
        padding-left: 0;
    }
}

@media screen and (max-width:500px) {
    .design-page .design-4 .right ul li {
        padding-left: 0;
    }

    .design-page .design-4 .right ul li .icon {
        position: relative;
        margin-bottom: 12px;
    }

    .design-page .design-4 .right ul li .icon::after {
        content: none;
    }
}

/*==============================================
    design-page
*/


/*
    news-page
===============================================*/
.news-page .tips_title {
    font-weight: bold;
    padding-left: 60px;
    text-transform: uppercase;
    padding-right: 25px;
    display: inline-block;
    position: relative;
    line-height: 1;
    z-index: 2;
}

.news-page .tips_title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 16px;
    bottom: 0;
    left: 0;
    background-color: var(--color);
    z-index: -1;
}

.news-page .content {
    margin-top: 50px;
}

.news-page .content ul li {
    position: relative;
}

.news-page .content ul li .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f8f4ec;
}

.news-page .content ul li .box {
    position: relative;
    z-index: 1;
    border: 1px solid #eceef1;
    padding: 50px;
    background-color: #fff;
}

.t_1 {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.news-page .content ul li .box .title {
    display: block;
    font-size: 30px;
    /*text-transform: uppercase;*/
}

.news-page .content ul li .box .title::before {
    display: none;
}

.news-page .content ul li .box .title:hover {
    color: var(--color);
}

.news-page .content ul li .box .des {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 20px;
    line-height: 2;
}

.news-page .content ul li .box .des:hover {
    color: var(--color);
}

.news-page .content ul li .box .info_c {
    margin-top: 30px;
}

.news-page .content ul li .box .info_c .cat_name {
    width: auto;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    background-color: var(--color);
    padding: 4px 22px;
    border-radius: 40px;
}

.news-page .content ul li .box .info_c .time {
    color: rgba(33, 33, 33, 0.7);
    margin-left: 30px;
    width: auto;
    font-size: 16px;
    line-height: 30px;
    vertical-align: middle;
}

.news-page .content ul li:hover {
    z-index: 2;
}

.news-page .content ul li:hover .box {
    -webkit-transform: translate(10px, -10px);
    -moz-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    -o-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
}

@media screen and (max-width: 1000px) {
    .news-page {
        text-align: center;
    }

    .news-page .tips_title {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 24px;
        line-height: 44px;
    }

    .news-page .content .grid-box li {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .news-page .content ul li .box {
        padding: 20px 16px;
        height: unset;
    }

    .news-page .content ul li .box .info_c .time {
        width: 100%;
        margin: 16px 0 0;
    }

    .news-page .content ul li .box .title {
        font-size: 20px;
        line-height: 1.8;
    }
}

/*==============================================
    news-page
*/


/*
    newdet-page
==============================================*/
.newdet-page .init-1 {
   background-color:#f8f4ec;
}

.newdet-page .init-1 .container .title {
    font-size: 50px;
    /*text-transform: uppercase;*/
}

.newdet-page .init-1 .container .title::before {
    display: none;
}

.newdet-page .init-1 .container .time {
    color: #9e9e9e;
    margin-top: 30px;
}

.newdet-page .init-1 .container .content {
    margin-top: 20px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    color: #767676;
    padding: 30px 0;
    line-height: 2;
}

.newdet-page .init-1 .container .bottom_cont {
    margin-top: 40px;
}

.newdet-page .init-1 .container .bottom_cont .left {
    width: calc(100% - 160px);
    padding-right: 20px;
}

.newdet-page .init-1 .container .bottom_cont .right {
    width: 160px;
}

.newdet-page .init-1 .container .bottom_cont .right .share_name {
    color: #767676;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a {
    display: inline-block;
    margin-top: 10px;
    width: 28px;
    height: 28px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    background-color: var(--color);
    font-size: 16px;
    border-radius: 50%;
    margin-right: 12px;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a i {
    position: relative;
    z-index: 2;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a::before {
    background-color: #245e3e;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list2 {
    background-color: #00aced;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list3 {
    background-color: #cb2027;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list4 {
    background-color: #cc2366;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a:last-child {
    margin-right: 0;
}

.pro_public .init-related {
    background-color: #f7f7f7;
}

.pro_public .init-related .container .tips {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.pro_public .init-related .container .content {
    margin-top: 40px;
}

.pro_public .init-related .container .content .slick .slick-list {
    margin: 0 -25px;
}

.pro_public .init-related .container .content .slick li {
    padding: 0 25px;
}

.pro_public .init-related .container .content .slick li .box .img {
    background-color: #fff;
    display: block;
    padding: 40px;
}

.pro_public .init-related .container .content .slick li .box .text {
    display: block;
    margin-top: 20px;
}

.pro_public .init-related .container .content .slick li .box .text:hover {
    color: var(--color);
}

@media screen and (max-width: 1000px) {
    .seohide {
        display: none !important;
    }

    .newdet-page .init-1 .container .bottom_cont {
        margin-top: 20px;
    }

    .newdet-page .init-1 .container .bottom_cont .left {
        width: 100%;
        padding: 0;
    }

    .newdet-page .init-1 .container .bottom_cont .right {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .newdet-page .init-1 .container .bottom_cont {
        margin-top: 0;
    }

    .newdet-page .init-1 .container .time {
        margin-top: 16px;
    }
}

/*==============================================
    newdet-page
*/

@media screen and (max-width: 1000px) {
    .m-link {
        text-align: left;
    }
}

.productList ul {
    margin: -15px;
}

.productList ul li {
    padding: 15px;
}



.lg-page ul {
    margin: -15px;
}

.lg-page li {
    padding: 15px;
}

table tbody tr:nth-child(even) {
    background: #f8f4ec;
}

.seoPublic .Auxil-about .box .right .text {
    font-size: 22px;
   max-height: 100%;
}
.seoPublic .Auxil-about .box .right div.h3 {
    font-size: 30px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1em;
    font-weight: bold;
}
.seoPublic > div:nth-child(odd) {
    background: #ffffff;
}