﻿@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+SC:100,300,400,500,700,900&display=swap");

/* CSS Document */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0px;
    border: 0;
    outline: none;
}

header,
nav,
footer,
menu {
    display: block;
}

dt {
    font-weight: 300;
}

img {
    border: none;
    max-width: 100%;
}

li {
    list-style-type: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: #333;
}

.block {
    display: block;
}

body {
    font-family: "Noto Sans SC", "Source Han Sans CN", "PingFangSC", "noto sans", "microsoft yahei", Helvetica, Arial, sans-serif;
    font-size: 1.12rem;
    color: #333333;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-weight: 600;
}

.clear {
    clear: both;
}

.display-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: distribute;
    justify-content: space-between;
    flex-flow: row wrap;
}

.display-flex-center {
    -webkit-justify-content: center;
    -ms-flex-pack: distribute;
    justify-content: center;
}

.display-flex-top {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.display-flex-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: distribute;
    justify-content: flex-start;
}

.flex-flow-row {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.swiper-container .swiper-pagination {
    font-size: 0;
    bottom: 3.12rem;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 0.5rem;
    border-radius: 100%;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.25);
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

.web_container {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
}

/*******头部********/
header {
    position: relative;
    width: 100%;
    z-index: 999;
    height: 72px;
}

header .header-main {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    transition: all 550ms cubic-bezier(0, 0.55, 0.45, 1);
}

header .headerContainer {
    position: relative;
    padding-left: 5.2083vw;
    padding-right: 4.1667vw;
}

header .logo {
    width: 10.0rem;
    position: absolute;
    left: 5.2083vw;
    bottom: 1.5rem;
    transition: all 550ms linear;
}

header .logo a {
    width: 100%;
    display: block;
}

header .header-nav {}

header .header-nav>ul>li {
    margin-right: 3.6vw;
    position: relative;
}

header .header-nav>ul>li:last-child {
    margin-right: 0;
}

header .header-nav>ul>li .link {
    display: block;
    position: relative;
    padding: 1.44rem 1.5rem 1.44rem 0;
    color: #111111;
    font-size: 1.12rem;
}

header .header-nav>ul>li .link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1.5rem;
    background-image: url(../images/bottomIcon.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25rem auto;
    transition: all 400ms;
}

header .header-nav>ul>li .link::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    left: calc(50% - 0.75rem);
    width: 9px;
    height: 9px;
    -webkit-box-shadow: 1px -1px 2px 0 rgb(0 0 0 / 12%);
    box-shadow: 1px -1px 2px 0 rgb(0 0 0 / 12%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #ffffff;
    margin-left: -4.5px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .10s linear;
    -moz-transition: all .10s linear;
    -ms-transition: all .10s linear;
    -o-transition: all .10s linear;
    transition: all .10s linear;
}

header .header-nav>ul>li.active .link,
header .header-nav>ul>li:hover .link {
    color: #2baee4;
}

header .header-nav>ul>li:hover .link::after {
    opacity: 1;
    visibility: visible;
}

header .header-nav>ul>li:hover .link::before {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

header .header-nav>ul>li.link_item_no .link {
    padding-right: 0;
}

header .header-nav>ul>li.link_item_no .link::before {
    display: none;
}

header .header-nav>ul>li.link_item_no .link::after {
    display: none;
}

.header_column {
    position: relative;
    top: 0;
    right: 0;
    background-color: #ffffff;
}

.header_column .header_search {
    position: relative;
    background-color: #2baee4;
    padding: 0 20px;
}

.header_column .header_search .header_search_form {
    position: relative;
    width: 204px;
}

.header_column .header_search .header_search_form .form-control {
    font-size: 12px;
    line-height: 30px;
    height: 30px;
    box-shadow: none;
    border: 0;
    color: #ffffff;
    padding: 0 2.5rem 0 1.25rem;
    border-radius: 100px;
    background-color: #22a0d4;
}

.header_column .header_search .header_search_form .form-control::placeholder {
    color: #ffffff;
    font-size: 12px;
}

.header_column .header_search .header_search_form .btn {
    position: absolute;
    top: 0;
    right: 1.25rem;
    bottom: 0;
    width: 16px;
    box-shadow: none;
    color: #ffffff;
    z-index: 9;
    transition: all .5s;
    background-image: url(../images/search03.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.header_column .header_language {
    position: relative;
    background-color: #30c7cc;
}

.header_column .header_language .language_link {
    display: block;
    position: relative;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    height: 48px;
    line-height: 48px;
    width: 120px;
    text-align: center;
}

.header_column .header_language .language_link a {
    color: #fff;
    text-align: center;
    /* padding-right: 1.38rem; */
    padding-left: 0.38rem;
    position: relative;
}

.header_column .header_language .language_link a::after {
    /* content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1.38rem;
    background-image: url(../images/bottomIcon_fff.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25rem auto;
    transition: all 400ms; */
}

.header_column .header_language:hover .language_link a::after {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.header_column .header_language:hover .language_down {
    opacity: 1;
    visibility: visible;
}

.language_down {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 400ms;
    font-size: 12px;
}

.language_down .items {
    text-align: center;
    border-top: 1px solid #ffffff;
}

.language_down .items a {
    display: block;
    padding: 0.5rem;
    color: #ffffff;
    background-color: #30c7cc;
    text-transform: capitalize;
}

.language_down .items a:hover {
    background-color: #62d1d5;
}

body.headerScollfox header .header-main {
    border-bottom: 1px solid #f7f7f7;
}

body.headerScollfox header .logo {
    bottom: 0.62rem;
    width: 7rem;
}

body.webHeader header {
    position: relative;
}

body.webHeader header .header-main {
    box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, 0.04);
}

/*下拉*/
header .header-nav ul li.link_item:hover .headerDropDown {
    opacity: 1;
    visibility: visible;
}

.headerDropDown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    width: 18.75rem;
    visibility: hidden;
    pointer-events: auto;
    z-index: 8;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
    -webkit-transition: all .50s linear;
    -moz-transition: all .50s linear;
    -ms-transition: all .50s linear;
    -o-transition: all .50s linear;
    transition: all .50s linear;
}

.headerDropDownBox {
    background: #ffffff;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.headerDropDownBox .items {
    margin-bottom: 1.0rem;
}

.headerDropDownBox .items a {
    display: block;
    color: #111111;
    position: relative;
    transition: 320ms;
    z-index: 1;
    padding: 0 1.25rem;
}

.headerDropDownBox .items:hover a {
    color: #2baee4;
}

/**/
.menu_botton {
    position: absolute;
    right: 75px;
    top: 73px;
    display: block;
    cursor: pointer;
    z-index: 9999;
}

.menu_botton strong {
    display: inline-block;
    float: left;
    color: #2f318b;
    font-size: 16px;
    line-height: 18px;
    font-weight: normal;
    margin-right: 12px;
}

#menu_toggle1 {
    display: none;
}

.menu_botton span {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 2px;
    background-color: #2baee4;
    vertical-align: middle;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
    margin-top: -2px;
}

.menu_botton span:after,
.menu_botton span:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 22px;
    height: 2px;
    left: 0;
    background-color: #2baee4;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
}

.menu_botton span:before {
    top: -6px;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top, transform;
    -ms-transition-property: top, transform;
    -o-transition-property: top, transform;
    transition-property: top, transform;
}

.menu_botton span:after {
    bottom: -6px;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom, transform;
    -ms-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
}

.mm-opened .menu_botton span {
    background-color: transparent;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -ms-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
}

.mm-opened .menu_botton span:after,
.mm-opened .menu_botton span:before {
    -webkit-transition-delay: 0s, .3s;
    -moz-transition-delay: 0s, .3s;
    -ms-transition-delay: 0s, .3s;
    -o-transition-delay: 0s, .3s;
    transition-delay: 0s, .3s;
}

.mm-opened .menu_botton span:before {
    top: 0;
    background: #2baee4;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mm-opened .menu_botton span:after {
    bottom: 0;
    background: #2baee4;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*********尾部************/
body.webBg footer {
    box-shadow: 0 0 3.12rem rgba(0, 0, 0, 0.08);
}

footer {
    background-color: #ffffff;
    position: relative;
}

footer .footer_main {
    position: relative;
    padding: 5.0rem 0 3.12rem;
}

footer .footer_nav {
    width: 100%;
}

footer .footer_nav li {
    position: relative;
}

footer .footer_nav li .title {
    padding-bottom: 0.75rem;
    font-size: 1.12rem;
    color: #111111;
    line-height: 1;
    font-weight: 500;
}

footer .footer_nav li .title a {
    color: #111111;
}

footer .footer_nav li .con {
    font-size: 0.88rem;
    font-weight: 300;
}

footer .footer_nav li .con .items {
    padding-bottom: 4px;
}

footer .footer_nav li .con .items a {
    color: #111111;
}

footer .footer_nav li .con .items a:hover {
    color: #2baee4;
}

footer .footer_nav li .con .img {
    width: 8.25rem;
}

footer .footer_copyright {
    padding: 1.88rem 0;
    font-size: 1.0rem;
    color: #111111;
    border-top: 1px solid #e5e5e5;
}

footer .footer_copyright a {
    color: #111111;
}

footer .footer_copyright .fLink a {
    display: block;
    position: relative;
}

footer .footer_copyright .fLink a+a {
    padding-left: 0.62rem;
    margin-left: 0.62rem;
    position: relative;
}

footer .footer_copyright .fLink a+a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    background-color: #111;
    height: 1.25rem;
    margin-top: -0.62rem;
}

/*****主体开始*******/

/*首页*/
#banner {
    width: 100%;
    height: 100vh;
    height: calc(100vh - 40px);
    position: relative;
}

