html,
body,
div,
span,
iframe,
map,
font,
img,
a img,
samp,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
b,
p,
blockquote,
a,
address,
code,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tr,
td,
th {
    padding: 0;
    margin: 0;
    border: 0;
    font-weight: normal;
    font-family: 'Microsoft YaHei', Arial, Helvetica, sans-serif;
    list-style: none;
}

html,
body {
    position: relative;
    height: 100%;
}

body {
    background: #fff;
    font: normal 12px/22px "微软雅黑";
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 2px;
}

body::-webkit-scrollbar-track {
    background: rgba(232, 232, 232, 1);
}

body::-webkit-scrollbar-thumb {
    background: #00a2e9;
}

img {
    border: 0;
    max-width: 100%;
}

input,
button,
a {
    outline: none;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #00a2e9;
}

.clear {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

div {
    box-sizing: border-box;
}

.dn {
    display: none;
}

#screen {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
}

.fcc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}

.fsc {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
}

/*通用样式*/
.container {
    width: 1400px;
    margin: 0 auto;
}

.logo {
    position: relative;
}

.logo img {
    transition: all 0.5s;
}

.logo img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.header {
    transition: all 0.5s;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 20;
    height: 120px;
    display: flex;
    padding: 0 45px;
    justify-content: space-between;
    align-items: center;
}

.small-header .header {
    transform: translateY(-100%);
}

.show-header .header {
    transform: translateY(0);
}

.small-header .header {
    height: 96px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

.small-header .header .logo img {
    opacity: 0;
}

.small-header .header .logo img:nth-child(2) {
    opacity: 1;
}

.small-header .header .nav li h2 a {
    line-height: 96px;
}

.small-header .header dl {
    top: 96px;
}

@media screen and (min-width: 1024px) {
    .headerRight {
        display: flex;
        gap: 55px;
    }
}

@media screen and (max-width: 1024px) {
    .headerRight {
        display: flex;
        gap: 55px;
        margin-right: 44px;
    }
}

.header:hover {
    background: #ffffff;
}

.header:hover .nav li h2 a,
.small-header .header .nav li h2 a {
    color: #333333;
}

.header:hover .langChose h2,
.small-header .header .langChose h2 {
    color: #333333;
    background: url(../images/blackEarth.png) left center no-repeat;
}

.header:hover .searchEnter,
.small-header .header .searchEnter {
    background: url(../images/blackSearch.png) center no-repeat;
}

.header:hover .logo img {
    opacity: 0;
}

.header:hover .logo img:nth-child(2) {
    opacity: 1;
}

.header .nav li h2 a:hover {
    color: #00a2e9;
}

.nav>ul {
    gap: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuBtn {
    display: none;
}

.nav li h2 {
    position: relative;
}

.nav li h2::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 23px);
    transition: all 0.5s;
    width: 0;
    background: #00a2e9;
}

.nav li:hover h2::after {
    width: 50px;
}

.nav li.cur h2::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 23px);
    transition: all 0.5s;
    width: 50px;
    background: #00a2e9;
}

.nav li h2 a {
    transition: all 0.5s;
    line-height: 120px;
    white-space: nowrap;
    font-size: 18px;
    color: #000;
}

.header .nav li.cur h2 a {
    color: #00a2e9;
}

.nav li {
    position: relative;
}

.nav li dl {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
    display: none;
    width: 240px;
    background: #ffffff;
    position: absolute;
    padding: 17px 0 20px;
    left: 50%;
    transform: translateX(-50%);
    top: 120px;
}

.nav li dt {
    text-align: center;
    font-size: 17px;
    line-height: 42px;
}

.nav li dt:last-child {
    border: none;
}

.nav li dt a {
    display: block;
    transition: all 0.3s;
}

.nav li dt:hover>a {
    color: #00a2e9;
}

.fcc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}

.fsc {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
}

.searchBox {
    position: relative;
}

.searchinput {
    z-index: 3;
    transition: all .5s;
    opacity: 0;
    pointer-events: auto;
    right: 0;
    transform: scale(0);
    transform-origin: right center;
    position: absolute;
    width: 350px;
    top: 50%;
    margin-top: -23px;
}

.searchinput.show {
    transform: scale(1);
    opacity: 1;
}

.searchinput .hsform {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background-color: #00a2e9;
}

.searchinput .hsform .sinput {
    border: none;
    width: 100%;
    height: 44px;
    background-color: #00a2e9;
    color: #fff;
    text-indent: 20px;
    font-size: 16px;
}

.searchinput .hsform .sinput::placeholder {
    color: #fff;
    font-size: 16px;
}

.searchinput .hsform .sbtn {
    border: none;
    width: 44px;
    height: 44px;
    background: url(../images/search.png) center center no-repeat;
    background-size: 17px;
    cursor: pointer;
}

.searchinput .sclosebtn {
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
}

.sclosebtn:hover {
    transform: rotate(180deg);
}

.searchinput .sclosebtn:before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #00a2e9;
    position: absolute;
    left: 7px;
    top: 21px;
    transform: rotateZ(45deg);
}

.searchinput .sclosebtn:after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #00a2e9;
    position: absolute;
    left: 7px;
    top: 21px;
    transform: rotateZ(-45deg);
}

.searchEnter {
    transition: all 0.5s;
    cursor: pointer;
    display: block;
    background: url(../images/blackSearch.png) center no-repeat;
    display: block;
    width: 22px;
    height: 22px;
}

.menuControl {
    display: flex;
    gap: 26px;
    align-items: center;
}

.langChose h2 {
    white-space: nowrap;
    transition: all 0.5s;
    line-height: 120px;
    position: relative;
    cursor: pointer;
    color: #000;
    padding-left: 34px;
    position: relative;
    background: url(../images/blackEarth.png) left center no-repeat;
    transition: all .5s;
    font-size: 18px;
}

.langChose {
    position: relative;
}

.langChose dl {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    background: #ffffff;
    border-radius: 0 0 4px 4px;
    text-align: center;
    width: 84px;
    padding: 5px 0;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
}

.langChose dt a {
    transition: all .5s;
    line-height: 2;
    display: block;
    font-size: 14px;
    color: #393939;
}

.langChose dt:hover a {
    color: #00a2e9;
}

.small-header .langChose h2 {
    line-height: 96px;
}

.langChose.cur>dl {
    display: block;
}

.header .langChose:hover h2 {
    background: url(../images/earthon.png) left center no-repeat;
    color: #00a2e9;
}

.header .searchEnter:hover {
    background: url(../images/searchon.png) center no-repeat;
}

.productSubs {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    border-radius: 0 0 10px 10px;
    width: 580px;
    position: absolute;
    top: 120px;
    left: 50%;
    margin-left: -290px;
    padding: 30px 16px 35px 35px;
    background: #ffffff;
}

.small-header .productSubs {
    top: 96px;
}

.subMenu h3 {
    position: relative;
    cursor: pointer;
    font-size: 17px;
    color: #555555;
    line-height: 1;
    margin-bottom: 27.5px;
}

.subMenu h3:last-child {
    margin-bottom: 0;
}

.subMenu {
    padding-bottom: 16px;
    width: 191px;
    border-right: 1px solid #e2e2e2;
}

.subMenu .productSlide.cur h3::after {
    content: '';
    transition: all 0.3s;
    position: absolute;
    right: -1px;
    height: 0;
    transition: all 0.3s;
    width: 1px;
    background: #00a2e9;
}

.subMenu .productSlide.cur h3::after {
    height: 100%;
}

.subMenu .productSlide.cur h3,
.subMenu .productSlide.cur h3 a {
    font-weight: bold;
}

.secondList {
    display: none;
    bottom: 35px;
    position: absolute;
    right: 15px;
    padding-right: 22px;
    overflow-y: auto;
    width: 305px;
    top: 30px;
}

.listSlide {
    margin-bottom: 16px;
    background: #f4f4f4;
    padding: 4px 18px 4px 26px;
    border-radius: 5px;
}

.listSlide h4 {
    position: relative;
    cursor: pointer;
    line-height: 46px;
    font-size: 17px;
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listSlide h4 i {
    display: block;
    transform: rotate(180deg);
    background: url(../images/upArr.png) center no-repeat;
    transition: all 0.5s;
    width: 14px;
    height: 8px;
}

.listSlide h4.act i {
    transform: rotate(0deg);
}

.listSlide h4::after {
    content: '';
    bottom: 5px;
    position: absolute;
    height: 2px;
    width: 0;
    background: #00a2e9;
    transition: all .5s;
}

.listSlide h4.act::after {
    width: 34px;
}

.hideSub {
    display: none;
}

.hideSub p a {
    transition: all 0.3s;
    line-height: 1.5;
    font-size: 15px;
    color: #555555;
}

.hideSub p {
    padding: 5px 0;
}

.hideSub p a:hover {
    color: #00a2e9;
}

.productSlide:last-child h3 {
    margin-bottom: 0;
}

.listSlide:last-child {
    margin-bottom: 0;
}

.productSlide.cur .secondList {
    display: block;
}

.secondTit {
    font-size: 17px;
    color: #00a2e9;
}

.linkSlide a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.linkPic {
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 83px;
}

.linkPic img {
    display: block;
    max-height: 100%;
}

.linkSlide {
    margin-top: 10px;
    padding: 15px 15px 15px 0;
    background: #f4f4f4;
}

.linkText {
    flex: 1;
}

.linkText h5 {
    margin-bottom: 8px;
    line-height: 1;
    font-size: 16px;
    color: #333333;
}

.linkText h5 span.colorBlue {
    color: #00a2e9;
}

.linkText h5 span.colorPouple {
    color: #b732b2;
}

.linkText h5 span.colorRed {
    color: #f84241;
}

.linkText p {
    font-size: 16px;
    color: #555555;
    opacity: ;
}

/*banner*/
.stickyBox {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
}

.coverPic {
    background: #ffffff;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 21;
}

.coverPic h2 {
    line-height: 1.15;
    font-weight: bold;
    font-size: 3.125vw;
    position: absolute;
    left: 0;
    top: 58.54vh;
    text-align: center;
    width: 100%;
}

.coverPic.act {
    pointer-events: all;
}

.coverPic a {
    font-size: 16px;
    color: #00a2e9;
}

.coverLogo img {
    display: block;
    margin: 0 auto;
    width: 30.88vw;
}

.coverLogo {
    position: absolute;
    top: 26.9vh;
    width: 100%;
    left: 0;
}

.coverPic p {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    top: 76.36vh;
}

.scrollBox {
    height: 250vh;
    position: relative;
    z-index: 20;
}

.banner {
    width: 100%;
    height: 60vh;
}

.banner img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide-active {
    z-index: 2;
}

.banner .swiper-pagination {
    left: 0;
    bottom: 4.4vw;
    width: 100%;
}

.banner .swiper-pagination span {
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    box-sizing: border-box;
    background: #ffffff;
    outline: none;
    width: 10px;
    height: 10px;
    margin: 0 21px !important;
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
    background: #00a2e9;
}

.banner .swiper-pagination span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #00a2e9;
    transform: translate(-50%, -50%) scale(0);
}

.banner .swiper-pagination span.swiper-pagination-bullet-active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s;
}

