/*-------------------------------
			swiper-slide start
			----------------------------------*/
#sj {
    display: none;
}

@media (max-width:950px) {
    #sj {
        display: block;
    }

    #pc {
        display: none;
    }
}

.index_banner .swiper-button-next:after,
.index_banner .swiper-button-prev:after {
    font-family: none !important;
    content: '' !important;
}

.slider_banner {
    position: relative;
    overflow: hidden;
    z-index: 98;
}


.common_title {
    margin-bottom: 30px;
}

.common_title .title {
    justify-content: center;
}

.common_title .title a {
    display: inline-block;
    color: #333333;
}

.common_title .title a:hover {
    color: var(--conmmonColor);
}

.index_product {
    margin-top: 5%;
    position: relative;
}

.index_product .product_bg {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.index_product .product_bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.index_product .product_desc {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.index_product .product_wrap {
    padding: 5% 0 10%;
    overflow: hidden;
}

.index_product .product_list .product_item {
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    transform: scale(.9);
}

.index_product .product_list .product_item.swiper-slide-prev {
    transition: 300ms;
    transform: scale(.9) translateX(-6%);
}

.index_product .product_list .product_item.swiper-slide-next {
    transition: 300ms;
    transform: scale(.9) translateX(6%);
}

.index_product .product_list .product_item .item_img {
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

.index_product .product_list .product_item .item_img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.index_product .product_list .product_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 1;
}

.index_product .product_list .product_item.swiper-slide-active {
    transform: scale(1.26);
}

.index_product .product_list .product_item.swiper-slide-active .item_img:before {
    opacity: 1;
}

.index_product .product_list .product_item .item_info {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    height: auto;
    padding-left: 60px;
    padding-right: 50px;
    z-index: 99;
    opacity: 0;
}

.index_product .product_list .product_item.swiper-slide-active .item_info {
    opacity: 1;
}

.index_product .product_list .product_item .item_info .item_title {
    position: relative;
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    padding-bottom: 15px;
}

.index_product .product_list .product_item .item_info .item_title a {
    display: inline-block;
    color: #FFFFFF;
}

.index_product .product_list .product_item .item_info .item_title a:hover {
    color: var(--conmmonColor);
}

.index_product .product_list .product_item .item_info .item_title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 94px;
    height: 4px;
    border-radius: 10px;
    background-color: #FFFFFF;
    margin-top: 10px;
}

.index_product .product_list .product_item .item_info .item_desc {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.8;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 20px 0;
}
.index_product .product_list .product_item .item_info .item_desc p{
    color: #FFFFFF !important;
}
.index_product .product_list .product_item .item_info .item_desc a {
    display: inline-block;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index_product .product_list .product_item .item_info .item_btn {
    text-align: left;
}

.index_product .product_list .product_item .item_info .item_btn a {
    display: inline-block;
    background: var(--conmmonColor);
    border-radius: 0px 25px 0px 25px;
    padding: 10px 20px;
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: uppercase;
    border: 2px solid var(--conmmonColor);
}

.index_product .product_list .product_item .item_info .item_btn a:hover {
    background-color: #FFFFFF;
    color: var(--conmmonColor);
}

.index_about {
    margin-top: 5%;
}

.index_about .about_wrap {
    justify-content: space-between;
    align-items: center;
}

.index_about .about_wrap .about_left {
    width: 59%;
}

.index_about .about_wrap .about_left .about_title .title {
    justify-content: flex-start;
}

.index_about .about_wrap .about_left .about_title .title .left_line {
    display: none;
}

.index_about .about_wrap .about_left .about_desc {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 30px 0 25px;
}

.index_about .about_wrap .about_left .about_btn a {
    display: inline-block;
    background: var(--conmmonColor);
    border-radius: 0px 25px 0px 25px;
    padding: 10px 20px;
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: uppercase;
    border: 2px solid var(--conmmonColor);
}

.index_about .about_wrap .about_left .about_btn a:hover {
    background-color: #FFFFFF;
    color: var(--conmmonColor);
}

.index_about .about_wrap .about_left .about_date {
    width: 737px;
    background: #FFFFFF;
    box-shadow: 4px 4px 16px 0px rgba(255, 142, 74, 0.1);
    border-radius: 12px 12px 12px 12px;
    padding: 24px;
    margin-top: 30px;
}

.index_about .about_wrap .about_left .about_date .date_list {
    justify-content: space-between;
    align-items: center;
}

.index_about .about_wrap .about_left .about_date .date_list .item_num {
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 64px;
    color: #FF8E4A;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.index_about .about_wrap .about_left .about_date .date_list .item_txt {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.index_about .about_wrap .about_right {
    width: 35%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index_about .about_wrap .about_right .about_box1 {
    width: 253px;
    height: 253px;
    background: var(--conmmonColor);
    margin-top: 50px;
    margin-right: 15px;
    margin-bottom: 15px;
}

.index_about .about_wrap .about_right .about_img1 {
    width: calc(100% - 268px);
    max-width: 260px;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 47%;
    margin-bottom: 15px;
    
}


.index_about .about_wrap .about_right .about_img1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
}

.index_about .about_wrap .about_right .about_img1:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.index_about .about_wrap .about_right .about_img2 {
    width: calc(100% - 200px);
    max-width: 294px;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 58%;
    
}


.index_about .about_wrap .about_right .about_img2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
}

.index_about .about_wrap .about_right .about_img2:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.index_about .about_wrap .about_right .about_box2 {
    width: 343px;
    height: 343px;
    background: #333333;
    margin-top: -50px;
    margin-left: -30%;
}

.index_news {
    margin-top: 5%;
}

.index_news .news_desc {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.index_news .news_wrap {
    margin-top: 50px;
}

.index_news .news_wrap .news_item {
    margin-bottom: 25px;
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 60px) / 2) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.index_news .news_wrap .news_item:nth-child(even) {
    flex-direction: row-reverse;
}

.index_news .news_wrap .news_item .item_img {
    width: 40%;
    height: 390px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
}

.index_news .news_wrap .news_item:hover .item_img img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.index_news .news_wrap .news_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    transition: all .3s;
}

