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

.index-banner,
.index-banner>.swiper {
    height: 100vh
}

.index-banner {
    position: relative
}

.index-banner .swiper-slide {
    position: relative
}

.index-banner .swiper-slide .mzbox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.index-banner .swiper-slide .mzbox.product_banner {
    justify-content: flex-end;
    bottom: 580px
}

.index-banner-title {
    max-width: 660px;
    font-size: 52px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 50px
}

.index-banner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 100px;
}

.index-banner-btns a {
    width: 180px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    background-color: transparent
}

.index-banner-btns a>* {
    position: relative;
    z-index: 2
}

.index-banner-btns a::after {
    content: "";
    width: 0%;
    height: 100%;
    background-color: #e60013;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s;
    z-index: 1
}

.index-banner-btns a.active {
    border-color: #e60013
}

.index-banner-btns a.active::after {
    width: 100%
}

.index-banner-btns a:first-of-type:after {
    right: 0;
    left: unset
}

.swiper-points {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    left: calc(calc(100% - 1600px) / 2) !important;
    bottom: 50px !important;
    z-index: 2
}

.swiper-pagination-bullet {
    opacity: 1;
    margin: 0 !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 2;
    background-color: #fff !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent !important;
}

.swiper-btn-left,
.swiper-btn-right {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, .15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    cursor: pointer;
    transition: all .3s
}

.swiper-btn-left {
    left: calc(calc(100% - 1600px) / 2)
}

.swiper-btn-right {
    right: calc(calc(100% - 1600px) / 2)
}

.swiper-btn-left:hover,
.swiper-btn-right:hover {
    background-color: #e60013;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(-100px);
        opacity: 1;
    }
}

.index-banner .ani {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: none;
}

.index-banner .ani.active {
    animation: slideInUp 0.6s ease-out forwards;
    visibility: visible;
}

.product-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-item {
    width: calc(33.333% - 20px);
    height: 380px;
    background: #f5f5f5;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 60px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-item>a {
    padding: 20px;
    overflow: hidden;
    display: block;
}

.product-grid.session-box {
    overflow: hidden;
}

/* 横向滚动的 swiper 容器样式：不换行，横向滑动 */
.product-grid-container.swiper-wrapper {
    flex-wrap: nowrap;
    gap: 0;
}


.product-item.swiper-slide {
    flex-shrink: 0;
}


.product-item h5 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: #37474f;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.session-img {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.session-img img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* 添加平滑过渡效果 */
    transform-origin: center;
}

.product-item:hover .session-img img {
    transform: scale(1.1);
}

.contact-box>div {
    height: 100%;
}

.download-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 55px;
    margin-bottom: 35px;
}

.download-title {
    font-size: 42px;
    font-weight: 800;
}

.download-type-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.download-type-title {
    width: 180px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #333;
    color: #333;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    font-weight: normal;
    padding-left: 25px;
    padding-right: 25px;
}

.download-type-list a:hover {
    color: #fff;
    background-color: #e60013;
    border: 2px solid #fff;
}

.solution .solbox {
    text-align: center;
}

.solution .head-desc {
    text-align: center;
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 98px;
}

.solbox .photos {
    padding: 0 50px;
    position: relative;
}

.solution .swiper {
    width: 80%;
    overflow: visible;
    --swiper-navigation-size: 20px;
}

.solution .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
}

.solbox .photos .swiper-slide {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 10px rgb(0, 0, 0, .2);
    overflow: hidden;
    position: relative;
}

.solbox .photos .swiper-slide img {
    width: 100%;
    /* height: 590px; */
    object-fit: cover;
}

.solbox .photos .swiper-slide .infobox {
    position: absolute;
    top: 55%;
    left: 56px;
    width: 360px;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    opacity: 0;
    transition: all 1.5s ease;
}

.solbox .photos .swiper-slide .infobox .box {
    text-align: left;
    padding: 60px 40px;
    background: rgba(255, 255, 255, .9);
    border-radius: 20px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    z-index: 999;
    position: relative;
}

