/* 给表格添加滚动条 */
.pro_page_table {
    overflow-x: auto;
}

/* animation  */
.wow {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#baguetteBox-overlay {
    display: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #F0F0F0;
}

::-webkit-scrollbar-thumb {
    background-color: #CDCDCD;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #D9D9D9
}

::-webkit-scrollbar-thumb:active {
    background-color: #554F5E
}

* {
    padding: 0;
    margin: 0;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: "Roboto-Regular", "Arial", "sans-serif";
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ~~~~~~~~~~~~~~~~pc 导航,css */
/* ~~~~~~~~~~~~~~~~pc 导航,css */
/* ~~~~~~~~~~~~~~~~pc 导航,css */
/* 色调 */
/* 色调 */
:root {
    --hue: #00d0c9;
    --fwl: "Roboto-Light";
    --fwm: "Roboto-Medium";
    --fwr: "Roboto-Regular";
}


.topbg {
    background-color: var(--hue);
    transition: all 0.3s linear;
}

/* 版心 */
.w_1600 {
    width: 92%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.w_1400 {
    width: 92%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.w_1800 {
    width: 96%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

/* 字体 */
.fwb {
    font-family: var(--fwb);
}

.fwl {
    font-family: var(--fwl);
}

.fwm {
    font-family: var(--fwm);
}

.fwr {
    font-family: var(--fwr);
}

/* 字体大小 */
.fz_62 {
    font-size: 62px;
    line-height: 68px;
}

.fz_60 {
    font-size: 60px;
    line-height: 66px;
}

.fz_48 {
    font-size: 48px;
    line-height: 48px;
}

.fz_42 {
    font-size: 42px;
    line-height: 54px;
}

.fz_36 {
    font-size: 36px;
    line-height: 48px;
}

.fz_34 {
    font-size: 34px;
    line-height: 46px;
}

.fz_30 {
    font-size: 30px;
    line-height: 42px;
}

.fz_24 {
    font-size: 24px;
    line-height: 36px;
}

.fz_22 {
    font-size: 22px;
    line-height: 34px;
}

.fz_20 {
    font-size: 20px;
    line-height: 32px;
}

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

.fz_16 {
    font-size: 16px;
    line-height: 28px;
}

.fz_14 {
    font-size: 14px;
    line-height: 26px;
}

/* 间距 */
.p_100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.p_t_100 {
    padding-top: 100px;
}

.p_b_100 {
    padding-bottom: 100px;
}

.p_b_40 {
    padding-bottom: 40px;
}

.sub_wrap {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.sub_wrap1 {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.sub_wrap2 {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

/* 伪类 */

/* btn按钮 */
.hover1_style {
    position: relative;
    overflow: hidden;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.hover1_style:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18) !important;
}

.hover1_style::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    -ms-background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8) 50%, transparent);
    -moz-background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8) 50%, transparent);
    -webkit-background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8) 50%, transparent);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8) 50%, transparent);
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hover1_style:hover::after {
    left: 100%;
}