.bannerText {
    position: absolute;
    width: 1600px;
    max-width: 92%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bannerText h2 {
    font-size: 2.91vw;
    color: #ffffff;
    line-height: 1.25;
}

.bannerText h2 span {
    color: #00a2e9;
}

.bannerText h3 {
    font-size: 2.91vw;
    color: #ffffff;
    line-height: 1.25;
}

.bannerText p {
    margin-bottom: 68px;
    font-size: 1.354vw;
    color: #ffffff;
    margin-top: 56px;
}

.footer {
    background: #f9f9f9;
}

.footerTop {
    padding: 80px 0 8px;
    display: flex;
    justify-content: space-between;
}

.footLink ul::after {
    content: '';
    clear: both;
    display: block;
    height: 0;
}

.footLink li {
    float: left;
    margin-right: 4.29vw;
}

.enFooter .footLink li {
    margin-right: 3vw;
}

.enFooter .footLink li:last-child {
    margin-right: 0;
}

.footLink p a {
    font-size: 15px;
    color: #000;
}

.footLink p {
    transition: all 0.3s;
    opacity: .5;
    line-height: 35px;
}

.footLink li h2 a {
    font-size: 18px;
    color: #000;
}

.footLink p:hover {
    opacity: 1;
    transform: translateX(5px);
    opacity: 1;
}

.footLink li h2 {
    line-height: 1;
    margin-bottom: 20px;
}

.footerContact h2 {
    color: #666;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 17px;
}

.contactLink {
    margin-bottom: 25px;
}

.contactLink ul {
    display: flex;
    gap: 10px;
}

.contactLink li {
    overflow: hidden;
    position: relative;
    background: #2f3741;
    align-items: center;
    justify-content: center;
    display: flex;
    transition: all 0.5s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.contactLink li a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.contactLink li a::after {
    content: '';
    border-radius: 50%;
    transition: all 0.5s;
    transform: scale(0);
    background: #00a2e9;
    width: 100%;
    height: 100%;
    position: absolute;
}

.contactLink li img {
    position: relative;
    z-index: 2;
    width: 60%;
    display: block;
}

.contactLink li:hover a::after {
    transform: scale(1);
}

.copyRight {
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
    line-height: 80px;
    text-align: center;
}

.copyRight p,
.copyRight a {
    transition: all 0.3s;
    font-size: 15px;
    color: #fff;
}

.copyRight a:hover {
    color: #00a2e9;
}

.copyRight p br {
    display: none;
}

.scaleEwm {
    border: 6px solid #ffffff;
    border-radius: 3px;
    transition: all 0.5s;
    transform: scale(0);
    transform-origin: bottom center;
    position: absolute;
    bottom: 50px;
    width: 100px;
}

.menubox {
    display: none;
}

.container {
    width: 1600px;
    margin: 0 auto;
    max-width: 92%;
}

a.more {
    overflow: hidden;
    background: #00a2e9;
    gap: 14px;
    align-items: center;
    border-radius: 48px;
    display: flex;
    justify-content: center;
    width: 150px;
    box-sizing: border-box;
    line-height: 48px;
    position: relative;
    border: 1px solid #00a2e9;
    font-size: 16px;
    color: #ffffff;
}

a.more i {
    transition: all 0.5s;
    display: block;
    background: url(../images/moreIconCur.png) center no-repeat;
    width: 13px;
    height: 14px;
    position: relative;
    z-index: 2;
}

a.more b {
    transition: all 0.5s;
    position: relative;
    z-index: 2;
}

a.more::after {
    content: '';
    transition: all 0.5s;
    position: absolute;
    left: 0;
    height: 100%;
    width: 0;
    background: #ffffff;
}

a.more:hover::after {
    width: 100%;
}

a.more:hover b {
    color: #00a2e9;
}

a.more:hover i {
    transform: rotate(360deg);
    background: url(../images/moreIcon.png) center no-repeat;
}

button.more {
    overflow: hidden;
    background: #00a2e9;
    gap: 14px;
    align-items: center;
    border-radius: 48px;
    display: flex;
    justify-content: center;
    width: 150px;
    box-sizing: border-box;
    line-height: 48px;
    position: relative;
    border: 1px solid #00a2e9;
    font-size: 16px;
    color: #ffffff;
}

button.more i {
    transition: all 0.5s;
    display: block;
    background: url(../images/moreIconCur.png) center no-repeat;
    width: 13px;
    height: 14px;
    position: relative;
    z-index: 2;
}

button.more b {
    transition: all 0.5s;
    position: relative;
    z-index: 2;
}

button.more::after {
    content: '';
    transition: all 0.5s;
    position: absolute;
    left: 0;
    height: 100%;
    width: 0;
    background: #ffffff;
}

button.more:hover::after {
    width: 100%;
}

button.more:hover b {
    color: #00a2e9;
}

button.more:hover i {
    transform: rotate(360deg);
    background: url(../images/moreIcon.png) center no-repeat;
}

/**/

.homeBrand {
    padding: 4.444vw 0 10.4vw;
    background: url(../images/bg1.jpg) center no-repeat;
    background-size: cover;
}

.brandText {
    width: 545px;
}

.brandText span {
    margin-bottom: 20px;
    display: block;
    font-size: 18px;
    color: #00a2e9;
}

.brandText h2 {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 34px;
    line-height: 1.5;
}

.brandText p {
    margin-bottom: 70px;
    font-size: 16px;
    color: #222222;
    line-height: 2;
}

.brandCont {
    display: flex;
    gap: 97px;
    justify-content: space-between;
    align-items: center;
}

.brandList {
    position: relative;
    flex: 1;
}

.brandPic {
    transition: all 0.5s;
    position: absolute;
}

.br1 {
    width: 22.5%;
    left: 61.77%;
    top: -16px;
}

.br2 {
    width: 22.1875%;
    left: 29.68%;
    top: 56px;
}

.br3 {
    width: 15.41%;
    left: 3.125%;
    top: 116px;
}

.br4 {
    width: 16.35%;
    left: 83.64%;
    top: 118px;
}

.br5 {
    width: 40.83%;
    left: 34.16%;
    top: 176px;
}

.br6 {
    width: 17.7%;
    left: 9.79%;
    top: 227px;
}

.br7 {
    width: 20.4%;
    left: 78.125%;
    top: 252px;
}

.br8 {
    width: 18.22%;
    left: 0%;
    top: 348px;
}

.br9 {
    width: 23.43%;
    left: 35.83%;
    top: 367px;
}

.br10 {
    width: 14.27%;
    left: 82.81%;
    top: 406px;
}

.br11 {
    width: 20.52%;
    left: 15.2%;
    top: 468px;
}

.br12 {
    width: 20.1%;
    left: 60.7%;
    top: 497px;
}

.brandSub {
    transform-origin: center top;
    transition: all 0.5s;
    width: 270px;
    padding: 15px 25px;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) scale(0);
    background: rgba(26, 55, 132, .86);
}

.brandSub p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    padding-left: 19px;
}

.brandSub p::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.brandPic:hover .brandSub {
    transform: translateX(-50%) scale(1);
}

.brandSub p a {
    color: #ffffff;
    line-height: 42px;
}

.brandPic:hover {
    z-index: 2;
}

.application {
    background: url(../images/bg2.jpg) center no-repeat;
    background-size: cover;
    padding: 6.5625vw 0;
}

.appText {
    width: 680px;
}

.appText span {
    display: block;
    font-size: 18px;
    color: #00a2e9;
    margin-bottom: 20px;
}

.appText h2 {
    line-height: 1;
    margin-bottom: 65px;
    font-size: 34px;
    font-weight: bold;
    color: #ffffff;
}

.appText ul {
    margin-bottom: 5.4vw;
    justify-content: space-between;
    display: flex;
}

.appText li {
    cursor: pointer;
    text-align: center;
}

.appIcon {
    text-align: center;
    position: relative;
}

.appIcon img {
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
}

.appText li p {
    color: rgba(255, 255, 255, .48);
    font-size: 14px;
    line-height: 1;
    margin-top: 22px;
}

.appText li.cur p {
    color: #ffffff;
}

.appText li .appIcon::after {
    content: '';
    width: 39px;
    height: 39px;
    transform: scale(0);
    transition: all 0.3s;
    position: absolute;
    left: 50%;
    top: -18px;
    margin-left: -8px;
    background: #00a2e9;
    border-radius: 50%;
}

.appText li.cur .appIcon::after {
    transform: scale(1);
}

.appSlide h3 {
    font-size: 34px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 20px;
}

.appSlide p {
    margin-bottom: 80px;
    font-size: 16px;
    color: #ffffff;
    line-height: 34px;
}

.appCont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appImg {
    width: calc(100% - 865px);
}

.appImg .swiper-pagination {
    text-align: right;
    bottom: 30px;
    padding-right: 30px;
}

.appImg .swiper-pagination span {
    background: #ffffff;
}

.homeNews {
    padding: 5.2vw 0;
}

.titleCell span {
    font-size: 18px;
    display: block;
    color: #00a2e9;
    margin-bottom: 18px;
}

.titleCell h2 {
    line-height: 1;
    font-weight: bold;
    font-size: 40px;
    color: #222222;
}

.bigNews {
    margin: 50px 0 65px;
    align-items: center;
    gap: 68px;
    display: flex;
    justify-content: space-between;
}

.newsText h2 {
    margin-bottom: 45px;
    font-size: 26px;
    font-weight: bold;
    color: #333333;
    line-height: 1.5;
}

.newsText p {
    font-size: 16px;
    color: #999999;
    line-height: 1.625;
    margin-bottom: 3.8vw;
}

.newsPic {
    width: 780px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 28px;
}

.newsPic img {
    display: block;
    width: 100%;
}

.newsText {
    flex: 1;
}

.newList {
    border-top: 1px solid #e5e5e5;
    padding: 45px 0 0;
}

.newList ul {
    gap: 9.4vw;
    display: flex;
    justify-content: space-between;
}

.newList li {
    gap: 2.08vw;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    display: flex;
}

.newsDate {
    width: 84px;
    height: 84px;
    border: 1px solid #e5e5e5;
    background: #f4f4f4;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.newsDate p {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 4px;
}

.newsDate span {
    font-size: 14px;
    color: #222222;
}

.newsTit {
    flex: 1;
}

.newsTit a p {
    line-height: 1.5;
    font-weight: bold;
    color: #333333;
    font-size: 18px;
    transition: all 0.3s;
}

.newList li:hover .newsTit a p {
    color: #00a2e9;
}

.footerRight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footerAdd {
    margin: 30px 0;
}

.footerAdd p {
    line-height: 28px;
    max-width: 350px;
    font-size: 15px;
    color: #858585;
}

.footerAdd p a {
    color: #858585;
}

.footerAdd p a:hover {
    color: #00a2e9;
}

.secondList::-webkit-scrollbar {
    width: 3px;
}

.secondList::-webkit-scrollbar-track {
    background: rgba(232, 232, 232, 1);
}

.secondList::-webkit-scrollbar-thumb {
    background: #00a2e9;
}

.indeideBanner {
    position: relative;
}

.indeideBanner img {
    display: block;
    width: 100%;
}