.home_banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.home_banner li.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hBannerBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    z-index: 2;
    pointer-events: none;
}

.bannerHeading {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 3;
    transform: translateY(-50%);
    color: #ffffff;
}

.bannerHeading .title {
    font-size: 3.62rem;
    line-height: 1.5;
    font-weight: 500;
}

.banner_progressbar {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    height: 5px;
    width: 0;
    background-color: #43b0e8;
    transition: width 5000ms linear;
}

.home_banner li.swiper-slide-active .banner_progressbar {
    width: 100%;
}

.particles-js-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.particles-js {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/**/
.hLable {
    font-size: 1.25rem;
    color: #2baee4;
    padding-bottom: 0.62rem;
}

.hLable_fff {
    color: #ffffff;
}

.hTitle {
    font-size: 2.5rem;
    line-height: 1.5;
    position: relative;
    font-weight: 500;
}

.hTitle_fff {
    color: #ffffff;
}

.hTitleEn {
    font-size: 2.38rem;
    line-height: 1;
    color: #2baee4;
    font-weight: 600;
    font-family: Manrope;
}

.hMore {
    position: relative;
    z-index: 1;
    font-size: 0;
}

.hMore a {
    display: inline-block;
    font-size: 1.12rem;
    line-height: 1;
    color: #2baee4;
    font-weight: 500;
    border: 2px solid #2baee4;
    position: relative;
    padding: 1rem 3.75rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 400ms;
}

.hMore a:hover {
    color: #fff;
    background-color: #2baee4;
}

.hMore_fff a {
    color: #ffffff;
    border-color: #ffffff;
}

.hMore_fff a:hover {
    color: #2baee4;
    border-color: #ffffff;
    background-color: #ffffff;
}

.container-fluid {
    padding-left: 7.29167vw;
    padding-right: 7.29167vw;
}

.bg_f3f3f3 {
    background-color: #f3f3f3;
}

/**/
.hServices {
    background-color: #f2f7fb;
    padding-top: 8.75rem;
}

@media (min-width:768px) {
    .hServices .container-fluid {
        padding-left: 0;
    }
}

.hServicesBox {
    position: relative;
    background-color: #ffffff;
    padding-left: 69.1011%;
    overflow: hidden;
}

.hServicesBox .img {
    width: 69.1011%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.hServicesBox .img .imgBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 400ms ease;
}

.hServicesBox .img .imgBg.active {
    opacity: 1;
}

.hServicesBox .tab {
    position: relative;
    padding: 1.88rem 0 0;
}

.hServicesBox .tab li {
    padding: 0 3.75rem;
    position: relative;
}

.hServicesBox .tab li::after {
    content: '';
    position: absolute;
    top: 1.62rem;
    left: -0.75rem;
    border-right: 0.75rem solid #ffffff;
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    opacity: 0;
    transition: opacity 400ms ease;
}

.hServicesBox .tab li .title {
    font-size: 1.88rem;
    padding-top: 1.62rem;
    padding-bottom: 1.62rem;
    cursor: pointer;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.hServicesBox .tab li .text {
    font-size: 1.25rem;
    color: #444444;
    display: none;
    line-height: 1.7;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 3.5rem;
}

.hServicesBox .tab li .text .vertical {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.hServicesBox .tab li:last-child .title {
    border-bottom: none;
}

.hServicesBox .tab li:last-child .text {
    border-bottom: none;
}

.hServicesBox .tab li.active::after {
    opacity: 1;
}

.hServicesBox .tab li.active .title {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0.62rem;
}

.hServicesBox .tab li.active .text {
    display: block;
}

.hServicesBox .tab li.active .more a {
    opacity: 1;
    visibility: visible;
}

.hServicesBox .more {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.hServicesBox .more a {
    display: block;
    width: 4.38rem;
    height: 4.38rem;
    position: relative;
    background-color: #2baee4;
    background-image: url(../images/moreIcon_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.38rem auto;
    opacity: 0;
    visibility: hidden;
    transition: all 400ms;
}

.hServicesBox .more a::after {
    content: '';
    position: absolute;
    top: 0;
    transform: skewX(-10deg);
    background-color: #2baee4;
    width: 1.25rem;
    height: 100%;
    left: -0.62rem;
}

.hPartner {
    position: relative;
    background-color: #f2f7fb;
    padding: 8.75rem 0 6.88rem;
}

.hPartner .list li {
    margin-bottom: 1.88rem;
}

.hAbout {
    position: relative;
    padding: 8.75rem 0;
}

.hAbout .text {
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 70%;
}

.hAbout .text span {
    font-weight: 500;
    border-bottom: 2px solid #2baee4;
}

.hJoin {
    position: relative;
    background-image: url(../images/hJoinBg.png);
    padding: 11.88rem 0;
}

.hJoin::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/wBannerBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

.hJoin .container {
    position: relative;
    z-index: 2;
}

.hNews {
    background-color: #f2f7fb;
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
}

.hNews .hMore {
    text-align: center;
}

.hNewsList {
    margin-bottom: 3.12rem;
    background-color: #ffffff;
}

.hNewsList li.swiper-slide .box {
    display: block;
    position: relative;
}

.hNewsList li.swiper-slide .box .img {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.hNewsList li.swiper-slide .box .con {
    width: 50%;
    position: relative;
    padding: 6.88rem 7.5rem 8.75rem;
}

.hNewsList li.swiper-slide .box .con .time {
    font-size: 1.12rem;
    color: #999999;
    padding-bottom: 2.25rem;
}

.hNewsList li.swiper-slide .box .con .title {
    font-size: 1.88rem;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 2.25rem;
}

.hNewsList li.swiper-slide .box .con .text {
    font-size: 1.25rem;
    color: #444444;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hNewsList li.swiper-slide .box .con .more {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.hNewsList li.swiper-slide .box .con .more a {
    display: block;
    width: 4.38rem;
    height: 4.38rem;
    position: relative;
    background-color: #2baee4;
    background-image: url(../images/moreIcon_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.38rem auto;
}

.hNewsList li.swiper-slide .box .con .more a::after {
    content: '';
    position: absolute;
    top: 0;
    transform: skewX(-10deg);
    background-color: #2baee4;
    width: 1.25rem;
    height: 100%;
    left: -0.62rem;
}

.hNews .hNewsListPrev,
.hNews .hNewsListNext {
    background: rgba(0, 0, 0, 0.4);
    width: 30px;
    height: 60px;
    margin-top: -30px;
}

.hNews .hNewsListPrev::after,
.hNews .hNewsListNext::after {
    font-size: 20px;
    color: #ffffff;
}

.hNews .hNewsListPrev {
    left: 0;
}

.hNews .hNewsListNext {
    right: 0;
}

/*内页banner*/
.breadcrumb {
    background-color: rgba(0, 0, 0, 0.0);
    border-radius: 0;
    padding: 2.5rem 0;
    margin-bottom: 0;
}

.breadcrumb .breadcrumb-item {
    color: #000e17;
    font-size: 1.0rem;
    position: relative;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 1.5rem;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '';
    padding: 0;
    position: absolute;
    top: 50%;
    left: 0.75rem;
    margin-top: -0.50rem;
    width: 1px;
    height: 1.0rem;
    background-color: #999999;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}

.breadcrumb .breadcrumb-item a {
    color: #999999;
}

/**/
#wBanner {
    overflow: hidden;
    position: relative;
}

#wBanner .img {
    position: relative;
    height: 29vw;
    overflow: hidden;
}

#wBanner .img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/wBannerBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

#wBanner .img img {
    width: 100%;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#wBanner .box {
    position: absolute;
    bottom: 13.12rem;
    left: 0;
    width: 100%;
}

#wBanner .title {
    font-size: 3.62rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1;
    position: relative;
}

#wBanner .title span {
    padding-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #ffffff;
}

/*导航*/
#sideNav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}

#sideNav.isActive .sideNavBox {
    position: fixed;
}

#sideNav .sideNavBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    transition: top 450ms linear;
    z-index: 900;
}

#sideNav .sideNavBox.bg_fafafa {
    background-color: #fafafa;
}