.solbox .photos .swiper-slide .infobox::after {
    content: "";
    position: absolute;
    right: calc(100% - 10px);
    transition: all .4s ease;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 95%;
    background: #054586;
    border-radius: 20px 0 0 20px;
}

.solbox .photos .swiper-slide .infobox .title {
    color: #000;
    font-size: 30px;
    font-weight: 800;
}

.solbox .photos .swiper-slide .infobox .cont {
    font-size: 15px;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.solbox .photos .swiper-slide .infobox .more {
    margin-top: 12px;
    font-size: 14px;
    color: #4c5664;
}

.solbox .photos .swiper-slide .infobox .more span::after {
    content: "next";
    font-family: swiper-icons;
    font-size: 12px;
    margin-left: 10px;
}

.solbox .photos .swiper-slide .infobox:hover::after {
    width: 24px;
}

.solbox .photos .swiper-slide .infobox:hover .box {
    background: rgba(255, 255, 255, 1);
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
}

.solution .swiper .swiper-button-prev {
    left: -35px;
    color: #4c5664;
    font-weight: bold;
}

.solution .swiper .swiper-button-next {
    right: -35px;
    color: #4c5664;
    font-weight: bold;
}

.solution .swiper .swiper-button-next:hover,
.solution .swiper .swiper-button-prev:hover {
    color: #d1292e;
}


.met-index-company {
    position: relative;
    padding-top: 100px;
    padding-bottom: 85px;
}

.met-index-company .mzbox {
    display: flex;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.met-index-company .left {
    width: 50%;
}

.met-index-company .left .index-title {
    margin-bottom: 10px;
}

.index-title .desc,
.index-title .desc>* {
    font-size: 40px;
    font-weight: bold;
    color: #333;
}

.met-index-company .gp-info {
    margin-top: 60px;
}

.met-index-company .gp-label {
    color: #686d7a;
    font-size: 24px;
    line-height: 1;
}

.met-index-company .gp-line {
    width: 100%;
    height: 1px;
    background-color: #dfe0e1;
    margin-top: 20px;
    margin-bottom: 10px;
}

.met-index-company .index-company-info {
    margin-top: 55px;
}

.met-index-company .index-company-info .met-editor {
    font-size: 16px;
    color: #666;
    line-height: 33px;
}

.met-index-company .index-company-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.met-index-company .index-btn {
    margin-top: 30px;
}

.met-index-company .index-btn a {
    border-color: #e60013;
}

.met-index-company .index-company-btns .index-btn:last-of-type {
    display: none;
}

.met-index-company .index-btn {
    margin-top: 30px;
}


.index-btn a {
    width: 180px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    gap: 15px;
    font-weight: normal;
}

.news-type .index-btn a::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #e60013;
    position: absolute;
    left: -100%;
    top: 0;
    transition: all .3s;
    z-index: 1;
}

.news-type .index-btn.active a::after {
    left: 0;
}


.index-btn a>* {
    position: relative;
    z-index: 2;
    line-height: 1;
}

.met-index-company .right {
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 0;
}

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

.met-index-company .right .index-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    color: #fff;
}

.met-index-company .right .index-video-btn>div {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, .3);
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    transition: all .3s;
}

.met-index-company .index-btn a:hover::after {
    width: 0%;
}

.met-index-company .index-btn a:hover {
    border-color: #e60013;
    color: #e60013;
}


.solution.partener {
    color: #ffffff;
    height: 700px;
    background-size: cover;
    padding: 30px 0;
    overflow: hidden;
}

.solution.partener .solbox {
    max-width: 1600px;
    width: 92%;
    margin: auto;
}

.solution.partener .head-title {
    text-align: center;
    font-weight: normal;
    font-weight: 800;
    margin-top: 32px;
}

.partener .list ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 22px;
    row-gap: 22px;
}