.inBannerText {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.inBannerText h2 {
    font-size: 2.91vw;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 25px;
}

.inBannerText p {
    font-size: 18px;
    color: #ffffff;
}

.productPage {
    padding: 4.1vw 0 5.2vw;
}

.proMenu {
    width: 350px;
    background: #fbfbfb;
    padding: 35px;
}

.proSearch {
    margin-bottom: 40px;
    background: #ffffff;
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #c5c6ca;
    border-radius: 3px;
}

.proSearch button {
    background: url(../images/proSearch.png) center no-repeat;
    display: block;
    width: 44px;
    border: none;
    outline: none;
    cursor: pointer;
}

.proSearch input {
    border: none;
    outline: none;
    flex: 1;
    background: none;
}

.nameList p {
    border-bottom: 1px solid #e6e6e6;
    padding-right: 16px;
    transition: all 0.3s;
    line-height: 44px;
    position: relative;
}

.nameList p a {
    transition: all 0.5s;
    color: #222222;
    font-size: 16px;
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nameList p i {
    transition: all 0.5s;
    background: url(../images/proIcon2.png) center no-repeat;
    width: 7px;
    height: 11px;
}

.nameList p:hover i,
.nameList p.cur i {
    background: url(../images/proIcon1.png) center no-repeat;
}

.nameList p:hover,
.nameList p.cur {
    padding-left: 20px;
}

.nameList p::after {
    content: '';
    top: 0;
    position: absolute;
    width: 0;
    left: 0;
    height: 100%;
    transition: all 0.5s;
    background: #00a2e9;
}

.nameList p:hover::after,
.nameList p.cur::after {
    width: 100%;
}

.nameList p:hover a,
.nameList p.cur a {
    color: #ffffff;
}

.productDetail {
    width: calc(100% - 425px);
}

.detailTitle {
    margin-bottom: 30px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    line-height: 94px;
    border-bottom: 1px solid #e5e5e5;
}

.detailTitle p {
    font-weight: bold;
    font-size: 32px;
    color: #222222;
}

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

.detailTitle img {
    display: block;
    height: 50px;
}

.detailInt p {
    line-height: 2;
    font-size: 16px;
    color: #222222;
}

.detailInt p a {
    color: #222222;
}

.detailInt p a:hover {
    color: #00a2e9;
}

.detailInt a.more {
    margin-top: 40px;
}

.applicationList ul {
    gap: 4vw;
    display: flex;
}

.applicationList .appIcon {
    margin-bottom: 20px;
    display: block;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.applicationList .appIcon img {
    max-height: 100%;
}

a.chatBtn {
    overflow: hidden;
    background: #00a2e9;
    gap: 14px;
    align-items: center;
    border-radius: 48px;
    display: inline-flex;
    justify-content: center;
    box-sizing: border-box;
    line-height: 48px;
    position: relative;
    border: 1px solid #00a2e9;
    font-size: 16px;
    color: #ffffff;
    padding: 0 30px;
}

a.chatBtn i {
    transition: all 0.5s;
    display: block;
    background: url(../images/mailIcon.png) center no-repeat;
    width: 18px;
    height: 14px;
    position: relative;
    z-index: 2;
}

a.chatBtn b {
    transition: all 0.5s;
    position: relative;
    z-index: 2;
}

a.chatBtn::after {
    content: '';
    transition: all 0.5s;
    position: absolute;
    left: 0;
    height: 100%;
    width: 0;
    background: #ffffff;
}

a.chatBtn:hover::after {
    width: 100%;
}

a.chatBtn:hover b {
    color: #00a2e9;
}

a.chatBtn:hover i {
    transform: rotate(360deg);
    background: url(../images/mailIconon.png) center no-repeat;
}

.detailAside {
    margin-bottom: 40px;
}

/**/
.proDetailPage {
    border-radius: 26px 26px 0 0;
    margin: -84px auto 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
    padding: 24px 70px;
}

.proName {
    margin-bottom: 48px;
    text-align: center;
    font-weight: bold;
    font-size: 48px;
    color: #222222;
    line-height: 90px;
}

.proName span {
    font-weight: bold;
    color: #00a2e9;
    margin-right: 18px;
}

.tagDesc {
    margin-bottom: 2.8vw;
    font-size: 16px;
    color: #333333;
    line-height: 38px;
}

.intList li {
    margin-bottom: 4vw;
    gap: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intPic {
    width: 38vw;
}

.intPic img {
    display: block;
    width: 100%;
}

.intText {
    flex: 1;
}

.intList li:nth-child(2n) .intPic {
    order: 1;
}

.intList li:last-child {
    margin-bottom: 0;
}

.intText h2 {
    font-size: 26px;
    font-weight: bold;
    color: #222222;
    line-height: 1.5;
    margin-bottom: 18px;
}

.intText p {
    margin-bottom: 32px;
    font-size: 16px;
    color: #999999;
    line-height: 2;
}

.intText h3 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    color: #222222;
    margin-bottom: 2.08vw;
}

.cellCont {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.textCell p {
    font-weight: bold;
    font-size: 32px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 16px;
}

.textCell span {
    font-size: 20px;
    color: #ffffff;
}

.cellBanner {
    background: url(../images/cellBanner.jpg) center no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.intList.container {
    margin: 5.2vw auto;
}

/**/
.majorBannerText {
    position: absolute;
    width: 1600px;
    max-width: 92%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.majorBannerText h2 {
    font-size: 2.29vw;
    color: #ffffff;
    line-height: 1.3;
}

.majorBannerText h2 span {
    font-weight: bold;
    color: #3661fd;
    margin-right: 16px;
}

.majorBannerText p {
    display: flex;
    align-items: center;
    margin-top: 4vw;
    font-size: 1.45vw;
    color: #ffffff;
}

.majorBannerText p span {
    font-weight: bold;
    font-size: 1.979vw;
    margin-right: 20px;
}

.majorBannerText p span:last-child {
    margin-right: 0;
}

.majorBannerText p span.colorBlue {
    color: #3661fd;
}

.menuChose {
    line-height: 70px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    gap: 72px;
}

.menuChose a {
    position: relative;
    display: block;
    font-size: 16px;
    color: #222222;
}

.menuChose a:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
    height: 2px;
    bottom: -1px;
    width: 0;
    background: #0874d9;
}

.menuChose a.cur::after,
.menuChose a:hover::after {
    width: 100%;
}

.menuChose a.cur,
.menuChose a:hover {
    color: #0874d9;
}

.majorPage {
    background: #fbfbfb;
    padding: 4vw 0 5.2vw;
}

.majorList li {
    gap: 65px;
    border-radius: 14px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 60px 70px;
}

.majorList li:nth-child(odd) .majorPic {
    order: 2
}

.majorText h2 {
    font-size: 34px;
    color: #333333;
    gap: 18px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.majorText p {
    margin-bottom: 2.6vw;
    line-height: 2;
    font-size: 18px;
    color: #555555;
}

.majorPic {
    width: 47%;
    overflow: hidden;
}

.majorText {
    padding-top: 2.08vw;
    flex: 1;
}

.fpage {
    text-align: center;
}

.fpage a {
    transition: all 0.3s;
    display: inline-block;
    margin: 0 5px;
    line-height: 44px;
    width: 44px;
    color: #555555;
    font-size: 16px;
    background: #ffffff;
    border-radius: 50%;
}

.fpage a.cur {
    color: #ffffff;
    background: #0874d9;
}

.fpage a:hover {
    color: #0874d9;
}

/**/
.contactTop {
    margin: 10.4vw auto 5.2vw;
    position: relative;
}

.contactTop::after {
    content: '';
    clear: both;
    display: block;
    height: 0;
}

.contactArt {
    position: absolute;
    left: 0;
    top: 0;
    width: 455px;
}

.contactArt h2 {
    margin-bottom: 4.2vw;
    position: relative;
    font-weight: bold;
    font-size: 42px;
    line-height: 108px;
    color: #222222;
}

.contactArt h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62px;
    height: 3px;
    background: #00a2e9;
}

.contactArt p {
    margin-bottom: 26px;
    font-size: 18px;
    color: #222222;
    line-height: 2;
}

.mapBox {
    float: right;
    width: 63.33vw;
    position: relative;
}

.mapBox img {
    display: block;
    width: 100%;
}

.mc_a1t_dian {
    position: relative;
}

.mapBox li {
    position: absolute;
}

.mapBox li:nth-child(4) a {
    flex-direction: row-reverse;
}

.mapBox li:nth-child(4) {
    right: 23.8% !important;
}

.mc_a1t_dian {
    display: block;
    width: 0;
    height: 0;
    background: #fff;
    border: 5px solid #00a2e9;
    border-radius: 50%;
    box-sizing: border-box;
}

.mc_a1t_dian::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(202, 20, 7, 0.2);
}

.mc_a1t_dian::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(202, 20, 7, 0.2);
}

.mc_a1t_dian::before {
    animation: boderM 3s .75s infinite;
}

.mc_a1t_dian::after {
    animation: boderM 3s infinite;
}

.mc_a1t_li2 .mc_a1t_dian {
    border: 5px solid rgb(255, 102, 0);
}

.mc_a1t_li2 .mc_a1t_dian::after {
    background: rgba(255, 102, 0, 0.2);
}

.mc_a1t_li2 .mc_a1t_dian::before {
    background: rgba(255, 102, 0, 0.2);
}

.mc_a1t_li3 .mc_a1t_dian {
    border: 5px solid rgb(88, 115, 254);
}

.mc_a1t_li3 .mc_a1t_dian::after {
    background: rgba(88, 115, 254, 0.2);
}

.mc_a1t_li3 .mc_a1t_dian::before {
    background: rgba(88, 115, 254, 0.2);
}

.mc_a1t_title {
    white-space: nowrap;
    font-weight: bold;
    font-size: 16px;
    color: #222222;
}

.mc_a1t_li1 .mc_a1t_title {
    font-weight: bold;
    font-size: 18px;
    color: #222222;
}

.mc_a1t_li1 .mc_a1t_dian {
    border: 8px solid #00a2e9;
}

.mc_a1t_li1 .mc_a1t_dian::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(202, 20, 7, 0.2);
}

.mc_a1t_li1 .mc_a1t_dian::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(202, 20, 7, 0.2);
}

@keyframes boderM {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0
    }

    20% {
        opacity: 1
    }

    75% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0
    }

    100% {
        opacity: 0
    }

}

.mc_a1t_a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contactForm {
    background: #f6f6f6;
    padding: 3.645vw 0 5.729vw;
}

.formTitl {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    position: relative;
    line-height: 108px;
}

.formTitl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 3px;
    background: #00a2e9;
}

.formInfor li {
    display: flex;
    border-bottom: 1px solid #dddddd;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.halfForm {
    border-top: 1px solid #ddd;
    width: calc(50% - 40px);
}

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

.formInfor li p {
    width: 186px;
    text-indent: 20px;
    font-size: 18px;
    color: #222222;
    line-height: 65px;
}

.formInfor li input {
    outline: none;
    border: none;
    box-sizing: border-box;
    padding: 0;
    font-size: 16px;
    background: none;
    flex: 1;
}

.formInfor li p span {
    margin-left: 8px;
    color: #00a2e9;
}

.halfForm textarea {
    resize: none;
    width: 100%;
    background: none;
    border: none;
    font-family: '微软雅黑';
    font-size: 16px;
    box-sizing: border-box;
    padding: 0 20px;
    height: 128px;
    outline: none;
}

.formInfor {
    margin-top: 65px;
}

.halfForm li img {
    display: block;
}

.subButton {
    display: flex;
    margin-top: 85px;
    justify-content: center;
}

.subButton button {
    cursor: pointer;
}

.newsPage {
    background: #fbfbfb;
    padding: 3.8vw 0 5.2vw;
}

.newsList li {
    transition: all 0.5s;
    gap: 3.645vw;
    border-radius: 15px;
    margin-bottom: 57px;
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 52px 68px;
}

.newsImg {
    overflow: hidden;
    width: 443px;
    height: 254px;
    border-radius: 18px;
}

.newsImg img {
    transition: all 1s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsDesc {
    flex: 1;
    width: calc(100% - 443px - 3.645vw);
}

.newsDesc span {
    display: block;
    font-size: 16px;
    color: #555555;
    margin: 20px 0 24px;
    line-height: 1;
}

.newsDesc h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    line-height: 1;
    margin-bottom: 47px;
}

.newsDesc p {
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    font-size: 16px;
    color: #555555;
    line-height: 24px;
    height: 48px;
    margin-bottom: 47px;
}

.newsList li:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.newsList li:hover img {
    transform: scale(1.1);
}

.newsList li a.more {
    overflow: hidden;
    background: #ffffff;
    gap: 14px;
    align-items: center;
    border-radius: 48px;
    display: flex;
    justify-content: center;
    width: 150px;
    box-sizing: border-box;
    line-height: 48px;
    position: relative;
    border: 1px solid #00a2e9;
    font-size: 16px;
    color: #00a2e9;
}

.newsList li a.more i {
    transition: all 0.5s;
    display: block;
    background: url(../images/moreIcon.png) center no-repeat;
    width: 13px;
    height: 14px;
    position: relative;
    z-index: 2;
}

.newsList li a.more b {
    transition: all 0.5s;
    position: relative;
    z-index: 2;
}

.newsList li a.more::after {
    content: '';
    transition: all 0.5s;
    position: absolute;
    left: 0;
    height: 100%;
    width: 0;
    background: #00a2e9;
}

.newsList li a.more:hover::after {
    width: 100%;
}

.newsList li a.more:hover b {
    color: #ffffff;
}

.newsList li a.more:hover i {
    transform: rotate(360deg);
    background: url(../images/moreIconCur.png) center no-repeat;
}

/*详情页*/
.articleBox {
    padding: 80px 70px 65px;
    margin: -84px auto 0;
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 26px 26px 0 0;
}

.articleDesc h2 {
    line-height: 46px;
    margin-bottom: 26px;
    font-size: 26px;
    font-weight: bold;
    color: #222222;
}

.articleDesc p {
    margin-bottom: 26px;
    font-size: 16px;
    color: #333333;
    line-height: 36px;
}

.articleDesc img {
    max-width: 100%;
    margin: 0 auto 26px;
    display: block;
}

.articleDetail {
    float: left;
    width: calc(100% - 445px);
}

.articleTitle h2 {
    font-weight: bold;
    font-size: 48px;
    line-height: 62px;
    color: #222222;
}

.articleTag {
    margin: 40px 0 34px;
    display: flex;
    gap: 80px;
}

.articleTag span {
    font-size: 15px;
    color: #999999;
}

.aboutArticle {
    float: right;
    width: 300px;
}

.aboutArticle h3 {
    font-size: 24px;
    color: #222222;
}

.aboutArticle li span {
    line-height: 21px;
    padding: 0 7px;
    color: #1f75fe;
    font-size: 16px;
    display: inline-block;
    border: 1px solid #1f75fe;
    margin-bottom: 15px;
    border-radius: 3px;
}

.aboutArticle li h2 {
    transition: all 0.5s;
    font-size: 20px;
    font-weight: bold;
    color: #222222;
    line-height: 28px;
    margin-bottom: 42px;
}

.aboutArticle li {
    position: relative;
    margin-top: 36px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 32px
}

.aboutArticle li p {
    font-size: 15px;
    line-height: 1;
    color: #999999;
}

.aboutArticle li::after {
    content: '';
    background: #1f75fe;
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 1px;
    width: 0;
    transition: all 0.5s;
}

.aboutArticle li:hover::after {
    width: 100%;
}

.aboutArticle li:hover h2 {
    color: #1f75fe;
}

.articlePage {
    border-top: 1px solid #e9e9e9;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pageLink {
    max-width: calc(100% - 140px);
}

.pageLink p {
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
    color: #222222;
    line-height: 38px;
}

.backMenu {
    overflow: hidden;
    padding: 0 34px 0 38px;
    border: 1px solid #00a2e9;
    border-radius: 54px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    line-height: 54px;
}

.backMenu::after {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    background: #00a2e9;
    transition: all 0.5s;
}

.backMenu:hover::after {
    width: 100%;
}

.backMenu span {
    font-size: 16px;
    color: #00a2e9;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
}

.backMenu:hover span {
    color: #ffffff;
}

.backMenu i {
    position: relative;
    z-index: 2;
    background: url(../images/refuseRed.png) center no-repeat;
    width: 14px;
    height: 16px;
    display: block;
    transition: all 0.5s;
}

.backMenu:hover i {
    transform: rotate(360deg);
    background: url(../images/refuse.png) center no-repeat;
}

.articleTitle {
    margin-bottom: 40px;
    border-bottom: 1px solid #e9e9e9;
}

.pageLink p a {
    transition: all 0.5s;
    font-size: 15px;
    color: #222222;
}

.pageLink p a:hover {
    color: #1f75fe;
}

/**/
.jobAbout {
    padding: 2.6vw 0 8.85vw;
    background: url(../images/jobBg1.jpg) center no-repeat;
    background-size: cover;
}

.aboutPic {
    max-width: 100%;
    width: 902px;
}

.aboutPic img {
    display: block;
    width: 100%;
}

.aboutDesc {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 773px;
}

.aboutCont {
    position: relative;
}

.aboutDesc .swiper-slide {
    border-radius: 8px;
    background: #ffffff;
    padding: 43px 47px;
}

.aboutDesc .swiper-slide p {
    font-size: 16px;
    color: #222222;
    line-height: 2.25;
}