#sideNav .sideNavBox ul {
    justify-content: center;
}

#sideNav .sideNavBox li {
    position: relative;
    width: 100%;
}

#sideNav .sideNavBox li a {
    display: block;
    position: relative;
    text-align: center;
    padding: 1.25rem 0;
    color: #111111;
    font-size: 1.25rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 400ms linear;
}

#sideNav .sideNavBox li a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2baee4;
    transition: all 400ms linear;
}

#sideNav .sideNavBox li a:hover,
#sideNav .sideNavBox li.active a {
    color: #2baee4;
}

#sideNav .sideNavBox li a:hover::after,
#sideNav .sideNavBox li.active a::after {
    width: 100%;
}

/*内页开始*/
.w_title {
    font-size: 2.38rem;
    line-height: 1.2;
    font-weight: 500;
    position: relative;
}

.w_title_fff {
    color: #ffffff;
}

.w_text {
    font-size: 1.25rem;
    line-height: 1.7;
}

.w_text_p p {
    padding-bottom: 0.75rem;
}

.w_text_fff {
    color: #fff;
}

.w_lable {
    font-size: 1.25rem;
    color: #5fc3ea;
}

.pb_16 {
    padding-bottom: 1.0rem !important;
}

.pb_26 {
    padding-bottom: 1.62rem !important;
}

.pb_36 {
    padding-bottom: 2.25rem !important;
}

.pb_46 {
    padding-bottom: 2.88rem !important;
}

.pb_56 {
    padding-bottom: 3.5rem !important;
}

.pb_66 {
    padding-bottom: 4.12rem !important;
}

.pb_100 {
    padding-bottom: 6.25rem !important;
}

.bg_fff {
    background-color: #ffffff;
}

.bg_cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img_scale_relative {
    position: relative;
    overflow: hidden;
}

.img_scale {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.6s linear;
    transition: transform 0.6s linear;
    transition: transform 0.6s linear;
}

/*分页*/
.pagination {
    display: flex;
}

.pagination .page-link {
    margin: 0 0.31rem;
    font-size: 1rem;
    color: #222222;
    font-weight: 500;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: #f1f6fd;
    width: 2.88rem;
    height: 2.88rem;
    line-height: 2.88rem;
    text-align: center;
    border-radius: 100px;
    border: none;
    display: block;
    font-weight: 600;
    font-family: 'Manrope';
}

.pagination .page-item.active .page-link {
    color: #ffffff;
    background: #2baee4;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    text-indent: -999px;
    border-radius: 100px;
}

.pagination .page-item:first-child .page-link:before,
.pagination .page-item:last-child .page-link:before {
    content: '';
    position: absolute;
    top: 50%;
    height: 0.6rem;
    width: 0.6rem;
    margin-top: -0.3rem;
    border-left: 2px solid #222222;
    border-top: 2px solid #222222;
    -webkit-transition: all .20s ease;
    -moz-transition: all .20s ease;
    -ms-transition: all .20s ease;
    -o-transition: all .20s ease;
    transition: all .20s ease;
}

.pagination .page-item:first-child .page-link:before {
    right: 50%;
    margin-right: -0.4rem;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.pagination .page-item:last-child .page-link:before {
    left: 50%;
    margin-left: -0.4rem;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

/*关于我们*/
.enterpriseIntroduction {
    padding: 10.0rem 0 12.5rem;
}

.enterpriseIntroduction .w_title {
    margin-right: 4.38rem;
    width: 20.62rem;
    position: relative;
}

.enterpriseIntroduction .w_title::after,
.enterpriseIntroduction .w_title::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 50%;
    background-color: #2baee4;
}

.enterpriseIntroduction .w_title::before {
    top: 50%;
    background-color: #e5e5e5;
}

.enterpriseIntroduction .w_text {
    flex: 1;
}

.enterpriseIntroductionBg {
    position: relative;
    background-image: url(../images/enterpriseIntroductionBg.png);
    padding-bottom: 3.75rem;
}

.enterpriseIntroductionBg .webSwiper {
    position: relative;
    top: -6.25rem;
}

.culture {
    padding: 10.0rem 0;
}

.culture .cultureLogo {
    width: 41%;
    margin-right: 5.7%;
}

.culture .cultureCon {
    flex: 1;
}

.cultureColumn {
    background-color: #f1f6fd;
    padding: 10.0rem 0;
}

.cultureColumn .list {}

.cultureColumn .list li .box {
    position: relative;
    padding-left: 24rem;
}

.cultureColumn .list li .box .img {
    background-color: #00aae7;
    width: 18.75rem;
    height: 18.75rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    font-size: 2.81rem;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -9.38rem;
}

.cultureColumn .list li .box .con {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #e6eaf1;
    margin-left: 6rem;
    position: relative;
}

.cultureColumn .list li:last-child .box .con {
    border-bottom: none;
}

.cultureColumn .list li .box .con::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -6rem;
    width: 2px;
    height: 7.75rem;
    margin-top: -3.88rem;
    background-color: #00aae7;
}

