@charset "utf-8";

* {
    box-sizing: border-box;
}

:root {
    --blue: #0e1743;
    --red: #cd1517;
    --white: #fff;
    --black: #111;
    --lightgrey: #f9f9f9;
    --darkgrey: #999;
    --fontSize-12: 12px;
    --fontSize-14: 14px;
    --fontSize-15: 15px;
    --fontSize-16: 16px;
    --fontSize-18: 18px;
    --fontSize-20: 20px;
    --fontSize-22: 22px;
    --fontSize-24: 24px;
    --fontSize-26: 26px;
    --fontSize-28: 28px;
    --fontSize-30: 30px;
    --fontSize-32: 32px;
    --fontSize-34: 34px;
    --fontSize-36: 36px;
    --fontSize-38: 38px;
    --fontSize-40: 40px;
    --fontSize-42: 42px;
    --fontSize-48: 48px;
    --fontSize-64: 64px;
    --grey444: #444;
    --grey666: #666;
    --grey999: #999;
    --greyccc: #ccc;
    --greyeee: #eee;
    --greyddd: #ddd;
    --lh140: 140%;
    --lh160: 160%;
    --lh180: 180%;
    --lh200: 200%;
    --lh220: 220%;
    --vh100: 100vh;
}

body {
    color: #000;
}