.partener .list ul li {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    transition: 0.3s;
}

.partener .list ul img {
    inset: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partener .list ul li:after {
    content: "";
    display: block;
    padding-bottom: 44.8%;
}

.partener .list ul li:hover {
    transform: scale(1.1);
}

.met-index-news {
    background-color: #e7ecf2;
    padding-top: 88px;
    padding-bottom: 147px;
}

.met-index-news .mzbox {
    border-bottom: 1px solid #ced3da;
    padding-bottom: 25px;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.met-index-news .mzbox .index-title {
    margin-bottom: 10px;
}

.met-index-news .news-list {
    margin-top: 50px;
    --swiper-wrapper-transition-timing-function: linear;
}

.met-index-news .desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.met-index-news .desc .news-type {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.product-arrows {
    margin-top: 0px;
    margin-bottom: 20px;
}

.product-arrows,
.research .session2 .session2-arrows {
    display: flex;
    align-items: center;
    gap: 15px;
}

.met-index-news .news-list .product-arrows>div {
    margin-top: 0;
}

.product-arrows>div.left {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.product-arrows>div,
.research .session2 .session2-arrows>div {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e60013;
    color: #ffffff;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: 18px;
    cursor: pointer;
}

.product-arrows>div.swiper-button-disabled {
    opacity: .2;
}

.news-list {
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.met-index-news .news-list .swiper-slide a {
    display: block;
    height: auto;
    padding: 60px 40px;
    border-radius: 9px;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.met-index-news .news-list .swiper-slide a .new-li {
    position: relative;
    z-index: 2;
}

.met-index-news .news-list .swiper-slide a .index-news-data {
    font-size: 18px;
    color: #adadad;
    line-height: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.met-index-news .news-list .swiper-slide a .index-news-title {
    font-weight: bold;
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 30px;
    height: 60px;
    transition: all .3s;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.met-index-news .news-list .swiper-slide a .index-news-desc {
    font-size: 16px;
    color: #707774;
    transition: all .3s;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    min-height: calc(1.5em * 4);
}



.met-index-news .news-list .swiper-slide a .index-news-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 85px;
}

.met-index-news .news-list .swiper-slide a .index-news-type-name {
    font-size: 16px;
    color: #707774;
}

.met-index-news .news-list .swiper-slide a .index-news-arrow {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
}

.met-index-news .news-list .swiper-slide a .index-news-arrow .icon-weibiaoti6 {
    color: #333;
}

.met-index-news .news-list .swiper-slide a .cover {
    position: absolute;
    width: 110%;
    height: 110%;
    background-color: #fff;
    top: 0;
    left: 0;
    transition: all .8s;
}

.met-index-news .news-list .swiper-slide a:hover .index-news-title,
.met-index-news .news-list .swiper-slide a:hover .index-news-desc,
.met-index-news .news-list .swiper-slide a:hover .index-news-type-name,
.met-index-news .news-list .swiper-slide a:hover .index-news-arrow .icon-weibiaoti6 {
    color: #fff;
}

.met-index-news .news-list .swiper-slide a:hover .cover {
    background-color: rgba(6, 11, 57, 1);
    opacity: .7;
}

.met-index-news .news-list .swiper-slide a:hover .index-news-arrow {
    background-color: #e60013;
    color: #fff;
    border-color: #e60013;
}


.met-index-news .news-list .swiper-slide {
    height: auto;
}

.met-index-news .news-list .swiper-slide a {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.met-index-news .news-list .swiper-slide a .new-li {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.met-index-news .news-list .swiper-slide a .index-news-info {
    margin-top: auto;
}


.met-index-news .desc .news-type .index-btn a {
    border-color: #333;
    color: #333;
}

.met-index-news .desc .news-type .index-btn.active a {
    border-color: #e60013;
    color: #fff;
}


.met-index-company .index-btn a::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #e60013;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s;
    z-index: 1;
}

.product-grid-container {
    padding-bottom: 95px;
}

.inner-banner {
    position: relative;
}

.inner-banner .mzbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.inner-banner .innerbanner-title {
    font-size: 50px;
    line-height: 1;
    font-weight: bold;
}

.inner-banner .innerbanner-desc {
    font-size: 18px;
    line-height: 1;
    margin-top: 32px;
}


.scroll-label {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: calc(calc(100% - 1600px) / 2);
    bottom: 50px;
}

.scroll-label span:first-of-type {
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 16px;
}

.scroll-label .line {
    width: 3px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    overflow: hidden;
}

.scroll-label .line .back-line {
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, .3);
}

.scroll-label span:first-of-type {
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 16px;
}

.scroll-label .line .front-line {
    width: 3px;
    height: 24px;
    position: absolute;
    left: 0px;
    top: -100%;
    animation: lineMove 3s linear infinite;
    background-color: #fff;
}

.about-session.session1 {
    padding-top: 70px;
    padding-bottom: 80px;
}

.about-session.session2 {
    padding-bottom: 90px;
}


.about-session .session-title {
    font-size: 42px;
    line-height: 1;
    font-weight: bold;
}

.about-session .session-desc {
    font-size: 17px;
    line-height: 38px;
    margin-top: 36px;
    font-weight: lighter;
}

.mzbox,
.container {
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.box2-pic img {
    border-radius: 10px !important;
}


/* 外层整体样式 */
.service-support {
    padding: 60px 0;
}

/* 顶部内容布局 */
.service-support .top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-support .top-row .left h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-support .top-row .left .btn {
    background-color: #d00;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.service-support .top-row .right {
    max-width: 600px;
}

.service-support .top-row .right h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-support .top-row .right p {
    color: #666;
    line-height: 1.6;
}

/* 卡片区 */
.service-support .card-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-support .service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 33%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-support .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-support .service-card .icon {
    text-align: left;
    margin-bottom: 15px;
}

.service-support .service-card .icon svg {
    fill: #d00;
    width: 60px;
}

.service-support .service-card h4 {
    color: #777;
    font-size: 22px;
    font-weight: normal;
    text-align: left;
}

.service-support .service-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* 底部按钮区 */
.service-support .bottom-btns {
    text-align: center;
    margin-top: 40px;
}

.service-support .bottom-btns .btn {
    background-color: #d00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.service-support .bottom-btns .btn svg {
    width: 20px;
    fill: #fff;
}

.service-support .bottom-btns .btn:hover {
    background-color: #a00;
}


.industry-solutions {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.industry-solutions .industry-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 38px;
}

.industry-card {
    position: relative;
    width: 49%;
    border-radius: 9px;
    overflow: hidden;
}

.industry-img {
    position: relative;
    height: 500px;
}

.industry-img .cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #060b39, transparent 80%);
}

.industry-card .industry-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-left: 110px;
    padding-right: 80px;
    color: #fff;
    height: fit-content;
    margin-top: 80px;
}

.industry-card .industry-name {
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 40px;
    color: #fff;
}

.industry-card .industry-desc {
    line-height: 1.5;
}

.industry-card .industry-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 85px;
}

.industry-card .industry-btn a {
    border-color: #fff;
    color: #fff;
}

.industry-card .industry-btn a span {
    z-index: 2;
}

.industry-card .industry-btn a {
    width: 180px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    gap: 15px;
    font-weight: normal;
}

.industry-card .industry-btn a::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #e60013;
    position: absolute;
    left: -100%;
    top: 0;
    transition: all .3s;
    z-index: 1;
}

.industry-card .industry-btn a:hover::after {
    left: 0;
}

/* 主容器 */
.custom-video-text-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
}

/* 文本内容区 */
.custom-video-text-section .text-content {
    flex: 1 1 45%;
}

/* 视频内容区 */
.custom-video-text-section .video-content {
    flex: 1 1 50%;
    text-align: center;
}

/* 标题样式 */
.custom-video-text-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* 描述文本 */
.custom-video-text-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* 按钮样式 */
.custom-video-text-section .elementor-button {
    background-color: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}

/* 视频元素 */
.custom-video-text-section video {
    max-width: 100%;
    border-radius: 8px;
}


.contact-social-container {
    max-width: 600px;
    margin: 0 auto;
    height: 100%;
}

.contact-section .section-title {
    margin-bottom: 20px;
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

.contact-section .contact-address {
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start !important;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.social-section .section-title {
    font-weight: bold;
    margin: 25px 0 15px;
}

@keyframes lineMove {
    0% {
        top: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}



@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.slidein {
    opacity: 0;
    transition: all 0.6s ease-out;
}


.slidein.scrool {
    animation: slideIn 0.6s both;
}

.slidein.delay-200 {
    animation-delay: 0.2s;
}

.slidein.delay-400 {
    animation-delay: 0.4s;
}

.slidein.delay-600 {
    animation-delay: 0.6s;
}

@media screen and (max-width: 1600.1px) {
    .site-header {
        padding: 0px 80px;
    }

    .swiper-btn-right {
        right: 80px;
    }

    .swiper-btn-left {
        left: 80px;
    }

    .index-banner-title {
        font-size: 38px;
    }

    .mzbox {
        padding: 0px 80px;
    }

    .download-title,
    .index-title .desc,
    .index-title .desc>p {
        font-size: 32px;
    }

    .download-type-title,
    .met-index-company .gp-info .gp-label {
        width: 169px;
        height: 44px;
    }

    .scroll-label {
        right: 80px;
        bottom: 22px;
    }

    .inner-banner .innerbanner-title {
        font-size: 42px;
    }

    .industry-grid {
        row-gap: 20px;
    }

    .industry-card .industry-info {
        padding-left: 50px;
    }

    .industry-card .industry-name {
        font-size: 36px;
    }

    .industry-card .industry-btn a {
        width: 156px;
        height: 40px;
        font-size: 15px;
    }
}


@media screen and (max-width: 1440.1px) {
    .desktop-navigation {
        gap: 15px;
    }

    .index-banner-title {
        font-size: 32px;
        max-width: 510px;
    }

    .index-btn a,
    .index-banner-btns a {
        width: 142px;
        height: 44px;
        font-size: 14px;
    }

    .met-index-company .left {
        width: 56%;
    }

    .download-title,
    .index-title .desc,
    .index-title .desc>p {
        font-size: 24px;
    }

    .inner-banner,
    .inner-banner-img {
        height: 55vh;
    }

    .industry-card .industry-btn a {
        width: 142px;
        height: 44px;
        font-size: 14px;
    }

    .industry-img {
        height: 470px;
    }
}

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

    .swiper-btn-left,
    .swiper-btn-right {
        width: 50px;
        height: 50px;
    }

    .index-banner-title {
        font-size: 28px;
    }

    .download-title,
    .index-title .desc,
    .index-title .desc>p {
        font-weight: bold;
    }

    .download-type-title,
    .met-index-company .gp-info .gp-label {
        font-size: 14px;
        width: 150px;
        height: 38px;
    }

    .inner-banner .innerbanner-title {
        font-size: 38px;
    }

    .industry-card .industry-name {
        font-size: 28px;
    }

    .industry-img {
        height: 400px;
    }

}

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

    .mzbox {
        padding: 0px 40px;
    }

    .site-title {
        display: none;
        padding: 0 40px;
    }

    .swiper-btn-right {
        right: 40px;
    }

    .swiper-btn-left {
        left: 40px;
    }

    .met-index-company .right .index-video-btn {
        display: none;
    }

    .met-index-company .index-company-btns .index-btn:last-of-type {
        display: block;
    }

    .index-btn a,
    .index-banner-btns a {
        width: 130px;
        height: 38px;
    }

    .scroll-label {
        right: 40px;
    }

    .industry-card {
        width: 100%;
    }

    .industry-card .industry-info {
        margin-top: auto;
    }

    .industry-card .industry-btn a {
        width: 130px;
        height: 38px;
    }
}

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

    .head-language,
    .desktop-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        line-height: 100px;
    }

    .header-container {
        height: 100px;
    }

    .solbox .photos .swiper-slide .infobox {
        position: relative;
        transform: none !important;
        top: 0;
        left: 0;
        width: 100%;
    }

    .solbox .photos .swiper-slide .infobox .box {
        padding: 35px 30px;
    }

    .solbox .photos .swiper-slide .infobox .title {
        font-size: 16px;
    }

    .solbox .photos .swiper-slide .infobox .cont {
        font-size: 13px;
    }

    .solbox .photos .swiper-slide .infobox::after {
        display: none;
    }

    .solbox .photos .swiper-button-prev,
    .solbox .photos .swiper-button-next {
        display: none;
    }

    .met-index-company .right {
        width: 90%;
        right: -134px;
        opacity: .3;
    }

    .partener .list ul {
        grid-template-columns: repeat(5, 1fr);
    }

    .download-title,
    .index-title .desc,
    .index-title .desc>p {
        font-size: 22px;
    }

    .solution .head-desc {
        margin-bottom: 28px;
    }

    .footer-container.mzbox .footer-main {
        flex-direction: column;
        gap: 20px;
    }

    .footer-navigation ul li {
        width: 100%;
    }

    .scroll-label {
        display: none;
    }

    .inner-banner .innerbanner-title {
        font-size: 32px;
    }

    .inner-banner,
    .inner-banner-img {
        height: 40vh;
    }

    .industry-info {
        padding-left: 20px;
    }
	
	.index-banner, .index-banner>.swiper{
		height: 500px;
	}
	.index-banner .swiper-slide .mzbox.product_banner{
		bottom:0;
	}
}

@media (max-width: 768px) {
    .product-item {
        width: calc(50% - 15px);
    }

    .product-item {
        height: 260px;
    }

    .met-index-company .left {
        width: 61%;
    }

    .partener .list ul {
        grid-template-columns: repeat(4, 1fr);
    }

    .solution.partener {
        height: 1000px;
    }

    .download-type-title,
    .met-index-company .gp-info .gp-label {
        width: 129px;
        height: 34px;
        border-width: 1px;
    }

    .met-index-news .desc .news-type {
        display: none;
    }

    .service-support .top-row .right {
        margin-top: 20px;
    }

    .service-support {
        padding: 60px 20px;
    }

    .industry-img {
        height: 350px;
    }

    .custom-video-text-section .text-content,
    .custom-video-text-section .video-content {
        flex: 1 1 100%;
    }
	
	.index-banner, .index-banner>.swiper{
		height:300px;
	}
	
	.index-banner-btns{
		margin-bottom: 0;
	}
	.index-banner-title{
		max-width: 200px;
		font-size: 16px;
		margin-bottom: 10px;
	}
	.swiper-btn-left, .swiper-btn-right {
        width: 20px!important;
        height: 20px!important;
   }
	.swiper-btn-left i, .swiper-btn-right i{
        font-size: 0.5rem;
   }
	
	    .product-item {
        height: auto;
    }
	
	.met-index-company{
		max-width: 100%;
    overflow: hidden;
	}
}

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

    .index-btn a,
    .index-banner-btns a {
        font-size: 12px;
    }

    .met-index-company .left {
        width: 100%;
    }

    .partener .list ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-banner .innerbanner-title {
        font-size: 27px;
    }

    .service-support .service-card {
        flex: 1;
        max-width: 100%;
    }

    .industry-card .industry-btn a {
        font-size: 12px;
    }

    .service-support .bottom-btns .btn {
        margin-top: 20px;
    }

}

@media (max-width: 480px) {
    .product-item {
        width: 100%;
    }


    .index-banner-btns {
        display: none;
    }
}