.cultureColumn .list li .box .con .title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 0.62rem;
    color: #00aae7;
    padding-left: 3.75rem;
    position: relative;
    background-position: left center;
    background-image: url(../images/cultureColumnIcon01.png);
    background-size: 2.5rem auto;
    background-repeat: no-repeat;
}

.cultureColumn .list li .box .con .text {
    font-size: 1.62rem;
    line-height: 1.4;
    padding-bottom: 0.38rem;
}

.cultureColumn .list li .box .con .textEn {
    font-size: 1.25rem;
}

.cultureColumn .list li.vision .box .img {
    background-color: rgba(48, 199, 204, 0.9);
}

.cultureColumn .list li.values .box .img {
    background-color: rgba(242, 133, 83, 0.9);
}

.cultureColumn .list li.vision .box .con::after {
    background-color: rgba(48, 199, 204, 0.9);
}

.cultureColumn .list li.values .box .con::after {
    background-color: rgba(242, 133, 83, 0.9);
}

.cultureColumn .list li.vision .box .con .title {
    background-image: url(../images/cultureColumnIcon02.png);
    color: rgba(48, 199, 204, 0.9);
    background-size: 3.0rem auto;
}

.cultureColumn .list li.values .box .con .title {
    background-image: url(../images/cultureColumnIcon03.png);
    color: rgba(242, 133, 83, 0.9);
    background-size: 2.75rem auto;
}

.team {
    position: relative;
    padding: 10.0rem 0 5.62rem;
}

.teamList li {
    padding-bottom: 5.0rem;
}

.teamList li .box {
    display: block;
    cursor: pointer;
}

.teamList li .box .img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.teamList li .box .img img {
    display: block;
    width: 100%;
    transform: scale(1);
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    transition: all .45s ease;
}

.teamList li .box .img .icon {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background-color: #30c7cc;
}

.teamList li .box .img .icon::after,
.teamList li .box .img .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    transition: all 400ms;
}

.teamList li .box .img .icon::after {
    width: 16px;
    height: 2px;
}

.teamList li .box .img .icon::before {
    width: 2px;
    height: 16px;
}

.teamList li .box .con {
    padding-top: 1rem;
}

.teamList li .box .con .title {
    font-size: 1.62rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.teamList li .box .con .label {
    color: #909090;
    font-size: 1.25rem;
}

.teamList li .box:hover .img img {
    transform: scale(1.08);
}

.teamList li .box:hover .img .icon {
    background-color: #00aae7;
}

.teamList li .box:hover .title {
    color: #00aae7;
}

.webModal {}

.webModal .modalClose {
    position: absolute;
    top: 1.88rem;
    right: 1.88rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    background-color: #2baee4;
    cursor: pointer;
    z-index: 10;
}

.webModal .modalClose img {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
}

.webModal .modal-content {
    border: none;
    box-shadow: 0 0 3.12rem rgba(0, 0, 0, 0.3);
}

.modalMain {
    position: relative;
    padding: 8.75rem 6.1% 10.62rem;
}

.modalMain .modalMainImg {
    width: 26%;
}

.modalMain .modal-content {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    transform: translateY(50%);
}

.modalMain .modalMainCon {
    width: 69%;
}

.modalMain .modalMainCon .title {
    font-size: 1.62rem;
    color: #121212;
    padding-bottom: 0.38rem;
    font-weight: 500;
}

.modalMain .modalMainCon .label {
    font-size: 1.25rem;
    color: #909090;
    padding-bottom: 1.5rem;
}

.modalMain .modalMainCon .text {
    height: 8.0rem;
    line-height: 1.7;
    padding-right: 1.25rem;
    overflow: hidden;
    font-size: 1.25rem;
    overflow-y: auto;
}

.modalMain .modalMainCon .text::-webkit-scrollbar {
    width: 2px;
}

.modalMain .modalMainCon .text::-webkit-scrollbar-thumb {
    background: #2baee4;
}

.modalMain .modalMainCon .text::-webkit-scrollbar-track {
    background: #e5e5e5;
}

.modal-backdrop {
    background: rgba(18, 18, 18, 0.5);
}

.webModal .modalButton {
    position: absolute;
    bottom: 3.75rem;
    right: 6.1%;
    display: flex;
}

.webModal .modalPrev,
.webModal .modalNext {
    position: relative;
    bottom: 0;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #30c7cc;
    border-radius: 100px;
    cursor: pointer;
    margin-left: 1.25rem;
    background-image: url(../images/moreIcon_w.svg);
    background-repeat: no-repeat;
    background-size: 1.38rem auto;
    background-position: center;
}

.webModal .modalPrev {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.webModal .modalPrev:hover,
.webModal .modalNext:hover {
    background-color: #2baee4;
}

/**/
.hardware {
    padding-top: 3.75rem;
}

.hardwareHead {
    padding: 6.25rem 0;
}

.hardwareHead .w_title {
    margin-right: 4.38rem;
    width: 20.62rem;
    position: relative;
    padding: 0.88rem 0;
}

.hardwareHead .w_title::after,
.hardwareHead .w_title::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 50%;
    background-color: #2baee4;
}

.hardwareHead .w_title::before {
    top: 50%;
    background-color: #e5e5e5;
}

.hardwareHead .w_text {
    flex: 1;
}

.hardwareList {
    padding-bottom: 6.25rem;
    border-bottom: 1px solid #e0e2ea;
}

.hardwareList .hardwareListLeft {
    background: linear-gradient(to right, #20dbe1, #00aef5);
    position: relative;
    width: 20.62rem;
    height: 22.5rem;
    font-size: 2.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 2.62rem;
    color: #ffffff;
    z-index: 1;
}

.hardwareList .hardwareListLeft::after {
    content: '';
    position: absolute;
}

@media (min-width:768px) {
    .hardwareList .hardwareListLeft::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -0.88rem;
        border-top: 0.88rem solid transparent;
        border-bottom: 0.88rem solid transparent;
        border-left: 0.88rem solid #00aef5;
        margin-top: -0.88rem;
    }
}

.hardwareList .hardwareListLeft .title {
    position: relative;
    padding-bottom: 1.75rem;
    margin-bottom: 1.12rem;
}

.hardwareList .hardwareListLeft .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3.25rem;
    height: 2px;
    background-color: #ffffff;
}

.hardwareList .hardwareListRight {
    flex: 1;
}

.hardwareList .hardwareListRight ul {
    height: 100%;
}

.hardwareList .hardwareListRight li .box {
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    margin-left: -1px;
    padding: 2.62rem;
}

.hardwareList .hardwareListRight li .box .img {
    padding-bottom: 1.0rem;
}

.hardwareList .hardwareListRight li .box .title {
    font-size: 1.25rem;
    line-height: 1.7;
}

.servicesAvailable {
    padding: 6.25rem 0;
}

.servicesAvailableList li .img {
    padding-bottom: 1.25rem;
}

.servicesAvailableList li .title {
    font-size: 1.62rem;
    color: #2baee4;
}

.productionBase {
    background-color: #f1f6fd;
    padding: 1.25rem 0 3.75rem;
}

.productionBaseList .items {
    padding: 6.25rem 0;
    position: relative;
    border-bottom: 1px solid #e0e2ea;
}

.productionBaseList .items:last-child {
    border-bottom: none;
}

.productionBaseList .items .box {
    position: relative;
}

.productionBaseList .items .box .img {
    width: 81.21429%;
    border-radius: 50px 0 50px 0;
    margin-left: auto;
    overflow: hidden;
}