@font-face {
    font-family: "Source Han Sans SC";
    src: url("../fonts/SourceHanSansSC-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Han Sans SC Bold";
    src: url("../fonts/SourceHanSansSC-Bold.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body,
button,
input,
select,
textarea {
    font-family:
        Source Han Sans SC,
        helvetica neue,
        arial,
        hiragino sans gb,
        microsoft yahei ui,
        microsoft yahei,
        simsun,
        sans-serif;
    font-size: var(--fontSize-16);
}

body,
p,
h1,
ul,
li,
input,
img,
figure,
h3,
h1,
h2,
h4,
h5,
h6,
dl,
dd,
dt {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
}

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="reset"],
input[type="button"],
textarea {
    -webkit-appearance: none;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: "Poppins", Sans-serif;
}

small {
    font-size: 10px;
}

ul,
ol {
    list-style: none;
}

sub {
    bottom: 0;
}

a {
    text-decoration: none;
    color: var(--black);
}

a:hover {
    color: var(--red);
    text-decoration: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

abbr[title] {
    border-bottom: 1px dotted;
    cursor: footer-help;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
    max-width: 100%;
}

a img {
    vertical-align: text-bottom;
}

:focus {
    outline: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

button,
input,
select {
    vertical-align: middle;
}

/* 更改输入框的 placeholder 文本颜色 */
input::placeholder,
textarea::placeholder {
    color: #bababa;
    /* 或者你想要的任何颜色值 */
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

.text-red {
    color: var(--red);
}

.text-blue {
    color: var(--blue);
}

.text-grey666 {
    color: #666;
}

.text-grey999 {
    color: #999;
}

.bg-blue {
    background: var(--blue);
}

.bg-grey {
    background: var(--lightgrey);
}

.bg-lightgrey {
    background: var(--lightgrey);
}

.text-capital {
    text-transform: uppercase;
}

.arial {
    font-family: Arial, Helvetica, sans-serif;
}

.lh180 {
    line-height: 180%;
}

.lh200 {
    line-height: 200%;
}

.lh220 {
    line-height: 220%;
}

/**************滚动条样式**********/

::-webkit-scrollbar {
    width: 10px;
    height: 1px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.1);
}

.photo img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.photo:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.photo em {
    display: block;
    overflow: hidden;
}

.iconfont {
    font-size: inherit;
}

.pt-item {
    padding-top: 60px;
}

.pb-item {
    padding-bottom: 60px;
}

.py-item {
    padding-top: 60px;
    padding-bottom: 60px;
}

.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}

/**************框架公用样式**********/

header {
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
}

header .logo img {
    height: 40px;
}

header .logo h6 {
    font-size: var(--fontSize-14);
    letter-spacing: 1.5px;
    margin-top: 2px;
}

header .header-tel .icon-phone {
    font-size: var(--fontSize-40);
    margin-right: 10px;
}

header .header-tel h4 {
    line-height: 1.2;
}

header .header-language {
    font-size: var(--fontSize-18);
    margin-left: 50px;
}

header .header-language a {
    display: block;
}

header .header-language a.current {
    color: var(--red);
}

header .header-language a+a::before {
    content: "";
    width: 1px;
    height: 18px;
    display: inline-block;
    margin: 0 15px;
    background: var(--greyccc);
    vertical-align: middle;
}

.nav li {
    margin: 0 20px;
}

.nav li a {
    height: 100px;
    line-height: 100px;
    font-size: var(--fontSize-18);
    display: block;
    position: relative;
}

.nav li a:hover,
.nav li a.current {
    color: var(--red);
}

.nav li a::after {
    content: "";
    height: 3px;
    width: 0;
    display: block;
    position: absolute;
    background: var(--red);
    transition: 0.4s;
    margin: 0 auto;
    bottom: 15px;
    left: 0;
    right: 0;
    border-radius: 20px;
}

.nav li a:hover::after,
.nav li a.current::after {
    width: 100%;
}

/**************手机导航**********/

.sp_nav,
.sjj_nav {
    display: none;
}

.sp_nav {
    width: 30px;
    position: absolute;
    top: 25px;
    right: 15px;
    cursor: pointer;
    color: #f333;
    z-index: 999;
}

.sp_nav span {
    display: block;
    width: 30px;
    height: 2px;
    position: absolute;
    transition: all ease 0.35s;
}

.sp_nav span {
    background: #333;
}

.sp_nav_se span {
    width: 24px;
    background: #fff;
}

.sp_nav span:nth-of-type(1) {
    top: 0px;
}

.sp_nav span:nth-of-type(2) {
    top: 10px;
}

.sp_nav span:nth-of-type(3) {
    top: 20px;
}

.sp_nav_se span:nth-of-type(1) {
    top: 20px;
    transform: rotate(45deg);
}

.sp_nav_se span:nth-of-type(2) {
    width: 0;
}

.sp_nav_se span:nth-of-type(3) {
    top: 20px;
    transform: rotate(-45deg);
}

.sjj_nav {
    position: fixed;
    z-index: 9;
    background: #eee;
    width: 100%;
    height: calc(100% - 104px);
    height: 100vh;
    line-height: 40px;
    top: -100vh;
    left: 0;
    right: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
    margin: 0 auto;
}

.nav_show {
    top: 0;
    padding: 60px 30px;
    background: #333;
}

.sjj_nav>ul>li:first-child {
    overflow: hidden;
    border-top: 0;
}

.sjj_nav>ul>li:first-child>a {
    float: left;
    width: calc(100% - 70px);
}

.sjj_nav ul li i {
    position: absolute;
    right: 0px;
}

.sjj_nav ul li i {
    transition: 0.4s;
}

.sjj_nav ul li .sjj_nav_i_se i {
    transform: rotate(90deg);
}

.sjj_nav ul li {
    position: relative;
    line-height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: var(--fontSize-16);
}

.sjj_nav ul li ul {
    display: none;
}

.sjj_nav ul li a {
    color: #ccc;
    width: 100%;
    display: block;
}

.sjj_nav ul li li {
    margin-left: 20px;
}

.sjj_nav ul li li:last-child {
    border-bottom: none;
}

.sjj_nav ul li ul li a {
    color: #999;
    display: block;
    text-align: left;
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px;
}

/**************banner**********/
.banner {
    margin-top: 100px;
}

.banner .swiper-slide .swiper-slide-text {
    height: 500px;
    width: 40%;
    position: relative;
    z-index: 5;
    color: var(--white);
}

.banner .swiper-slide .swiper-slide-text h2 {
    font-size: var(--fontSize-38);
}

.banner .swiper-slide .swiper-slide-text h4 {
    line-height: 160%;
    margin: 24px 0 48px;
}

.banner .swiper-pagination-bullet {
    background-color: #fff;
    width: 30px;
    height: 4px;
    opacity: 0.8;
    border-radius: 2px;
}

.banner .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--red);
}

.banner-bottom-text {
    background: #021d3d;
}

.banner-bottom-text li {
    display: flex;
    align-items: center;
    padding: 0 30px;
    justify-content: center;
    flex: 1;
    position: relative;
}

.banner-bottom-text li i {
    font-size: 60px;
    margin-right: 20px;
}

.banner-bottom-text li span {
    font-size: var(--fontSize-18);
}

.banner-bottom-text li+li::before {
    display: inline-block;
    position: absolute;
    left: 0;
    content: "";
    height: 50px;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
    vertical-align: middle;
}

.click-more {
    padding: 10px 20px;
    font-size: var(--fontSize-18);
    background: var(--red);
    border-radius: 5px;
    display: flex;
    color: var(--white);
    transition: 0.4s;
    justify-content: center;
}

.click-more:hover {
    background: #a81013;
    color: var(--white);
}

.click-more1 {
    background: var(--red);
    padding: 10px 22px;
    font-size: var(--fontSize-18);
    border-radius: 5px;
    transition: 0.4s;
    border: 1px solid var(--red);
    white-space: nowrap;
    color: var(--white);
}

.click-more1:hover {
    background: #a81013;
    border: 1px solid #a81013;
    color: var(--white);
}

.products-list {
    gap: 30px 1%;
}

.products-list li {
    width: 19.2%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.products-list li em, .products-category .swiper-slide em {
    position: relative;
    padding-bottom: 70%;
}

.products-list li em img, .products-category .swiper-slide em img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-list li .click-more1, .products-category .swiper-slide .click-more1 {
    padding: 5px 10px;
    font-size: var(--fontSize-14);
}

.products-category .swiper-container {
    width: calc(100% - 100px);
    padding: 20px 10px
}

.products-category .swiper-slide {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.products-category .swiper-button-next, .products-category .swiper-button-prev {
    border: 2px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fontSize-18);
}

.products-category .swiper-button-next:hover, .products-category .swiper-button-prev:hover {
    background: var(--red);
    color: white;
    border: 2px solid var(--red);
}

.products-category .swiper-button-prev {
    left: 0;
}

.products-category .swiper-button-next {
    right: 0;
}

.click-more2 {
    display: flex;
    align-items: center;
}

.click-more2 i {
    transition: 0.4s;
}

.click-more2:hover i {
    padding-left: 10px;
}

.click-more3 {
    border: 1px solid #fff;
    color: var(--white);
    padding: 10px 20px;
    font-size: var(--fontSize-18);
    border-radius: 5px;
    display: flex;
    transition: 0.4s;
    justify-content: center;
}

.click-more3:hover {
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
}

.solution-list {
    gap: 30px 1%;
}

.solution-list li {
    width: 19.2%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.solution-list li article {
    bottom: 0;
    padding: 5px 15px;
    z-index: 5;
}

.solution-list li article::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 14, 59, 1), rgba(0, 14, 59, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    left: 0;
    z-index: -1;
}

.solution-list li article i {
    font-size: var(--fontSize-20);
    line-height: 1.4;
}

.solution-list li article section {
    width: calc(100% - 75px);
}

.advantage-list {
    border-bottom: 1px solid #eee;
}

.advantage-list .advantage-list-left {
    width: 63%;
}

.advantage-list .advantage-list-left ul li {
    padding: 0 15px;
    flex: 1;
}

.advantage-list .advantage-list-left ul li i {
    font-size: 56px;
}

.advantage-list .advantage-list-left ul li p {
    font-size: var(--fontSize-14);
}

.advantage-list .advantage-list-left ul li+li {
    border-left: 1px solid #eee;
}

.advantage-list .advantage-list-right {
    width: 35%;
}

.advantage-list .advantage-list-right img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

.advantage-list .advantage-list-right li+li {
    margin-top: 20px;
}

.advantage-list .advantage-list-right li section h3 {
    line-height: 1.2;
}

.advantage-list .advantage-list-right li section span {
    margin-bottom: 5px;
}

.news-list {
    gap: 30px 1.5%;
}

.news-list li {
    width: 23.875%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.news-list li em {
    position: relative;
    padding-bottom: 60%;
}

.news-list li em img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list li section {
    padding: 20px;
}

.ad-contact ul {
    width: calc(100% - 850px);
}

.ad-contact li {
    flex: 1;
}

.ad-contact li i {
    font-size: 60px;
    padding: 0 30px;
}

.ad-contact li+li {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cooperation-list .project-name {
    width: 380px;
}

.cooperation-list .swiper-container {
    width: calc(100% - 400px);
}

.cooperation-list .swiper-container .swiper-slide {
    padding: 15px;
}

footer,
footer a {
    color: var(--white);
}

footer {
    padding-top: 60px;
}

footer .footer-link>a>img {
    height: 40px;
}

footer .footer-link>a>h6 {
    font-size: var(--fontSize-14);
    margin-top: 2px;
    letter-spacing: 1.5px;
}

footer .footer-link section a {
    font-size: var(--fontSize-20);
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

footer .footer-link section a+a {
    margin-left: 15px;
}

footer .footer-link .footer-link-ewm img {
    display: none;
    width: 100px;
    max-width: initial;
    position: absolute;
    top: -100px;
}

footer .footer-link .footer-link-ewm:hover img {
    display: block;
}

footer ol {
    width: calc(100% - 650px);
    line-height: 2;
}

footer ol dl dt {
    font-size: var(--fontSize-18);
    margin-bottom: 10px;
}

footer ol dl dd {
    opacity: 0.6;
}

footer ol dl dd:hover {
    opacity: 1;
}

footer .footer-ewm {
    width: 130px;
}

.min-banner {
    margin-top: 100px;
}

.min-banner .container-fluid {
    left: 0;
    right: 0;
    z-index: 5;
}

.min-banner img {
    min-height: 320px;
    object-fit: cover;
}

.min-banner .container-fluid section {
    width: 60%;
}

.min-banner.min-banner-contact1 .container-fluid section {
    width: 70%;
}

.min-banner .container-fluid section h1 {
    font-size: var(--fontSize-40);
}

.min-banner .container-fluid section h1, .min-banner .container-fluid section h4 {
    line-height: 2;
}

.min-banner.min-banner-contact1 .container-fluid ul {
    gap: 25px;
    margin-top: 50px;
}

.min-banner.min-banner-contact1 .container-fluid ul li {
    display: flex;
    align-items: center;
}

.min-banner.min-banner-contact1 .container-fluid ul li i {
    font-size: 55px;
    margin-right: 5px;
}

.min-banner.min-banner-contact1 .container-fluid ul li article {
    line-height: 1.2;
}

.min-banner.min-banner-contact1 .container-fluid ul li article p {
    font-size: var(--fontSize-14);
}

.project-name section {
    width: 100%;
}

.project-name1::after {
    content: "";
    width: 30px;
    height: 3px;
    background: var(--red);
    display: block;
    border-radius: 5px;
    margin-top: 5px;
}

.about-main .about-main-l {
    width: 30%;
    border-right: 2px solid #eee;
    padding-right: 20px;
}

.about-main .about-main-r {
    width: 68%;
}

.about-main .about-main-r-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 15px;
}

/* .about-main .about-main-r-list li+li {
    border-left: 1px solid #eee;
} */

.about-main .about-main-r-list li h3 span {
    font-size: var(--fontSize-16);
}

.about-main .about-main-r-list li h6 {
    width: 100%;
}

.about-main .about-main-r-list li p {
    text-align: center;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
}

.about-main .about-main-r-list li i {
    font-size: 60px;
    margin-right: 10px;
}

.about-equipment-list {
    gap: 1%;
}

.about-equipment-list li {
    width: 24.25%;
    border-radius: 10px;
    overflow: hidden;
}

.about-advantage {
    background: #f2f3f5;
}

.about-advantage .container-fluid {
    padding-right: 0;
}

.about-advantage .about-advantage-l {
    width: 68%;
}

.about-advantage .about-advantage-l li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px;
    width: 20%;
}

.about-advantage .about-advantage-l li p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.8;
}

.about-advantage .about-advantage-l li+li {
    border-left: 1px solid #ddd;
}

.about-advantage .about-advantage-l li i {
    font-size: var(--fontSize-30);
}

.about-advantage .about-advantage-r {
    width: 30%;
}

.menu-list a {
    font-size: var(--fontSize-22);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bolder;
    margin: 0 5px;
}

.menu-list a:hover,
.menu-list a.current {
    background: var(--blue);
    color: var(--white);
}

.product-content-list {
    gap: 30px 2%;
}

.product-content-list li {
    width: 23.5%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
}

.product-content-list li em {
    position: relative;
    padding-bottom: 70%;
}

.product-content-list li em img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content-list li p span {
    width: calc(100% - 20px);
}

.product-content-list li p i {
    font-size: var(--fontSize-24);
    line-height: 1.2;
}

.pro-ad {
    background: #f2f3f5;
}

.pro-ad li {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 1;
}

.pro-ad li i {
    font-size: 50px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
}

.pro-ad li+li::before {
    content: "";
    height: 60px;
    width: 2px;
    background: #ebeaea;
    display: block;
    position: absolute;
    left: 0;
}

.pro-solution,
.cooperation-list {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-solution ul {
    padding: 0 10%;
}

.pro-solution li {
    flex: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-solution li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.click-more4 {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    font-size: var(--fontSize-18);
    border-radius: 5px;
    display: flex;
    transition: 0.4s;
    justify-content: center;
}

.click-more4:hover {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.pro-solution figure a {
    padding: 15px 50px;
}

.industry-solutions-name {
    width: 240px;
}

.industry-solutions .swiper-container {
    width: calc(100% - 280px);
}

.industry-solutions .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
}

.industry-solutions .swiper-slide img {
    width: 100%;
    display: block;
}

.industry-solutions .swiper-slide section {
    bottom: 0;
    z-index: 5;
    padding: 10px 15px;
}

.industry-solutions .swiper-slide section::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 14, 59, 1), rgba(0, 14, 59, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    left: 0;
    bottom: 0;
    z-index: -1;
}

.industry-solutions .swiper-slide section p em {
    font-size: var(--fontSize-14);
}

.industry-solutions .swiper-slide section p span {
    background: var(--red);
    color: var(--white);
    padding: 1px 5px;
    display: inline-block;
    font-size: var(--fontSize-14);
    border-radius: 3px;
}

.industry-solutions .swiper-button-next {
    right: 60px;
    border: 2px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fontSize-20);
}

.difficulty-content {
    background: #f2f3f5;
}

.difficulty-content .difficulty-content-l {
    width: 42%;
    border-right: 1px solid #ddd;
    padding-right: 15px;
}

.difficulty-content .difficulty-content-l li {
    padding: 0 1px;
    flex: 1;
}

.difficulty-content .difficulty-content-l li i {
    font-size: 35px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    background: var(--blue);
    color: white;
    display: inline-block;
    margin: 15px 0;
}

.difficulty-content .difficulty-content-r {
    width: 58%;
    padding-left: 30px;
}

.click-more5 {
    border: 1px solid var(--red);
    color: var(--red);
    padding: 10px 20px;
    font-size: var(--fontSize-18);
    border-radius: 5px;
    display: flex;
    transition: 0.4s;
    justify-content: center;
    white-space: nowrap;
}

.click-more5:hover {
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
}

.difficulty-content .difficulty-content-r li {
    width: 17.6%;
    text-align: center;
}

.difficulty-content .difficulty-content-r li:nth-child(2n) {
    width: 4%;
    font-size: var(--fontSize-24);
    opacity: 0.4;
    margin-top: 50px
}

.difficulty-content .difficulty-content-r li:last-child {
    display: none;
}

.difficulty-content .difficulty-content-r li p {
    font-size: var(--fontSize-14);
}

.core-strengths-l-list li {
    display: flex;
    align-items: center;
}

.core-strengths-l-list li i {
    font-size: 45px;
    width: 50px;
    text-align: center;
}

.core-strengths-l-list li section {
    width: calc(100% - 55px);
}

.core-strengths-l {
    width: 360px;
}

.core-strengths-l-hd {
    padding: 15px;
    border-radius: 10px;
    line-height: 2;
}

.core-strengths-l-hd h6 {
    font-size: var(--fontSize-14);
}

.core-strengths-l-hd ul {
    padding: 24px 0;
    font-size: var(--fontSize-14);
}

.core-strengths-l-hd li::before {
    font-family: "iconfont";
    content: "\e6bc";
    margin-right: 10px;
}

.core-strengths-l-list li+li {
    margin-top: 10px;
}

.core-strengths-r {
    width: calc(100% - 390px);
}

.core-strengths-r {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* 
.core-strengths-r .tabbtn li {
    border: 2px solid rgba(2, 29, 59, 0.3);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    color: var(--blue);
    font-weight: bold;
    transition: 0.4s;
    cursor: pointer;
}

.core-strengths-r .tabbtn li:hover,
.core-strengths-r .tabbtn li.current {
    background: var(--blue);
    color: var(--white);
}

.core-strengths-r .tabbtn li+li {
    margin-left: 10px;
}

.core-strengths-r .tabcon ul {
    gap: 2%;
}

.core-strengths-r .tabcon ul li {
    width: 32%;
    border-radius: 5px;
    overflow: hidden;
}

.core-strengths-r .tabcon ul li img {
    display: block;
    height: 105px;
    object-fit: cover;
}

.core-strengths-r .tabcon ul li section {
    padding: 10px 15px;
    border: 1px solid #eee;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.core-strengths-r .tabcon ul li section p {
    font-size: var(--fontSize-14);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.core-strengths-r .tabcon ul li section .click-more2 {
    font-size: var(--fontSize-14);
} */

.news-menu-list {
    border: 1px solid #fff;
    border-radius: 15px;
    margin-top: -70px;
    position: relative;
    z-index: 5;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-menu-list section {
    background: var(--blue);
    color: var(--white);
    padding: 10px 50px;
    border-radius: 10px;
}

.news-menu-list section i {
    font-size: 40px;
}

.news-menu-list ul {
    padding: 20px 0;
}

.news-menu-list li {
    flex: 1;
}

.news-menu-list li i {
    font-size: 40px;
}

.news-menu-list li h6 {
    text-transform: capitalize;
}

.news-menu-list li a {
    padding: 0 2px;
    display: block;
}

.news-menu-list li a:hover i,
.news-menu-list li a:hover h5,
.news-menu-list li a.current i,
.news-menu-list li a.current h5 {
    color: var(--red) !important;
}

.news-menu-list li+li {
    border-left: 2px solid #f7f6f6;
}

.news-item {
    background: #f6f7fb;
    border: 1px solid #ebeef3;
    border-radius: 10px;
}

.news-item1,
.news-item3 {
    width: 56%;
}

.news-item1 ul,
.news-item3 ul {
    gap: 15px 1%;
}

.news-item1 li {
    width: 24.25%;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ebeef3;
}

.news-item1 li a {
    display: block;
}

.news-item1 li em {
    position: relative;
    padding-bottom: 70%;
}

.news-item1 li em img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-item1 li span,
.news-item1 li p {
    font-size: var(--fontSize-14);
}

.news-item1 li p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-item1 li section {
    padding: 10px 15px;
}

.news-item2,
.news-item4 {
    width: 43%;
}

.news-item2 li em {
    padding-bottom: 69%;
}

.news-item2 ul,
.news-item4 {
    gap: 15px 1.2%;
}

.news-item2 li,
.news-item4 article {
    width: 32.53%;
}

.news-item3 li {
    width: 24.25%;
}

.news-item3 li section {
    line-height: 2;
}

.news-item3 li section p {
    font-size: var(--fontSize-14);
}

.news-item4 article section span {
    font-size: var(--fontSize-14);
}

.news-item4 article section p {
    line-height: 2;
    font-size: var(--fontSize-14);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.banner-contact {
    border-radius: 10px;
    background: rgba(0, 14, 59, 0.8);
    backdrop-filter: blur(10px);
    margin-left: auto;
}

.banner-contact h6 {
    font-size: var(--fontSize-14);
    line-height: 26px;
}

.banner-contact li {
    display: flex;
    align-items: center;
}

.banner-contact li section {
    width: 100% !important;
}

.banner-contact li section h6,
.banner-contact li section p {
    line-height: 1.5;
}

.banner-contact li {
    margin-top: 15px;
}

.banner-contact li i {
    font-size: 35px;
    margin-right: 15px;
}

.min-banner-contact img {
    height: 450px;
    object-fit: cover;
}

.service-list {
    gap: 15px 2%;
}

.service-list li {
    width: 23.5%;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 20px;
}

.service-list li p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 58px;
    -webkit-line-clamp: 2;
    line-height: 1.8;
}

.service-list li span {
    width: 60px;
    height: 60px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 50%;
    font-size: 30px;
}

.service-list li:nth-child(2) {
    background: #ecf3fb;
    border: 2px solid #e1e8f0;
}

.service-list li:nth-child(3) {
    background: #faf5e9;
    border: 2px solid #f0ebe0;
}

.customer-story .swiper-container {
    padding: 0 15px;
}

.customer-story .swiper-slide {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.customer-story .swiper-slide section {
    padding: 10px 15px;
}

.customer-story .swiper-button-prev,
.customer-story .swiper-button-next {
    border: 2px solid #999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: 0.4s;
}

.customer-story .swiper-button-prev:hover,
.customer-story .swiper-button-next:hover {
    border: 2px solid var(--blue);
    background: var(--blue);
    color: var(--white);
}

.customer-story .swiper-button-prev {
    left: 0;
}

.customer-story .swiper-button-next {
    right: 0;
}

.service-process {
    background: #f0f5fb;
    padding: 30px;
    border-radius: 10px;
}

.service-process .service-process-name {
    width: 220px;
}

.service-process ul {
    width: calc(100% - 280px);
    gap: 15px 3%;
}

.service-process li {
    display: flex;
    width: 14.16%;
}

.service-process li i {
    background: var(--blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: var(--fontSize-24);
    margin-right: 15px;
}

.service-process li section span {
    font-size: var(--fontSize-30);
}

.service-process li section h5 {
    font-size: var(--fontSize-18);
}

.service-process li section em {
    display: block;
    height: 1px;
    position: relative;
    border-bottom: 2px dotted rgba(14, 23, 67, 0.6);
    margin: 5px 0;
    opacity: 0.6;
}

.service-process li section b {
    position: absolute;
    right: -15px;
    top: -11.4px;
}

.service-process li:last-child section em {
    display: none;
}

.contact-content .contact-content-l {
    width: 60%;
}

.contact-content .contact-content-l .contact-content-l-list {
    width: 50%;
    border-radius: 10px 0 0 10px;
    border: 1px solid #eee;
}

.contact-content .contact-content-l .contact-content-l-list ul {
    padding: 30px;
}

.contact-content-l-list .project-name {
    padding: 30px 30px 0;
    border-radius: 8px 0 0;
}

.contact-content .contact-content-l .contact-content-l-list li {
    display: flex;
    align-items: center;
    line-height: 2;
}

.contact-content .contact-content-l .contact-content-l-list li .click-more1 {
    padding: 2px 10px;
    font-size: var(--fontSize-14);
    display: inline-block;
}

.contact-content .contact-content-l .contact-content-l-list li+li {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.contact-content .contact-content-l .contact-content-l-list li i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: var(--fontSize-24);
    margin-right: 15px;
}

.contact-content .contact-content-l .contact-content-l-list li section {
    width: calc(100% - 50px);
}

.contact-content .contact-content-l .contact-content-l-list li section p {
    font-size: var(--fontSize-20);
    letter-spacing: 2px;
}

.contact-content .contact-content-l .contact-content-l-list li section h6 {
    font-size: var(--fontSize-14);
    opacity: 0.6;
}

.contact-content .contact-content-l .contact-content-l-list li section span {
    display: block;
}

.contact-content .contact-content-l .contact-content-l-map {
    width: 50%;
    padding: 30px 30px 0;
    border: 1px solid #eee;
    border-radius: 0 10px 10px 0;
    background: #f8f9fb;
}

.contact-content .contact-content-l .contact-content-l-map li b {
    font-size: var(--fontSize-24);
    font-weight: bolder;
}

.contact-content .contact-content-l .contact-content-l-map li+li {
    border-left: 2px solid #eee;
    padding-left: 5%;
}

@media screen and (max-width: 1920px) {
    .contact-content .contact-content-l .contact-content-l-map img {
        height: 440px;
        object-fit: cover;
    }
}

.contact-content .contact-content-l .contact-why {
    border-radius: 10px;
}

.contact-content .contact-content-l .contact-why-l section {
    width: 250px;
    line-height: 35px;
}

.contact-content .contact-content-l .contact-why-l section p {
    color: rgba(255, 255, 255, 0.6);
}

.contact-content .contact-content-l .contact-why-l section p b {
    opacity: 1 !important;
    padding: 5px 0;
    display: block;
    color: rgba(255, 255, 255, 1);
}

.contact-content .contact-content-l .contact-why-r {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content .contact-content-l .contact-why-r li {
    padding: 0 5px;
}

.contact-content .contact-content-l .contact-why-r li h6 {
    font-size: var(--fontSize-14);
    margin: 5px 0;
}

.contact-content .contact-content-l .contact-why-r li p {
    font-size: var(--fontSize-12);
    opacity: 0.6;
}

.contact-content .contact-content-l .contact-why-r li i {
    font-size: var(--fontSize-24);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--blue);
    background: white;
    display: inline-block;
}

.contact-content .contact-content-r {
    width: 38.5%;
    border: 1px solid #eee;
    border-radius: 10px;
}

.contact-content .contact-content-r ul li {
    margin-top: 20px;
}

.contact-content .contact-content-r ul li label {
    margin-bottom: 10px;
}

.contact-content .contact-content-r ul li .form-control {
    height: 45px;
}

.contact-content .contact-content-r ul li textarea.form-control {
    height: 130px;
}

.cooperation-contact-list .swiper-slide img {
    filter: grayscale(1) brightness(100);
}

.zncx-name {
    margin-top: 90px;
}

.zncx-name h1 {
    line-height: 1.2;
}

.cxxj-industry .cxxj-industry-l,
.gc-list-hxjs-l {
    width: 38.5%;
}

.cxxj-industry .cxxj-industry-l ul {
    gap: 15px 1%;
}

.cxxj-industry .cxxj-industry-l li {
    width: 32.66%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.cxxj-industry .cxxj-industry-l li em {
    padding-bottom: 80%;
    position: relative;
}

.cxxj-industry .cxxj-industry-l li em img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.cxxj-industry .cxxj-industry-l li h6 {
    padding: 5px 15px;
    background: rgba(14, 23, 67, 0.8);
    backdrop-filter: blur(10px);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.cxxj-industry .cxxj-industry-r,
.gc-list-hxjs-r {
    width: 60%;
}

.cxxj-industry-r ul {
    gap: 15px 1%;
}

.cxxj-industry-r li {
    width: 24.25%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.cxxj-industry-r li em {
    position: relative;
    padding-bottom: 52%;
}

.cxxj-industry-r li em img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    display: block;
}

.cxxj-industry-r li h5 {
    padding: 8px 15px;
}

.cxxj-industry-r li section {
    padding: 15px;
}

.cxxj-industry-r li section p {
    display: flex;
    align-items: center;
    line-height: 2;
}

.cxxj-industry-r li section p::before {
    font-family: "iconfont";
    content: "\e631";
    font-size: var(--fontSize-12);
    transform: scale(0.6);
    margin-right: 5px;
}

.gc-list-hxjs-l {
    padding: 15px 20px;
    border-radius: 10px;
}

.gc-list-hxjs-l li {
    padding: 0 10px;
    flex: 1;
}

.gc-list-hxjs-l li+li {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.gc-list-hxjs-l li h6 {
    font-size: var(--fontSize-14);
    margin: 10px 0;
}

.gc-list-hxjs-l li p {
    font-size: var(--fontSize-12);
    opacity: 0.6;
}

.gc-list-hxjs-l li i {
    font-size: var(--fontSize-30);
}

.gc-list-hxjs-r .sygl-list {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
}

.gc-list-hxjs-r .sygl-list .swiper-slide {
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
}

.gc-list-hxjs-r .sygl-list .swiper-slide h6 {
    background: #e9e9eb;
    padding: 2px 10px;
    font-size: var(--fontSize-14);
}

.gc-list-hxjs-r .sygl-case {
    width: 28%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.gc-list-hxjs-r .sygl-case li {
    padding: 5px 0;
    width: 50%;
}

.gc-list-hxjs-r .sygl-case li h6 {
    font-size: var(--fontSize-14);
}

.gc-list-hxjs-r .sygl-case li:nth-child(odd) {
    border-right: 1px solid #eee;
}

.gc-list-hxjs-r .sygl-case li:nth-child(even) {
    padding-left: 10%;
}

.gc-list-hxjs-r .sygl-case li span {
    font-size: var(--fontSize-26);
    line-height: 1.2;
}

.pro-container,
.news-content-other {
    max-width: 1300px;
}

.pro-des-content .pc-slide {
    width: 40%;
}

.pro-des-content .pro-des {
    width: 55%;
}

.view .swiper-container {
    width: 100%;
}

.view .swiper-slide {
    overflow: hidden;
}

/* .view .swiper-slide a {
    position: relative;
    padding-bottom: 100%;
    display: block;
} */

/* .view .swiper-slide img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    display: block;
} */

.preview {
    width: 100%;
    margin-top: 10px;
    position: relative;
}

.preview .swiper-container {
    width: calc(100% - 70px);
}

.preview .swiper-slide {
    cursor: pointer;
    width: 25%;
    padding: 0 5px;
}

.preview .swiper-slide img {
    border: 2px solid #f2f2f2;
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.preview .active-nav img {
    border: 2px solid #0067b6;
}

.preview .arrow-left,
.preview .arrow-right {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 30px;
    color: #ddd;
    transform: translateY(-45%);
}

.preview .arrow-left {
    left: 0;
}

.preview .arrow-right {
    right: 0;
}

.preview .arrow-left img,
.preview .arrow-right img {
    height: 30px;
}

.preview .arrow-right img {
    transform: rotate(180deg);
}

.pro-des-content .pro-des .des-contact {
    padding: 5px 15px;
    display: inline-block;
    background: var(--blue);
    color: #fff;
    margin-top: 15px;
    font-size: 18px;
}

.pro-des-content .pro-des section {
    line-height: 180%;
    padding: 15px 0;
    font-size: 1rem;
    color: var(--grey666);
}

.products-content>h5 {
    background: var(--blue);
    color: #fff;
    padding: 5px 15px;
    display: table;
}

.products-content>article {
    border-top: 1px solid #ddd;
    padding: 20px 0 0;
    line-height: 200%;
}

.page {
    width: 100%;
    padding: 50px 0 15px 0;
    text-align: center;
    overflow: hidden;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page a,
.page span {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 3px 10px;
    margin: 0 3px;
    background: #fff;
}

.page span,
.page a:hover {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: #fff !important;
    border-radius: 5px;
}

.page .prev,
.page .next {
    margin: 0 10px;
}

.news-content .news-content-left {
    width: calc(100% - 360px);
}

.news-category {
    width: 300px;
    border-radius: 10px;
    padding: 30px;
}

.news-category h2 i {
    display: none;
    font-size: var(--fontSize-16);
}

.news-category li {
    padding: 5px 0;
}

.news-category li a i {
    float: right;
    transform: rotate(-45deg);
}

.news-category li a {
    display: block;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 10px;
}

.news-category li a:hover,
.news-category li a.current {
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
}

.news-category li section {
    padding: 10px 0;
}

.news-category li section a {
    border: 0;
    padding: 5px 15px;
}

.news-category li section a:hover,
.news-category li section a.current {
    border: 0;
    background: none;
    color: var(--red);
}

.news-content-left article {
    line-height: 200%;
}

.news-content article {
    word-break: break-all;
    line-height: 200%;
}

.news-show-title {
    border-bottom: 1px solid #eee;
}

.news-show-title h2 {
    font-size: var(--fontSize-40);
}

.previous-text p {
    border: 1px solid var(--greyeee);
    padding: 15px;
    transition: 0.4s;
}

.previous-text p+p {
    margin-top: 15px;
}

.news-item-list {
    background: none;
    border: 0;
    padding: 0 40px 0 0 !important;
}

.news-content,
.news-content-other {
    line-height: 220%;
}


.zncx-solution-list {
    background: #03132d;
}

.zncx-solution-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

.zncx-solution-list li p {
    font-size: 14px;
}

.zncx-solution-list li+li {
    border-left: 3px solid rgba(255, 255, 255, .2);
}

.zncx-solution-list li i {
    font-size: 46px;
    line-height: 40px;
}

.online-list {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 50px;
}

.online-list figure {
    padding: 10px;
    border-radius: 10px;
    background: var(--blue);
}

.online-list figure span {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.online-list figure h5 {
    font-size: var(--fontSize-12)
}

.online-list figure span i {
    font-size: 20px;
}

.online-list li {
    margin: 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    cursor: pointer;
    transition: .3s;
    position: relative;
    background: var(--blue);
}

.online-list li, .online-list li a {
    color: var(--white);
}

.online-list li i {
    font-size: var(--fontSize-22);
    line-height: 1.2;
}

.online-list li:hover {
    background: #053064;
}


.online-list li span {
    font-size: 12px;
    line-height: 18px;
}

.online-list li section {
    display: none;
    position: absolute;
    right: 55px;
    top: 0;
    white-space: nowrap;
    background: var(--blue);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: left;
}

.online-list li section h4+h4 {
    margin-top: 15px;
}

.online-list li section h4 span {
    display: block;
}

.online-list li:hover section {
    display: block;
}

.online-list li .wx-ewm {
    display: none;
    position: absolute;
    right: 55px;
    top: -40px;
    width: 150px;
    height: 150px;
    background: var(--blue);
    padding: 10px;
    border-radius: 10px;
}

.online-list li .wx-ewm em,
.online-list li section em {
    width: 0;
    height: 0;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--blue);
    border-top: 6px solid transparent;
    display: inline-block;
    position: absolute;
    right: -6px;
    top: 40%;
}

.online-list li .wx-ewm img {
    width: 100%;
}

.online-list li:hover .wx-ewm {
    display: block;
}

.online-list li.online_top {
    padding: 5px 10px 0;
}

.online-list li.online_top .onlineIco i {
    line-height: 1;
}


/* toast提示样式，放到css */
.copy-toast {
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 9999;
}

@media screen and (max-width: 1700px) {
    .about-main .about-main-r-list li i {
        font-size: 45px;
    }

    .contact-content .contact-content-l .contact-why-r li {
        padding: 0 2px;
    }

    .contact-content .contact-content-l .contact-why-l section {
        width: 200px;
    }

    .contact-content .contact-content-l .contact-why-l section+img {
        width: 120px;
    }

    .contact-content .contact-content-l .contact-why-l section h5 {
        font-size: var(--fontSize-18);
    }

    .contact-content .contact-content-l {
        width: 65%;
    }

    .contact-content .contact-content-r {
        width: 33.5%;
    }

    .contact-content .contact-content-r .project-name h3 {
        font-size: var(--fontSize-24);
    }

    .contact-content .contact-content-l .contact-why-l section p {
        font-size: var(--fontSize-14);
    }

    .contact-content .contact-content-l .contact-why-l section p {
        font-size: var(--fontSize-14);
    }

    .industry-solutions .swiper-slide section p span {
        font-size: var(--fontSize-12);
    }

    .core-strengths-l {
        width: 260px;
    }

    .core-strengths-r {
        width: calc(100% - 280px);
    }

    .core-strengths-l-hd {
        padding: 15px;
    }

    .core-strengths-l-list li section h5 {
        font-variant: var(--fontSize-18);
    }

    .core-strengths-l-list li section p {
        font-size: var(--fontSize-14);
    }

    .core-strengths-l-hd h6, .core-strengths-l-hd ul {
        font-size: 13px;
    }

    .core-strengths-l-hd h3 {
        font-size: var(--fontSize-22);
    }

    .banner .swiper-slide .swiper-slide-text {
        height: 500px;
    }

    .banner .swiper-slide .swiper-slide-text h2 {
        font-size: var(--fontSize-38);
    }

    .banner .swiper-slide .swiper-slide-text h4 {
        font-size: var(--fontSize-20);
    }

    .advantage-list .advantage-list-left {
        width: 68%;
    }

    .advantage-list .advantage-list-right {
        width: 30%;
    }

    .advantage-list .advantage-list-left ul li {
        padding: 0 5px;
    }

    .nav li {
        margin: 0 10px;
    }

    .contact-content .contact-content-l .contact-content-l-list {
        width: 48%;
    }

    .contact-content .contact-content-l .contact-content-l-map {
        width: 52%;
    }

    .contact-content .contact-content-l .contact-content-l-map img {
        height: 420px;
    }

    .contact-content .contact-content-r ul li textarea.form-control {
        height: 100px;
    }
}

@media screen and (max-width: 1600px) {
    header .header-language {
        margin-left: 30px;
    }

    .advantage-list .advantage-list-right li section h3 {
        font-size: var(--fontSize-24);
    }

    header .header-tel h4 {
        font-size: var(--fontSize-22);
    }

    header .header-tel .icon-phone {
        font-size: var(--fontSize-36);
    }

    footer ol {
        width: calc(100% - 550px);
    }

    footer ol dl {
        max-width: 200px;
    }

    .solution-list li article section {
        width: calc(100% - 65px);
    }

    .solution-list li article section {
        font-size: var(--fontSize-18);
    }

    .solution-list li article section p {
        font-size: var(--fontSize-14);
    }

    .ad-contact ul {
        width: calc(100% - 700px);
    }

    .about-main .about-main-r-list li h3 {
        font-size: var(--fontSize-22);
        line-height: 1;
    }

    .about-main .about-main-r-list li {
        padding: 0 10px;
    }

    .about-advantage .about-advantage-l li p,
    .contact-content .contact-content-l .contact-content-l-map li h6 {
        font-size: var(--fontSize-14);
    }

    .about-advantage .about-advantage-l li i {
        font-size: var(--fontSize-26);
    }

    .contact-content .contact-content-l .contact-content-l-map {
        padding-left: 30px;
    }

    .contact-content .contact-content-l .contact-content-l-list li section p,
    .contact-content .contact-content-l .contact-content-l-list li section span {
        font-size: 15px;
    }

    .pro-solution ul {
        padding: 0 5%;
    }

    .news-item3 li h5 {
        font-size: var(--fontSize-18);
    }

    .cxxj-industry-r li section {
        padding: 12px;
    }

    .cxxj-industry .cxxj-industry-l li em {
        padding-bottom: 90%;
    }

    .gc-list-hxjs-r .sygl-case li span {
        font-size: var(--fontSize-22);
    }

    .gc-list-hxjs-l li h6 {
        margin: 5px 0;
    }

    .gc-list-hxjs-l li i {
        font-size: var(--fontSize-24);
    }

    .industry-solutions .swiper-slide section h5 {
        font-size: var(--fontSize-16);
    }

    .core-strengths-l-hd li::before {
        margin-right: 5px;
    }

    .core-strengths-l-hd h6, .core-strengths-l-hd ul {
        font-size: var(--fontSize-12);
    }

    .difficulty-content .difficulty-content-l li h6 {
        font-size: var(--fontSize-14);
    }

    .difficulty-content .difficulty-content-r li h6 {
        font-size: var(--fontSize-14);
    }

    .zncx-solution-list li i {
        font-size: var(--fontSize-40);
    }

    .zncx-solution-list li p {
        font-size: var(--fontSize-12);
    }
}

@media screen and (max-width: 1440px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }

    header .logo img {
        height: 50px;
    }

    .nav li {
        margin: 0 10px;
    }

    .banner-bottom-text li i {
        font-size: 50px;
        margin-right: 15px;
    }

    .banner-bottom-text li section h2 {
        line-height: 1.2;
    }

    .gc-list-hxjs-l li h6 {
        font-size: 12px;
    }

    .gc-list-hxjs-l li {
        padding: 0 15px;
    }

    .gc-list-hxjs-r .sygl-case li span {
        font-size: var(--fontSize-20);
    }

    .cxxj-industry-r li h5 {
        font-size: var(--fontSize-18);
    }

    .about-main .about-main-r-list li p,
    .contact-content .contact-content-l .contact-content-l-list li section span,
    .difficulty-content .difficulty-content-l li h6,
    .difficulty-content .difficulty-content-r li h6,
    .cxxj-industry .cxxj-industry-l li h6,
    .banner-bottom-text li span {
        font-size: var(--fontSize-14);
    }

    .contact-content .contact-content-l .contact-why-r li h6,
    .gc-list-hxjs-r .sygl-case li h6 {
        font-size: var(--fontSize-12);
    }

    .difficulty-content .difficulty-content-r {
        padding-left: 20px;
    }

    .advantage-list .advantage-list-right img {
        height: 300px;
    }

    footer ol dl dd,
    .footer-ewm p {
        font-size: var(--fontSize-14);
    }

    .industry-solutions .swiper-button-next {
        right: 30px;
    }

    .core-strengths-l {
        width: 220px;
    }

    .core-strengths-l-list li h5 {
        font-size: var(--fontSize-16);
    }

    .core-strengths-l-list li i {
        font-size: var(--fontSize-32);
        width: 40px;
    }

    .core-strengths-r {
        width: calc(100% - 230px);
        gap: 10px;
    }

    .core-strengths-l-hd ul {
        padding: 15px 0;
    }

    .core-strengths-l-hd {
        padding: 10px;
    }

    .core-strengths-l-hd h3 {
        font-size: var(--fontSize-20);
    }

    .difficulty-content .difficulty-content-l li h6 {
        font-size: var(--fontSize-12);
    }

    .banner .swiper-slide .swiper-slide-text {
        width: 50%;
    }

    .contact-content .contact-content-l .project-name section h3,
    .contact-content .contact-content-r .project-name section h3 {
        font-size: var(--fontSize-24);
    }

    .contact-content .contact-content-l .contact-content-l-list {
        width: 45%;
    }

    .contact-content .contact-content-l .contact-content-l-map {
        width: 55%;
    }

    .contact-content .contact-content-l .contact-content-l-map img {
        height: 390px;
        object-fit: cover;
    }

    .contact-content .contact-content-r ul li {
        margin-top: 15px;
    }

    .contact-content .contact-content-l .contact-content-l-list li {
        line-height: 1.8;
    }
}

@media screen and (max-width: 1366px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-bottom-text li {
        padding: 0 15px;
    }

    .banner-bottom-text li h2 {
        font-size: var(--fontSize-30);
    }

    .banner-bottom-text li h5,
    .solution-list li article section h5,
    .advantage-list .advantage-list-right li h5 {
        font-size: var(--fontSize-18);
    }

    .advantage-list .advantage-list-left ul li h5 {
        font-size: var(--fontSize-16);
    }

    .advantage-list .advantage-list-left ul li p {
        font-size: var(--fontSize-14);
    }

    .solution-list li article section {
        width: calc(100% - 50px);
    }

    .advantage-list .advantage-list-left ul li i {
        font-size: 50px;
    }

    .advantage-list .advantage-list-right li h5 {
        margin-top: 0 !important;
    }

    .about-main .about-main-l {
        width: 35%;
    }

    .about-main .about-main-r {
        width: 63%;
    }

    .about-main .about-main-r-list li i {
        font-size: var(--fontSize-36);
    }

    .about-main .about-main-r-list li h3 {
        font-size: var(--fontSize-18);
    }

    .about-main .about-main-r-list li p {
        padding: 0 20px;
    }

    .contact-content .contact-content-l .contact-content-l-map li h6 {
        font-size: var(--fontSize-12);
    }

    .contact-content .contact-content-l .contact-content-l-list li i {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        font-size: var(--fontSize-20);
    }

    .service-list li section h4 {
        font-size: var(--fontSize-20);
    }

    .customer-story .swiper-container {
        width: 95%;
    }

    .service-process ul {
        width: calc(100% - 200px);
    }

    .service-process li i {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .service-process li section span {
        font-size: var(--fontSize-24);
    }

    .service-process li section h5 {
        font-size: var(--fontSize-16);
    }

    .service-process li section p {
        font-size: var(--fontSize-14);
    }

    .industry-solutions .swiper-container {
        width: calc(100% - 330px);
        margin-right: 80px !important;
    }

    .industry-solutions .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .industry-solutions .swiper-button-next {
        right: 20px;
    }

    .difficulty-content .difficulty-content-l li i {
        font-size: 40px;
    }

    .core-strengths-l-list li h5 {
        font-size: var(--fontSize-16);
    }

    .core-strengths-l-list li section p {
        font-size: var(--fontSize-12);
    }

    .core-strengths-r .tabcon ul li section p {
        -webkit-line-clamp: 2;
    }

    .core-strengths-l .core-strengths-l-hd h3 {
        font-size: var(--fontSize-24);
    }

    .core-strengths-l .core-strengths-l-hd {
        padding: 20px;
    }

    .cxxj-industry .cxxj-industry-l li em {
        padding-bottom: 94%;
    }

    .news-item3 li section {
        padding: 0 5px;
    }

    .difficulty-content .difficulty-content-r li {
        width: 15%;
    }

    .difficulty-content .difficulty-content-r li:nth-child(2n) {
        width: 4%;
    }

    .difficulty-content .difficulty-content-r li:nth-child(2n) {
        transform: translateY(-50%);
        font-size: var(--fontSize-18);
    }

    .news-menu-list li h6, .contact-content .contact-content-r ul li {
        font-size: var(--fontSize-14);
    }

    .zncx-solution-list li h5 {
        font-size: var(--fontSize-18);
    }

    .zncx-solution-list li i {
        font-size: var(--fontSize-36);
    }
}

@media screen and (max-width: 1280px) {
    .nav li {
        margin: 0 5px;
    }

    footer .footer-link>a>img {
        height: 50px;
    }

    header .header-tel .icon-phone {
        font-size: var(--fontSize-30);
    }

    .nav li a,
    header .header-language,
    header .header-language a {
        font-size: var(--fontSize-16);
    }

    header .header-tel h4 {
        font-size: var(--fontSize-20);
    }

    .about-main .about-main-r-list li h3 {
        font-size: var(--fontSize-16);
    }

    .about-main .about-main-r-list li h6 {
        font-size: var(--fontSize-14);
    }

    .contact-content .contact-content-l .contact-why-l section h5 {
        font-size: var(--fontSize-16);
    }

    .contact-content .contact-content-l .contact-why-l section {
        width: 180px;
    }

    .news-item3 li section p span,
    .news-item4 article section p span {
        display: none;
    }

    .contact-content .contact-content-l .contact-why-l section p {
        font-size: var(--fontSize-12);
    }

    .contact-content .contact-content-l .contact-why-l section+img {
        width: 100px;
    }
}

@media screen and (max-width: 900px) {
    .container-fluid {
        padding-right: var(--bs-gutter-x, 0.75rem);
        padding-left: var(--bs-gutter-x, 0.75rem);
    }

    .py-item {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .pt-item,
    footer {
        padding-top: 40px;
    }

    .pb-item {
        padding-bottom: 40px;
    }

    header {
        padding: 13.5px 0;
    }

    header .logo img {
        height: 25px;
        width: auto;
    }

    header .logo h6 {
        letter-spacing: 0;
        font-size: var(--fontSize-12);
        margin-top: 0;
        transform: scale(.8);
        margin-left: -18px;
    }

    .nav,
    header .header-tel section,
    .banner-bottom-text li:nth-child(3):before,
    .banner-bottom-text li:nth-child(5):before,
    .products-list li:nth-child(5),
    .news-menu-list li a h6,
    .customer-story .swiper-button-prev,
    .customer-story .swiper-button-next,
    .industry-solutions .swiper-button-next, .header-tel {
        display: none !important;
    }

    .news-category ul, .banner-bottom-text li+li::before, .pro-ad li+li::before, .products-category .swiper-button-next, .products-category .swiper-button-prev {
        display: none;
    }

    .sp_nav,
    .sjj_nav,
    .news-item4 article section p span,
    .news-category h2 i {
        display: block;
    }

    .project-name h5 {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .advantage-list .advantage-list-left,
    .banner .swiper-slide .swiper-slide-text,
    .advantage-list .advantage-list-right,
    .advantage-list .advantage-list-right img,
    .advantage-list .advantage-list-right ul,
    .solution-list li,
    .banner-bottom-text li:last-child,
    .ad-contact .project-name section,
    .ad-contact ul,
    .cooperation-list .project-name section,
    .cooperation-list .swiper-container,
    footer ol,
    footer ol dl,
    footer ol dl:last-child dd,
    footer .footer-ewm,
    .min-banner .container-fluid section,
    .about-main .about-main-l,
    .about-main-r,
    .about-main .about-main-r,
    .about-main .about-main-r-list li:last-child,
    .about-advantage .about-advantage-l,
    .about-advantage .about-advantage-r,
    .about-advantage .about-advantage-l li,
    .contact-content .contact-content-l,
    .contact-content .contact-content-r,
    .contact-content .contact-content-l .contact-content-l-list,
    .contact-content .contact-content-l .contact-content-l-map,
    .contact-content-r .project-name section,
    .cooperation-list .project-name,
    .news-item,
    .news-item2,
    .news-item4,
    .news-item2 li,
    .news-item4 article,
    .pro-solution ul,
    .pro-solution .project-name section,
    .pro-ad li,
    .banner-contact,
    .service-list li,
    .customer-story .swiper-container,
    .service-process .service-process-name,
    .service-process ul,
    .industry-solutions-name,
    .industry-solutions .swiper-container,
    .difficulty-content .difficulty-content-l,
    .difficulty-content .difficulty-content-r,
    .difficulty-content-r .project-name section,
    .core-strengths-l,
    .core-strengths-l .core-strengths-l-hd,
    .core-strengths-l .core-strengths-l-list,
    .core-strengths-r,
    .cxxj-industry .cxxj-industry-l,
    .gc-list-hxjs-l,
    .cxxj-industry .cxxj-industry-r,
    .gc-list-hxjs-r,
    .cxxj-industry-r li,
    .gc-list-hxjs-r .sygl-list,
    .gc-list-hxjs-r .sygl-case,
    .pro-des-content .pc-slide,
    .pro-des-content .pro-des,
    .news-item-list,
    .news-category,
    .news-content .news-content-left,
    .contact-content .contact-content-l .contact-why-l section, .zncx-solution .project-name section, .advantage-list-left .project-name section, .banner-bottom-text li, .news-menu-list section, .min-banner.min-banner-contact1 .container-fluid section, .products-category .swiper-container, .contact-content .project-name section {
        width: 100%;
    }

    .advantage-list .advantage-list-right img,
    .about-advantage .about-advantage-r {
        height: auto;
    }

    footer .footer-link>a>img {
        height: 40px;
    }

    footer ol dl {
        max-width: 100%;
    }

    header .header-language {
        margin-left: 0;
        padding-right: 60px;
        font-size: var(--fontSize-16);
    }

    header .header-language a+a::before {
        margin: 0 5px;
    }

    .banner,
    .min-banner,
    .zncx-name {
        margin-top: 70px;
    }

    .banner .swiper-slide .swiper-slide-text {
        height: 400px;
    }

    h1,
    .news-show-title h2 {
        font-size: var(--fontSize-28);
    }

    .banner .swiper-slide .swiper-slide-text h2 {
        font-size: var(--fontSize-24);
    }

    h3,
    .product-content-list li p i,
    .contact-content .contact-content-l .contact-content-l-map li b,
    header .header-tel .icon-phone {
        font-size: var(--fontSize-20);
    }

    h4 {
        font-size: calc(1.125rem + 0.3vw);
    }

    h5,
    .banner-bottom-text li h5 {
        font-size: var(--fontSize-16);
    }

    .about-advantage .about-advantage-r section h6, .project-name section h6 {
        font-size: var(--fontSize-14);
    }

    .service-process li section p,
    .difficulty-content .difficulty-content-r li h6,
    .difficulty-content .difficulty-content-r li p, .advantage-list .advantage-list-left ul li p, .ad-contact li p, .difficulty-content .difficulty-content-l li h6 {
        font-size: var(--fontSize-12);
    }

    .click-more,
    .click-more1,
    .click-more5,
    .click-more3 {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .banner .swiper-slide .swiper-slide-text h4 {
        margin: 20px 0 30px;
    }

    .banner-bottom-text {
        padding: 20px 0;
    }

    .banner-bottom-text ul,
    .contact-why-l,
    .contact-content .contact-content-l .contact-why-r ul {
        flex-wrap: wrap;
    }

    .banner-bottom-text li,
    .about-main .about-main-r-list li {
        flex: inherit;
    }


    .about-main .about-main-r-list li {
        width: 50%;
    }

    .banner-bottom-text li i {
        font-size: var(--fontSize-40);
        margin-right: 10px;
    }

    .banner-bottom-text li h2 {
        font-size: var(--fontSize-20);
    }

    .banner-bottom-text li h5 {
        margin-top: 0 !important;
    }

    .banner-bottom-text li {
        justify-content: flex-start;
    }

    .products-list,
    .solution-list,
    .news-list,
    .about-equipment-list,
    .news-item1 ul,
    .news-item3 ul,
    .product-content-list,
    .service-process ul,
    .core-strengths-r .tabcon ul, .banner-bottom-text ul {
        gap: 15px 0;
    }

    .products-list,
    .news-list,
    .ad-contact ul,
    .about-equipment-list,
    .news-item1 ul,
    .news-item3 ul,
    .product-content-list,
    .service-process ul,
    .core-strengths-r .tabbtn,
    .core-strengths-r .tabcon ul,
    .cxxj-industry .cxxj-industry-l ul {
        justify-content: space-between;
    }

    .products-list li,
    .news-list li,
    .about-equipment-list li,
    .news-item1 li,
    .news-item3 li,
    .menu-list a,
    .product-content-list li,
    .core-strengths-r .tabcon ul li,
    .cxxj-industry .cxxj-industry-l li {
        width: 48%;
    }

    .products-list li,
    .news-list li, .products-category .swiper-slide {
        padding: 12px;
    }

    .news-list li section {
        padding: 10px 0 0;
    }

    .project-name section {
        width: calc(100% - 120px)
    }

    .advantage-list .advantage-list-right ul {
        display: flex;
        flex-wrap: wrap;
    }

    .advantage-list .advantage-list-right li {
        width: 50%;
        margin-top: 15px !important;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .advantage-list .advantage-list-right img,
    .contact-content .contact-content-r ul li,
    .contact-content .contact-content-r,
    .news-item2,
    .news-item3 {
        margin-top: 15px !important;
    }

    .advantage-list .advantage-list-left ul li {
        flex-basis: 33.33%;
    }

    .advantage-list .advantage-list-left ul li:nth-child(4),
    .gc-list-hxjs-l li:nth-child(3) {
        border: 0;
    }

    .about-main .about-main-r-list li:nth-child(5),
    .footer-link section,
    .min-banner .container-fluid,
    .difficulty-content-r .project-name {
        justify-content: center !important;
    }

    .ad-contact ul {
        padding-left: 0 !important;
    }

    .ad-contact .container-fluid,
    footer .container-fluid,
    footer ol,
    .min-banner .container-fluid,
    .contact-content .contact-content-l .contact-why,
    .pro-solution .container-fluid,
    .zncx-name .container-fluid {
        flex-direction: column;
    }

    .ad-contact ul {
        padding: 30px 0 !important;
    }

    .ad-contact li {
        flex: inherit;
    }

    .ad-contact li i {
        padding: 0 10px;
    }

    .cooperation-list .swiper-container {
        margin-top: 15px !important;
    }

    footer ol {
        padding-left: 0;
    }

    footer ol dl {
        margin-top: 10px;
        line-height: 1.5;
    }

    footer ol dl dt {
        margin-bottom: 5px;
    }

    footer ol dl dd {
        display: inline-block;
        margin-right: 10px;
    }

    footer .footer-ewm img {
        width: 150px;
    }

    .min-banner::after {
        content: "";
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        top: 0;
    }

    .min-banner img {
        min-height: 200px;
    }

    .min-banner .container-fluid section h1 {
        line-height: 1.4;
        font-size: var(--fontSize-24);
    }

    .min-banner .container-fluid section {
        position: relative;
        z-index: 5;
    }

    .min-banner-contact,
    .min-banner-contact1 {
        overflow: hidden;
    }

    .min-banner-contact img {
        height: 100%;
        width: 240% !important;
        max-width: initial;
        margin-left: -140%;
    }

    .min-banner-contact1 img {
        height: 500px;
    }

    .min-banner-contact1 {
        height: auto;
    }

    .min-banner-contact {
        height: 800px;
    }

    .min-banner-contact .container-fluid {
        justify-content: space-around !important;
    }

    .about-main .about-main-l {
        padding-right: 0;
        border: 0;
    }

    .about-main .about-main-r-list li p {
        padding: 0;
        margin-top: 0;
    }

    .about-main .about-main-r-list li:nth-child(3),
    .about-main .about-main-r-list li:nth-child(5),
    .contact-content .contact-content-l .contact-why-r,
    .news-menu-list li+li,
    .difficulty-content .difficulty-content-l, .ad-contact li+li {
        border: 0;
    }

    .about-main .about-main-r-list li {
        padding: 5px 15px;
    }

    .about-advantage .about-advantage-l li {
        padding-bottom: 10px;
        border: 0 !important;
    }

    .about-advantage .about-advantage-l li p {
        margin-top: 5px !important;
    }

    .about-advantage .container-fluid {
        padding-right: var(--bs-gutter-x, 0.75rem);
    }

    .about-advantage {
        padding-bottom: 40px;
    }

    .footer-link,
    .difficulty-content-r .project-name section,
    .gc-list-hxjs-r .sygl-case li,
    .contact-content .contact-content-l .contact-why-r h4,
    .contact-why-l,
    .core-strengths-r .tabbtn li,
    .menu-list a, .contact-content {
        text-align: center;
    }

    .min-banner-contact1 .container-fluid {
        justify-content: space-around !important;
    }

    .contact-content .contact-content-l .contact-content-l-list li section,
    .contact-content .contact-content-r ul li {
        text-align: left;
    }

    .contact-content .contact-content-l .contact-content-l-map {
        padding: 20px 0 0;
    }

    .contact-content .contact-content-l .contact-content-l-list {
        border-radius: 10px 10px 0 0;
    }

    .contact-content .contact-content-l .contact-content-l-map {
        border-radius: 0 0 10px 10px;
    }

    .contact-content .contact-content-l .contact-why-r {
        margin-top: 20px;
    }

    .contact-content .contact-content-r ul li label {
        margin-bottom: 5px;
    }

    .news-menu-list li {
        width: 33%;
        margin: 10px 0;
        flex: initial;
    }

    .news-item1 li section,
    .product-content-list li,
    .core-strengths-r .tabcon ul li section {
        padding: 10px;
    }

    .pro-solution ul,
    .customer-story .swiper-container,
    .customer-story .container-fluid,
    .difficulty-content .difficulty-content-r,
    .core-strengths-r,
    .news-item-list {
        padding: 0 !important;
    }

    .pro-solution ul {
        margin: 20px 0;
    }

    .menu-list {
        justify-content: space-between !important;
    }

    .menu-list a {
        margin: 0 0 10px;
        padding: 10px 20px;
        font-size: var(--fontSize-16);
        background: #eee;
    }

    .pro-ad li {
        flex: inherit;
        justify-content: flex-start;
    }

    .pro-ad li i {
        width: 60px;
        height: 60px;
        font-size: var(--fontSize-32);
    }

    .pro-ad li+li,
    .pro-solution figure a,
    .cxxj-industry .cxxj-industry-r {
        margin-top: 15px;
    }

    .pro-solution figure a {
        padding: 10px 20px;
    }

    .service-process,
    .gc-list-hxjs-l {
        padding: 20px;
    }

    .service-process li section b {
        right: -10px;
        top: -11px;
        z-index: 2;
    }

    .service-process li {
        width: 45%;
    }

    .industry-solutions .swiper-container {
        margin-right: 0 !important;
    }

    .industry-solutions-name, .core-strengths-l-list {
        margin-bottom: 20px;
    }

    .difficulty-content .difficulty-content-l li {
        width: 33.33%;
        flex: initial;
    }

    .difficulty-content-r .project-name section {
        margin-bottom: 10px;
    }

    .difficulty-content-r {
        margin-top: 30px;
    }

    .difficulty-content .difficulty-content-r li {
        width: 17%;
    }

    .difficulty-content .difficulty-content-r li:nth-child(2n) {
        width: 4%;
        font-size: var(--fontSize-12);
    }

    .core-strengths-l .core-strengths-l-list li+li {
        margin-top: 0;
    }

    .core-strengths-l .core-strengths-l-hd,
    .gc-list-hxjs-r .sygl-list {
        margin: 15px 0;
    }

    .core-strengths-r .tabbtn li {
        margin: 10px 0 0 !important;
    }

    .core-strengths-r .tabbtn li {
        width: 32%;
    }

    .gc-list-hxjs-l li {
        padding: 0 5px;
    }

    .gc-list-hxjs-l li {
        width: 50%;
        padding: 10px 20px;
        flex: inherit;
    }

    .gc-list-hxjs-r .sygl-case li {
        padding: 10px 0;
    }

    .gc-list-hxjs-r .sygl-case li span {
        font-size: var(--fontSize-30);
    }

    .about-main-r-list,
    .difficulty-content .difficulty-content-l ul,
    .difficulty-content-r .project-name {
        flex-wrap: wrap;
    }

    .pro-des-content .pro-des,
    .news-content-left {
        margin-top: 30px;
    }

    .news-category {
        padding: 10px 15px;
    }

    .news-category.active ul {
        box-shadow: 0 8px 8px -2px rgba(255, 255, 255, 0.5);
    }

    .news-category h2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0 !important;
    }

    .news-category ul {
        position: absolute;
        background: var(--blue);
        width: 100%;
        padding: 20px;
        left: 0;
        z-index: 55;
    }

    .news-category-content,
    .news-content {
        flex-direction: column-reverse;
    }

    .news-category-content .news-item-list {
        padding-top: 40px !important;
    }

    .previous-text p {
        padding: 5px 12px;
    }

    .previous-text p+p {
        margin-top: 10px;
    }

    .contact-why-l {
        justify-content: center !important;
    }

    .contact-why-l section {
        padding: 20px 0;
    }

    .news-menu-list li a {
        padding: 0 5px;
    }

    .ad-contact li i {
        font-size: 50px;
    }

    .core-strengths-r {
        grid-template-columns: repeat(1, 1fr);
    }

    .min-banner .container-fluid ul li i {
        font-size: var(--fontSize-40);
    }

    .min-banner .container-fluid ul {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .contact-content .contact-content-l .contact-why-r ul {
        gap: 20px 0;
    }

    .contact-content .contact-content-l .contact-why-r li {
        width: 50%;
    }

    .zncx-solution-list {
        flex-direction: column;
        padding: 10px 15px;
    }

    .zncx-solution-list li {
        justify-content: flex-start;
        padding: 10px 0;
        border: 0 !important;
    }

    .zncx-solution-list li h5 {
        font-size: var(--fontSize-20);
    }

    .zncx-solution-list li p {
        font-size: var(--fontSize-16);
    }

    .contact-content .contact-content-l .contact-content-l-map img {
        height: auto;
    }

    .contact-content .contact-content-l .contact-content-l-list ul {
        padding: 15px;
    }

    .contact-content-l-list .project-name {
        border-radius: 8px 8px 0 0;
    }

    .min-banner.min-banner-contact1 .container-fluid ul li i {
        font-size: 42px;
        line-height: 1.2;
    }

    .min-banner.min-banner-contact1 .container-fluid ul {
        gap: 15px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .news-content img, .news-content-other img {
        height: auto !important;
    }
}