.intIcon {
    position: absolute;
    display: block;
    right: 16px;
    top: -40px;
    z-index: 2;
}

.aboutCont .swiper-pagination {
    display: flex;
    background: #e4e4e4;
    bottom: -75px;
}

.aboutCont .swiper-pagination span {
    background: none;
    width: auto;
    flex: 1;
    border-radius: 0;
    margin: 0 !important;
    height: 4px;
}

.aboutCont .swiper-pagination span.swiper-pagination-bullet-active {
    background: #00a2e9;
}

.jobCont {
    position: relative;
    padding: 8.75vw 0 3.645vw;
}

.jobBar {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 55px 4vw 75px;
    position: relative;
    z-index: 2;
}

.jobCont::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 72%;
    background: url(../images/jobBg2.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.jobSearch {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
    background: #f9f9f9;
}

.selectSearch {
    border-radius: 56px;
    position: relative;
    width: 310px;
    background: #ffffff;
}

.selectSearch select {
    display: block;
    transition: all 0.3s;
    box-sizing: border-box;
    border: none;
    width: 100%;
    height: 56px;
    padding-left: 32px;
    font-size: 16px;
    color: #999999;
    outline: none;
    border: 1px solid #ffffff;
    border-radius: 56px;
    background: none;
    appearance: none;
}

.selectSearch::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 8px;
    background: url(../images/aboutIcon3.png) center no-repeat;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.selectSearch select:focus,
.inputSearch input:focus {
    border: 1px solid #00a2e9;
}

.inputSearch {
    position: relative;
    width: 310px;
}

.inputSearch input {
    display: block;
    background: #ffffff;
    transition: all 0.3s;
    box-sizing: border-box;
    border: none;
    width: 100%;
    height: 56px;
    padding-left: 32px;
    font-size: 16px;
    color: #999999;
    outline: none;
    border: 1px solid #ffffff;
    border-radius: 56px;
}

.inputSearch button {
    position: absolute;
    background: url(../images/aboutIcon2.png) center no-repeat;
    right: 30px;
    width: 17px;
    height: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    top: 0;
}

.jubList ul {
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.jubList li a {
    line-height: 68px;
    padding: 0 45px 0 68px;
    display: flex;
    justify-content: space-between;
}

.jubList li {
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-radius: 5px;
    width: calc(50% - 10px);
    background: url(../images/aboutIcon4.png) 31px center no-repeat;
}

.jubList li p {
    font-size: 18px;
    transition: all 0.3s;
    font-weight: bold;
    color: #333333;
}

.jubList li span {
    font-size: 16px;
    color: #333333;
}

.jubList li:hover p {
    color: #00a2e9;
}

.descJob {
    text-align: center;
    font-size: 16px;
    color: #555555;
}

.aboutCont {
    margin-top: 2.6vw;
}

.welfareList {
    margin: 5.2vw auto 2vw;
}

.welfareList ul {
    padding: 0 3.645vw;
    display: flex;
    justify-content: space-between;
}

.welfareList li {
    text-align: center;
}

.welfareList li img {
    display: block;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    transition: all 0.5s;
}

.welfareList li p {
    font-size: 18px;
    color: #222222;
}

.welfareList li:hover img {
    transform: rotateY(360deg);
}

.welfareIcon {
    margin-bottom: 32px;
    position: relative;
}

.welfareIcon::after {
    content: '';
    transition: all 0.5s;
    transform: scale(0);
    position: absolute;
    left: 50%;
    top: -22px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #00a2e9;
}

.welfareList li:hover .welfareIcon::after {
    transform: scale(1);
}

.welfareSwiper .swiper-slide {
    transition: all 0.5s;
    opacity: .5;
    position: relative;
    padding: 80px 0;
}

.welfareNotice {
    opacity: 0;
    transition: all 0.5s;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
}

.welfareNotice p {
    font-size: 20px;
    color: #222222;
}

.welfareNotice span {
    font-size: 14px;
    color: #999999;
}

.welfareSwiper .swiper-slide-active .welfareNotice {
    opacity: 1;
}

.welfareSwiper .swiper-slide-active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.1);
}

.welfareSwiper {
    margin-bottom: 5.2vw;
}

.welfareSwiper .swiper-button-prev {
    transition: all 0.3s;
    color: #535250;
    left: 25%;
}

.welfareSwiper .swiper-button-prev::after {
    font-size: 30px;
    font-weight: bold;
}

.welfareSwiper .swiper-button-next {
    color: #535250;
    right: 25%;
}

.welfareSwiper .swiper-button-next::after {
    font-size: 30px;
    font-weight: bold;
}

.swiper-button-prev,
.swiper-button-next {
    outline: none;
    transition: all 0.3s;
}

.welfareSwiper .swiper-button-prev:hover,
.welfareSwiper .swiper-button-next:hover {
    color: #00a2e9;
}

.aboutIntroduce {
    padding: 4.8vw 0 8.958vw;
    background: url(../images/earth.jpg) center bottom no-repeat;
}

.aboutIntroduce img {
    width: 41vw;
    margin: 0 0 35px 65px;
}

.aboutIntroduce h2,
.history h2 {
    margin-top: 10px;
    font-size: 42px;
    margin-bottom: 45px;
    position: relative;
    font-weight: bold;
    line-height: 2.38;
}

.aboutIntroduce h2::after,
.history h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62px;
    height: 3px;
    background: #00a2e9;
}

.aboutIntroduce p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555555;
    line-height: 2;
}

.companyData {
    margin-top: 4.16vw;
}

.companyData ul {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.companyData li h3 {
    line-height: 1;
    font-size: 2.444vw;
    color: #00a2e9;
}

.companyData li i {
    display: block;
    font-style: normal;
    font-size: 15px;
    color: #999999;
}

.companyData li b {
    font-size: 15px;
    color: #555555;
}

.companyData li {
    flex: 1;
    border-right: 1px solid #dddddd;
}

.companyData li:last-child {
    border: none;
}

.cluture img {
    display: block;
    width: 100%;
}

.clutureSwiper {
    border-radius: 14px;
    background: rgba(8, 112, 173, .94);
    padding: 77px 80px 140px;
    width: 614px;
    position: absolute;
    top: -80px;
    left: 0;
}

.cluture .container {
    position: relative;
}

.clutureSwiper p {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .68);
}

.clutureSwiper span {
    display: block;
    margin-bottom: 35px;
    color: #ffffff;
    font-size: 24px;
    line-height: 170%
}

.clutureControl {
    gap: 8px;
    bottom: 54px;
    position: absolute;
    display: flex;
    align-items: center;
}

.clutureControl div {
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    position: static;
    border: 1px solid #ffffff;
}

.clutureControl div::after {
    font-size: 14px;
}

.clutureControl div:hover {
    background: #ffffff;
    color: #00a2e9;
}

.history {
    padding: 4.16vw 0 6.25vw;
    background: url(../images/aboutPic3.jpg) center no-repeat;
    background-size: cover;
}

.timeLine {
    margin-top: 5.2vw;
    margin-bottom: 25px;
    background: url(../images/timeLine.png) center no-repeat;
    height: 9px;
}

.timeChose .swiper-slide {
    cursor: pointer;
    line-height: 60px;
    font-size: 18px;
    color: #222222;
    width: auto;
}

.timeChose .swiper {
    width: 100%;
}

.timeChose .swiper-slide.cur {
    background: url(../images/timeAct.png) center no-repeat;
}

.historySlide h3 {
    font-size: 4.16vw;
    color: #00a2e9;
    line-height: 1;
    margin-bottom: 40px;
}

.historyList {
    margin-top: 4.42vw;
}

.historySlide li p {
    font-size: 18px;
    color: #999999;
    margin-bottom: 20px;
}

.historySlide li span {
    font-size: 24px;
    color: #222222;
}

.historySlide li:not(:last-child) {
    margin-bottom: 45px;
}

.honorTit {
    text-align: center;
    margin-top: 10px;
    font-size: 42px;
    margin-bottom: 45px;
    position: relative;
    font-weight: bold;
    line-height: 100px;
}

.honorTit::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 62px;
    height: 3px;
    background: #00a2e9;
}

.honor .welfareSwiper .swiper-slide {
    border-radius: 28px;
    padding: 0;
    background-size: cover;
}

.honor .welfareSwiper .swiper-slide img {
    display: block;
    width: 100%;
}

.honor .welfareSwiper .swiper-slide-active {
    transform: scale(1.25);
}

.honor .welfareSwiper .swiper {
    padding: 60px 0;
}

.honorSlide {
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 30px;
}

.honor .welfareSwiper .swiper-button-prev {
    left: 20%;
}

.honor .welfareSwiper .swiper-button-next {
    right: 20%;
}

.honorPic {
    width: 17.77vw;
    border-radius: 22px;
    overflow: hidden;
}

.honorText p {
    line-height: 3.33;
    font-size: 14px;
    color: #222222;
}

.honorText p b {
    margin: 0 18px;
}

.honorText {
    flex: 1;
}

.honorPic img {
    width: 100%;
    display: block;
}

.menuEnter {
    display: none;
}

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

    .container {
        max-width: 1440px;
    }

    .honorSlide {
        padding: 20px;
        gap: 20px;
    }

    .honorText p {
        font-size: 16px;
    }
}

@media screen and (max-width: 1600px) {
    .nav>ul {
        gap: 35px;
    }

    .container {
        max-width: 1440px;
    }

    .honorText p {
        font-size: 14px;
        line-height: 2;
    }

    .appSlide h3 {
        font-size: 26px;
    }

    .newsText h2 {
        font-size: 20px;
    }
}

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

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

    .aboutIntroduce h2,
    .history h2,
    .honorTit,
    .contactArt h2,
    .formTitl,
    .articleTitle h2,
    .proName {
        font-size: 32px;
    }

    .contactArt p {
        font-size: 16px;
    }

    .mc_a1t_title {
        font-size: 14px;
    }

    .mc_a1t_a {
        gap: 5px;
    }

    .mc_a1t_li1 .mc_a1t_title,
    .formInfor li p {
        font-size: 16px;
    }

    .mc_a1t_li1 .mc_a1t_dian {
        border: 6px solid #f21407;
    }

    .container {
        max-width: 92%;
    }

    .header {
        padding: 0 3%;
    }

    .articleDetail {
        width: calc(100% - 360px);
    }

    .articleBox {
        padding: 80px 40px;
    }

    .brandText h2 {
        font-size: 30px;
        margin-bottom: 60px;
    }

    .appText h2,
    .titleCell h2 {
        font-size: 30px;
    }

    .appImg {
        width: calc(100% - 725px);
    }

    .appText li p {
        font-size: 16px;
    }

    .aboutIntroduce p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .aboutIntroduce img {
        margin: 0 0 20px 20px;
    }

    .formInfor li p {
        width: 160px;
    }

    .jubList li p {
        font-size: 16px;
    }

    .jubList li span {
        font-size: 14px;
    }

    .welfareList li img {
        height: 60px;
    }

    .welfareIcon {
        margin-bottom: 20px;
    }

    .welfareNotice p {
        font-size: 16px;
    }

    .majorText p {
        font-size: 16px;
    }

    .majorText h2 {
        font-size: 20px;
    }

    .intText h2 {
        font-size: 20px;
    }

    .detailTitle p {
        font-size: 26px;
    }
}

@media screen and (max-width: 1280px) {
    .nav>ul {
        gap: 20px;
    }

    .articleTitle h2 {
        font-size: 26px;
    }

    .footLink li {
        margin-right: 4vw;
    }
}