.productionBaseList .items .box .con {
    position: absolute;
    top: 4.38rem;
    bottom: 4.38rem;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
    border-radius: 20px 0 20px 0;
    width: 40.0rem;
    display: flex;
    align-items: center;
    padding: 2.5rem;
}

.productionBaseList .items .box .con .title {
    font-size: 2.25rem;
    font-weight: 500;
    padding-bottom: 1.25rem;
}

.productionBaseList .items .box .con .title span {
    color: #15cbe8;
}

.productionBaseList .items .box .con .text {
    font-size: 1.25rem;
    line-height: 1.7;
}

.productionBaseList .items .box .con .text ul li {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.productionBaseList .items .box .con .text ul li::marker {
    color: #15cbe8;
}

@media (min-width:768px) {
    .productionBaseList .items:nth-child(2n) .box .img {
        margin-left: inherit;
        border-radius: 0 50px 0 50px;
    }

    .productionBaseList .items:nth-child(2n) .box .con {
        left: inherit;
        right: 0;
        border-radius: 0 20px 0 20px;
    }
}

/**/
.threeCanvas {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
    pointer-events: none;
}

.history {
    position: relative;
    padding: 9.38rem 0;
    min-height: 100vh;
    background-image: url(../images/historyBg.png);
}

.historyHead {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.historyHeadSwiper {
    width: 32.5rem;
    height: 32.5rem;
    border-radius: 100%;
    background-image: url(../images/historyBoxBg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    overflow: initial;
}

.historyHeadSwiper li.swiper-slide .box {
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 14.12rem 20%;
    transition: padding 1000ms;
}

.historyHeadSwiper li.swiper-slide .box .time {
    font-size: 1.88rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 1.0rem;
    transition: color 1000ms;
}

.historyHeadSwiper li.swiper-slide .box .title {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #ffffff;
    transition: color 1000ms;
}

.historyHeadSwiper li.swiper-slide-active .box {
    padding: 10.0rem 20%;
}

.historyHeadSwiper li.swiper-slide-active .box .time {
    font-size: 3.12rem;
    color: #2baee4;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 1.0rem;
}

.historyHeadSwiper li.swiper-slide-active .box .title {
    font-size: 1.75rem;
    line-height: 1.5;
    color: #121212;
}

.historyHeadSwiper li.swiper-slide-prev .box {
    text-align: right;
}

.historyHeadSwiper li.swiper-slide-next .box {
    text-align: left;
}

.historyHeadSwiper .swiperButton {
    position: absolute;
    bottom: 4.75rem;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 2;
    justify-content: center;
}

.historyHeadSwiper .swiperButton .historyHeadSwiper_prev,
.historyHeadSwiper .swiperButton .historyHeadSwiper_next {
    position: relative;
    margin: 0 0.62rem;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 100%;
    background-color: #30c7cc;
    cursor: pointer;
    background-image: url(../images/moreIcon_w.svg);
    background-repeat: no-repeat;
    background-size: 1.38rem auto;
    background-position: center;
}

.historyHeadSwiper .swiperButton .historyHeadSwiper_prev {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.historyHeadSwiper .swiperButton .historyHeadSwiper_prev:hover,
.historyHeadSwiper .swiperButton .historyHeadSwiper_next:hover {
    background-color: #2baee4;
}

.historyCircle {
    position: absolute;
    top: 0;
    left: 0;
    width: 32.5rem;
    height: 32.5rem;
    transition: opacity 100ms;
    transform: rotate(-90deg);
}

.historyCircle .jdt {
    position: absolute;
    top: 0;
    left: 0;
    width: 32.5rem;
    height: 32.5rem;
    transition: opacity 100ms;
}

.historyCircle .jdt .jdt3 {
    transition: all 500ms linear;
    cx: 16.25rem;
    cy: 16.25rem;
    r: 16.12rem;
}

.historyCircle .jdt #jdt32 {
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
}

.historyCircle.isActive .jdt #jdt32 {
    animation: jdt4 5s linear;
    animation-fill-mode: forwards;
}

@keyframes jdt4 {
    0% {
        stroke-dasharray: 0 1800;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dasharray: 1800 0;
        stroke-dashoffset: 0;
    }
}

.historyTab {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 7.5rem;
}

.historyTabSwiper {
    position: relative;
}

.historyTabSwiper li.swiper-slide {
    text-align: center;
    cursor: pointer;
}

.historyTabSwiper li.swiper-slide .icon {
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.historyTabSwiper li.swiper-slide .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e2ea;
    transition: all 400ms;
}

.historyTabSwiper li.swiper-slide .icon span {
    position: relative;
    z-index: 1;
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background-color: #ffffff;
}

.historyTabSwiper li.swiper-slide .icon span::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid #ffffff;
    border-radius: 100%;
    opacity: 0;
    transition: all 400ms;
}

.historyTabSwiper li.swiper-slide .time {
    line-height: 1.2;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    padding-top: 1.0rem;
}

.historyTabSwiper li.swiper-slide.active .icon::after {
    height: 2px;
    background-color: #ffffff;
}

.historyTabSwiper li.swiper-slide.active .icon span {
    background-color: #2baee4;
}

.historyTabSwiper li.swiper-slide.active .icon span::after {
    opacity: 1;
}

/**/
.guarantee_title_28 {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 1.5rem;
}

.guarantee_title_24 {
    font-size: 1.5rem;
    padding-bottom: 0.38rem;
}

.guarantee_hr {
    border-bottom: 1px solid #e0e2ea;
    margin: 6.25rem 0;
}

.guarantee_img {
    margin-bottom: 1.62rem;
}

.guarantee {
    padding: 10.0rem 0;
    position: relative;
}

.guaranteeHead {
    flex-direction: row-reverse;
}

.guaranteeHead .img {
    width: 47.857%;
}

.guaranteeHead .w_text {
    width: 42%;
}

/**/
.contact_br {
    margin-top: 4.38rem;
    margin-bottom: 6.25rem;
    border-bottom: 2px solid #2baee4;
}

.contact_title {
    font-size: 1.88rem;
    line-height: 1;
    margin-bottom: 1.88rem;
    font-weight: 500;
    padding-left: 2.5rem;
    background-image: url(../images/telIcon.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1.5rem auto;
}

.contact {
    padding: 10.0rem 0;
    position: relative;
}

.contactMap li {
    padding-bottom: 1.88rem;
}

.contactMap li .img {}

.contactMap li .title {
    font-size: 1.88rem;
    padding-left: 2.5rem;
    margin: 3.75rem 0 1.88rem;
    line-height: 1;
    font-weight: 500;
    background-image: url(../images/addIcon.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1.5rem auto;
}

.contactMap li .text {
    background-color: #f1f6fd;
    padding: 2.5rem;
    line-height: 1.6;
    font-size: 1.25rem;
}

.businessContacts .list li {
    padding-bottom: 1.88rem;
}

.businessContacts .list li .box {
    padding: 2.5rem;
    position: relative;
    background-color: #f1f6fd;
}

.businessContacts .list li .box .title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 1.25rem;
    margin-bottom: 1rem;
}

.businessContacts .list li .box .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4.38rem;
    height: 2px;
    background-color: #2baee4;
}

.businessContacts .list li .box .text {
    font-size: 1.25rem;
}

.HRContact .box {
    position: relative;
    display: block;
    background-color: #f1f6fd;
    padding: 2.19rem 2.5rem;
}

.HRContact .box .mailto {
    font-size: 1.25rem;
}

.HRContact .box .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 21.88rem;
    height: 100%;
    color: #ffffff;
    font-size: 1.5rem;
    background-color: #2dafe4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.HRContact .box .icon::after {
    content: '';
    position: absolute;
    top: 0;
    transform: skewX(-10deg);
    background-color: #2baee4;
    width: 1.25rem;
    height: 100%;
    left: -0.62rem;
}

