@charset "utf-8";

@font-face {
    font-family: 'Geom-Regular';
    src: url('../fonts/Geom-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geom-Light';
    src: url('../fonts/Geom-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'Geom-Regular';
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
p,
blockquote,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
hr,
span {
    margin: 0;
    padding: 0;
}

body {
    font-size: 12px;
    font-family: "Geom-Regular" ! important;
    color: #262626;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

a {
    text-decoration: none;
    color: #333;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

.pt10 {
    padding-top: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.pn5 {
    padding: 5px;
}

.pt5 {
    padding-top: 5px;
}

.pl5 {
    padding-left: 5px;
}

.pr5 {
    padding-right: 5px;
}

.pb5 {
    padding-bottom: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt30 {
    margin-top: 30px;
}

.ml10 {
    margin-left: 10px;
}

.mr10 {
    margin-right: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mn5 {
    margin: 5px;
}

.mt5 {
    margin-top: 5px;
}

.ml5 {
    margin-left: 5px;
}

.mr5 {
    margin-right: 5px;
}

.mb5 {
    margin-bottom: 5px;
}

.wrap {
    width: 1280px;
    margin: 0 auto;
}

.pc_header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 27px 0 23px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
}

.pc_header .wrap {
    position: relative;
    display: flex;
    justify-content: space-between;

}

.logo {
    float: left;
}

.logo img {
    height: 30px;
    float: left;
}

.nav {
    height: 34px;
    float: left;
    min-width: 710px;

}

.nav ul {
    float: left;
}

.nav ul li {
    float: left;
}

.nav ul li h3 {
    float: left;
}

.nav ul li h3 a {
    height: 52px;
    font-size: 18px;
    color: #ffffff;
    line-height: 34px;
    font-weight: normal;
    float: left;
    margin: 0 25px;
    padding: 0 5px;
    position: relative;

}

.nav ul li h3 a:hover {}

.nav ul li h3 a:hover:after {
    content: '';
    width: 100%;
    height: 6px;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    background: #EA4D1C;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
}

.nav ul li.on h3 a {}

.nav ul li.on h3 a:after {
    content: '';
    width: 100%;
    height: 6px;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    background: #EA4D1C;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
}

.nav ul li .subnav {
    width: 1280px;
    left: 50%;
    transform: translate(-50%, 54px);
    border-radius: 10px;
    height: auto;
    float: left;
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 1);
    padding: 24px 20px;
    display: flex;
    display: none;

}

/* .nav ul li .subnav dl:first-child {
width: 50%;
} */

.nav ul li .subnav dl {
    width: 25%;
}

.nav ul li .subnav dl dt:before {
    content: '';
    width: 4px;
    height: 18px;
    background: #EA4D1C;
    border-radius: 2px;
    margin-right: 6px;
    float: left;
}

.nav ul li .subnav dt {
    font-weight: 600;
    font-size: 18px;
    color: #2C2C2C;
    line-height: 22px;
    margin-bottom: 13px;
}

/* .nav ul li .subnav dl:first-child dd {
width: 50%;
float: left;

} */

.nav ul li .subnav dl dd {
    width: 100%;
    float: left;
    margin-bottom: 8px;

}

.nav ul li .subnav dd a {
    font-weight: 400;
    font-size: 16px;
    color: #757575;
    line-height: 20px;
    float: left;
    margin-bottom: 8px;
    text-indent: 10px;
}

.nav ul li .subnav dd a:hover {
    color: #333;
}

.nav ul li:hover .subnav {
    display: flex;
}

.nav a.gohome {
    display: none;
}

.nav a.gohome i {
    display: none;
}

.nav a.gonav i {
    display: none;
}

.nav_bot_la {
    background: rgba(0, 0, 0, 1);
}

.logo_w {
    display: block;
}

.logo_b {
    display: none;
}

.nav_bot_la .logo_w {
    display: none;
}

.nav_bot_la .logo_b {
    display: block;
}


.pc_header .search {
    float: right;
    position: relative;
    width: 260px;
    margin-right: -30px;
    overflow: hidden;
}

.pc_header .search .keyword {
    float: left;
    width: 100%;
    height: 34px;
    line-height: 32px;
    border: 0 none;
    font-size: 12px;
    color: #B0A6A3;
    background: none;
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 0 18px;
}

.pc_header .search:hover .keyword {}

.pc_header .search .keyword:focus {
    outline: 0;
    background: none;
    background: #FFFFFF;
    border: 1px solid #EA4D1C;
}

.pc_header .search .tjbtn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 5px;
    background: url(../images/Navbar_Search_icon.png) no-repeat center center;
    border: 0 none;
    color: #000;
    cursor: pointer;
    font-size: 0;
}

.xian {
    width: 1px;
    height: 26px;
    margin-top: 3px;
    float: left;
    border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.lang {
    height: 26px;
    margin-top: 3px;
    float: left;
    width: 30px;

}

.lang ul {
    float: left;
    width: 100%;
}

.lang ul li {
    width: 100%;
    height: 88px;
    line-height: 26px;
    float: left;
    color: #333333;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.lang .il1 {
    width: 26px;
    height: 26px;
    float: right;
    margin-right: 35px;
    background: url(../images/Navbar_language_icon.png) no-repeat center center;
}

.lang ul li .xjt {
    background: url(../images/lxjt.png) no-repeat center center;
    float: right;
    width: 14px;
    height: 8px;
    margin-top: 10px;
}

.lang ul li .this {
    float: left;
    width: 100%;
    text-align: left;
}

.lang ul li dl {
    width: 90px;
    float: left;
    display: none;
    position: absolute;
    right: 0;
    top: 25px;
    border-radius: 10px;
}

.lang ul li dl a {
    width: 100%;
    color: #888;
    font-size: 14px;
    display: inline-block;
    float: left;
    line-height: 26px;
    text-indent: 20px
}

.lang ul li dl a:hover {
    color: #888;
}

.lang ul li:hover dl {
    display: block;
}

.lang ul li dl dd {
    width: 100%;
    height: auto;
    float: left;
}



.m_header {
    position: relative;
    z-index: 999;
    display: none;
    height: 68px;
}

.sp_header {
    height: 68px;
    overflow: hidden;
    background: #fff;
    position: fixed;
    z-index: 10;
    width: 100%;
}

.sp_logo {
    padding: 10px;
    float: left;
    height: 68px
}

.sp_logo img {
    margin: auto;
    height: 48px;
}

.sp_nav {
    width: 50px;
    float: right;
    position: relative;
    cursor: pointer;
    height: 30px;
    margin-top: 20px
}

.sp_nav span {
    display: block;
    background: #c9141e;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 10px;
}

.sp_nav span:nth-of-type(1) {
    top: 0px
}

.sp_nav span:nth-of-type(2) {
    top: 10px
}

.sp_nav span:nth-of-type(3) {
    top: 20px
}

.sp_nav_se span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.sjj_nav {
    position: fixed;
    z-index: 9;
    background: #eee;
    width: 100%;
    height: calc(100% - 0px);
    font-size: 14px;
    line-height: 40px;
    top: -100%;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
}

.nav_show {
    top: 68px
}

.sjj_nav ul li i {
    position: absolute;
    top: 5px;
    right: 0px;
    border-left: 1px #ddd solid;
    height: 36px;
    padding: 0px 7px 0 7px;
}

.sjj_nav ul li i svg {
    transform: rotate(-90deg);
    transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se svg {
    transform: rotate(0deg)
}

.sjj_nav ul li {
    border-top: 1px #ddd solid;
    margin-left: 20px;
    position: relative;
    line-height: 46px;
    font-size: 16px
}

.sjj_nav>ul>li:last-child {
    border-bottom: 1px #ddd solid;
}

.sjj_nav ul li ul {
    display: none
}

.sjj_nav ul li a {
    color: #666;
    width: 80%
}

.sjj_nav ul li ul li a {
    color: #999;
    display: block;
    text-align: left;
}

.sjj_nav ul li i svg {
    width: 30px;
    height: 36px;
    fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #c9141e
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px
}

input:focus {
    outline: none;
}

select:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

.m_header .search {
    float: left;
    position: relative;
    width: 80%;
    margin: 4% 10%;
    overflow: hidden;
}

.m_header .search .keyword {
    float: left;
    width: 100%;
    height: 34px;
    line-height: 32px;
    border: 0 none;
    font-size: 12px;
    color: #B0A6A3;
    background: #FFFFFF;
    border: 1px solid #EA4D1C;
    border-radius: 20px;
    padding: 0 18px;
}

.m_header .search:hover .keyword {}

.m_header .search .keyword:focus {
    outline: 0;
    background: none;
    background: #FFFFFF;
    border: 1px solid #EA4D1C;
}

.m_header .search .tjbtn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 5px;
    background: url(../images/Navbar_Search_icon.png) no-repeat center center;
    border: 0 none;
    color: #000;
    cursor: pointer;
    font-size: 0;
}





.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    opacity: 1;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
    opacity: 1;
    width: 10px;
    height: 10px;
    background: #DB261D;
}

.banner .swiper-slide {
    position: relative;
    width: auto;
}

.banner .swiper-slide img {
    width: auto;
}

.banner .swiper-slide .slide-text {
    position: absolute;
    /* 水平居中 */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    bottom: 40%; 
    transform: translate(-50%, -50%); 
    width: 90%; /* 限制宽度，防止文字过长溢出 */
    z-index: 10;
    color: #fff;
    height: 100px;
}
.banner .swiper-slide .slide-text .h3{font-size: 32px; margin-bottom: 10px; font-weight: 800;opacity: 0.9;}
.banner .swiper-slide .slide-text .h4{font-size: 20px; line-height: 1.5; font-weight: 500;opacity: 0.8;}

.sobox {
    height: auto;
    float: left;
    position: absolute;
    bottom: 20%;
    left: calc(50% - 455px);
    transform: translate(0, -40%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

}

.sobox .h3 {
    width: 100%;
    height: auto;
    float: left;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    font-weight: normal;
}

.sobox .h4 {
    width: 100%;
    height: auto;
    float: left;
    font-weight: 800;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 35px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.sobox .sobox_form {
    position: relative;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    text-align: left;
    overflow: hidden;
    width: 910px;
    max-width: 100%;

}

.sobox .sobox_form .keyword {
    float: left;
    width: 100%;
    height: 54px;
    line-height: 52px;
    border: 0 none;
    font-size: 16px;
    color: #333;
    background: #FFFFFF;
    border: 1px solid #EA4D1C;
    border-radius: 12px;
    padding: 0 18px;
}

/* ========== placeholder 占位提示文字颜色（核心） ========== */
.sobox .sobox_form .keyword::placeholder {
    color: #888;  /* 提示文字颜色 */
    opacity: 1;      /* 修复火狐浏览器透明度变淡问题 */
}
/* 兼容旧webkit内核（可选，防止部分浏览器失效） */
.sobox .sobox_form .keyword::-webkit-input-placeholder {
    color: #888;
}

.sobox .sobox_form:hover .keyword {}

.sobox .sobox_form .keyword:focus {
    outline: 0;
    background: #FFFFFF;
    border: 1px solid #EA4D1C;
}

.sobox .sobox_form .tjbtn {
    width: 72px;
    height: 54px;
    position: absolute;
    top: 0;
    right: 0px;
    background: url(../images/Banner_search_icon.png) no-repeat center center;
    border: 0 none;
    color: #000;
    cursor: pointer;
    font-size: 0;
}

.sobox .sobox_item {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    margin-top: 27px;
}

.sobox .sobox_item a {
    font-weight: 800;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 15px;
    display: inline-block;
    margin: 0 15px;
    opacity: 0.6;
}

.sobox .sobox_item a:hover {
    color: #EA4D1C;
}

.main {
    width: 100%;
    overflow: hidden;
}

.pt6p {
    padding-top: 60px;
}

.pb6p {
    padding-bottom: 60px;
}

.h2tit {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 60px;
    margin-top: 60px;
}

.h2tit h2 {
    font-weight: 800;
    font-size: 32px;
    color: #2C2C2C;
    line-height: 40px;
    float: left;
}

.h2tit h2 span {
    color: #EA4D1C;
}

.h2tit a.more {
    line-height: 40px;
    font-weight: 500;
    font-size: 14px;
    color: #B0A6A3;
    float: right;
}

.h2tit a.more:after {
    content: "";
    width: 14px;
    height: 9px;
    background: url(../images/CRO_enter_icon_0.png) no-repeat center center;
    display: inline-block;
    vertical-align: middle;
    margin-left: 16px;
    margin-top: -4px;
}

.h2tit a.more:hover {
    color: #FF3A07;

}

.h2tit a.more:hover:after {
    background: url(../images/CRO_enter_icon_1.png) no-repeat center center;
}

.rp_list {
    width: 100%;
    height: auto;
    float: left;
}

.rp_list ul {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: space-between;
}

.rp_list ul li {
    margin-right: 25px;
    border-radius: 12px;
}

.rp_list ul li:hover {
    background: #EA4D1C;

}

.rp_list ul li:nth-child(6) {
    margin-right: 0;
}

.rp_list ul li a {
    width: 100%;
    height: auto;
    float: left;
}

.rp_list ul li a i {
    width: 192px;
    height: 192px;
    float: left;
}

.rp_list ul li a i.rpi1 {
    background: url(../images/Proteins_icon_1_1.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li a i.rpi2 {
    background: url(../images/Proteins_icon_2_1.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li a i.rpi3 {
    background: url(../images/Proteins_icon_3_1.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li a i.rpi4 {
    background: url(../images/Proteins_icon_4_1.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li a i.rpi5 {
    background: url(../images/Proteins_icon_5_1.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li a i.rpi6 {
    background: url(../images/Proteins_icon_6_1.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li:hover a i.rpi1 {
    background: url(../images/Proteins_icon_1_2.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li:hover a i.rpi2 {
    background: url(../images/Proteins_icon_2_2.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li:hover a i.rpi3 {
    background: url(../images/Proteins_icon_3_2.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li:hover a i.rpi4 {
    background: url(../images/Proteins_icon_4_2.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li:hover a i.rpi5 {
    background: url(../images/Proteins_icon_5_2.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li:hover a i.rpi6 {
    background: url(../images/Proteins_icon_6_2.png) no-repeat center center/ 100% 100%;
}

.rp_list ul li a h3 {
    width: 100%;
    height: 40px;
    float: left;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    line-height: 20px;
    margin-top: 4px;
    text-align: center;
    margin-bottom: 26px;
    padding: 0 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rp_list ul li:hover a h3 {
    color: #ffffff;
}

.cs_list {
    width: 100%;
    height: auto;
    float: left;
}

.cs_list ul {
    width: 100%;
    height: auto;
    float: left;
}

.cs_list ul li {
    width: 32%;
    height: auto;
    float: left;
    margin-right: 2%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
}

.cs_list ul li:nth-child(3n) {
    margin-right: 0;
}

.cs_list ul li a {
    width: 100%;
    height: auto;
    float: left;
}

.cs_list ul li a .picbox {
    width: 100%;
    height: 0;
    padding-bottom: 81.86%;
    position: relative;
    float: left;
}

.cs_list ul li a .picbox img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    float: left;
}

.cs_list ul li a .info {
    width: 100%;
    height: auto;
    float: left;
    /* background: #F3F3F3; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
    padding: 50px 20px 20px;
}

.cs_list ul li:hover a .info {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}


.cs_list ul li:hover img {
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.cs_list ul li a .info h3 {
    width: 100%;
    height: auto;
    float: left;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    line-height: 25px;
}

.cs_list ul li a .info .category {
    width: 100%;
    height: auto;
    float: left;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    line-height: 17px;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs_list ul li a .info .category:after {
    content: "";
    width: 14px;
    height: 9px;
    background: url(../images/CRO_enter_icon_1.png) no-repeat center center;
    display: inline-block;
    vertical-align: middle;
}


.cs_list ul li:hover a .info .category:after {
    background: url(../images/CRO_enter_icon_2.png) no-repeat center center;
}

.cs_list ul li:hover a .info h3 {
    color: #ffffff;
}

.cs_list ul li:hover a .info .category {
    color: #ffffff;
}

.fp_qh {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 100px;
}

.fp_qh .swiper {
    width: 100%;
    height: auto;
    float: left;
    overflow: hidden;

}

.fp_qh .swiper .swiper-wrapper {
    width: 100%;
    height: auto;
    float: left;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide {
    float: left;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a {
    width: 100%;
    height: auto;
    float: left;
    background: #F3F3F3;
    border-radius: 12px;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a h3 {
    width: 100%;
    height: 36px;
    float: left;
    padding: 0 14px;
    margin: 16px 0;
    font-weight: bold;
    font-size: 16px;
    color: #2c2c2c;
    line-height: 18px;

}

.fp_qh .swiper .swiper-wrapper .swiper-slide a .picbox {
    width: 100%;
    height: auto;
    float: left;
    border: 1px solid #F3F3F3;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a .picbox img {
    width: 100%;
    height: auto;
    float: left;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a .info {
    width: 100%;
    height: auto;
    float: left;
    padding: 16px 14px;
    border-top: 10px solid #EA4D1C;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a .info b {
    width: 100%;
    height: auto;
    float: left;
    font-weight: bold;
    font-size: 12px;
    color: #EA4D1C;
    line-height: 15px;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a .info .tag {
    width: 100%;
    height: auto;
    float: left;
    font-weight: 300;
    font-size: 12px;
    color: #2c2c2c;
    line-height: 17px;
    margin-top: 6px;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a .info .tag span {
    width: 50%;
    height: auto;
    float: left;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a:hover {
    background: #EA4D1C;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a:hover h3 {
    color: #fff;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a:hover .info b {
    color: #fff;
}

.fp_qh .swiper .swiper-wrapper .swiper-slide a:hover .info .tag {
    color: rgba(255, 255, 255, 0.6);
}

.fp_qh .swiper .swiper-pagination {
    width: 100%;
    display: none;

    height: auto;
    float: left;
}

.contact {
    width: 100%;
    overflow: hidden;
    background: url(../images/home_footer_cantact_bg_img.png) no-repeat center center /100% 100%;
    padding: 42px 0 37px;
}

.contact .contact_list {
    width: 100%;
    height: auto;
    float: left;
}

.contact .contact_list dl {
    width: 276px;
    height: auto;
    float: left;
    margin-right: 50px
}

.contact .contact_list dl dt {
    width: 100%;
    height: auto;
    float: left;
    font-weight: 900;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 17px;
    letter-spacing: 1px;
}

.contact .contact_list dl dd {
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 17px;
    font-family: Geom-Light;
    margin-top: 20px;
}

.advantage {
    width: 100%;
    overflow: hidden;
    height: 128px;
    padding-top: 21px;
    padding-bottom: 26px;
    background: #000000 url(../images/home_footer_strength_bg_img.png) no-repeat right center /38% 100%;
}

.advantage .num-figure {
    width: 860px;
    height: auto;
    float: left;
    margin-top: 13px;
}

.advantage .num-figure ul {
    width: 100%;
    height: auto;
    float: left;
}

.advantage .num-figure ul li {
    width: 25%;
    height: auto;
    float: left;
    display: flex;
}

.advantage .num-figure ul li i {
    width: 60px;
    height: 60px;
    float: left;
}

.advantage .num-figure ul li i.inum1 {
    background: url(../images/home_footer_strength_icon_1.png) no-repeat right center /100% 100%;

}

.advantage .num-figure ul li i.inum2 {
    background: url(../images/home_footer_strength_icon_2.png) no-repeat right center /100% 100%;
}

.advantage .num-figure ul li i.inum3 {
    background: url(../images/home_footer_strength_icon_3.png) no-repeat right center /100% 100%;
}

.advantage .num-figure ul li i.inum4 {
    background: url(../images/home_footer_strength_icon_4.png) no-repeat right center /100% 100%;
}

.advantage .num-figure ul li .num-change {
    width: calc(100% - 60px);
    height: auto;
    float: left;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage .num-figure ul li .num-change>div {
    width: 100%;
    height: auto;
    float: left;
    font-weight: bold;
    font-size: 22px;
    color: #EA4D1C;
    line-height: 27px;
}

/* .advantage .num-figure ul li .num-change span:after {
content: '+';
font-weight: bold;
font-size: 22px;
color: #EA4D1C;
line-height: 27px;
}

.advantage .num-figure ul li:last-child .num-change span:after {
display: none;
} */

.advantage .num-figure ul li .num-change span.timer {

    font-weight: bold;
    font-size: 22px;
    color: #EA4D1C;
    line-height: 27px;
}

.advantage .num-figure ul li .num-change p {
    width: 100%;
    height: auto;
    float: left;
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 15px;
    margin-top: 2%;
}

.learnmore {
    width: 270px;
    float: right;
}

.learnmore h3 {
    width: 100%;
    height: auto;
    float: left;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 20px;
}

.learnmore a {
    width: 178px;
    height: 30px;
    line-height: 30px;
    background: #FFFFFF;
    border-radius: 20px;
    float: left;
    font-weight: 500;
    font-size: 12px;
    color: #000000;
    text-align: center;
    margin-top: 11px;
}

.learnmore a:after {
    content: "";
    width: 14px;
    height: 9px;
    background: url(../images/CRO_enter_icon_1.png) no-repeat center center;
    display: inline-block;
    vertical-align: middle;
    margin-left: 16px;
}

.learnmore a:hover {
    color: #ffffff;
    background: #000000;
}

.learnmore a:hover:after {
    background: url(../images/CRO_enter_icon_1.png) no-repeat center center;
}

.footer {
    width: 100%;
    min-height: 330px;
    overflow: hidden;
    background: url(../images/home_footer_img.jpg) no-repeat center center /auto 100%;
    padding-top: 60px;
}

.footer .wrap {
    display: flex;
    justify-content: space-between;
}

.foot_left {
    width: 192px;
    height: auto;
    float: left;
}

.footer .foot_left img {
    height: 30px;
    float: left;
}

.footer .foot_left p {
    width: 100%;
    height: auto;
    float: left;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 15px;
    margin-top: 18px;
    margin-bottom: 30px;
}

.footer .foot_left .foot_links {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: space-between;
}

.footer .foot_left .foot_links a {
    width: 36px;
    height: 36px;
    float: left;
}

.footer .foot_left .foot_links a.flinks1 {
    background: url(../images/home_footer_contact_facebook.png) no-repeat center center / 100% 100%;
}

.footer .foot_left .foot_links a.flinks2 {
    background: url(../images/home_footer_contact_in.png) no-repeat center center / 100% 100%;
}

.footer .foot_left .foot_links a.flinks3 {
    background: url(../images/home_footer_contact_ins.png) no-repeat center center / 100% 100%;
}

.footer .foot_left .foot_links a.flinks4 {
    background: url(../images/home_footer_contact_x.png) no-repeat center center / 100% 100%;
}

.footer .foot_nav {
    height: auto;
    float: left;
    display: flex;
    padding-left: 50px;
}

.footer .foot_nav dl {
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

.footer .foot_nav dl:first-child {
    margin-left: 0;
}

.footer .foot_nav dl dt {
    height: auto;
    float: left;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 27px;
    margin-bottom: 18px;
}

.footer .foot_nav dl dd {
    height: auto;
    float: left;
    margin-bottom: 10px;
}

.footer .foot_nav dl dd a {
    width: 100%;
    height: auto;
    float: left;
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 24px;
}

.footer .foot_nav dl dd a:hover {
    color: #ffffff;
}

.footer .foot_right {
    width: 302px;
    padding-left: 30px;
    height: auto;
    float: left;
    border-left: 1px solid #757575;
}

.footer .foot_right dl {
    width: 100%;
    height: auto;
    float: left;
}

.footer .foot_right dl dt {
    width: 100%;
    height: auto;
    float: left;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 27px;
    margin-bottom: 18px;
}

.footer .foot_right dl dd {
    width: 100%;
    height: auto;
    float: left;
    font-weight: 300;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 16px;
    margin-bottom: 30px;
}

.footer .foot_right dl dd form {
    position: relative;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    text-align: left;
    overflow: hidden;
    max-width: 223px;

}

.footer .foot_right dl dd form .keyword {
    float: left;
    width: 100%;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    height: 30px;
    line-height: 30px;
    padding-left: 12px;
    border: 0 none;
}

.footer .foot_right dl dd form:hover .keyword {}

.footer .foot_right dl dd form .keyword:focus {
    outline: 0;
    background: #FFFFFF;
    border: 0 none;
}

.footer .foot_right dl dd form .tjbtn {
    width: 50px;
    height: 30px;
    border-radius: 15px;
    position: absolute;
    top: 0;
    right: 0px;
    background: #EA4D1C url(../images/CRO_enter_icon_2.png) no-repeat center center;
    border: 0 none;
    color: #000;
    cursor: pointer;
    font-size: 0;
}

.footer .copyright {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #757575;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 54px;
    margin-top: 40px;
}

.fl {
    float: left;
}

.fr {
    float: right;
}




.chatway--container .chatway--frame-container {
    height: min(704px, calc(100% - 250px)) !important;
    width: 100% !important;
}





/* 2026.7.31新增 */
@media screen and (min-width: 960px) and (max-width: 1279px) {
.banner .swiper-slide .slide-text{width: 100%; bottom: 50%; }
.sobox .sobox_item{margin-top:0px}
}
@media only screen and (max-width: 959px) {
.banner .swiper-slide .slide-text {width: 100%;}
.banner .swiper-slide .slide-text .h3{font-size: 18px;}   
.banner .swiper-slide .slide-text .h4{font-size: 12px;} 
.sobox{left:0}
.sobox .sobox_item{margin-top:0px}
.sobox .sobox_item a{line-height: 10px;}
}