.index_news .news_wrap .news_item .item_info {
    width: 60%;
    padding: 0 5% 4% 8%;
    position: relative;
}

.index_news .news_wrap .news_item .item_info:before {
    content: ' ';
    height: 20%;
    width: 16px;
    background-color: var(--conmmonColor);
    display: block;
    position: absolute;
    left: 6%;
    top: 4%;
    min-height: 106px;
}

.index_news .news_wrap .news_item .item_info .item_date {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 12px;
}

.index_news .news_wrap .news_item .item_info .item_title {
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.index_news .news_wrap .news_item .item_info .item_title a {
    display: inline-block;
    color: #333333;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index_news .news_wrap .news_item .item_info .item_title a:hover {
    color: var(--conmmonColor);
}

.index_news .news_wrap .news_item .item_info .item_desc {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 12px 0;
}

.index_news .news_wrap .news_item .item_info .item_desc a {
    display: inline-block;
    color: #666666;
    height: 56px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index_news .news_wrap .news_item .item_info .item_btn {
    text-align: left;
}

.index_news .news_wrap .news_item .item_info .item_btn a {
    display: inline-block;
    background: var(--conmmonColor);
    border-radius: 0px 25px 0px 25px;
    padding: 10px 20px;
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: uppercase;
    border: 2px solid var(--conmmonColor);
}

.index_news .news_wrap .news_item .item_info .item_btn a:hover {
    background-color: #FFFFFF;
    color: var(--conmmonColor);
}

.index_reviews {
    margin: 5% 0;
}

.index_reviews .reviews_wrap {
    justify-content: space-between;
    align-items: center;
}

.index_reviews .reviews_wrap .reviews_left {
    position: relative;
    width: 43%;
}

.index_reviews .reviews_wrap .reviews_left .review_img1 {
    position: relative;
    width: 200px;
    height: 200px;
    float: right;
}

.index_reviews .reviews_wrap .reviews_left .review_img1:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.index_reviews .reviews_wrap .reviews_left .review_img1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
}

.index_reviews .reviews_wrap .reviews_left .review_img1:before {
    content: ' ';
    position: absolute;
    left: -17px;
    top: -17px;
    z-index: -1;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 3px solid rgba(255, 142, 74, 0.71);
}

.index_reviews .reviews_wrap .reviews_left .review_img2 {
    position: relative;
    width: 338px;
    height: 338px;
    margin-top: 115px;
}

.index_reviews .reviews_wrap .reviews_left .review_img2:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.index_reviews .reviews_wrap .reviews_left .review_img2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
}