@media screen and (max-width: 1200px) {
    .header .langChose h2 {
        font-size: 14px;
    }

    a.chatBtn b {
        font-size: 14px;
    }

    a.chatBtn {
        height: 32px;
        padding: 0 15px;
    }

    .detailInt a.more {
        margin-top: 20px;
    }

    .detailAside {
        margin-bottom: 20px;
    }

    .productDetail {
        width: 100%;
    }

    .menuEnter {
        display: block;
        background: url(../images/searchMenu.png) center no-repeat;
        width: 37px;
        height: 30px;
    }

    .proSearch {
        margin: 0;
        width: auto;
        flex: 1;
    }

    .proMenu {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .nameList p {
        line-height: 42px;
        padding-left: 20px;
    }

    .nameList p a {
        font-size: 14px;
    }

    .nameList {
        position: fixed;
        right: -100%;
        top: 60px;
        bottom: 0;
        width: 200px;
        background: #ffffff;
        overflow-y: auto;
        z-index: 10;
    }

    .detailTitle img {
        height: 32px;
    }

    .detailTitle p {
        line-height: 3;
        font-size: 20px;
    }

    .detailInt p {
        font-size: 14px;
    }

    .detailTitle {
        margin-bottom: 20px;
    }

    .intText p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contactTop {
        flex-direction: column;
    }

    .contactArt {
        width: 100%;
        position: static;
    }

    .formInfor li p {
        width: 80px;
        text-indent: 0;
    }

    .halfForm textarea {
        height: 100px;
        padding: 0;
    }

    .menuChose a {
        font-size: 14px;
    }

    .menuChose {
        gap: 12px;
        line-height: 50px;
        white-space: nowrap;
        overflow-x: auto;
    }

    .menuChose::-webkit-scrollbar {
        display: none;
    }

    .newsTit a p {
        font-size: 16px;
    }

    .newsDate {
        width: 60px;
        height: 60px;
    }

    .newsDate span {
        font-size: 12px;
    }

    .newsDate p {
        font-size: 18px;
        margin: 0;
    }

    .newList {
        padding: 20px 0;
    }

    .newList ul {
        flex-direction: column;
        gap: 20px;
    }

    .bigNews {
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
    }

    .newsText h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .newsText p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .appText ul {
        flex-wrap: wrap;
    }

    .appText li {
        width: 30%;
        margin-bottom: 10px;
    }

    .appText li p {
        font-size: 14px;
        margin-top: 10px;
    }

    .aboutArticle {
        float: none;
        width: 100%;
        margin-top: 20px;
    }

    .aboutArticle h3 {
        font-size: 18px;
    }

    .aboutArticle li {
        padding-bottom: 10px;
        margin-top: 10px;
    }

    .aboutArticle li h2 {
        margin-bottom: 5px;
        font-size: 16px;
        margin-top: 5px;
    }

    .aboutArticle li span {
        font-size: 14px;
        margin-bottom: 0;
    }

    .aboutArticle li p {
        font-size: 13px;
    }

    .header,
    .small-header .header {
        height: 60px;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .header .logo img {
        opacity: 0;
    }

    .header .logo img:nth-child(2) {
        opacity: 1;
    }

    .header .nav li h2 a {
        line-height: 80px;
    }

    .langChose h2 {
        line-height: 60px;
    }

    .header .nav li h2 a {
        color: #333333;
    }

    .header .langChose h2 {
        color: #333333;
        background: url(../images/blackEarth.png) left center no-repeat;
    }

    .header .searchEnter {
        background: url(../images/blackSearch.png) center no-repeat;
    }

    .header .logo img {
        height: 34px;
    }

    .nav {
        height: calc(100vh - 60px);
        position: fixed;
        left: -110%;
        overflow-y: auto;
        top: 60px;
        width: 300px;
        background: #ffffff;
        bottom: 0;
    }

    .nav ul {
        display: block;
    }

    .nav li {
        border-bottom: 1px solid #eee;
        float: none;
        margin: 0 !important;
    }

    .nav li h2 {
        position: relative;
        text-indent: 20px;
    }

    .nav li h2 i {
        transition: all .5s;
        background: url(../images/menuEnter.png) center no-repeat;
        width: 8px;
        height: 14px;
        background-size: 100% auto;
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -7px;
    }

    .nav li h2 a {
        line-height: 40px;
        color: #333333;
    }

    .nav li.cur h2 i {
        background: url(../images/menuEntero.png) center no-repeat;
        background-size: 100% auto;
        transform: rotate(90deg);
    }

    .nav li:last-child h2 i {
        display: none !important;
    }

    .nav li:nth-child(4) h3::after {
        display: none !important;
    }

    .nav li:nth-child(4) .secondList {
        display: none !important;
    }

    .menubox {
        display: block;
        position: absolute;
        right: 4%;
        top: 10px;
        width: 45px;
        height: 40px;
        opacity: 1;
        pointer-events: auto;
        transition: 0.3s;
    }

    .menubox div {
        position: absolute;
        left: 20px;
        width: 30px;
        height: 2px;
        background-color: #00a2e9;
        transition: 0.6s;
    }

    .menubox div:nth-child(1) {
        top: 9px;
    }

    .menubox div:nth-child(2) {
        top: 19px;
    }

    .menubox div:nth-child(3) {
        top: 29px;
    }

    .menubox.on div:nth-child(1) {
        top: 19px;
        transform: rotateZ(45deg);
    }

    .menubox.on div:nth-child(2) {
        top: 19px;
        opacity: 0;
    }

    .menubox.on div:nth-child(3) {
        top: 19px;
        transform: rotateZ(-45deg);
    }

    .langChose {
        margin-right: 50px;
    }

    .nav li dl {
        box-shadow: none;
        position: static;
        width: 100%;
        padding: 0;
        transform: translateX(0);
        text-align: left;
    }

    .nav li dl dt {
        font-size: 14px;
        text-align: left;
        text-indent: 30px;
    }

    .productSubs {
        box-shadow: none;
    }

    .nav li h2::after {
        display: none !important;
    }

    .mobSub dl {
        display: block !important;
    }

    .nav li dl dt dt {
        text-indent: 40px;
    }

    .nav li dt h3 a {
        font-size: 16px;
    }

    .nav li dt dt a {
        font-size: 14px;
    }

    .header .nav li h2 a,
    .small-header .header .nav li h2 a {
        line-height: 50px;
    }

    body {
        padding-top: 0px;
    }

    .langChose dl {
        top: 60px;
        border-radius: 0 0 6px 6px;
    }

    .productSubs {
        padding: 0 10px;
        display: none;
        position: static;
        margin: 0;
        width: 100%;
    }

    .subMenu {
        width: 100%;
        border: none;
    }

    .secondList {
        position: static;
        width: 100%;
        padding: 0;
    }

    .listSlide {
        margin-bottom: 10px;
        padding: 4px 10px;
    }

    .subMenu h3 {
        font-size: 14px;
        text-indent: 10px;
        margin-bottom: 0;
        line-height: 2.5;
    }

    .listSlide h4 {
        font-size: 14px;
    }

    .subMenu .productSlide h3::after {
        content: '';
        transition: all .5s;
        background: url(../images/menuEnter.png) center no-repeat !important;
        width: 8px !important;
        height: 14px !important;
        background-size: 100% auto !important;
        position: absolute;
        right: 15px !important;
        top: 50% !important;
        margin-top: -7px !important
    }

    .subMenu .productSlide.cur h3::after {
        transform: rotate(90deg);
    }

    .listSlide:last-child {
        margin-bottom: 10px;
    }

    .secondTit,
    .linkText h5,
    .linkText p {
        font-size: 14px;
    }

    .brandText {
        margin-bottom: 20px;
        width: 100%;
    }

    .brandCont {
        gap: 0;
        flex-direction: column;
    }

    .brandList {
        width: 100%;
        flex: auto;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .brandPic {
        margin-bottom: 3%;
        position: static;
        width: 26%;
        text-align: center;
    }

    .stickyBox {
        position: static;
    }

    .scrollBox {
        height: auto;
    }

    .banner {
        height: auto;
    }

    .bannerText p {
        margin: 10px 0;
        font-size: 14px;
    }

    .banner .swiper-pagination span::after {
        display: none;
    }

    .banner .swiper-pagination span {
        width: 8px;
        height: 8px;
        margin: 0 5px !important;
    }

    .bannerText h2,
    .bannerText h3 {
        font-size: 16px;
    }

    .banner .swiper-pagination {
        bottom: 3px;
    }

    a.more,
    button.more {
        font-size: 14px;
        width: 120px;
        height: 32px;
        gap: 8px;
    }

    .brandText h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .appText h2,
    .titleCell h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .brandText p {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .brandText span {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .brandSub p {
        padding: 0;
        font-size: 14px;
        margin: 0;
        text-align: left;
        line-height: 2;
    }

    .brandSub {
        line-height: 1.5;
        width: 100%;
        padding: 4px 6px;
    }

    .brandSub p::after {
        display: none;
    }

    .brandSub p a {
        line-height: 1.5;
    }

    .appCont {
        flex-direction: column;
    }

    .appText {
        max-width: 100%;
    }

    .appImg {
        width: 680px;
        max-width: 100%;
        margin: 20px auto 0;
    }

    .appSlide p {
        margin-bottom: 20px;
    }

    .appText li.cur .appIcon::after {
        width: 30px;
        height: 30px;
        margin: 0;
        top: -12px;
    }

    .appSlide h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .titleCell span {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .aboutIntroduce h2,
    .history h2,
    .honorTit,
    .formTitl,
    .contactArt h2,
    .proName {
        line-height: 3;
        font-size: 20px;
    }

    .contactArt h2::after,
    .formTitl::after {
        height: 2px;
    }

    .formInfor {
        margin-top: 20px;
        flex-direction: column;
        gap: 0;
    }

    .halfForm {
        width: 100%;
    }

    .honorTit {
        line-height: 3;
        margin-bottom: 20px;
    }

    .aboutIntroduce h2::after,
    .history h2::after {
        height: 2px;
        width: 32px;
    }

    .aboutIntroduce h2,
    .history h2 {
        margin-bottom: 20px;
    }

    .aboutIntroduce p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .aboutIntroduce br {
        display: none;
    }

    .clutureSwiper {
        padding: 20px;
        position: relative;
        top: auto;
        z-index: 2;
        margin: 0 auto;
        width: 100%;
    }

    .cluture img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cluture {
        position: relative;
        padding: 20px 0;
    }

    .clutureControl {
        margin-top: 20px;
        position: static;
    }

    .clutureSwiper p {
        font-size: 14px;
    }

    .clutureSwiper span {
        font-size: 18px;
    }

    .clutureSwiper span {
        margin-bottom: 20px;
    }

    .timeChose .swiper-slide {
        font-size: 14px;
    }

    .historySlide h3 {
        font-size: 18px;
        margin: 30px 0 10px;
    }

    .historySlide li p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .historySlide li span {
        font-size: 16px;
    }

    .historySlide li:not(:last-child) {
        margin-bottom: 20px;
    }

    .mapBox {
        float: none;
    }

    .contactArt p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .subButton {
        margin-top: 20px;
    }

    .contactTop {
        margin-top: 0;
    }

    .aboutDesc {
        margin-top: 20px;
        position: relative;
        top: auto;
        bottom: auto;
        width: 100%;
    }

    .aboutDesc .swiper-slide {
        padding: 30px 20px 20px;
    }

    .aboutDesc .swiper-slide p {
        font-size: 14px;
    }

    .aboutCont .swiper-pagination {
        bottom: 0;
    }

    .intIcon {
        width: 30px;
        top: 10px;
        right: 10px;
    }

    .jobBar {
        padding: 10px 20px 20px;
    }

    .welfareList li p {
        font-size: 14px;
    }

    .welfareList li img {
        height: 40px;
    }

    .welfareIcon {
        margin-bottom: 10px;
    }

    .welfareList li {
        margin-bottom: 10px;
    }

    .welfareSwiper .swiper-button-prev {
        left: 6%;
    }

    .welfareSwiper .swiper-button-next {
        right: 6%;
    }

    .welfareNotice p {
        font-size: 14px;
    }

    .welfareSwiper .swiper-slide {
        padding: 20px 0 40px;
    }

    .welfareSwiper .swiper-slide-active .welfareNotice {
        bottom: 10px;
    }

    .descJob {
        font-size: 14px;
    }

    .jubList ul {
        margin: 20px 0;
        gap: 10px;
        flex-direction: column;
    }

    .jubList li {
        width: 100%;
    }

    .jubList li a {
        line-height: 40px;
        padding: 0 10px 0 40px;
    }

    .jubList li p {
        font-size: 14px;
    }

    .jubList li {
        background-position: 10px center !important;
    }

    .jobSearch {
        flex-direction: column;
        margin-top: 20px;
        justify-content: center;
        align-items: center;
    }

    .selectSearch select,
    .inputSearch input {
        height: 42px;
        font-size: 14px;
    }

    .majorBannerText h2 {
        font-size: 16px;
    }

    .majorBannerText p {
        font-size: 16px;
    }

    .majorBannerText p span {
        font-size: 20px;
    }

    .proDetailPage {
        padding: 0;
        margin: 0 auto 20px;
    }

    .tagDesc {
        line-height: 2;
        margin-bottom: 20px;
    }

    .proName {
        margin-bottom: 0;
    }

    .intList li {
        margin-bottom: 20px;
        gap: 10px;
        flex-direction: column;
    }

    .intText {
        order: 2;
    }

    .intText h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .productPageCont {
        flex-direction: column;
    }
}

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

    .intText h2 {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .intPic {
        width: 100%;
    }

    .majorText h2 img {
        max-height: 32px;
    }

    .majorText p {
        font-size: 14px;
        text-align: justify;
    }

    .majorText h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .majorPic {
        width: 100%;
    }

    .majorList li:nth-child(odd) .majorText {
        order: 2;
    }

    .majorList li {
        margin-bottom: 10px;
        gap: 20px;
        padding: 20px;
        flex-direction: column;
    }

    .aboutIntroduce img {
        float: none;
        margin: 0 auto;
        width: 100%;
    }

    .welfareList li {
        width: 33.33%;
    }

    .welfareList ul {
        flex-wrap: wrap;
    }

    .honor .welfareSwiper .swiper-slide-active {
        transform: scale(1);
    }

    .honorSlide {
        flex-direction: column;
    }

    .honorPic {
        width: 100%;
    }

    .footerContact {
        text-align: center;
    }

    .footerAdd p {
        font-size: 14px;
    }

    .footerAdd {
        margin: 20px 0;
        text-align: center;
    }

    .footerRight {
        align-items: center;
    }

    .footerTop {
        text-align: center;
    }

    a.more i {
        width: 9px !important;
        height: 10px !important;
        background-size: 100% auto !important;
    }

    .articleTitle h2 {
        font-size: 18px;
        line-height: 1.5;
    }

    .searchinput {
        width: 100%;
        top: 60px;
        margin: 0;
        background: #ffffff;
        padding: 10px;
        transform-origin: center;
        top: ;
    }

    .searchBox {
        position: static;
    }

    .footLink {
        display: none;
    }

    .footerTop {
        justify-content: center;
        padding: 30px 0 20px;
    }

    .copyRight {
        margin-top: 0;
        display: block;
        line-height: 1.5;
        text-align: center;
        padding: 20px 6%;
    }

    .copyRight p,
    .copyRight a {
        font-size: 14px;
    }

    .footerContact p {
        font-size: 14px;
    }

    .copyRight br {
        display: block;
    }

    .footerContact h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contactLink ul {
        justify-content: center;
    }

    .footer {
        text-align: center;
    }

    .contactLink {
        margin-bottom: 10px;
    }

    .articleTitle {
        margin-bottom: 10px;
    }

    .articleBox {
        margin: 20px auto;
        padding: 0;
    }

    .articleDetail {
        float: none;
        width: 100%;
    }

    .articleTitle h2 {
        line-height: 1.5;
    }

    .articleTag {
        display: block;
    }

    .articleTag span {
        display: inline-block;
        font-size: 14px;
    }

    .articleTag {
        margin: 10px 0;
    }

    .articleDesc p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .articleDesc img {
        margin-bottom: 14px;
    }

    .articleDesc h2 {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .backMenu span {
        font-size: 14px;
    }

    .pageLink p {
        font-size: 14px;
        line-height: 1.75;
    }

    .backMenu {
        padding: 0 10px;
        line-height: 30px;
    }

    .newsList li {
        gap: 10px;
        margin-bottom: 10px;
        flex-direction: column;
        padding: 14px;
    }

    .newsDesc {
        width: 100%;
    }

    .newsImg {
        width: 100%;
        height: auto;
    }

    .newsDesc span {
        margin: 10px 0;
    }

    .newsDesc h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .newsDesc p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsList li a.more {
        font-size: 14px;
        line-height: 36px;
        width: 120px;
    }

    .fpage a {
        font-size: 12px;
    }

    .fpage a {
        width: 28px;
        height: 28px;
        line-height: 28px;
        margin: 0 2px;
    }

    .proMenu form {
        flex: 1;
    }
}

@media screen and (max-width: 780px) {
    .contactForm.enForm .halfForm:last-child li:last-child {
        flex-direction: column;
        align-items: start;
    }

    .contactForm.enForm .halfForm:last-child li:last-child p {
        width: 100%;
    }

    .contactForm.enForm .halfForm:last-child li:last-child input {
        flex: auto;
        width: 100%;
        font-size: 15px;
        height: 52px;
    }

    .contactForm.enForm .halfForm:last-child li:last-child img {
        top: auto;
        bottom: 0;
    }

    .newsDesc h2 {
        font-size: 16px;
    }

    .indeideBanner {
        height: 200px;
    }

    .indeideBanner img {
        height: 100%;
        object-fit: cover;
    }

    .menuChose a {
        font-size: 13px;
    }

    .honor .welfareSwiper .swiper {
        padding: 0 0 30px;
    }

    .companyData ul {
        flex-wrap: wrap;
    }

    .companyData li {
        margin-bottom: 20px;
        width: 33%;
        flex: auto;
    }

    .companyData li:nth-child(3) {
        border: none;
    }

    .header .nav li h2 a,
    .small-header .header .nav li h2 a {
        font-size: 16px;
    }

    .inBannerText h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .inBannerText p {
        font-size: 14px;
    }

    .footLogo img {
        height: 20px;
    }

    .subEwm {
        width: 100px;
        top: 40px;
    }

    .aboutArticle li h2 {
        font-size: 14px;
    }

    .aboutArticle li span {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .aboutArticle h3 {
        font-size: 16px;
    }

    .honorPic img {
        width: 80%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .honor .welfareSwiper .swiper-button-prev {
        left: 9%;
    }

    .honor .welfareSwiper .swiper-button-next {
        right: 9%;
    }

    .honorText p b {
        margin: 0 5px;
    }

    .mc_a1t_title {
        font-size: 9px;
    }

    .mapBox {
        width: 90%;
    }

    .mc_a1t_li1 .mc_a1t_title {
        font-size: 12px;
    }

    .mc_a1t_li2 .mc_a1t_dian {
        border: 2px solid rgb(255, 102, 0);
    }

    .mc_a1t_li3 .mc_a1t_dian {
        border: 2px solid rgb(88, 115, 254);
    }

    .mc_a1t_li1 .mc_a1t_dian {
        border: 3px solid #f21407;
    }

    .menuChose {
        display: block;
    }

    .menuChose a {
        display: inline-block;
        margin: 0 12px;
    }

    .textCell p {
        font-size: 18px;
    }

    .cellCont {
        flex-direction: column;
        gap: 20px;
    }

    .textCell span {
        font-size: 14px;
    }

    .cellBanner {
        padding: 40px 0;
    }

    .halfForm li img {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .formInfor li {
        position: relative;
    }

    .coverPic {
        height: auto;
        gap: 20px;
        padding: 30px 0;
    }

    .coverPic>* {
        position: static !important;
    }
}

.w_width {
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 6;
}

.w_width1 {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 6;
}

.w_width2 {
    max-width: 1800px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 6;
}

.ctext {
    float: left;
    width: 100%;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

@media screen and (max-width: 1024px) {
    .ctext {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.indexTit {
    float: left;
    width: 100%;
    letter-spacing: 0.03rem;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    font-size: 40px;
    color: #222222;
}

.indexTit1 {
    color: #fff;
}

._btn {
    float: left;
}

._btnC {
    width: 100%;
    display: flex;
    justify-content: center;
}

._btn .a {
    float: left;
    background: #00a2e9;
    height: calc(44px + 0.26rem);
    line-height: calc(26px + 0.26rem);
    border-radius: calc(26px + 0.26rem);
    color: #fff;
    font-size: calc(12px + 0.04rem);
    padding: 0 calc(10px + 0.54rem);
    background-position: right bottom;
    transition: all .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
}

._btn .a i {
    display: block;
    width: 6px;
    height: 2px;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    margin: 0 -2px 0 calc(6px + 0.06rem);
    opacity: 0.85;
}

._btn .a img {
    width: 22px;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

._btn .a:hover {
    background: linear-gradient(to left, transparent 50%, #42a9e5 50%);
    background-size: 200% 100%;
    background-position: left bottom;
}



.tyu01 {
    line-height: 200%;
    word-spacing: 7px;
    padding: 14px 0px;
    font-size: 18px;
}

.erer01 {
    position: relative;
    float: left;
    padding-left: 120px;
    margin-top: -37px;
}

.erer001 {
    position: relative;
    float: left;
    padding-left: 140px;
    margin-top: -37px;
}

.kqgkg01 {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .kqgkg02 {
        width: 48%;
        position: relative;
        float: left;
        background: #fff;
        padding: 1%;
        margin-bottom: 44px;
    }

    .kqgkg03 {
        width: 48%;
        position: relative;
        float: right;
        background: #fff;
        padding: 1%;
        margin-bottom: 44px;
    }

    .ggg06 {
        font-size: 34px;
        line-height: 170%;
        padding-top: 34px;
        font-weight: bold;
    }
}

@media screen and (max-width: 1024px) {
    .kqgkg02 {
        width: 100%;
        position: relative;
        float: left;
        background: #fff;
        padding: 1%;
        margin-bottom: 44px;
    }

    .kqgkg03 {
        width: 100%;
        position: relative;
        float: right;
        background: #fff;
        padding: 1%;
        margin-bottom: 44px;
    }

    .ggg06 {
        font-size: 20px;
        line-height: 170%;
        padding-top: 24px;
        font-weight: bold;
    }
}


.ggg01 {
    width: 48%;
    position: relative;
    float: left;
}

.ggg02 {
    width: 48%;
    position: relative;
    float: right;
}

.ggg03 {
    width: 100%;
    clear: both
}

.ggg04 {
    float: right
}

.ggg05 {
    font-size: 16px;
    line-height: 170%;
    color: #666
}



/* 人才招聘 */
.recruit {
    float: left;
    width: 100%;
    margin-top: 0px;
}

.recList {
    float: left;
    width: 100%;
    min-height: 600px;
}

.t_14 {
    float: left;
    width: 100%;
    background: #00a2e9;
}

.t_14 span {
    float: left;
    width: 20.114754%;
    height: 60px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding-left: 80px;
    line-height: 60px;
    color: #fff;
}

.t_14 ul {
    float: left;
    width: 64.885246%;
    padding-right: 0.638298%;
}

.t_14 ul li {
    float: left;
    width: 25%;
    text-align: center;
    font-size: 16px;
    color: #fff;
    line-height: 60px;
    height: 60px;
    font-weight: bold;
}

.d_14 {
    float: left;
    width: 100%;
    margin-top: 10px;
    background: #f5f5f5;
    cursor: pointer;
}

.d_14 .d_14_t {
    float: left;
    width: 20.114754%;
    display: table;
    height: 60px;
}

.d_14 .d_14_t div {
    display: table-cell;
    vertical-align: middle;
}

.d_14 .d_14_t span {
    float: left;
    width: 100%;
    line-height: 30px;
    max-height: 60px;
    overflow: hidden;
    font-size: 16px;
    padding-left: 80px;
}

.d_14 ul {
    float: left;
    width: 74.885246%;
    padding-right: 0.638298%;
    position: relative;
}

.d_14 ul li {
    float: left;
    width: 25%;
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 60px;
    height: 60px;
}

.d_14 ul i {
    position: absolute;
    right: 0;
    top: 0;
    width: 4.638298%;
    height: 60px;
    background: url(../images/bg_14_3.png) no-repeat center;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, .8);
}

.d_14.on i {
    background: url(../images/bg_14_4.png) no-repeat center;
}

.d_14.on {
    background: #00a2e9;
}

.d_14.on .d_14_t span {
    color: #fff;
}

.d_14.on ul li {
    color: #fff;
}

.d_14 .d_14_h {
    display: none;
    float: left;
    width: 100%;
    padding: 32px 0;
    background: #fff;
}

.d_14 .d_14_le {
    float: left;
    width: 47.340426%;
    padding-left: 140px;
    line-height: 30px;
    font-size: 14px;
    color: #666;
}

.d_14 .d_14_le .d_14_h4 {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    height: 24px;
    color: #333;
    margin-bottom: 26px;
}

.d_14 .d_14_le .recBtn {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.d_14 .d_14_le a {
    float: left;
    padding: 0 27px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #00a2e9;
    background-size: 100%;
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
    border-radius: 19px;
}

.d_14 .d_14_le a:hover {
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
}

.d_14 .d_14_le.d_14_r {
    padding-left: 86px;
    border-left: 1px solid #e7e7e7;
    position: relative;
}

.d_14 .d_14_le.d_14_r::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 18px;
    background: #d7d7d7;
    top: 50%;
    margin-top: -9px;
    left: -1px;
}

@media screen and (max-width:1429px) {
    .d_14 .d_14_le {
        padding-left: 80px;
    }

    .d_14 .d_14_le.d_14_r {
        padding-left: 40px;
    }
}

@media screen and (max-width:1199px) {
    .t_14 span {
        padding-left: 10px;
    }

    .d_14 .d_14_t span {
        font-size: 14px;
        padding-left: 10px;
    }

    .d_14 .d_14_le {
        padding-left: 20px;
    }

    .d_14 ul li {
        font-size: 14px;
    }
}

@media screen and (max-width:991px) {
    .recruit {
        margin-top: 40px;
    }

    .t_14 {
        height: 48px;
    }

    .t_14 span,
    .t_14 ul li {
        font-size: 14px;
        line-height: 48px;
        height: 48px;
    }

    .d_14 .d_14_t {
        height: 48px;
    }

    .d_14 .d_14_t span {
        font-size: 12px;
    }

    .d_14 ul li {
        font-size: 12px;
        line-height: 48px;
        height: 48px;
    }

    .d_14 ul i {
        height: 48px;
    }

    .d_14 .d_14_le.d_14_r {
        padding-left: 20px;
    }

    .d_14 .d_14_le.d_14_r .d_14_h4 {
        padding-left: 20px;
    }

    .d_14 .d_14_le a {
        line-height: 30px;
        height: 30px;
        padding: 0 15px;
        font-size: 14px;
    }
}

@media screen and (max-width:767px) {
    .recruit {
        margin-top: 0px;
    }

    .recList {
        min-height: 400px;
    }

    .t_14 {
        display: none;
    }

    .d_14 .d_14_t {
        width: 80%;
    }

    .d_14 .d_14_t span {
        font-size: 14px;
    }

    .d_14 ul {
        width: 17%;
    }

    .d_14 ul i {
        width: 100%;
    }

    .d_14 ul li {
        display: none;
    }

    .d_14 .d_14_h {
        padding: 14px 0;
    }

    .d_14 .d_14_le {
        width: 100%;
        padding-top: 10px;
        padding: 10px 15px 0 15px;
    }

    .d_14 .d_14_le .d_14_h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .d_14 .d_14_le.d_14_r {
        margin-left: 0;
    }

    .d_14 .d_14_le a {
        width: 100px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        margin-top: 19px;
        margin-left: 0;
    }

    .d_14 .d_14_le.d_14_r {
        padding-left: 15px;
        border: 0;
    }

    .d_14 .d_14_le.d_14_r .d_14_h4 {
        padding-left: 0;
    }

    .d_14 .d_14_le.d_14_r::before {
        display: none;
    }
}

.fdfd01 {
    color: #fff;
}


/* 客户案例 */
.case {
    float: left;
    width: 100%;
    margin-top: 42px;
}

.case_m {
    float: left;
    width: 100%;
    margin-top: 45px;
}

.caseLe {
    float: left;
    width: 23%;
    background: #f8f8f8;
    position: relative;
    border-top: 3px solid #f00;
    padding: 5px 0;
    margin-bottom: 30px;
}

.caseLe ul {
    float: left;
    width: 100%;
    padding: 0 20px 85px 20px;
}

.caseLe ul::after {
    position: absolute;
    content: "";
    background: url(images/case01.png) no-repeat;
    width: 15px;
    height: 15px;
    bottom: 0;
    right: 0;
}

.caseLe ul li {
    float: left;
    width: 100%;
    padding-left: 20px;
    position: relative;
}

.caseLe ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    background: url(images/case02.png) no-repeat;
    width: 6px;
    height: 11px;
    margin-top: -5px;
}

.caseLe ul li a {
    float: left;
    width: 100%;
    border-bottom: 1px dotted #d3d3d3;
    display: block;
    line-height: 30px;
    padding: 20px 0;
    font-size: 16px;
    color: #666;
}

.caseLe ul li.on a,
.caseLe ul li a:hover {
    color: #f00;
}

.case_r {
    width: 100%;
    margin-top: -30px;
}

.case_r .homeCaseList {
    margin-top: 0;
}

.case_r .homeCaseList ul {
    margin: 0 -29px;
}

.case_r .homeCaseList ul li {
    width: 50%;
    padding: 0 29px;
}

@media screen and (max-width:991px) {
    .caseLe {
        width: 28%;
    }

    .caseLe ul {
        padding: 0 15px 50px 15px;
    }

    .caseLe ul li a {
        line-height: 24px;
        padding: 10px 0;
        font-size: 14px;
    }

    .case_r {
        width: 70%;
        margin-top: -20px;
    }

    .case_r .homeCaseList ul {
        margin: 0 -15px;
    }

    .case_r .homeCaseList ul li {
        width: 50%;
        padding: 0 15px;
    }
}

@media screen and (max-width:767px) {
    .case {
        margin-top: 20px;
    }

    .case_m {
        margin-top: 25px;
    }

    .caseLe {
        width: 100%;
    }

    .caseLe ul {
        padding: 0 15px 20px 15px;
        display: none;
    }

    .caseLe ul::after {
        display: none;
    }

    .caseLe ul li a {
        line-height: 24px;
        padding: 10px 0;
        font-size: 14px;
    }

    .case_r {
        width: 100%;
    }

    .case_r .homeCaseList ul {
        margin: 0 -5px;
    }

    .case_r .homeCaseList ul li {
        width: 50%;
        padding: 0 5px;
    }
}



/* 解决方案 */
.solution {
    float: left;
    width: 100%;
    margin-top: 42px;
}

.soluList {
    float: right;
    width: 100%;
    margin-top: -20px;
}

.soluList ul {
    margin: 0 -36px;
}

@media screen and (min-width: 1024px) {
    .soluList ul li {
        float: left;
        width: 20%;
        padding: 14px 31px;
        margin-top: 50px;
        border-bottom: 0;
        -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
        -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    }
}

@media screen and (max-width: 1024px) {
    .soluList ul li {
        float: left;
        width: 45%;
        padding: 14px 36px;
        margin-top: 50px;
        border-bottom: 0;
        -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
        -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    }
}


.soluList ul li a {
    float: left;
    width: 100%;
    display: block;
    padding-bottom: 27px;
    min-height: 340px;
    border-bottom: 1px solid #e5e5e5;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.soluList .soluPic {
    float: left;
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.soluList .soluPic img {
    float: left;
    width: 100%;
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.soluList .solu_h {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 112, 173, .5) url(../images/sol02.png) no-repeat center;
    filter: alpha(opacity=00);
    opacity: 0;
}

.soluList ul li a h4 {
    float: left;
    width: 100%;
    line-height: 28px;
    height: 28px;
    margin-top: 26px;
    color: #666;
    font-size: 16px;
}

.soluList ul li a .soluTxt {
    float: left;
    width: 100%;
    line-height: 24px;
    height: 48px;
    margin-top: 10px;
    color: #999;
    font-size: 14px;
    overflow: hidden;
}

.soluList ul li a span {
    float: left;
    width: 100%;
    line-height: 30px;
    height: 34px;
    margin-top: 8px;
    padding-top: 2px;
    color: #999;
    font-size: 14px;
    display: block;
    border-top: 1px solid #fff;
}

.soluList ul li a:hover .solu_h {
    filter: alpha(opacity=100);
    opacity: 1;
}

.soluList ul li a:hover h4 {
    color: #00a2e9;
}

.soluList ul li a:hover span {
    color: #00a2e9;
    border-color: #e5e5e5;
}

@media screen and (max-width:1429px) {
    .soluList ul li a {
        min-height: 412px;
    }
}

@media screen and (max-width:1199px) {
    .solution .caseLe {
        width: 25%;
    }

    .soluList {
        margin-top: 0;
    }

    .soluList ul {
        margin: 0 -15px;
    }

    .soluList ul li {
        padding: 0 15px;
        margin-top: 30px;
    }

    .soluList ul li a {
        min-height: 380px;
    }
}

@media screen and (max-width:991px) {
    .solution .caseLe {
        width: 25%;
    }

    .soluList ul li a {
        min-height: 309px;
        padding-bottom: 15px;
    }

    .soluList ul li a h4 {
        line-height: 28px;
        height: 28px;
        margin-top: 15px;
    }

    .soluList ul li a:hover {
        padding: 15px;
    }
}

@media screen and (max-width:767px) {
    .solution {
        margin-top: 25px;
    }

    .solution .caseLe {
        width: 100%;
    }

    .soluList ul {
        margin: 0 -8px;
    }

    .soluList ul li {
        padding: 0 8px;
        margin-top: 16px;
    }

    .soluList ul li a {
        min-height: inherit;
        padding-bottom: 15px;
    }

    .soluList .solu_h {
        background-size: 30px;
    }

    .soluList ul li a h4 {
        line-height: 24px;
        height: 24px;
        margin-top: 10px;
        font-size: 14px;
    }

    .soluList ul li a .soluTxt {
        line-height: 20px;
        height: 40px;
        margin-top: 5px;
        font-size: 12px;
    }

    .soluList ul li a span {
        line-height: 20px;
        height: 22px;
        margin-top: 5px;
        font-size: 12px;
    }

    .soluList ul li a:hover {
        padding: 0 0 15px 0;
        border-bottom: 1px solid #e5e5e5;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .soluList ul li a:hover span {
        color: #00a2e9;
        border-color: #fff;
    }
}



/* 帮助中心-资料下载 */
.download {
    float: left;
    width: 100%;
    margin-top: 42px;
}

.download ul {
    float: left;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 30px;
}

.download ul li {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.download ul li a {
    float: left;
    width: 100%;
    display: block;
    border: 1px solid #e9e9e9;
    padding: 20px 54px 20px 92px;
    position: relative;
}

.download ul li i {
    position: absolute;
    left: -1px;
    top: -1px;
    width: 92px;
    display: block;
}

.download ul li i img {
    float: left;
    width: 100%;
    display: block;
}

.download ul li i .img02 {
    position: absolute;
    left: 0;
    top: 0;
    filter: alpha(opacity=00);
    opacity: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.download .downloadTit {
    float: left;
    width: 27.113238%;
    padding: 4px 20px 4px 40px;
    border-right: 1px solid #e9e9e9;
}

.download .downloadTit h4 {
    float: left;
    width: 100%;
    line-height: 36px;
    height: 36px;
    font-size: 16px;
    color: #333;
}

.download .downloadTit span {
    float: left;
    width: 100%;
    line-height: 21px;
    height: 21px;
    font-size: 12px;
    color: #888;
    display: block;
    padding-left: 18px;
    background: url(../images/load01.png) no-repeat left;
}

.download .downloadIntr {
    float: right;
    width: 69.218501%;
    line-height: 24px;
    height: 48px;
    font-size: 14px;
    color: #555;
    margin-top: 6px;
    overflow: hidden;
}

.download ul li a:hover i .img02 {
    filter: alpha(opacity=100);
    opacity: 1;
}

.download ul li a:hover .downloadTit h4 {
    color: #0874d9;
}

.download ul li a:hover {
    -webkit-box-shadow: 1px 2px 20px rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 2px 20px rgba(0, 0, 0, .2);
    box-shadow: 1px 2px 20px rgba(0, 0, 0, .2);
}

@media screen and (max-width:1429px) {
    .download ul li a {
        padding: 20px 30px 20px 92px;
    }

    .download .downloadTit {
        width: 32%;
    }

    .download .downloadIntr {
        width: 65%;
    }
}

@media screen and (max-width:1199px) {
    .download ul li a {
        padding: 20px 30px 20px 92px;
    }

    .download .downloadTit {
        width: 32%;
        padding: 4px 20px 4px 20px;
    }

    .download .downloadIntr {
        width: 65%;
    }
}

@media screen and (max-width:991px) {
    .download ul li a {
        padding: 10px 20px 10px 62px;
    }

    .download ul li i {
        width: 65px;
    }

    .download .downloadTit {
        width: 32%;
        padding: 4px 20px 4px 20px;
    }

    .download .downloadTit h4 {
        line-height: 26px;
        height: 26px;
        font-size: 14px;
    }

    .download .downloadTit span {
        line-height: 20px;
        height: 20px;
        padding-left: 16px;
    }

    .download .downloadIntr {
        width: 65%;
        margin-top: 3px;
    }
}

@media screen and (max-width:767px) {
    .download ul li {
        margin-top: 15px;
    }

    .download ul li a {
        padding: 10px 15px;
    }

    .download ul li i {
        width: 40px;
        left: 15px;
        top: 14px;
    }

    .download .downloadTit {
        width: 100%;
        padding: 4px 0 8px 50px;
        border-right: 0;
        border-bottom: 1px solid #e9e9e9;
    }

    .download .downloadTit h4 {
        line-height: 26px;
        height: 26px;
        font-size: 14px;
    }

    .download .downloadTit span {
        line-height: 20px;
        height: 20px;
        padding-left: 16px;
    }

    .download .downloadIntr {
        width: 100%;
        margin-top: 8px;
        line-height: 24px;
        max-height: 96px;
        height: auto;
        font-size: 13px;
    }
}



@media screen and (min-width: 1024px) {
    .price {
        background: #fff;
        padding: 1em;
        padding-top: 30px;
    }

    .price span {
        text-align: center;
        display: block;
        font-size: 14px;
        height: 50px;
        line-height: 50px;
        color: #333;
    }
}

@media screen and (max-width: 1024px) {
    .price {
        background: #fff;
        padding: 1em;
        padding-top: 0px;
    }

    .price span {
        text-align: center;
        display: block;
        font-size: 14px;
        height: 50px;
        line-height: 50px;
        color: #333;
    }
}


.container001 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px
}

h1 {
    text-align: center;
    font-size: 36px;
    padding-top: 44px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
}

@media screen and (min-width: 1024px) {
    .product-grid03 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 1024px) {
    .product-grid03 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}


.product-card03 {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 鼠标悬停特效：上浮 + 阴影增强 */
.product-card03:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 图片放大特效 */
.product-card03:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    padding: 16px 20px;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    text-align: center;
    background: #ffffff;
}

/* 平板端适配：2列布局 */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-image {
        height: 180px;
    }

    .product-name {
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* 手机端适配：单列布局 */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* 整体容器 */

@media screen and (min-width: 1024px) {
    .container02 {
        max-width: 1600px;
        margin: 0 auto;
        padding: 60px 20px;
    }
}

@media screen and (max-width: 1024px) {
    .container02 {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0px 20px;
    }
}

/* 标题 */
.title {
    text-align: center;
    font-size: 36px;
    padding-top: 44px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
}

/* 内容布局 */
.content {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* 左侧图片区域 */
.left {
    flex: 1;
    position: relative;
}

.left img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* 播放按钮 */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #006699;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background-color: #005580;
}

/* 右侧列表 */
.right {
    flex: 1;
}

.item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: #e6f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006699;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-text h3 {
    font-size: 18px;
    color: #003355;
    margin-bottom: 6px;
}

.item-text p {
    color: #666;
    line-height: 1.6;
}

/* 视频弹窗遮罩 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* 视频容器 */
.video-box {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
}

video {
    width: 100%;
    display: block;
}

/* 适配手机 */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}


@media screen and (min-width: 1024px) {
    .container03 {
        max-width: 1600px;
        margin: 0 auto;
        padding: 60px 20px
    }
}

@media screen and (max-width: 1024px) {
    .container03 {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0px 20px
    }
}


.section-title {
    text-align: center;
    font-size: 36px;
    padding-top: 44px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto 40px auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-description {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

/* 移动端适配 */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 32px;
    }

    .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .card-image {
        height: 240px;
    }
}

/* 证书容器：响应式网格布局 */
.certificate-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    /* 桌面端5列，移动端自动适配但隐藏最后一张 */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* 证书卡片样式 */
.certificate-card {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* 证书图片样式 */
.certificate-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 水印文字样式 */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    font-size: 36px;
    font-weight: bold;
    color: rgba(192, 192, 192, 0.3);
    /* 浅灰色半透明 */
    pointer-events: none;
    /* 不遮挡点击 */
    z-index: 10;
}

/* 移动端适配：隐藏第5张，调整为4列 */
@media (max-width: 768px) {
    .certificate-container {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 隐藏第5张证书 */
    .certificate-card:nth-child(5) {
        display: none;
    }
}

/* 小屏手机适配：调整为2列（可选优化） */
@media (max-width: 480px) {
    .certificate-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}




/* 网格布局 */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* 卡片样式 */
.card {
    flex: 1;
    min-width: 260px;
    background: white;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 图标圆形背景 */
.icon-box01 {
    width: 64px;
    height: 64px;
    margin: 0px auto;
    border-radius: 50%;
    background-color: rgba(22, 93, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* 图标文字替代（纯CSS实现，不用图片） */
.icon {
    font-size: 26px;
    color: #165DFF;
    font-weight: bold;
}

/* 标题 */
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

/* 描述文本 */
.card-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}


@media screen and (min-width: 1024px) {
    .cd01 {
        display: none
    }

    .cd02 {
        display: block
    }
}

@media screen and (max-width: 1024px) {
    .cd01 {
        display: block
    }

    .cd02 {
        display: none
    }
}


/* 移动端适配容器 */
.product-container {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    margin: 0 auto;
}

.product-grid01 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product-card01 {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 鼠标悬停特效：上浮 + 阴影增强 */
.product-card01:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* 响应式断点 - 平板端 */
@media (min-width: 768px) {
    .product-grid01 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 响应式断点 - 桌面端 */
@media (min-width: 1024px) {
    .product-grid01 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* 产品卡片样式 */
.product-card01 {
    display: flex;
    padding: 10px;
    flex-direction: column;
    height: 100%;
}

/* 图标样式 */
.product-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
    object-fit: contain;
}

/* 标题样式 - 强制使用px单位 */
.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* 链接列表样式 */
.product-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 链接样式 */
.product-links a {
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.product-links a:hover {
    color: #003399;
    text-decoration: underline;
}

/* 分隔线样式 */
.section-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}


/* Breadcrumb */
.breadcrumb {
    padding: 20px 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.breadcrumb a {
    color: #ff8000;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb span {
    color: #333;
    margin-left: 5px;
}

/* Layout */
.container01 {
    display: flex;
    padding: 0px;
    gap: 20px;
    flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {

    /* Sidebar */
    .sidebar {
        width: 270px;
        flex-shrink: 0;
        background-color: #fff;
        border-radius: 4px;
        padding: 20px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
}

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

    /* Sidebar */
    .sidebar {
        width: 270px;
        flex-shrink: 0;
        background-color: #fff;
        border-radius: 4px;
        padding: 0px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
}

.search-box {
    display: flex;
    margin-bottom: 30px;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.search-box button {
    background-color: #0099ff;
    color: #fff;
    border: none;
    padding: 0 18px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.sidebar h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar .menu-item {
    display: flex;
    font-weight: 900;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.sidebar .menu-item:hover {
    color: #0099ff;
}

.sidebar .menu-item::after {
    content: "▶";
    font-size: 12px;
    color: #666;
}

.sidebar .submenu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

.sidebar .menu-item.active+.submenu {
    display: block;
}

/* Main Content */
.main-content {
    flex: 1;
    min-width: 300px;
}

/* Filter Bar */
.filter-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-item {
    position: relative;
}

.filter-item select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.filter-btn {
    background-color: #0099ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card img:hover {
    width: 100%;
    height: 200px;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    object-fit: contain;
    /* 保持比例不变形 */
    transition: all 0.3s ease;
    /* 过渡时间 + 平滑曲线 */
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 14px;
    color: #ff8000;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

.submenu .gtgt01:link {
    font-size: 16px;
    text-decoration: none;
    line-height: 200%;
    color: #333;
    padding: 7px 4px;
}

.submenu .gtgt01:visited {
    font-size: 16px;
    text-decoration: none;
    line-height: 200%;
    color: #333;
    padding: 7px 4px;
}

.submenu p:hover {
    background: #00a2e9;
}

.submenu .gtgt01:hover {
    font-size: 16px;
    text-decoration: none;
    line-height: 200%;
    color: #fff;
    padding: 7px 4px;
}

.submenu p.active {
    background: #00a2e9;
}

.submenu p.active .gtgt01 {
    font-size: 16px;
    text-decoration: none;
    line-height: 200%;
    color: #fff;
    padding: 7px 4px;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 10px 15px;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #f60;
}

.breadcrumb span {
    color: #f60;
}

/* 主体容器 */
.product-container08 {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 图片展示区域 */
.image-gallery {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

/* 缩略图控制区 */
.thumbnails-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.arrow-btn:hover {
    color: #f60;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow: hidden;
    flex: 1;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #f60;
}

/* 产品信息区域 */
.product-info {
    flex: 1;
    min-width: 300px;
}

.product-title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 20px;
    color: #333;
}

.section-title {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #555;
}

.description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 分享按钮 */
.share-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.google {
    background-color: #dd4b39;
}


.tab-wrapper {
    text-align: center;
}

.tab-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.tab-btn {
    padding: 20px 30px;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background-color: #0078d7;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 120, 215, 0.3);
}

.tab-btn.inactive {
    background-color: #a0a0a0;
    color: #ffffff;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.content-area {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式适配 */
@media (max-width: 768px) {
    .tab-btn {
        padding: 15px 10px;
        font-size: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .container04 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1600px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1024px) {
    .container04 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 90%;
        margin: 0 auto;
    }
}


.card04 {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.card04:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.image-wrapper {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .image-wrapper img {
    transform: scale(1.05);
}

.text-content {
    padding: 16px;
    text-align: center;
}

.series-text {
    font-size: 12px;
    color: #666666;
    margin-bottom: 8px;
}

.title-text {
    font-size: 16px;
    color: #f37c20;
    font-weight: 600;
    line-height: 1.4;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .container04 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr;
    }
}



.product-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.top-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-container .top-section {
    position: relative;
    gap: 40px;
}

.product-container .top-section .video-wrapper {
    background-color: #fff;
    width: 50%;
    flex: 1;
}

.product-container .top-section .product-info {
    width: 50%;
}

@media (max-width: 768px) {
    .product-container .top-section .video-wrapper {
        width: 100%;
        flex: 1;
    }

    .product-container .top-section .product-info {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .top-section {
        flex-direction: row;
    }

    .video-wrapper {
        flex: 2;
    }

    .product-info {
        flex: 1;
    }
}

.video-wrapper {
    position: relative;
    background-color: #000000;
    border-radius: 4px;
    overflow: hidden;
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: url('') no-repeat center center;
    background-size: cover;
    position: relative;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: center;
    gap: 12px;
}

.play-btn {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 40%;
    height: 100%;
    background: #ffffff;
}

.time-display {
    color: #fff;
    font-size: 12px;
}

.video-controls-right {
    display: flex;
    gap: 16px;
    margin-left: auto;
}

.control-icon {
    color: #fff;
    font-size: 16px;
}

.deno-logo {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #ffffff;
    font-weight: bold;
    font-size: 28px;
    line-height: 1;
}

.deno-logo small {
    font-size: 10px;
    display: block;
    font-weight: normal;
}

.product-info h1 {
    font-size: 28px;
    text-align: left;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-features {
    font-size: 16px;
    margin-bottom: 24px;
    color: #444444;
}

.product-specs {
    border-top: 1px solid #eee;
}

.spec-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.spec-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.spec-value {
    font-size: 16px;
    color: #555;
}

.description-section {
    margin-top: 16px;
}

.description-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #222;
}

.description-section p {
    font-size: 16px;
    color: #444;
    text-align: justify;
}


@media screen and (min-width: 1024px) {
    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
        gap: 20px;
        max-width: 1600px;
        margin: 44px auto;
    }
}

@media screen and (max-width: 1024px) {
    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
        gap: 20px;
        max-width: 90%;
        margin: 44px auto;
    }
}


.video-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid white;
    margin-left: 3px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    padding: 15px;
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.4;
}

/* 弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background-color: #000;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

/* 给每个卡片设置背景图（这里用占位图，你可以替换成自己的图片地址） */
.card1 {
    background-image: url('../images/c1.jpg');
}

.card2 {
    background-image: url('https://via.placeholder.com/600x400/ddd/bbb?text=White+Gondola');
}

.card3 {
    background-image: url('https://via.placeholder.com/600x400/ccc/aaa?text=Wooden+Shelf');
}

.card4 {
    background-image: url('https://via.placeholder.com/600x400/bbb/999?text=Light+Duty+Rack');
}

.card5 {
    background-image: url('https://via.placeholder.com/600x400/aaa/888?text=Hardware+Display');
}

.card6 {
    background-image: url('https://via.placeholder.com/600x400/999/777?text=Grocery+Rack');
}

.card7 {
    background-image: url('https://via.placeholder.com/600x400/888/666?text=Mezzanine+System');
}

.card8 {
    background-image: url('https://via.placeholder.com/600x400/777/555?text=Warehouse+Rack');
}




.cfcf01 {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    padding: 24px;
    line-height: 170%;
    font-size: 16px;
}


@media screen and (min-width: 1024px) {
    .card-container07 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1600px;
        margin: 44px auto;
    }
}

@media screen and (max-width: 1024px) {
    .card-container07 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 90%;
        margin: 44px auto;
    }
}

.card07 {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card07:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-image07 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content07 {
    padding: 24px;
}

.card-title07 {
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: center;
}

.card-text07 {
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.read-more07 {
    display: block;
    color: #007bff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 30px;
    text-align: center;
    transition: color 0.2s ease;
}

.read-more07:hover {
    color: #0056b3;
}

.card-date07 {
    color: #999999;
    font-size: 12px;
    text-align: center;
    display: block;
}

@media screen and (min-width: 1024px) {
    .container08 {
        max-width: 1600px;
        margin: 44px auto;
        display: flex;
        gap: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .container08 {
        max-width: 90%;
        margin: 44px auto;
        display: flex;
        gap: 40px;
    }
}

/* 左侧目录栏 */
.sidebar08 {
    width: 280px;
    flex-shrink: 0;
}

.sidebar08 ul {
    list-style: none;
}

.sidebar08 li {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.sidebar08 li>a {
    color: #007bff;
    text-decoration: none;
}

.sidebar08 li>a:hover {
    text-decoration: underline;
}

.sidebar08 li ul {
    margin-left: 20px;
    margin-top: 4px;
}

.sidebar08 li ul li::before {
    content: "○ ";
    color: #007bff;
    font-size: 12px;
}

.sidebar08 li.active>a {
    font-weight: bold;
}

/* 右侧内容区 */
.content08 {
    flex: 1;
}

.section08 {
    margin-bottom: 60px;
}

.section08 h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.section08 h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #007bff;
}

.section08 .divider {
    width: 100%;
    height: 1px;
    background-color: #007bff;
    margin-bottom: 20px;
}

.section08 .intro {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.section08 ul {
    list-style: disc;
    padding-left: 25px;
}

.section08 li {
    font-size: 15px;
    line-height: 1.6;
    margin: 10px 0;
    color: #333;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .container08 {
        flex-direction: column;
        gap: 20px;
    }

    .sidebar08 {
        width: 100%;
    }

    .section08 h2 {
        font-size: 22px;
    }
}


.rtrt01 {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    padding: 24px;
    font-size: 16px;
    line-height: 170%;
    margin: 44px auto;
    max-width: 1600px;
}


.datasheet-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.datasheet-table th,
.datasheet-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.datasheet-table th {
    background-color: #ffffff;
    font-size: 16px;
    color: #111111;
    font-weight: 600;
}

.datasheet-table tr:nth-child(odd) {
    background-color: #eeeeee;
}

.download-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #0090d8;
    border-radius: 50%;
    position: relative;
}

.download-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 14px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 70%, 70% 100%, 30% 100%, 30% 70%, 0 70%);
}

.download-icon::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #ffffff;
}

.datasheet-name {
    font-size: 16px;
    color: #333333;
}





@media screen and (min-width: 1024px) {
    .catalog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
        gap: 20px;
        max-width: 1600px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1024px) {
    .catalog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: 20px;
        max-width: 90%;
        margin: 0 auto;
    }
}

.catalog-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.catalog-card:nth-child(1),
.catalog-card:nth-child(6) {
    border-color: #009933;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #009933;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 153, 51, 0.05), transparent);
    transition: left 0.5s ease;
}

.catalog-card:hover::before {
    left: 100%;
}

.file-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.card-date {
    font-size: 18px;
    color: #009933;
    margin-bottom: 25px;
}

.download-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #009933;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #007a29;
    transform: scale(1.05);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .catalog-card {
        flex-direction: column;
        text-align: center;
    }

    .file-icon {
        margin-bottom: 10px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-date {
        font-size: 16px;
    }
}