/* pub_scroll_btn1  swiper*/
.pub_scroll_btn1 {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    width: 66px;
    height: 66px;
    background: var(--hue);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

/* 分页按钮 */
.public_page_btn1 {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #333333;
    line-height: 50px;
    padding: 0 25px;
    border-radius: 6px;
    border: 1px solid #898989;
    cursor: pointer;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.public_page_btn1:hover {
    color: #ffffff;
    border-color: var(--hue);
    background: var(--hue);
}

.public_page_btn2 {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    vertical-align: middle;
    font-size: 16px;
    color: #ffffff;
    line-height: 50px;
    padding: 0 25px;
    border-radius: 25px;
    background: var(--hue2);
    cursor: pointer;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.public_page_btn2 .icon {
    margin-right: 6px;
}


/* ~~~~~~~~~~~~pub_title1 ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~pub_title1 ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~pub_title1 ~~~~~~~~~~~~~ */


/* title */
.pub_title1 .title {
    font-size: 2.86vw;
}

.public_module_title .subtitle {
    padding-bottom: 8px;
}

.public_module_title .text {
    padding-top: 25px;
}

/* ~~~~~~~~~~~~pub_title1 end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~pub_title1 end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~pub_title1 end~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~~~导航,css */
/* ~~~~~~~~~~~~~~~~~~~导航,css */
/*  */

.logo {
    width: 220px;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    height: 100px;
}

.logo img {
    width: 100%;
}

.header .wrapper {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
}


.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    width: 100%;
}


.header.hover {
    background-color: var(--hue);
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.menu_dl_box {
    width: calc(100% - 258px - 220px);
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    line-height: 100px;
    height: 100px;
}

.menu_dl {
    width: 80%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    position: relative;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    line-height: 100px;
    height: 100px;
}

.menu_dl .item {
    position: relative;
    border-bottom: 3px solid transparent;

}

.menu_dl .item:hover,
.menu_dl .item.hover {
    border-bottom: 3px solid #fff !important;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}


.menu_down {
    width: 230px;
    display: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 100px;
    z-index: 4;
}

.menu_down_list {
    background-color: #fff;
}

.menu_down_list a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    color: #888888;
    padding: 0px 0px 0px 25px;
    border-bottom: 1px dotted #D4D4D4;
}

.menu_down_list a:last-child {
    border-bottom: none;
}

.menu_down_list a:hover {
    color: var(--hue);
}

.item_list1 .menu_down {
    width: 230px;
}

.item_list1 .menu_down_list a {
    padding: 0;
}

.menu_tt {
    white-space: nowrap;
    text-transform: capitalize;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    line-height: 100px;
    height: 100px;

}


.menu_dl .item:last-child {
    padding: 0 0px 0 0 !important;
}


.menu_dl .hover {
    color: var(--hue);
}

.pc_head_cen_r_icon {
    line-height: 10px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

.pc_head_list_box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.header_language {
    position: relative;
    padding: 20px 20px;
    cursor: pointer;

}

.pc_head_cen_r_icon .line {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.24);
}

.header_language_01 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

.header_language_01 .icon1 {
    font-size: 26px;
    color: #fff;
}

.header_language_01 span {
    font-size: 14px;
    color: #333e46;
    padding: 0 4px 0 4px;
}

.header_language_01 .icon2 {
    font-weight: 700;
    font-size: 16px;
    color: #333e46;
    padding-top: 2px;
}

.header_language_02 {
    display: none;
    position: absolute;
    z-index: 5;
    top: 75px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 150px;
    padding: 12px 0;
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.header_language_02 a {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #333e46;
    text-align: center;
}

.header_language_02 a:hover {
    color: var(--hue);
}

.header_search {
    cursor: pointer;
    margin-right: 1.82vw;
}

.header_search_form {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 2px 15px;
}

.header_search_form input {
    color: #fff !important;
    border: 1px solid transparent;
}

.header_search_form button {
    font-size: 26px;
    color: #fff;
    border: 1px solid transparent;
}

/* 可公用导航搜索 */

.all_public_searchBox {
    display: none;
    position: fixed;
    z-index: 20;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.all_public_form {
    display: none;
    position: fixed;
    z-index: 21;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 800px;
    background-color: #fff;
    border-radius: 25px;
}

.all_public_form input {
    width: 100%;
    outline: none;
    border: none;
    box-sizing: border-box;
    padding: 20px 136px 20px 20px;
    border-radius: 10px 25px 10px 25px;
}

.all_public_form .icon_01 {
    font-size: 38px;
    cursor: pointer;
    position: absolute;
    top: 51%;
    right: 80px;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    outline: none;
    border: none;
    background: none;
    -ms-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    color: #888888;
}

.all_public_form .icon_01:hover {
    color: var(--hue);
}

.all_public_form .public_form_close {
    font-size: 34px;
    position: absolute;
    top: 24px;
    right: 26px;
    -ms-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    color: #888888;
    cursor: pointer;
}

.all_public_form .public_form_close:hover {
    color: var(--hue);
}

/* 可公用导航搜索~~~~~~~~~~~~~~~~~~结束 */

/* ~~~~~~~~~~~~~~~~pc 导航,css~~~~~~~~~~~end */
/* ~~~~~~~~~~~~~~~~pc 导航,css~~~~~~~~~~~end */
/* ~~~~~~~~~~~~~~~~pc 导航,css~~~~~~~~~~~end */
/* ~~~~~~面包屑导航~~~~~~~~~~~~ */
/* ~~~~~~面包屑导航~~~~~~~~~~~~ */
/* ~~~~~~面包屑导航~~~~~~~~~~~~ */
.public_herf {
    padding: 10px 0;
}

.Crumbs_box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.Crumbs_box .iconfont {
    font-size: 22px;
    color: #fff;
}

.Crumbs_box .a_box {
    font-family: var(--fwl);
    font-size: 16px;
    color: #fff;
    padding: 4px 0 0 6px;
}

.Crumbs_box .a_box a {
    color: #fff;
}

.Crumbs_box .a_box a:hover {
    text-decoration: underline;
}

/* ~~~~~~面包屑导航 end~~~~~~~~~~~~ */
/* ~~~~~~面包屑导航 end~~~~~~~~~~~~ */
/* ~~~~~~面包屑导航 end~~~~~~~~~~~~ */

/* 点击视频弹出播放框css */
.ind_video_maskBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.ind_video_maskBox .video_Box_1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 80vh;
}

.ind_video_maskBox .video_Box_1 .videoIframe {
    background: #333333;
    width: 100%;
    height: 100%;
    border: none;
}

.ind_video_maskBox .video_Box_1 .closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    -ms-transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ind_video_maskBox .video_Box_1 .closeBtn:hover {
    color: #f40a0a;
}

/* 点击视频弹出播放框css~~~~~~~~~~~end */

/* ~~~~~~~~~~~~~~~footer,css */
/* ~~~~~~~~~~~~~~~footer,css */
/* ~~~~~~~~~~~~~~~footer,css */
/* 底部 */
.footer {
    background-color: #353535;
}

.footer_t {
    padding-top: 70px;
    padding-bottom: 70px;
}

.footer_t_l {
    width: 25%;
}

.footer_t_l_title {
    line-height: 1.2;
    padding: 15px 0;
}

.footer_t_l_text {
    margin-bottom: 18px;
}

.footer_sm {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.footer_sm a.icon {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    font-size: 18px;
    border-radius: 50%;
    color: #fff;
    margin: 0 20px 5px 0;
}

.footer_sm a.icon:hover {
    color: var(--hue);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

.footer_t_w {
    width: 20%;
}

.footer_t_m {
    width: 25%;
}

.footer_t_title {
    line-height: 1.2;
    padding: 15px 0;
}

.footer_t_text {
    padding-bottom: 10px;
}

.footer_t_m_list1 {
    padding-bottom: 35px;
}

.footer_t_m_list1 a {
    display: block;
    font-size: 16px;
    color: #999;
    line-height: 30px;
}

.footer_t_m_list1 a:hover {
    color: var(--hue);
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
}

.footer_t_m_contact .item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    padding: 5px 0px;
}

.footer_t_m_contact .item .icon {
    margin-right: 8px;
    color: #fff;
}

.footer_t_m_contact .item .icon img {
    width: 100%;
    height: auto;
}

.footer_t_m_contact .item .tt {
    width: calc(100% - 24px);
    padding-left: 6px;
    color: #fff;
}

.footer_t_m_contact .item .tt a {
    color: #fff;
}

.footer_t_m_contact .item .tt a:hover {
    color: var(--hue);
}

.footer_t_r {
    width: 25%;
}

.footer_t_r_inq dd {
    margin-bottom: 12px;
}

.footer_t_r_inq_text,
.footer_t_r_inq_area {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #333;
    height: 50px;
    padding-left: 15px;
    border-radius: 10px;
    background: #fff;
    border: none;
}

.footer_t_r_inq_text::-webkit-input-placeholder,
.footer_t_r_inq_area::-webkit-input-placeholder {
    color: #333;
}


.footer_t_r_inq_area {
    height: 120px;
    line-height: 1.3;
    padding: 10px 15px;
    resize: none;
}

.footer_t_form {
    background-color: #fff;
    margin-bottom: 10px;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    border-radius: 5px;
    overflow: hidden;
}

.footer_t_form input {
    font-size: 16px;
    padding: 0 10px;
    border-color: transparent;
}

.footer_t_form button {
    background-color: var(--hue);
    border-color: transparent;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    height: 50px;
    line-height: 50px;
    color: #fff;
    padding: 0 30px;
}

.footer_box {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    border-top: 1px solid #999;
    height: 85px;
    line-height: 85px;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.footer_b_r a:hover {
    color: var(--hue) !important;
}

/* ~~~~~~~~~~~~~~~footer,css~~~~~~~~~~~end */
/* ~~~~~~~~~~~~~~~footer,css~~~~~~~~~~~end */
/* ~~~~~~~~~~~~~~~footer,css~~~~~~~~~~~end */


/* ~~~~~~~~~~~~~~~blog_page,css~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~blog_page,css~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~blog_page,css~~~~~~~~~~~ */
.blog_page {
    padding-top: 50px;
}

.blog_box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog_page a:hover {
    color: #fff !important;
    background-color: var(--hue);
}

.blog_page .next,
.blog_page .prev {
    width: 149px !important;
}

.blog_page a {
    color: #666666;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 10px;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    display: inline-block;
}

.blog_page_active {
    color: #fff !important;
    background-color: var(--hue) !important;
}

/* ~~~~~~~~~~~~~~~blog_page,css~~~~~~~~~~~end */
/* ~~~~~~~~~~~~~~~blog_page,css~~~~~~~~~~~end */
/* ~~~~~~~~~~~~~~~blog_page,css~~~~~~~~~~~end */

/* ~~~~~~~~~~~~~~~wap head,css */
/* ~~~~~~~~~~~~~~~wap head,css */
/* ~~~~~~~~~~~~~~~wap head,css*/


.mask,
.mobile_menu_mask {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}

.mask {
    z-index: 13;
}

/*
 * wap head
 */
.mobile_header {
    display: none;
    clear: both;
    width: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.mobile_header_top {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 14;
    width: 100%;
    height: 52px;
    background: #000;
    box-shadow: 0 0 5px rgba(50, 50, 50, .2);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.mobile_logo {
    height: 52px;
    margin-left: 0;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    padding: 0 15px;
}

.mobile_logo img {
    height: 35px;
    width: auto;
}

.mobile_menu_btn {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    width: 54px;
    height: 52px;
    cursor: pointer;
}

.mobile_menu_btn .line {
    display: block;
    height: 3px;
    width: 28px;
    background: var(--hue);
    border-radius: 4px;
    margin-bottom: 6px;
}

.mobile_menu_btn .line:last-child {
    margin-bottom: 0;
}

.mobile_search_icon {
    width: 40px;
    height: 52px;
    color: #222;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
    margin-right: 52px;
    cursor: pointer;
}


.mobile_menu_b {
    margin-top: 40px;
}

.mobile_menu_b_clm {
    margin-bottom: 25px;
}

.mobile_menu_b_clm .tt {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.mobile_menu_b_clm .text {
    font-size: 14px;
    color: #333;
}

.mobile_menu_b_clm .text a {
    color: #333;
    word-break: break-all;
}

.mobile_lag_box {
    padding: 30px 0 20px;
    margin-bottom: 40px;
}

.mobile_lag_tt {
    font-size: 16px;
    color: #333;
    padding-bottom: 18px;
}

.mobile_lag_text {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.mobile_lag_text a {
    color: #333;
    font-size: 16px;
    margin-right: 25px;
}

.mobile_menu_box {
    position: fixed;
    right: -110%;
    top: 0;
    z-index: 15;
    width: 75%;
    height: 100%;
    background: #fff;
    padding: 20px 15px;
    overflow-y: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.mobile_menu_box.show {
    right: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.mobile_menu_dl dd {
    clear: both;
    line-height: 1.3;
    border-bottom: 1px solid #e1e1e1;
}

.mobile_menu_tt {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.mobile_menu_tt .text {
    width: calc(100% - 50px);
    color: #333;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    text-transform: uppercase;
}

.mobile_menu_dl dd.hover .mobile_menu_tt .text {
    color: var(--hue);
}

.mobile_menu_tt_icon {
    /* display: none; */
    width: 44px;
    line-height: 44px;
    text-align: center;
    color: #333;
    font-size: 16px;
    -webit-transition: all 0.5s;
    transition: all 0.5s;
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    cursor: pointer;
}

.mobile_menu_down {
    display: none;
    padding: 6px 0 10px 12px;
}

.mobile_menu_down_clm {
    margin-bottom: 8px;
}

.mobile_menu_down_clm_tts {
    max-width: 65%;
    font-family: 'Poppins' !important;
}

.mobile_menu_down_clm_tt {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
}

.mobile_menu_down_clm_tt .tt {
    width: calc(100% - 50px);
    color: #333;
    line-height: 20px;
    font-size: 14px;
    text-transform: capitalize;
    padding: 5px 0;
}

.mobile_menu_down_clm_tt .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    -o-transform: rotateZ(90deg);
    -webit-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile_menu_down_clm.hover .mobile_menu_down_clm_tt .icon {
    -webit-transition: all 0.5s;
    transition: all 0.5s;
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
}

.mobile_menu_down_clm_list {
    display: none;
    padding: 5px 0 0 10px;
}

.mobile_menu_down_clm_list a {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
    padding: 5px 0 5px 14px;
    position: relative;
}

.mobile_menu_down_clm_list a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -3px;
    background: #333;
    border-radius: 50%;
}

.mobile_menu_tt_icon.hover {
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    -webit-transition: all 0.5s;
    transition: all 0.5s;
}

/* ~~~~~~~~~~~~~~~wap head,css~~~~~~~~~~~end */
/* ~~~~~~~~~~~~~~~wap head,css~~~~~~~~~~~end */
/* ~~~~~~~~~~~~~~~wap head,css~~~~~~~~~~~end */


/* ~~~~~~~~~~~~index ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~index_banner~~~~~~~~~~~~~ */

.index_banner_item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    width: 100%;
    height: 100vh;
}

.index_banner_item .pic img,
.index_banner_item .pic {
    width: 100%;
    height: 100%;

}

.index_banner_item .pic {
    display: none;
}

.index_banner_swiper_pagination {
    position: absolute;
    bottom: 10% !important;
    width: 100px;
    z-index: 9;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
}

.index_banner_swiper_pagination .swiper-pagination-bullet {
    width: 50px;
    height: 2px;
    background-color: #8c8b8b;
    opacity: 1;
    margin: 0 10px !important;

}

.index_banner_swiper_pagination .swiper-pagination-bullet-active {
    width: 100px;
    background-color: #8c8b8b;
    position: relative;
}

.index_banner_swiper_pagination .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    display: block;
    animation: width 6s linear;
}

@keyframes width {
    0% {
        width: 0px;
        background-color: #fff;
    }

    50% {
        width: 50px;
        background-color: #fff;
    }

    100% {
        background-color: #fff;
        width: 100px;
    }
}

.index_banner_con {

    position: absolute;
    top: 0;
    left: auto;
    width: 92%;
    max-width: 1600px;
    margin: auto;
    padding: 18.49vw 0 0 0;
}

.index_banner_btn {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: inline-block;
}

.index_banner_btn .public_page_btn1 {
    font-family: var(--fwl);
    border: 2px solid #fff;
    color: #fff;
    margin-right: 15px;
    padding: 0 35px;
}

.index_banner_btn .public_page_btn1:hover {
    display: inline-block;
    border-color: var(--hue);
}

.index_banner_con .title {
    line-height: 60px;
}

/* ~~~~~~~~~~~~index_banner end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index_one ~~~~~~~~~~~~~ */
.index_one {
    background-color: #F6F6F6;
}

.index_one_con {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    margin-left: 160px !important;
}

.index_one_l {
    width: 26%;
}

.index_one_r {
    width: calc(74% - 4.95vw);
    margin-left: 4.95vw;
}


.index_one_swiper {
    padding-bottom: 3.13vw;
}

.index_one_item {
    display: block;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
}

.index_one_top .tt{
    height:96px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.index_one_top .text {
    padding-top: 10px;
}

.index_one_top .number {
    color: #333333;
    padding-top: 20px;
}

.index_one_item .pic {
    width: 100%;
    /*position: absolute;*/
    /*bottom: -4.99vw;*/
    /*right: -2.86vw;*/

}

.index_one_item .pic img {
    width: 100%;
    height: auto !important;
}


.swiper_next_prev {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.index_one_swiper_button {
    margin-right: 15px;
    width: 56px;
    height: 56px;
    background-color: #fff;
    color: #707070;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    position: relative;
    cursor: pointer;
}

.index_one_swiper_button.next {
    transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.index_one_swiper_button:hover {
    background-color: var(--hue);
    color: #fff;
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.index_one_swiper_button.hover {
    background-color: var(--hue);
    color: #fff;
}

/* ~~~~~~~~~~~~index_one end~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~index_two~~~~~~~~~~~~~ */
.index_two_t {
    padding-bottom: 15px;
}

.index_two_box:nth-child(even) {
    background-color: #F6F6F6;
}

.index_two_b_t {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
}

.index_two_b_t_r,
.index_two_b_t_l {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.index_two_b_t_l .left_img {
    max-width: 38px;
    max-height: 29px;
    margin-right: 15px;
}

.index_two_b_t_l .left_img img {
    width: 100%;
}

.index_two_b_t_r .right_img {
    width: 30px;
    height: 30px;
    background-color: var(--hue);
    border-radius: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    margin-left: 15px;
}

.index_two_b_t {
    padding-bottom: 2.34vw;
}


/* ~~~~~~~~~~~~index_two end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index_three ~~~~~~~~~~~~~ */
.index_three {
    background-color: #F6F6F6;
}

.index_three_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.index_three_item {
    width: calc((100% - 2.34vw) / 3);
    margin-right: 2.34vw;
    position: relative;
}

.index_three_item:nth-child(3n) {
    margin-right: 0;
}

.index_three_item .pic {
    width: 100%;
    overflow: hidden;
}

.index_three_item .pic img {
    width: 100%;
    height: auto;
}

.index_three_item .con {
    position: absolute;
    bottom: 0;
    padding: 0 0 1.56vw 1.56vw;
    width: 100%;
    background: linear-gradient(0deg, rgb(28, 26, 26, .8), rgb(77, 73, 74, 0));
}

.index_three_item:hover .pic img {
    transform: scale(1.13, 1.13);
    -ms-transform: scale(1.13, 1.13);
    -webkit-transform: scale(1.13, 1.13);
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

/* ~~~~~~~~~~~~index_three end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index_four ~~~~~~~~~~~~~ */
.index_four {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.index_four > div {
    padding-top: 6.25vw;
    padding-bottom: 7.55vw;
    background-color: rgba(0, 0, 0, 0.3);
}

.index_four_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
}

.index_four_item {
    padding: 0 2.6vw;
}

.index_four_item .number {
    text-align: center;
    font-size: 3.75vw;
}

.index_four_video {
    width: 90px;
    display: inline-block;
    margin-top: 3.65vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
}

/* ~~~~~~~~~~~~index_four end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index_five ~~~~~~~~~~~~~ */
.index_five {
    background-color: #F6F6F6;
}

.index_five_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.index_five_item {
    width: calc((100% - 5.21vw) / 3);
    margin-bottom: 2.6vw;
    margin-right: 2.6vw;
    overflow: hidden;
}

.index_five_item:nth-child(3n) {
    margin-right: 0;
}

.index_five_item .pic {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.index_five_item .pic img {
    width: 100%;
}

.index_five_item:hover .pic img {
    transform: scale(1.13, 1.13);
    -ms-transform: scale(1.13, 1.13);
    -webkit-transform: scale(1.13, 1.13);
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.index_five_item .date {
    position: absolute;
    right: 5%;
    bottom: 5%;
    background-color: var(--hue);
    color: #fff;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border-radius: 3px;
}

.index_five_item .con {
    padding-top: 1.56vw;

}

.index_five_item .title {
    font-size: 22px;
    padding-bottom: 10px;
}

/* ~~~~~~~~~~~~index_five end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index_six ~~~~~~~~~~~~~ */
.index_six_b {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
}

.index_six_l {
    width: 55%;
}

.index_six_l .pic {
    width: 100%;
}

.index_six_l .pic img {
    width: 100%;
    height: auto;
}

.index_six_r {
    width: 38%;
}


.form_item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 2.08vw 0 1.04vw 0;
}

.form_item_tt .icon {
    color: red;
}

.form_item_tt {
    font-family: var(--fwl);
    width: 85px;
    font-size: 16px;
    color: #333;
}

.form_item_tt span {
    color: #333;
}

.form_item input {
    font-size: 16px;
    font-family: var(--fwl);
    border-color: transparent;
}


.form_item input[type="radio"] + label::before {
    content: '';
    display: inline-block;
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    border: 1px solid #000;
    margin-right: 15px;
}

.form_item input[type="radio"]:checked + label::before {
    background-clip: content-box;
    background-color: #000 !important;
    width: 6px;
    height: 6px;
    padding: 2px;
}

.form_item input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.form_item label {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.form_radio {
    border-bottom: none;
}

.form_btn {
    padding-top: 1.56vw;
}

.form_btn button {
    background-color: #333;
    color: #fff;
    padding: 0 35px;
    height: 50px;
    line-height: 50px;
    border-color: transparent;
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--fwl);
}

/* ~~~~~~~~~~~~index_six end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index_seven ~~~~~~~~~~~~~ */
.index_seven {
    background-color: #F6F6F6;
}

.index_seven_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-around;
    -ms-justify-content: space-around;
    -webkit-justify-content: space-around;
}

.index_seven_item {
    text-align: center;
}

.index_seven_item .pic {
    width: 60px;
    margin: auto;
    padding-bottom: 15px;
}

/*.index_seven_item .pic img {*/
/*    width: 100%;*/
/*}*/

.index_seven_item .con {
    padding-bottom: 1.3vw;
}

.index_seven_item:hover a {
    color: var(--hue);
}

/* ~~~~~~~~~~~~index_seven end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~index end~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~search ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~search ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~search ~~~~~~~~~~~~~ */
/* .search_banner */
.search_banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 600px;
}

.serch_banner_herf .title {
    font-size: 3.13vw;
}

.search_banner_con {
    width: 100%;
    padding: 10% 0% 10% 0;
}

.serch_banner_herf {
    width: 100%;
    text-align: center;
}

.serch_banner_search {
    padding-top: 3.65vw;
}

.serch_banner_form {
    border-radius: 10px;
    max-width: 40.05vw;
    margin: auto;
    background-color: #fff;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    height: 54px;
    overflow: hidden;
}

.serch_banner_form input {
    width: 100%;
    height: 100%;
    border-color: transparent;
    padding-left: 2.08vw;
    font-size: 18px;
    font-family: var(--fwl);
    color: #605555;
    position: relative;
    margin: 0 !important;
}

.serch_banner_form .icon_01 {
    color: #fff;
    height: 100%;
    padding: 0 25px;
    border-radius: 10px 0 0 10px;
    border-color: transparent;
    background-color: var(--hue);
}

/* search_one */
.search_one_con .item_list {
    padding-bottom: 10px;
}

.search_one {
    padding-top: 3.39vw;
    background-color: #F6F6F6;
}

.search_one_title {
    padding: 0 0 1.41vw 0;
    border-bottom: 1px solid #E5E5E5;
}

.search_one_price,
.search_one_table {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    position: relative;
}

.search_one_price::after,
.search_one_brand::after,
.search_one_table::after {
    position: absolute;
    bottom: 0;
}

.search_one_table .table_list {
    width: calc(100% - 190px);
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding: 1.25vw 0;
}

.search_one_table .table_tt {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: flex-end;
    -ms-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    width: 150px;
    margin-right: 2.08vw;
    /*padding: 0 2.08vw 0 3.65vw;*/
}

.search_one_table .table_list dd {
    text-align: center;
    border-radius: 5px;
    /*margin-bottom: 10px;*/
}

.search_one_table .table_list dd:hover {
    background-color: var(--hue);
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.search_one_table .table_list dd:hover a {
    color: #fff !important;
}

.search_one_table .table_list dd a {
    padding: 0 18px;
    height: 40px;
    line-height: 40px;
    display: block;
}

.search_one_table .table_list dd.hover {
    background-color: var(--hue);
}

.search_one_table .table_list dd.hover a {
    color: #fff !important;
}

.search_one_brand {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    position: relative;
}

.search_one_brand .brand_tt {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: flex-end;
    -ms-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    width: 150px;
    margin-right: 2.08vw;
    /*padding: 0 2.08vw 0 3.65vw;*/
}

.search_one_brand .brand_form .serch_banner_form {
    max-width: 330px;
    width: 100%;
    margin: 0 20px 0 0;
    border: 1px solid #CCCCCC;
    overflow: visible;
    height: 40px;
    border-radius: 5px;
}

/*选择中*/
.brand_form .table_list {

}

.brand_form .table_list dd a {
    display: block;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    padding: 0 25px;
    background-color: var(--hue);
    height: 40px;
    line-height: 40px;
}

/*选择中 end*/
.search_one_brand .serch_banner_form input {
    padding-left: 25px;
}

.search_one_brand .brand_form {
    width: calc(100% - 190px);
    padding: 24px 0px;
    position: relative;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;

}

.search_one_brand .brand_form .icon_01 {
    z-index: 1;
    border-radius: 5px;
    padding: 5px 15px;
    margin-right: -5px;
    height: auto;
    font-size: 30px;
}

.search_one_brand .serch_banner_form .icon {
    cursor: pointer;
    margin-right: 20px;
    background-color: #fff;
    z-index: 1;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

.search_one_brand .serch_banner_form .icon.hover {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.search_one_price .table_list dd {
    padding: 0 25px;
}

.search_one_b {
    padding-top: 3.13vw;
}

.search_one_page {
    padding-bottom: 6.77vw;
}


.brand_form_none {
    display: none;
    position: absolute;
    top: 80%;
    width: 270px;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    z-index: 1;
    padding: 10px 0 0 25px;
}

.brand_form_n_item {
    display: block;
    color: #333;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
}

.brand_form_n_item:hover {
    color: var(--hue);
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

/* ~~~~~~~~~~~~prodect ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~prodect ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~prodect ~~~~~~~~~~~~~ */

.pro_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.pro_list >div {
    margin-bottom: 2.6vw;
    background-color: #fff;
    width: calc((100% - 7.81vw) / 4);
    box-shadow: 0 0 15px rgba(203, 203, 203, 0.4);
    border-radius: 10px;
    overflow: hidden;
    margin-right: 2.6vw;

}

.pro_list >div:nth-child(4n) {
    margin-right: 0;
}

.pro_list_item .item_pic {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.pro_list_item .item_pic.hover {
    margin: 0;

}

.pro_list_item .item_pic {
    width: 100%;
}

.pro_list_item .item_pic img {
    width: 100%;
    height: auto;
}


/*商品顶部背景*/
.pro_list_item .pic_money .icon {
    margin-right: 5px;
}


.pro_list_item .pic_money {
    color: #fff;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    width: 8.33vw;
    height: 40px;
}

.pro_list_item .pic_money div {
    z-index: 1 !important;
}

.pro_list_item .pic_money::before {
    content: "";
    width: 9.38vw;
    height: 40px;
    display: block;
    margin-left: -10px;
    transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -webkit-transform: skew(-30deg);
    background-color: var(--hue);
    position: absolute;
    top: 0;
    left: 0;
}

/*商品顶部背景 end*/
.pro_list_item .item_list {
    padding-bottom: 1.56vw;
    width: 85%;
    margin: auto;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
}

.pro_list_item .item_list.hover {
    /*padding-bottom: 0.78vw;*/
    padding-bottom: 12px;

}

.pro_list_item .item_list .item_list_con {
    width: 100%;
    display: flex;
    justify-content: space-between;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    color: #333;
    white-space: nowrap;
}

.item_list_con > div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro_list_item .item_list .item_list_con:nth-child(2n) {
    margin-right: 0;
}

.pro_list_item .item_list .item_list_con .icon {
    margin-right: 10px;
}

.pro_list .btn {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    background-color: var(--hue);
    color: #fff;
    height: 48px;
    display: none;
}

.pro_list .btn_img {
    margin-right: 10px;
}

.pro_list .btn.hover {
    display: block;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

/* ~~~~~~~~~~~~prodect end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~prodect end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~prodect end~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~search end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~search end~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~search end~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~products ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~products ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~products ~~~~~~~~~~~~~ */
.nowrap {
    white-space: nowrap;
}

.products_one {
    background-color: #F6F6F6;
    padding-bottom: 3.49vw;
}

.new_one_con {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.new_one_l {
    width: 45%;

}

.pro_det_t_l_bars {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;

}

.new_one_swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.new_one_swiper .pic_bg {
    position: absolute;
    top: 0;
    left: -3%;
    width: 10.42vw;
    height: 2.86vw;
    background-color: var(--hue);
    transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -webkit-transform: skew(-30deg);
}

.new_one_money {
    display: none;
}

.new_one_money_list .new_one_money.hover {
    display: block;
}

.new_one_text .text {
    display: none;
}

.new_one_text .text.hover {
    display: block;
}

.new_one_swiper .pic_title {
    width: 7.81vw;
    height: 2.86vw;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.new_one_t .public_module_title .title {
    padding-bottom: 0;
}

.new_one_t .public_module_title .text {
    padding-top: 1.3vw;
}

.pro_det_t_l_bars .item {
    width: 130px;
    position: relative;
    margin: 17px 18px 0 0;
    cursor: pointer;
}

.pro_det_t_l_bars .item:last-child {
    margin-right: 0 !important;
}

.new_one_swiper img {
    width: 100%;
}

.pro_det_t_l_bars .item img {
    width: 100%;
    border: 2px solid transparent;
}

.pro_det_t_l_bars .item.active img {
    border: 2px solid var(--hue);
    filter: brightness(100%);

}


.new_one_r {
    width: calc(55% - 2.6vw);
    margin-left: 2.6vw;
}

.new_one_item_t {
    margin-top: -5px;
}

.new_one_list .item {
    cursor: pointer;
    position: relative;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    height: 24px;
    margin-bottom: 1.04vw;
}

.new_one_list_con {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;

}

.new_one_list .item::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--hue);
    margin-right: 10px;
}

.new_one_list .item .item_span {
    display: block;
    width: 170px;
}

.new_one_list .item:hover span:last-child {
    color: var(--hue) !important;
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.new_one_two {
    padding-bottom: 2.6vw;
}

.new_one_btn {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.new_one_share .icon {
    padding-right: 5px;
}

.new_one_share .pro_det_r_sm_con a {
    font-size: clamp(1.375rem, 1.313rem + 0.31vw, 1.625rem);
    margin: 0 5px 0 0 !important;
}

.new_one_share .pro_det_r_sm_con img {
    margin-left: 10px;
}

.new_one_btn .contact_btn {
    color: #707070;
    border-radius: 5px;
    background-color: #E9E9E9;
    width: 200px;
    padding: 0.78vw 0;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    margin-right: 1.04vw;
}

.new_one_btn .contact_btn.hover {
    background-color: var(--hue);
    color: #fff;

}

.new_one_btn .contact_btn:last-child {
    margin-right: 0;
}

.new_one_share {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    margin-top: 2.6vw;
}

.new_one_two .contact_btn {
    width: 25%;
    height: 40px;
    background-color: transparent;
    border: 1px solid #888888;
}

.new_one_two .contact_btn.hover {
    border: 1px solid var(--hue);
    background-color: transparent;
    color: var(--hue);
}

.new_one_list {
    width: 100%;

    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 1.56vw 0;
}

.new_one_item {
    width: calc(100% / 3);
    /*width: calc((100% - 16.41vww) / 3);*/
    /*margin-right: 5.47vw;*/
    padding: 1.04vw 0;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: flex-start;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;

}


.new_one_item_b {
    margin-left: 10px;
}

.new_one_item_b .title {
    padding-bottom: 5px;
}

.new_one_top a {
    color: #333;
}

.new_one_top a:hover {
    color: var(--hue);
}

.new_one_top a.hover {
    color: var(--hue);
}

.new_one_title .public_module_title .text {
    padding-top: 15px;
}

/*~~~~~~~~~~~~~ pro_deBoxTwo~~~~~~~~~ */

.pro_deBoxTwo {
    height: 80px;

}

.pro_deTwo1 {
    background: #fff;
}

.pro_deTwo1_list {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
}

.pro_deTwo1_list .item {
    position: relative;
    margin-right: 4.17vw;
    height: 80px;
    cursor: pointer;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-bottom: 3px solid transparent;
}

.pro_deTwo1_list .item:last-child {
    margin-right: 0;
}

.pro_deTwo1_list .item:hover {
    border-bottom: 3px solid var(--hue);
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.pro_deTwo1_list .item:hover span {
    color: var(--hue);
}


.pro_deTwo1_list .item span {
    color: #333;
    padding-left: 8px;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.pro_deTwo1_list .item:hover span {
    color: var(--hue);
    transition: all 0.6s;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
}


.pro_deTwo1_list .item:hover::after {
    width: 100%;
    opacity: 1;
}

.pro_deTwo1_list .item.hover {
    border-bottom: 3px solid var(--hue);
}

.pro_deTwo1_list .item.hover span {
    color: var(--hue);
}


/*~~~~~~~~~~~~~ pro_deBoxTwo end~~~~~~~~~ */
.products_two {
    background-color: #F6F6F6;
}

.products_two_con {
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.products_two_l {
    /*width: 50%;*/
    /*padding-right: 10px;*/
    width: calc(100% - 540px);
    padding-right: 60px;
}

.products_two_l p {
    min-height: 28px;
}

.products_two_l img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.products_two_l p img {
    display: inline-block;
}

.products_two_r {
    /*width: calc(50% - 5.21vw);*/
    /*margin-left: 5.21vw;*/
    width: 540px;
}

.products_two_r .pic {
    width: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;

}

.products_two_r .pic_img {
    width: 100%;
    transition: all 1.8s;
    -ms-transition: all 1.8s;
    -webkit-transition: all 1.8s;
}

.products_two_r .pic_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.products_two_r .pic:hover .pic_img {
    transform: scale(1.13, 1.13);
    -ms-transform: scale(1.13, 1.13);
    -webkit-transform: scale(1.13, 1.13);
    transition: all 1.8s;
    -ms-transition: all 1.8s;
    -webkit-transition: all 1.8s;
}

.border1 {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 90px;
    height: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-animation: scale 3s infinite;
    animation: scale 3s infinite;
}

.border2 {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 110px;
    height: 110px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-animation: scale 2s infinite;
    animation: scale 2s infinite;
}

@-webkit-keyframes scale {
    form {
        width: 80px;
        height: 80px;
        opacity: 1;

    }

    to {
        width: 120px;
        height: 120px;
        opacity: 0;

    }
}

@keyframes scale {
    form {
        width: 80px;
        height: 80px;
        opacity: 1;
    }

    to {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

/* products_three */
.products_three {
    margin-top: 6px;
    background-color: #F6F6F6;
}

.products_three_b table {
    /*display: block;*/
    width: 100% !important;
}

.products_three_b table tr {
    font-family: var(--fwr);
    font-size: 20px;
    text-align: center;
}

.products_three_b table tr:first-child {
    background-color: var(--hue);
    color: #fff;
}

.products_three_b table tr:nth-child(even) {
    background-color: #fff;
}

.products_three_b table tr td {
    padding: 20px 10px;
    border-right: 1px solid #F6F6F6;
}

/* products_four */
.products_four_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
}

.products_four_list .item {
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
    cursor: pointer;
    position: relative !important;
}

.products_four_list .item img {
    width: 100%;
    z-index: -1;
}

.products_four_list .item:hover .item_con {
    color: var(--hue) !important;
    transition: all 1.8s;
    -ms-transition: all 1.8s;
    -webkit-transition: all 1.8s;
}

.products_four_list .item_con {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1 !important;
    color: #fff;
    padding-left: 1.35vw;
    padding-bottom: 1.04vw;

}

.products_four_list .item_con .lengt {
    font-size: 3.13vw;
}

/* products_five */
.products_five {

    background-color: #F6F6F6;
}

/* ~~~~~~~~~~~~products ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~products ~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~products ~~~~~~~~~~~~~ */


/* ~~~~~~~~vehicle~~~~~~~~~~~~ */
/* ~~~~~~~~vehicle~~~~~~~~~~~~ */
/* ~~~~~~~~vehicle~~~~~~~~~~~~ */
.vehicle {
    background-color: #F6F6F6;
}

.vehicle_t {
    margin-bottom: 2.6vw;
}

.vehicle_t_table {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.vehicle_t_table a {
    display: block;
    max-width: 250px;
    padding: 15px 24px;
    background-color: #fff;
    border-radius: 5px;
    font-family: var(--fwl);
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-right: 1.25vw;
    margin: 0 1.25vw 0.78vw 0;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

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

.vehicle_t_table a:hover,
.vehicle_t_table a.hover {
    background-color: var(--hue);
    color: #fff;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

.vehicle_b .img {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    padding: 40px 0 40px 0;
}

.vehicle_b_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.vehicle_b_list >div a {
    display: block;
}

.vehicle_b_list >div {
    box-shadow: 0 0 15px rgb(203 203 203 / 4);
    width: calc((100% - 7.81vw) / 4);
    margin-right: 2.6vw;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2.6vw;
}

.vehicle_b_list >div:nth-child(4n) {
    margin-right: 0;
}


.vehicle_b_list >div .btn {
    height: 0;
    display: none;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.vehicle_b_list >div .btn .btn_img {
    margin-right: 10px;

}

.vehicle_b_list >div .btn.hover {
    height: 50px;
    background-color: var(--hue);
}

.vehicle_b_list >div .img.hover {
    padding: 40px 0 10px 0;


}

.vehicle_b_list .item_tt.hover {
    margin-bottom: 10px;
}

.vehicle_b_list .item_tt {
    margin-bottom: 30px;
}

/* ~~~~~~~~vehicle end~~~~~~~~~~~~ */
/* ~~~~~~~~vehicle end~~~~~~~~~~~~ */
/* ~~~~~~~~vehicle end~~~~~~~~~~~~ */


/* ~~~~~~~~~cooperation~~~~~~~~~~~ */
/* ~~~~~~~~~cooperation~~~~~~~~~~~ */
/* ~~~~~~~~~cooperation~~~~~~~~~~~ */

.suppBoxThree {
    position: relative;
    z-index: 1;
    background-color: #F6F6F6;
}

.suppThree1_R {
    background-image: url('../picture/zhanting.jpg');
}

.suppBoxThree1 {
    border: 1px solid #C4C5C6;
    border-right: none;

    background: #FFFFFF;
    overflow: hidden;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
}

.suppThree1_L {
    width: 28.5%;
}

.suppThree1_L_item {
    height: auto;
    padding: 3.44vw 2.6vw 1.56vw 2.86vw;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.suppThree1_L > div {
    display: none;
}

.suppThree1_L > div:first-child {
    display: flex;
}

.suppThree1_L_item .title {
    color: #222222;
}

.suppThree1_L_item .text {
    color: #888888;
    padding-top: 10px;
}

.suppThree1_R {
    width: 70%;
    height: 510px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.suppThree1_R .item_box {
    width: calc(100% / 5);
    border-right: 1px solid #ffffff;
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cooperation_one_b_item {
    z-index: 2;
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.cooperation_one_b_item .title {
    width: 100%;
}

.cooperation_one_b_item .item_dian {
    margin: auto;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.cooperation_one_b_item .box {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: #fff;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

.cooperation_one_b_item:hover .box {
    background-color: var(--hue);
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;

}

.suppThree1_R .item_box.hover .item_dian {
    background-color: rgba(0, 208, 201, .4);
}

.suppThree1_R .item_box.hover .box {
    background-color: var(--hue);
}

.cooperation_one_b_item:hover .item_dian {
    background-color: rgba(0, 208, 201, .4);
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

/* cooperation_two */
.cooperation_two_l {
    width: calc(50% - 10.42vw);
    margin-right: 10.42vw;
}

.cooperation_two_l_list .item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: flex-start;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;
    padding-bottom: 0.78vw;
}

.cooperation_two_l_list .item .icon {
    margin-right: 10px;
    font-size: 24px;
}

.cooperation_two_l_im {
    margin-top: 10px;
}

.cooperation_two_r {
    width: 50%;
}

/* form */
.public_form input[type="radio"] + label::before {
    content: "";
    display: inline-block;
    cursor: pointer;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 1px solid #999;
    margin-right: 10px;
    vertical-align: middle;
}

.public_form input[type="radio"]:checked + label::before {
    background-clip: content-box;
    background-color: var(--hue);
    width: 15px;
    height: 15px;
    padding: 2px;
}

.public_form .item .item_radio {
    margin-right: 30px;
}

.public_form .noborder {
    border-bottom: none !important;
}

.public_form .item {
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    font-size: 16px;
    color: #333;
    font-family: var(--fwl);
}

.public_form .item_xing {
    color: red;
}

.public_form input {
    border-color: transparent;
    font-size: 16px;
    font-family: var(--fwl);
}

.public_form label {
    margin-right: 15px;
    font-family: var(--fwl);
    color: #333;
}

.public_form .form_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.public_form .form_list .item {
    width: calc((100% - 12px) / 2);
    margin-right: 12px;
}

.public_form .form_list .item:nth-child(2n) {
    margin-right: 0;
}

/* cooperation_three */
.cooperation_three_l label {
    color: #fff;
}

.cooperation_three {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cooperation_three_l,
.cooperation_three_r {
    width: 44%;
}

.cooperation_three_l .form_item input[type="radio"]:checked + label::before {
    background-color: #fff !important;
}

.cooperation_three_l .form_radio,
.cooperation_three_l .item {
    color: #fff;
}

.cooperation_three_l .form_btn button {
    background-color: var(--hue);
}

.cooperation_three_l input {
    width: 100%;
    color: #fff;
    font-family: var(--fwl);
}

/* cooperation_four */
.cooperation_four {
    background-color: #F6F6F6;
}

.cooperation_four_swiper img {
    width: 100%;
    height: auto;
}

.cooperation_four_swiper img:hover {
    transform: translate(0%, -5%);
    -ms-transform: translate(0%, -5%);
    -webkit-transform: translate(0%, -5%);

}

/* ~~~~~~~~~cooperation end~~~~~~~~~~~ */
/* ~~~~~~~~~cooperation end~~~~~~~~~~~ */
/* ~~~~~~~~~cooperation end~~~~~~~~~~~ */
/* ~~~~~~~~~news_list ~~~~~~~~~~~ */
/* ~~~~~~~~~news_list ~~~~~~~~~~~ */
/* ~~~~~~~~~news_list ~~~~~~~~~~~ */
.news_list {
    background-color: #F6F6F6;
}

.news_list_t {
    margin-bottom: 3.39vw;
}

/* ~~~~~~~~~news_list end~~~~~~~~~~~ */
/* ~~~~~~~~~news_list end~~~~~~~~~~~ */
/* ~~~~~~~~~news_list end~~~~~~~~~~~ */
/* ~~~~~~~~~faq ~~~~~~~~~~~ */
/* ~~~~~~~~~faq ~~~~~~~~~~~ */
/* ~~~~~~~~~faq ~~~~~~~~~~~ */

.faq_list {
    background-color: #F6F6F6;
}

.faq_list_t {
    margin-bottom: 3.39vw;
}

.faq_list_item {
    max-width: 1000px;
    margin: auto;
}

.faq_list_l_item {
    background-color: #fff;
    padding: 30px 44px 30px 38px;
    cursor: pointer;
    margin-bottom: 1.46vw;
}

.faq_list_l_item .item_t {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.faq_list_l_item .item_left {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.faq_list_l_item .item_left_l {
    background-color: var(--hue);
    margin-right: 23px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.item_left_t {
    width: calc(100% - 40px);
}

.faq_list_l_item .icon {
    width: 50px;
    height: 50px;
    background-color: #F6F6F6;
    border-radius: 100%;
    color: #333;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
}

.faq_list_list .faq_list_l_item .item_b {
    padding-top: 1.56vw;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: none;
}

.faq_list_l_item .item_b.hover {
    display: block;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.faq_list_l_item .icon.hover {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

.faq_list_l_item .item_b_left {
    width: 50px;
    max-width: 50px;
    height: 50px;
    background-color: #F6F6F6;
    border-radius: 100%;
    color: #333;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    margin-right: 23px;
}

.faq_list_l_item .item_b_tt {
    width: calc(95% - 78px);
}

/* ~~~~~~~~~faq end~~~~~~~~~~~ */
/* ~~~~~~~~~faq end~~~~~~~~~~~ */
/* ~~~~~~~~~faq end~~~~~~~~~~~ */


/* blog_det */
.news_det {
    background: #f6f6f6;
}

.blog_det_l {
    width: calc(100% - 540px);
    padding-right: 60px;
}


.blog_det_tip {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding: 16px 0 45px;
    border-bottom: 1px solid #e5e5e5;
}

.blog_det_tip .item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    font-size: 16px;
    color: #999;
    margin: 0 2.6vw 0 0;
}

.blog_det_tip .item:last-child {
    margin-right: 0;
}

.blog_det_tip .item .icon {
    font-size: 20px;
    color: var(--hue);
    margin-right: 6px;
}


.blog_det_con {
    padding: 30px 0;
}

.blog_det_con p {
    min-height: 28px;
}

.blog_det_con img {
    width: auto;
    max-width: 100%;
    height: auto;
}


.blog_det_con p img {
    display: inline-block;
}

.blog_det_page {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
}

.blog_det_page_item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    line-height: 36px;
    font-size: 16px;
}

.blog_det_page_item .tt {
    width: 48px;
    color: #333;
}

.blog_det_page_item .text {
    width: 100%;
}

.blog_det_page_item .text a {
    color: #999;
}

.blog_det_page_item .text a:hover {
    color: var(--hue);
}

.blog_det_right {
    margin-left: 15px;
    color: #333;
    border-radius: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
}

.blog_det_right .icon {
    font-size: 24px;
}

.blog_det_right:hover {
    background-color: var(--hue);
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
    color: #fff;
}

.blog_det_r {
    width: 540px;
}

.blog_det_r_clm {
    padding: 25px 35px;
    background-color: #fff;
}

.blog_det_r_clm_title_box {
    margin-bottom: 22px;
}

.blog_det_r_clm_btn_box {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    width: 68px;
}

.blog_det_r_clm_btn {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    width: 28px;
    height: 28px;
    font-size: 16px;
    color: #333;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.blog_det_r_clm_btn.hover {
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.blog_det_r_clm_btn.prev {
    transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}


.blog_det_r_scroll_item {
    display: block;
}

.blog_det_r_scroll_item .pic {
    border-radius: 10px;
    overflow: hidden;
}

.blog_det_r_scroll_item .pic img {
    width: 100%;
}

.blog_det_r_scroll_item .tt {
    margin: 16px 0 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    font-family: var(--fwr);
}

.blog_det_r_scroll_item:hover .pic img {
    transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
}

.blog_det_r_scroll_item:hover .tt {
    color: var(--hue) !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}


.pro_list1 {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.pro_list1 dd {
    width: calc((100% - 96px) / 4);
    margin: 0 32px 32px 0;
}

.pro_list1 dd:last-child {
    margin-right: 0;
}

/* products_pd */
.products_pd {
    padding-bottom: 3.13vw;
}


/*~~~~~~~~~~~ about_one~~~~~~~~~ */
/*~~~~~~~~~~~ about_one~~~~~~~~~ */
/*~~~~~~~~~~~ about_one~~~~~~~~~ */
.about_one {
    padding: 5.9vw 0 5.92vw 0;
    position: relative;
}

.about_one_img {
    width: 90%;
    position: absolute;
    bottom: -10%;
    right: -5%;
    z-index: -1;
}

.about_one .index_four_item:hover .number {
    color: var(--hue) !important;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

/* about_two */
.about_two {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.about_two_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
}

.about_two_box .img {
    max-width: 100px;
    width: 5.21vw;
    cursor: pointer;
}

.about_two_box .img img {
    width: 100%;
    height: auto;
}

/* about_three_l_item */
.about_three_t {
    padding-bottom: 2.6vw;
}

.about_three_list {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.about_three_l_item {
    width: calc((100% - 7.81vw) / 4);
    margin-right: 2.6vw;
    background-color: #f5f5f5;
    padding: 0.89vw 1.67vw 0.89vw 1.67vw;
    position: relative;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;

}

.about_three_l_item:nth-child(4n) {

    margin-right: 0;
}

.about_three_l_item .item_t_number {
    color: var(--hue);
}

.about_three_l_item .item_t_img {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    padding-bottom: 1.56vw;
}

.about_three_l_item .item_t_img img {
    height: auto;
}

.about_three_l_item .show {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /*opacity: 0;*/
}

.about_three_l_item.hover {
    background-color: transparent;
}


.about_three_l_item .item_t {
    z-index: 2;
}

/*.about_three_l_item.hover {*/
/*	background-image: url(../images/about_three_img_01.png);*/

/*	transition: all .6s linear;*/
/*	-ms-transition: all .6s linear;*/
/*	-webkit-transition: all .6s linear;*/
/*}*/

.about_three_l_item.hover .item_t_tt,
.about_three_l_item.hover .item_t_number {
    color: #fff;
}

.about_three_l_item.hover .item_t_img img {
    z-index: -1;
    transition: all .6s linear;
    -ms-transition: all .6s linear;
    -webkit-transition: all .6s linear;
}

/* about_four */
.about_four {
    background-color: #F6F6F6;
}

.about_four_l {
    width: 60%;
}

.about_four_r {
    width: calc(40% - 5.21vw);
    padding: 60px 0 0px 100px;
}

.about_four_r .tt {
    padding-bottom: 0.78vw;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: flex-end;
    -ms-align-items: flex-end;
    -webkit-align-items: flex-end;
}

.about_four_r .number {
    font-size: 4.17vw;
    line-height: 1;
    margin-right: 15px;
}

/* about_five */
.about_five_swiper {
    width: 70%;
}

.about_five_item {
    width: 100%;
}

.about_five_item .pic {
    width: 100%;
}

.about_five_item .pic img {
    width: 100%;
    height: auto;
}

.about_five_item .tt {
    text-align: center;
    padding-top: 1.04vw;
    display: none;
}

.about_five_swiper .swiper-slide-active .tt {
    display: block;
}

.about_five_b {
    position: relative;
    top: 0.78vw;
}

.about_five_swiper_button {
    position: absolute;
    top: 45%;
    width: 68px;
    height: 68px;
    border-radius: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    font-size: 28px;
    cursor: pointer;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

.about_five_swiper_button.next {
    right: 0;

}

.about_five_swiper_button.prev {
    transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.about_five_swiper_button.hover {
    color: #fff;
    background-color: var(--hue);
}

.about_five_swiper_button:hover {
    color: #fff;
    background-color: var(--hue);
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

/* about_seven */
.about_seven {
    background-color: #F6F6F6;
}

.about_seven_b {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.about_seven_item {
    width: calc((100% - 3.13vw) / 4);
    margin-right: 1.04vw;
}

.about_seven_item:nth-child(4n) {
    margin-right: 0;
}

.about_seven_item .pic {
    width: 100%;
    overflow: hidden;
}

.about_seven_item .pic img {
    width: 100%;
    height: auto;
    transition: all 1.8s;
    -ms-transition: all 1.8s;
    -webkit-transition: all 1.8s;
}

.about_seven_item:hover .pic img {
    transform: scale(1.13, 1.13);
    -ms-transform: scale(1.13, 1.13);
    -webkit-transform: scale(1.13, 1.13);
    transition: all 1.8s;
    -ms-transition: all 1.8s;
    -webkit-transition: all 1.8s;
}

.about_seven_item .title {
    padding: 10px 0;
}

.about_seven_item:hover .title {
    color: var(--hue) !important;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

/*~~~~~~~~~~~ about_one end~~~~~~~~~ */
/*~~~~~~~~~~~ about_one end~~~~~~~~~ */
/*~~~~~~~~~~~ about_one end~~~~~~~~~ */


/*~~~~~~~~~~~ contact ~~~~~~~~~ */
/*~~~~~~~~~~~ contact ~~~~~~~~~ */
/*~~~~~~~~~~~ contact ~~~~~~~~~ */
.contact_one {
    background-color: #F6F6F6;
}

.contact_one_item {
    width: calc((100% - 7.81vw) / 4);
    margin-right: 2.6vw;
    background-color: #fff;
    text-align: center;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding: 45px 0;
}

.contact_one_item:nth-child(4n) {
    margin-right: 0;
}

.contact_one_item .icon {
    color: #333;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    background-color: #F6F6F6;
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

.contact_one_item .title {
    padding-top: 1.04vw;
    width: 100%;
}

.contact_one_item:hover .text {
    text-decoration: underline;
}

.contact_one_item:last-child .text {
    text-decoration: none;
}

.contact_one_item:hover .icon {
    color: #fff;
    background-color: var(--hue);
    transition: all .6s;
    -ms-transition: all .6s;
    -webkit-transition: all .6s;
}

/*~~~~~~~~~~~ contact end~~~~~~~~~ */
/*~~~~~~~~~~~ contact end~~~~~~~~~ */
/*~~~~~~~~~~~ contact end~~~~~~~~~ */


.hizoom {
    position: relative;
}

.hizoom .magnifier {
    box-sizing: border-box;
    border: 1px solid #999;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    cursor: move;
}

.hizoom .small,
.hizoom .big {
    position: absolute;
    border: 1px solid #ddd;
}

.hizoom .small {
    top: 0;
    left: 0;
    cursor: move;
}

.hizoom .big {
    overflow: hidden;
    display: none;
}

.hizoom .small img,
.hizoom .big img {
    position: absolute;
    top: 0;
    left: 0;
}

/*详情页 修改*/

/* 第一模块的css */
.pro_detOne1 .left_box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 44%;
}

.pro_detOne2 {
    width: 100%;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.pro_detOne2 .owl-wrapper-outer {
    border: 1px solid #e0e0e0;
}

.diandian_box {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.diandian_box .item {
    width: calc((100%) / 4);
    position: relative;
    margin: 17px 18px 0 0;
    cursor: pointer;
}

.diandian_box .item img {
    width: 100%;
    border: 2px solid transparent;
}

.diandian_box .active img {
    border-color: var(--hue);
}

.diandian_box > .item:last-child {
    margin-bottom: 0;
    margin-right: 0;
}

.pro_detOne2 .pro_video_click,
.diandian_box .pro_video_click {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
}

.pro_detOne2 .item .video_box {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    cursor: pointer;
    transform: translate(-5%, -5%);
    -ms-transform: translate(-5%, -5%);
    -webkit-transform: translate(-5%, -5%);
    width: 100%;
    height: 100%;
}

.pro_detOne2 .item .video_box .iconfont {
    font-size: 58px;
    color: #fff;
}

/* 放大镜盒子转换为轮播图 */
.loupe_lunbo_switch {
    display: none !important;
    width: 70%;
    margin: 0 auto;
}

/* 弹出的视频盒子 */
.pro_video_Box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.pro_video_Box .video_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 800px;
    height: 485px;
}

.pro_video_Box .video_box .video_iframe {
    width: 100%;
    height: 100%;
}

.pro_video_Box .video_box .close_btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/* 放大镜 放大的盒子 */
div.zoomDiv {
    z-index: 999;
    position: absolute;
    border: solid 1px #ddd;
    width: 500px !important;
    height: 510px !important;
    background: #ffffff;
    display: none;
    text-align: center;
    overflow: hidden;
}

div.zoomMask {
    /*position: absolute;*/
    /*width: 88px !important;*/
    /*height: 88px !important;*/
    /*background: rgba(255, 255, 255, .5) url(../images/pro_det_icon1.png) no-repeat center center;*/
    /*cursor: move;*/
    z-index: 99;
}

.bigimg {
    width: 1000px !important;
    height: auto;
    max-width: none;
}

/* 放大镜 放大的盒子 结束*/
.owl-carousel .owl-item {
    overflow: hidden !important;
}


.wpforms-field-container .wpforms-field-large, .wpforms-field-container .wpforms-field-large:focus {
    border: none !important;
    border-bottom: 1px solid #d9d7d7 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.wpforms-field-container label {
    color: #555 !important;
    font-weight: normal !important;
}

.wpforms-submit {
    background: #3a3939 !important;
    width: 190px !important;
    border-radius: 5px !important;
}

.public_module_title img {
    /*width: auto !important;*/
    /*height: auto !important;*/
}

.baguetteBox img {
    width: 700px;
    height: 453px;
}

.diandian_box img {
    width: 158px;
    height: 102px;
}

.item_pic img {
    width: 700px;
}

@media screen and (max-width: 500px) {
    .cooperation_two_l_im > img {
        width: 100%;
    }

    .footer_box {
        display: none;
    }

    .baguetteBox img {
        width: 330px;
        height: 214px;
    }

    .diandian_box img {
        width: 79px;
        height: 51px;
    }

    .item_pic img {
        width: 100%;
        height: auto;
    }
}