.index_reviews .reviews_wrap .reviews_left .review_img2:before {
    content: ' ';
    position: absolute;
    left: -26px;
    top: 16px;
    z-index: -1;
    width: 338px;
    height: 338px;
    background: var(--conmmonColor);
    border-radius: 50%;
}

.index_reviews .reviews_wrap .reviews_left .review_img3 {
    position: relative;
    width: 264px;
    height: 264px;
    float: right;
    margin-right: 45px;
}

.index_reviews .reviews_wrap .reviews_left .review_img3:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.index_reviews .reviews_wrap .reviews_left .review_img3 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
}

.index_reviews .reviews_wrap .reviews_left .reviews_box1 {
    position: absolute;
    top: 9%;
    right: 45%;
    width: 53px;
    height: 53px;
    background: var(--conmmonColor);
    border-radius: 50%;
}

.index_reviews .reviews_wrap .reviews_left .reviews_box2 {
    position: absolute;
    top: 40%;
    right: 20%;
    width: 89px;
    height: 89px;
    background: var(--conmmonColor);
    border-radius: 50%;
}

.index_reviews .reviews_wrap .reviews_right {
    width: 52%;
}

.index_reviews .reviews_wrap .reviews_right .reviews_title .title {
    justify-content: flex-start;
}

.index_reviews .reviews_wrap .reviews_right .reviews_icon {
    width: 104px;
    height: 68px;
    position: relative;
    overflow: hidden;
    margin: 10px 0 45px;
}