/*新闻*/
.sideNavTertiary {
    position: relative;
    padding-bottom: 4.12rem;
}

.sideNavTertiary ul {
    border-radius: 100px;
    background-color: #f1f6fd;
}

.sideNavTertiary ul li+li {
    margin-left: 2px;
}

.sideNavTertiary ul li a {
    display: block;
    border-radius: 100px;
    color: #111;
    font-size: 1.0rem;
    padding: 0.75rem 1.25rem;
    text-align: center;
    min-width: 9.38rem;
}

.sideNavTertiary ul li.active a,
.sideNavTertiary ul li a:hover {
    background-color: #2baee4;
    color: #ffffff;
}

.news {
    position: relative;
    padding: 10.0rem 0;
}

.newsList {
    padding-bottom: 1.25rem;
}

.newsList ul {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

.newsList li {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-bottom: 4.38rem;
    position: relative;
}

.newsList li .box {}

.newsList li .box .img {
    height: 14.58vw;
    overflow: hidden;
}

.newsList li .box .img img {
    width: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.newsList li .box .time {
    color: #2baee4;
    font-size: 1.0rem;
    padding: 1.88rem 0 0.75rem;
}

.newsList li .box .time span {
    font-size: 0.88rem;
}

.newsList li .box .title {
    font-size: 1.38rem;
    line-height: 1.6;
}

.newsList li .box:hover .title {
    color: #2baee4;
}

/*详情*/
.newsD {
    position: relative;
    padding: 7.5rem 0 10.0rem;
}

.newsD .newsDBox {
    padding-left: 26.88rem;
    position: relative;
}

.newsDLeft {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 19.38rem;
}

.newsDLeftBox {
    position: absolute;
    position: sticky;
    top: 120px;
    left: 0;
}

.newsDLeft .timeLeft {
    font-size: 1.12rem;
    color: #2baee4;
    margin-bottom: 0.62rem;
}

.newsDLeft .titleLeft {
    line-height: 1.6;
    font-size: 1.38rem;
    margin-bottom: 1.38rem;
}

.newsDLeft .share {
    margin-bottom: 3.75rem;
}

.newsDLeft .share .bshare-custom a {
    width: 2.0rem;
    height: 2.0rem;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #dedede;
    background-size: 1.25rem auto;
    padding: 0;
    margin: 0;
    margin-right: 0.75rem;
}

.newsDLeft .share .bshare-custom .bshare-sinaminiblog {
    background-image: url(../images/weiboIcon.svg);
    display: none;
}

.newsDLeft .share .bshare-custom .bshare-weixin {
    background-image: url(../images/wechatIcon.svg);
}

.newsDLeft .share .bshare-custom .bshare-weixin:hover {
    background-color: #0ab91f;
}

.newsDLeft .share .bshare-custom .bshare-qqim {
    background-image: url(../images/qqIcon.svg);
    background-size: 1.0rem auto;
    display: none;
}

.newsDLeft .share .bshare-custom {
    position: relative;
    z-index: 10;
}

.newsDLeft .share .bshare-custom:hover #qrcode {
    opacity: 1;
}

.newsDLeft .share .bshare-custom #qrcode {
    position: absolute;
    top: 110%;
    left: 0;
    width: 120px;
    height: 120px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    opacity: 0;
    transition: all 400ms;
}

.newsDLeft .hMore a {
    border-radius: 100px;
}

.bsBox {
    box-sizing: content-box;
}

.newsD .title {
    font-size: 1.88rem;
    font-weight: 500;
    line-height: 1.6;
    padding-bottom: 0.62rem;
}

.newsD .time {
    font-size: 1.12rem;
    color: #2baee4;
    margin-bottom: 2.0rem;
}

.newsD .text {
    line-height: 1.8;
    font-size: 1.12rem;
    color: #333333;
    padding-bottom: 3.12rem;
}

.newsD .text video {
    width: 100%;
    display: block;
}

.newsDPage {
    border-top: 1px solid #e5e5e5;
    padding-top: 1.88rem;
}

.newsDPage .page_next {
    position: relative;
}

.newsDPage .page_next .link {
    display: block;
    color: #ffffff;
    padding: 5.0rem 3.12rem;
    overflow: hidden;
    position: relative;
}

.newsDPage .page_next .link:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/page_nextBg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transition: all 400ms linear;
    transform: scale(1.0);
}