.index_reviews .reviews_wrap .reviews_right .reviews_icon img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: contain;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap {
    overflow: hidden;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap .review_item .item_cont {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 65px;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap .review_item .item_name {
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    text-align: right;
    font-style: normal;
    text-transform: capitalize;
    margin-right: 100px;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap .review_item .item_name::before {
    content: '——';
    display: inline-block;
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap .review_btn {
    justify-content: flex-start;
    align-items: center;
    margin-top: 45px;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap .swiper-button-prev,
.index_reviews .reviews_wrap .reviews_right .review_wrap .swiper-button-next {
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    opacity: 1;
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
    border-radius: 50%;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap .swiper-button-prev {
    background: #333333 url(../img/index/swiper-prev.png) no-repeat center center / contain;
    margin-right: 15px !important;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap .swiper-button-next {
    background: #333333 url(../img/index/swiper-next.png) no-repeat center center / contain;
}

.index_reviews .reviews_wrap .reviews_right .review_wrap .swiper-button-prev:hover,
.index_reviews .reviews_wrap .reviews_right .review_wrap .swiper-button-next:hover {
    background-color: var(--conmmonColor) !important;
}
@media (max-width:1680px){
    .index_product .product_list .product_item .item_info .item_desc a{
         -webkit-line-clamp: 5;
    }
}

@media (max-width:1480px){
    .index_about .about_wrap .about_right .about_img2{
        width: 50%;
    }
}
/*--------------------mobile----------------------------*/
@media (max-width:950px) {
    .web_head {
        position: absolute !important;
    }

    .web_head .head_bottom {
        background-color: transparent !important;
        margin-top: 15px;
    }

    .index_product .product_wrap {
        width: 95%;
        margin: 0 auto;
    }

    .index_product .product_list .product_item {
        transform: scale(1) !important;
        flex-direction: column;
    }

    .index_product .product_list .product_item .item_info {
        position: relative;
        padding: 0 20px;
        opacity: 1 !important;
    }

    .index_product .product_list .product_item .item_img:before {
        opacity: 0 !important;
    }

    .index_product .product_list .product_item .item_info .item_desc {
        display: none;
    }

    .index_product .product_list .product_item .item_info .item_btn {
        display: none;
    }

    .index_product .product_list .product_item .item_info .item_title:after {
        display: none;
    }

    .index_product .product_list .product_item .item_info .item_title {
        color: #333333;
        margin-top: 15px;
    }

    .index_product .product_list .product_item .item_info .item_title a {
        color: #333333;
    }

    .index_product .product_wrap {
        padding: 0;
        margin: 20px auto;
    }

    .index_product .swiper-button-next,
    .index_product .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
        padding: 0;
        top: 65% !important;
        margin-top: -18px !important;
        background: rgba(51, 51, 51, 0.57) url(../img/index/pro_prev.png);
        border-radius: 2px 2px 2px 2px;
        opacity: 1;
        transition: all .3s ease-in-out;
    }

    .index_product .swiper-button-next {
        right: 17px;
        background: rgba(51, 51, 51, 0.57) url(../img/index/pro_next.png);
    }

    .index_product .swiper-button-next:hover {
        background: rgba(255, 255, 255, 0.57) url(../img/index/pro_next_hover.png);
    }

    .index_product .swiper-button-prev {
        left: 17px;
        background: rgba(51, 51, 51, 0.57) url(../img/index/pro_prev.png);
    }

    .index_product .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 0.57) url(../img/index/pro_prev_hover.png);
    }

    .index_product .product_bg {
        top: 37%;
    }

    .index_about .about_wrap {
        flex-direction: column;
    }

    .index_about .about_wrap .about_left {
        width: 100%;
        margin-bottom: 30px;
    }

    .index_about .about_wrap .about_right {
        width: 100%;
        display: none;
    }

    .index_about .about_wrap .about_left .about_date {
        width: 100%;
        margin-top: 30px;
    }

    .index_about .about_wrap .about_left .about_title .title {
        justify-content: center;
    }

    .index_about .about_wrap .about_left .about_title .title .left_line {
        display: flex;
    }

    .index_news .news_wrap .news_item .item_img {
        height: 0;
        padding-bottom: 30%;
    }

    .index_news .news_wrap .news_item .item_info .item_title a {
        height: 30px;
        -webkit-line-clamp: 1;
    }

    .index_news .news_wrap .news_item .item_info {
        padding-bottom: 0;
    }

    .index_reviews .reviews_wrap .reviews_left {
        width: 35%;
    }

    .index_reviews .reviews_wrap .reviews_left .review_img1 {
        width: 94px;
        height: 94px;
    }

    .index_reviews .reviews_wrap .reviews_left .review_img1:before {
        width: 108px;
        height: 108px;
        left: -10px;
        top: -10px;
    }

    .index_reviews .reviews_wrap .reviews_left .reviews_box1 {
        width: 25px;
        height: 25px;
    }

    .index_reviews .reviews_wrap .reviews_left .review_img2 {
        width: 158px;
        height: 158px;
    }

    .index_reviews .reviews_wrap .reviews_left .review_img2:before {
        width: 158px;
        height: 158px;
        left: -12px;
        top: 7px;
    }

    .index_reviews .reviews_wrap .reviews_left .review_img3 {
        width: 123px;
        height: 123px;
        margin-right: 30px;
    }

    .index_reviews .reviews_wrap .reviews_left .reviews_box2 {
        width: 42px;
        height: 42px;
    }

    .index_reviews .reviews_wrap .reviews_right {
        width: 60%;
    }

    .index_reviews .reviews_wrap .reviews_right .review_wrap .swiper-button-prev,
    .index_reviews .reviews_wrap .reviews_right .review_wrap .swiper-button-next {
        width: 42px !important;
        height: 42px !important;
    }

    .index_reviews .reviews_wrap .reviews_right .reviews_icon {
        width: 44px;
        height: 29px;
        margin: 20px 0;
    }

    .index_reviews .reviews_wrap .reviews_right .review_wrap .review_item .item_name {
        margin-right: 0;
    }
}

@media (max-width:768px) {
    .index_reviews .reviews_wrap .reviews_left {
        display: none;
    }

    .index_reviews .reviews_wrap .reviews_right {
        width: 100%;
    }

    .index_news .news_wrap .news_item {
        flex-direction: column-reverse !important;
    }

    .index_news .news_wrap .news_item .item_img {
        width: 100%;
        margin-bottom: 30px;
        padding-bottom: 68%;
    }

    .index_news .news_wrap .news_item .item_info {
        width: 100%;
        padding: 0 20px 20px 50px;
    }

    .index_news .news_wrap .news_item .item_info:before {
        left: 2%;
    }

    .index_news .news_wrap .news_item .item_info .item_title a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .index_news .news_wrap .news_item .item_info .item_desc a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .index_reviews .reviews_wrap .reviews_right .review_wrap .review_item .item_cont {
        margin-bottom: 30px;
    }
}

@media (max-width:480px) {
    .index_about .about_wrap .about_left .about_date .date_list .item_num {
        font-size: 35px;
    }

    .index_product .swiper-button-next {
        top: 70% !important;
        right: 12px;
    }

    .index_product .swiper-button-prev {
        top: 70% !important;
        left: 12px;
    }
}