.newsDPage .page_next .link .page_lable {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.newsDPage .page_next .link .page_title {
    position: relative;
    z-index: 2;
    font-size: 1.38rem;
    line-height: 1.2;
    padding-right: 1.88rem;
    background-image: url(../images/newsIcon_.png);
    background-repeat: no-repeat;
    background-position: right center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.newsDPage .page_next .link:hover:after {
    transform: scale(1.12);
}

/*加入我们*/
.kaituoValues {
    padding: 10.0rem 0;
    position: relative;
    background-color: #f1f6fd;
}

.kaituoValues .list {
    padding-bottom: 4.38rem;
    margin-bottom: 4.38rem;
    border-bottom: 1px solid #c9e8f8;
}

.kaituoValues .list li.items {
    border-radius: 100%;
    border: 0.62rem solid #2baee4;
    width: 14.38rem;
    height: 14.38rem;
    background-color: #ffffff;
    padding: 0.62rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.kaituoValues .list li.items .box .titleEn {
    font-size: 1.75rem;
    color: #2baee4;
    font-weight: 600;
    font-family: Manrope;
    line-height: 1;
}

.kaituoValues .list li.items .box .titleEn span {
    font-size: 2.5rem;
}

.kaituoValues .list li.items .box .title {
    font-size: 1.25rem;
    padding-top: 0.75rem;
}

.kaituoValues .list li:last-child {
    display: none;
}

.kaituoValues .systemList {
    overflow: hidden;
}

.kaituoValues .systemList ul {
    margin-left: -6.25vw;
    margin-right: -6.25vw;
}

.kaituoValues .systemList li {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
}

.kaituoValues .systemList li .title {
    padding-left: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    position: relative;
}

.kaituoValues .systemList li .title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.88rem;
    height: 0.88rem;
    border-radius: 100%;
    border: 2px solid #30b0e5;
    background-color: #ffffff;
    margin-top: -0.44rem;
}

.kaituoValues .systemList li .text {
    padding-top: 0.25rem;
    padding-left: 1.5rem;
    font-size: 1.12rem;
}

.recruit {
    position: relative;
    padding: 10.0rem 0;
}

.recruitHead {
    position: relative;
    margin-bottom: 5.0rem;
}

.recruitHead .w_text {}

.recruitHead .w_text .link {
    font-size: 1.5rem;
    color: #2baee4;
    border-bottom: 2px solid #2baee4;
    padding-top: 0.62rem;
    display: inline-block;
}

.recruitHead .select .formBox {
    display: flex;
    align-items: flex-end;
}

.recruitHead .select .form-control {
    background: #ffffff;
    border: none;
    width: 13.12rem;
    color: #555555;
    border-bottom: 1px solid #dddddd;
    height: auto;
    font-size: 1.25rem;
    padding: 0.375rem 0.75rem 0.375rem 0;
    background-image: url(../images/selectIcon.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 0.69rem auto;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.recruitHead .select .btn {
    margin-left: 1.88rem;
    display: block;
    width: 8.44rem;
    background-color: #2baee4;
    color: #ffffff;
    font-size: 1.25rem;
    text-align: center;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}

.recruitHead .select .btn span {
    display: inline-block;
    padding-left: 1.75rem;
    background-image: url(../images/resetIcon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 1rem auto;
}

.joinUsAccordion {
    padding-bottom: 2.19rem;
}

.joinUsAccordion .joinUsAccordion_items {
    margin-bottom: 0.94rem;
    position: relative;
    background-color: #f1f6fd;
    border-left: 3px solid #30c7cc;
    padding: 0 3.12rem;
}

.joinUsAccordionHead {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    padding: 1.31rem 4.38rem 1.31rem 0;
    cursor: pointer;
    position: relative;
}

.joinUsAccordionHead .title {
    width: 32%;
    font-size: 1.62rem;
    font-weight: 500;
}

.joinUsAccordionHead .add {
    width: 39%;
}

.joinUsAccordionHead .icon {
    position: absolute;
    top: 50%;
    right: 0;
    width: 38px;
    height: 38px;
    margin-top: -19px;
    border-radius: 100%;
    border: 2px solid #d8dde3;
}

.joinUsAccordionHead .icon:after,
.joinUsAccordionHead .icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #30c7cc;
    transform: translate(-50%, -50%);
    transition: all 400ms;
}

.joinUsAccordionHead .icon:after {
    width: 15px;
    height: 2px;
}

.joinUsAccordionHead .icon:before {
    width: 2px;
    height: 15px;
}

.joinUsAccordion_items._open {
    border-left-color: #2baee4;
}

.joinUsAccordion_items._open .joinUsAccordionHead .title {
    color: #2baee4;
}

.joinUsAccordion_items._open .joinUsAccordionHead .icon:after {
    background-color: #2baee4;
}

.joinUsAccordion_items._open .joinUsAccordionHead .icon:before {
    opacity: 0;
}

.joinUsAccordion_items._open .joinUsAccordionCon {
    display: block;
}

.joinUsAccordionCon {
    position: relative;
    line-height: 1.8;
    font-size: 1.12rem;
    display: none;
    padding-bottom: 3.12rem;
}

.joinUsAccordionCon .joinUsAccordionConBg {
    background-color: #ffffff;
    padding: 3.12rem 2.5rem;
}

.joinUsAccordionCon h4 {
    font-size: 1.25rem;
    margin-bottom: 1.0rem;
}

.joinUsAccordionCon .hMore {
    margin-top: 3.12rem;
}

.joinUsAccordionCon .hMore a {
    border-radius: 100px;
}

/**/
.cdmo_br_2baee4 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
    border-bottom: 2px solid #2baee4;
}

.cdmo_br_e0e2ea {
    margin-top: 4.38rem;
    margin-bottom: 4.38rem;
    border-bottom: 2px solid #e0e2ea;
}

.plasmidCdmo {
    padding: 10.0rem 0 8.12rem;
    position: relative;
}

.technologyPlatform {}

.technologyPlatform .technologyPlatformLeft {
    background: linear-gradient(to right, #20dbe1, #00aef5);
    position: relative;
    width: 20.62rem;
    font-size: 2.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 2.5rem;
    color: #ffffff;
    z-index: 1;
}

.technologyPlatform .technologyPlatformLeft::after {
    content: '';
    position: absolute;
}

@media (min-width:768px) {
    .technologyPlatform .technologyPlatformLeft::after {
        top: 50%;
        right: -0.88rem;
        border-top: 0.88rem solid transparent;
        border-bottom: 0.88rem solid transparent;
        border-left: 0.88rem solid #00aef5;
        margin-top: -0.88rem;
    }
}

.technologyPlatform .technologyPlatformLeft .title {
    position: relative;
    padding-top: 1.38rem;
}

.technologyPlatform .technologyPlatformLeft .title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3.25rem;
    height: 2px;
    background-color: #ffffff;
}

.technologyPlatform .technologyPlatformRight {
    flex: 1;
}

.technologyPlatform .technologyPlatformRight ul {
    height: 100%;
}

.technologyPlatform .technologyPlatformRight li .box {
    border: 1px solid #e5e5e5;
    text-align: center;
    height: 100%;
    margin-left: -1px;
    padding: 3.0rem 2.62rem;
}

.technologyPlatform .technologyPlatformRight li .box .img {
    padding-bottom: 1.0rem;
}

.technologyPlatform .technologyPlatformRight li .box .title {
    font-size: 1.25rem;
    line-height: 1.7;
}

.cdmoCustomization .cdmoCustomization_items {
    margin-bottom: 4.38rem;
    padding-bottom: 4.38rem;
    border-bottom: 2px solid #e0e2ea;
}

.cdmoCustomization .cdmoCustomization_items:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.plasmidCdmoSwiper .swiper-container .swiper-pagination {
    bottom: 1.25rem;
}

.plasmidCdmoTable {
    overflow: hidden;
}

.plasmidCdmoTable table {
    width: 100%;
    font-size: 1.25rem;
    text-align: center;
    table-layout: fixed;
}

.plasmidCdmoTable table th,
.plasmidCdmoTable table td {
    padding: 0.62rem;
    border-right: 1px solid #ffffff;
}

.plasmidCdmoTable table tr:nth-child(2n-1) td {
    background-color: #f1f6fd;
}

.plasmidCdmoTable table thead {
    background: linear-gradient(to right, #30c7cc, #2baee4);
}

.plasmidCdmoTable table thead th {
    color: #ffffff;
}

.plasmidCdmoTable table td a {
    color: #2baee4;
    text-decoration: underline;
}

.cmcDeclaration {
    overflow: hidden;
}

.cmcDeclaration ul {}

.cmcDeclaration ul li {
    margin-top: 5.0rem;
}

.cmcDeclaration ul li .box {
    text-align: center;
}

.cmcDeclaration ul li .box .img {
    margin: 0 auto 1.0rem;
    width: 100%;
    height: 4.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cmcDeclaration ul li .box .img img {
    max-height: 100%;
}

.cmcDeclaration ul li .box .title {
    font-size: 1.62rem;
    padding-bottom: 4px;
    color: #2baee4;
    font-weight: 500;
}

.cmcDeclaration ul li .box .text {
    font-size: 1.25rem;
}

.technologyTransfer {}

.technologyTransfer ul {
    margin-left: -1.875vw;
    margin-left: -1.875vw;
}

.technologyTransfer ul li {
    padding-left: 1.875vw;
    padding-left: 1.875vw;
    margin-top: -1px;
}

.technologyTransfer ul li .box {
    width: 100%;
    height: 100%;
    border-top: 1px solid #e0e2ea;
    border-bottom: 1px solid #e0e2ea;
    padding: 1.88rem 0.62rem 1.88rem 3.75rem;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    line-height: 1.7;
}

.technologyTransfer ul li .box .text {}

.technologyTransfer ul li .box .sou {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    line-height: 2.5rem;
    font-size: 1.25rem;
    color: #ffffff;
    border-radius: 100%;
    background: linear-gradient(to right, #20dbe1, #00aef5);
}

@media (min-width:768px) {
    .deliveryPlatform {
        margin-left: -1.56rem;
        margin-right: -1.56rem;
    }

    .deliveryPlatform .deliveryPlatform_items {
        padding-left: 1.56rem;
        padding-right: 1.56rem;
    }
}

.deliveryPlatform .deliveryPlatform_items .text {
    line-height: 2;
    font-size: 1.25rem;
}

.deliveryPlatform .deliveryPlatform_items .text ul li {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.deliveryPlatform .deliveryPlatform_items .text ul li::marker {
    color: #15cbe8;
}

/**/
.searchResult {
    position: relative;
    padding: 7.5rem 0;
    background-color: #f2f7fb;
}

.searchResult .searchField_form {
    border: 1px solid #2baee4;
    background-color: #ffffff;
    margin-bottom: 3.12rem;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.searchResult .searchField_form .form-control {
    font-size: 1.12rem;
    border-radius: 0;
    height: 50px;
    box-shadow: none;
    border: 0;
    color: #111111;
    padding: 0 7.5rem 0 1.25rem;
    font-weight: 300;
    background-color: #fff;
}

.searchResult .searchField_form .form-control::placeholder {
    font-size: 1.12rem;
}

.searchResult .searchField_form .btn {
    position: absolute;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    font-size: 1.12rem;
    box-shadow: none;
    color: #ffffff;
    z-index: 9;
    transition: all .5s;
    background: #2baee4;
}

.searchResultTitle {
    font-size: 1.62rem;
    line-height: 1;
    margin-bottom: 1.62rem;
}

.searchResultTitle span {
    color: #2baee4;
}

.searchResultList {
    padding-bottom: 1.88rem;
}

.searchResultList li {
    margin-bottom: 1.88rem;
}

.searchResultList li .box {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 1.25rem 1.88rem;
    box-shadow: 0 0 0.62rem rgba(0, 0, 0, 0.05);
}

.searchResultList li .box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2baee4;
    transition: all 600ms;
}

.searchResultList li .box .time {
    color: #2baee4;
    font-size: 1.0rem;
    padding-top: 4px;
}

.searchResultList li .box .title {
    font-size: 1.25rem;
}

.searchResultList li .box .title span {
    color: #2baee4;
}

.searchResultList li .box:hover:after {
    width: 100%;
}

/*20221206*/
#hrApplyBanner {
    position: relative;
}

#hrApplyBanner .img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vw;
}

#hrApplyBanner .img img {
    display: none;
}

#hrApplyBanner .box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: #ffffff;
}

#hrApplyBanner .title {
    font-size: 2rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1.25rem;
}

#hrApplyBanner .text {
    font-size: 1.25rem;
}

@media (min-width: 992px) {
    #hrApplyBanner .img {
        background-image: none;
        height: auto;
    }

    #hrApplyBanner .img img {
        display: block;
    }

    #hrApplyBanner .title {
        font-size: 2.62rem;
    }
}

.hrApply {
    position: relative;
    padding: 1.25rem 0;
}

.hrApplyItem {
    padding: 5.0rem 0 3.75rem;
    position: relative;
    border-bottom: 1px solid #e1e6ee;
}

.hrApplyHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.88rem;
    position: relative;
}

.hrApplyHead .title {
    font-size: 2.0rem;
    font-weight: 500;
    flex: 1;
}

.hrApplyHead .hrButton,
.hrApplyHead .bdButton {
    background-color: #2aaee4;
    border-radius: 100px;
    position: relative;
    color: #ffffff;
    font-size: 1.12rem;
    width: 8.12rem;
    padding: 0.62rem;
    text-align: center;
    cursor: pointer;
}

.hrApplyHead .hrButton:hover,
.hrApplyHead .bdButton:hover {
    background-color: #0a8abf;
}

.web_form {
    position: relative;
}

.web_form .form-group {
    margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
    .web_form .row {
        margin-left: -1.25vw;
        margin-right: -1.25vw;
    }

    .web_form .col-12 {
        padding-left: 1.25vw;
        padding-right: 1.25vw;
    }
}

.web_form .label {
    font-size: 1.12rem;
    padding-bottom: 0.5rem;
}

.web_form .label span {
    color: #f65b41;
}

.web_form .form-control {
    border-radius: 0;
    border: 1px solid #f1f6fd;
    box-shadow: none;
    background-color: #f1f6fd;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.12rem;
    padding: 0 1.62rem;
}

.web_form .form-control::placeholder {
    color: #abb3be;
}

.web_form .form-control:focus {
    border-color: #2aaee4;
}

.web_form select.form-control {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/selectIcon.png);
    background-repeat: no-repeat;
    background-position: right 1.0rem center;
    background-size: 1.12rem auto;
}

.web_form .form_select {
    position: relative;
    display: flex;
}

.web_form .form_select .formSelect {
    margin-right: 0.75rem;
}

.web_form .form_select .formSelect_mr0 {
    margin-right: 0;
}

.formSelect {
    width: 100%;
    position: relative;
}

.formSelect .selectBox {
    position: relative;
}

.formSelect .selectLt {
    cursor: pointer;
    border: 1px solid #f1f6fd;
    background-color: #f1f6fd;
    height: 3.5rem;
    line-height: 3.5rem;
    padding: 0 1.62rem;
    width: 100%;
    position: relative;
}

.formSelect .selectRt {
    cursor: pointer;
    background: url('../images/skin_icons.png') center no-repeat;
    position: absolute;
    top: 0;
    right: 1.5rem;
    width: 10px;
    height: 100%;
    pointer-events: none;
}

.formSelect .sPressDown .selectLt {
    border-color: #2aaee4;
}

.formSelect .sPressDown .selectRt {
    background: url('../images/skin_icons_.png') center no-repeat;
}

.formSelect .optionsBox {
    position: absolute;
    border: 1px solid #2aaee4;
    margin: 0px;
    background: #f1f6fd;
    z-index: 100;
    width: 100%;
}

.formSelect .optionsBox::-webkit-scrollbar {
    width: 2px;
}

.formSelect .optionsBox::-webkit-scrollbar-thumb {
    background: #2aaee4;
}

.formSelect .optionsBox::-webkit-scrollbar-track {
    background: #f1f6fd;
}

.formSelect .optionBox {
    cursor: pointer;
    padding: 0.62rem 1.62rem;
    font-size: 1rem;
    border-bottom: 1px solid #ffffff;
}

.formSelect .oHover {
    background: #59c6f3;
    color: #fff;
}

.formSelect .selected {
    background: #2aaee4;
    color: #fff;
}

/**/
.web_form_f1f6fd {
    padding: 3.12rem 3.12rem 1.88rem;
    background-color: #f1f6fd;
    margin-bottom: 1.25rem;
}

.web_form_f1f6fd .form-control {
    background-color: #ffffff;
}

.web_form_f1f6fd .formSelect .selectLt {
    background-color: #ffffff;
}

.form_close {
    position: absolute;
    top: 1.88rem;
    right: 1.88rem;
    z-index: 100;
}

.form_close img {
    display: block;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.formPrivacyCheck {
    padding-top: 1.25rem;
    position: relative;
}

.formPrivacyCheck .form-check {
    padding-left: 2.5rem;
    position: relative;
}

.formPrivacyCheck .form-check label {
    cursor: pointer;
}

.formPrivacyCheck .form-check label a {
    color: #2aaee4;
}

.formPrivacyCheck .form-check label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -0.62rem;
    background-color: #f1f6fd;
}

.formPrivacyCheck .form-check input[type="checkbox"]:checked+label::before {
    background-color: #2aaee4;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.75rem auto;
}

.hrApplyButton {
    padding: 2.5rem 0 6.88rem;
    position: relative;
}

.hrApplyButton .btn {
    display: block;
    box-shadow: none;
    font-size: 1.12rem;
    line-height: 1;
    color: #ffffff;
    font-weight: 500;
    border: none;
    background-color: #2aaee4;
    position: relative;
    width: 16.25rem;
    padding: 1.25rem 0.75rem;
    cursor: pointer;
    border-radius: 100px;
    overflow: hidden;
    text-align: center;
    transition: all 400ms;
    margin: 0 auto;
}

.hrApplyButton .btn:hover {
    color: #fff;
    background-color: #0a8abf;
}