
/* 主横幅样式 */
.hero-banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    min-height: 695px;
    max-height: 695px;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 695px;
    max-width: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: block;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.btn {
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    font-size: 17px;
}

.btn-primary {
    border: none;
    border-radius:30px;
    background: linear-gradient(135deg, #0568ef, #004ec4);
    padding: 10px 30px;
    color: var(--white);
    box-shadow: 0 14px 24px rgba(0, 87, 211, 0.22);
    font-weight: 400;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* 特色功能卡片 */
.hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: var(--blue);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Hero左右切换按钮 */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    opacity: 0;
    pointer-events: none;
}

.hero-banner:hover .hero-arrow {
    opacity: 1;
    pointer-events: auto;
}

.hero-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.3);
    opacity: 1;
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* 

中间 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.stats-bar {
    position: relative;
    padding: 0 !important;
    z-index: 5;
    margin-top: -148px;
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 126px;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    position: absolute;
    right: 1px;
    width: 1px;
    height: 54px;
    background: #d7e5f6;
    content: "";
}

.stat-item strong {
    display: block;
    color: #062f91;
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
}

.stat-item span:last-child {
    display: block;
    margin-top: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.stat-icon,
.icon,
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.stat-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #eaf3ff ;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 26px;
   background:linear-gradient(135deg, #086cf5, #0046c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-icon::before,
.stat-icon::after,
.icon::before,
.icon::after,
.mini-icon::before,
.step-icon::before {
    display: none;
}

.section {
    padding:60px 0;
}

.products-section {
    background: #f7fafd;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 42px;
}

.section-head span {
    display: block;
    color: #7daeff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
}

.section-head h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 500;
}

.section-head h2::after {
    color: var(--blue);
    content: " >";
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--blue);
    font-weight: 400;
    transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-link{
    display: none;
}
.text-link:hover {
    color: #0056c7;
    transform: translateX(5px);
}

.products-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 50px;
}

.product-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-tabs button {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    color: #1e3c70;
    background: #fff;
    box-shadow: 0 14px 28px rgba(13, 91, 183, 0.07);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    width: 100%;
    transition: all 0.3s ease;
}

.product-tabs button i {
    font-size: 22px;
    width: 28px;
    text-align: center;
}

.product-tabs button.active {
    color: #fff;
    background: linear-gradient(135deg, #086cf5, #0046c0);
}

.step-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 14px;
    color: currentColor;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    max-height: 270px;
    padding:10px 10px;
    border: 1px solid #edf4ff;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 32px rgba(20, 88, 174, 0.07);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(20, 88, 174, 0.13);
}

.product-card.is-hidden {
    display: none;
}

.product-card img {
    width: 100%;
    height: 186px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.product-card h3 {
    width: 100%;
    overflow: hidden;
    margin: 0 0 10px;
    font-size: 17px;
}

.product-card p {
    margin: 0;
    color: #6a7687;
    font-size: 14px;
    font-weight: 400;
}

.about-section {
    position: relative;
    overflow: hidden;
    background:url(../img/about-bj.jpg) no-repeat center;
    background-size: cover;
}
.solution-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eaf4ff 0%, #f7fbff 100%);
}

.solution-section::after{
    position: absolute;
    right: 0;
    top: 130px;
    width: 290px;
    height: 520px;
    opacity: 0.55;
    background-image:
        radial-gradient(circle, rgba(75, 147, 233, 0.2) 2px, transparent 3px);
    background-size: 18px 18px;
    content: "";}

.solution-board {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 585px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 24px 56px rgba(14, 76, 150, 0.12);
}

.solution-cards {
    display: flex;
    min-width: 0;
}

.solution-panel {
    position: relative;
    flex: 0 0 156px;
    padding: 65px 20px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.92);
    background: #075cb8;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    transition: flex-basis 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1), margin-left 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 0;
}

.solution-panel:not(.active):hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.solution-panel + .solution-panel {
    margin-left: -26px;
}

.solution-panel.active + .solution-panel {
    margin-left: -26px;
}
.solution-panel i {
    font-size: 230px;
    color: rgba(255, 255, 255, 0.1);
    padding: 20px 20px;
    display: block;
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 10px;
}

.solution-panel.active {
    flex: 1 1 auto;
    cursor: default;
}

.solution-panel.green {
    background: #06aa88;
    margin-left: -26px;
}

.solution-panel.cyan {
    background: #35bdc8;
    margin-left: -26px;
}

.solution-panel span {
    display: block;
    font-size: 34px;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: normal;
    text-align: left;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 2px;
}

.solution-panel.active span {
    letter-spacing: normal;
}

.solution-panel p {
    margin: 20px 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    max-width: 310px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.solution-panel.active p {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.solution-panel em {
    position: absolute;
    right: 40px;
    bottom: 36px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.2s ease;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}
.solution-panel em:hover {
    transform: translateY(5px);
}

.solution-panel.active em {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.solution-visual {
    position: relative;
    min-width: 0;
    background: #fff;
    margin-left: -26px;
}

.solution-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #fff;
    transition: opacity 0.22s ease;
}

.solution-visual.is-changing img {
    opacity: 0.08;
}

.news-section {
    background: #fff;
}

.news-head {
    align-items: center;
}
/* PC端新闻标题行：默认块级布局 */
.news-title-row {
    display: block;
}

.news-title-row .mobile-link {
    display: none;
}

.news-head .pc-link {
    display: inline-flex;
}


.news-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.news-tabs button {
    min-width: 85px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    color: #3d4b65;
    background: transparent;
    cursor: pointer;
    font-weight: 400;
}

.news-tabs button.active {
    color: #fff;
    background: var(--blue);
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
    align-items: stretch;
}

.featured-news {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
   box-shadow: 0 -5px 15px rgba(19, 91, 181, 0.1), 0 20px 35px rgba(19, 91, 181, 0.13);
    align-items: stretch;
}

.featured-news img {
    width: 100%;
    height:320px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.featured-news-body {
    flex: 1;
    padding: 15px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-news .news-meta {
    margin-bottom: 4px;
}

.featured-news h3,
.news-item h3 {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.55;
}
.news-item h3 a:hover{
    color: var(--blue);
}
.featured-news h3 a:hover{
    color: var(--blue);
}
.featured-news p,
.news-item p {
    color: #6d7789;
    line-height: 1.8;
    font-size: 14px;
}

.featured-news .text-link {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    gap: 28px;
    align-items: center;
    color: #697588;
    font-weight: 400;
    font-size: 13px;
}

.news-meta span {
    color: var(--blue);
}

.news-list {
   display: flex;
  flex-direction: column;
  gap:24px;
  align-items: flex-start; 
  justify-content: flex-end;
  height: 100%;
  min-height: 100%;
}

.news-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 -2px 5px rgba(19, 91, 181, 0.05), 0 5px 10px rgba(19, 91, 181, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 -2px 5px rgba(10, 63, 130, 0.05), 0 5px 10px rgba(10, 63, 130, 0.1);
}

.news-item.is-hidden {
    display: none;
}

.news-item img {
    width: 200px !important;
    height: 120px;
    max-width: 200px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 8px;
}

.news-item h3 {
    font-size: 17px;
    margin: 6px 0;
}

.news-item p {
    margin: 0;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 95px;
    align-items: center;
}

.about-media>span {
    display: block;
    color: #7daeff;
    font-size: 24px;
    font-weight: 500;
}

.about-media h2 {
    margin: 8px 0 30px;
    font-size: 34px;
    font-weight: 500;
}

.about-media h2::after {
    color: var(--blue);
    content: " >";
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(11, 80, 160, 0.12);
    margin-top: 120px;
    width: 100%;
}

.video-card img {
    width: 100%;
    height: 385px;
    object-fit: cover;
    display: block; 
}
.video-card button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    height: 92px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: rgba(6, 70, 143, 0.28);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.video-card button::after {
    position: absolute;
    left: 38px;
    top: 28px;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 25px solid #fff;
    content: "";
}

.about-copy {
    padding-top: 0px;
}

.about-copy p {
    margin: 0 0 40px;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 30px;
}

.btns {
    display: inline-block;
    padding: 10px 30px;
    color: #06328d;
    border: 2px solid #afd1ff;
    border-radius: 50px;
}

.btns:hover {
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background: linear-gradient(135deg, #086cf5, #0046c0);
    border-radius: 50px;
}

.about-stats div {
    display: flex;
    min-height: 135px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe0f5;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
}

.about-stats .stat-icon {
    width: 50px;
    height: 50px;
}

.about-stats .stat-icon i {
    font-size: 24px;
}

.about-stats strong {
    color: #06328d;
    font-size: 20px;
    font-weight: 500;
}

.about-stats em {
    color: #666;
    font-style: normal;
    font-weight: 400;
}

.service-section {
    padding: 88px 0 92px;
    background: #fff;
}

.service-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 330px;
    min-height: 325px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(90deg, #ebf2fe, #ecf4fe 70%);
    box-shadow: 0 18px 40px rgba(13, 83, 170, 0.1);
}

.service-copy {
    padding: 54px 290px 42px 24px;
}

.service-copy h2 {
    margin: 0 0 14px;
    color: #06316f;
    font-size: 32px;
    padding-left: 20px;
}

.service-copy p {
    margin: 0 0 38px;
    color: #6a7586;
    font-weight: 400;
     padding-left: 20px;
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-steps div {
    min-width: 0;
    text-align: center;
}

.step-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    color: #0f5ed0;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(18, 91, 178, 0.09);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 24px;
   background:linear-gradient(135deg, #086cf5, #0046c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-steps strong,
.service-steps em {
    display: block;
    font-weight: 400;;
}

.service-steps strong {
    font-size: 15px;
}

.service-steps em {
    margin-top: 8px;
    color: #666;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
}

.service-agent {
    position: absolute;
    right: 300px;
    bottom: 0;
    width: 300px;
    height: 345px;
    object-fit: contain;
    object-position: left bottom;
}

.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 42px 54px;
    color: #fff;
    background: linear-gradient(135deg, #0474ff, #0054dd);
}

.contact-box a:not(.btn) {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 400;

}

.btnwhite {
    background: #fff;
    justify-content: center;
    color: #0960d9;
    min-width: 220px;
    border-radius: 40px;
    text-align: center;
    padding: 10px 0;
    transition: all 0.3s ease; 
}

.btnwhite:hover{
    box-shadow: 0 10px 20px rgba(18, 91, 178, 0.09);
      transform: translateY(-5px);
}

/* 页面加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    .main-nav {
        gap: 20px;
    }

    .header-actions {
        gap: 14px;
    }

    .phone-link {
        font-size: 15px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-news>img {
        width: 100%;
        min-width: 160px;
    }

    .service-copy {
        padding-right: 330px;
    }

    .service-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .hero-banner {
    min-height: auto;
    max-height: none;
    margin-bottom: 0;
    }
    
    .hero-slider {
    height: auto;
    }
    .hero-slide {
    position: absolute;
    }
    
    .hero-slide.active {
    position: relative;
    }
    
    .hero-slide img {
    height: auto;
    min-height: 360px;
    object-fit: cover;
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        bottom: 20px;
    }
    .stats-bar {
        display: none;
        margin-top: 0;
        padding: 20px 0 !important;
    }

    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: #e8f0fe;
        border-radius: 16px;
        overflow: hidden;
    }

    .stat-item {
        padding: 18px 12px;
        gap: 10px;
        background: #fff;
        flex-direction: column;
        text-align: center;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item strong {
        font-size: 22px;
    }

    .stat-item span:last-child {
        font-size: 11px;
        margin-top: 4px;
        color: #888;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .stat-icon i {
        font-size: 18px;
    }

    .section {
        padding: 20px 0;
    }
     .products-section{
     padding: 20px 0 !important;
    }

    .section-head {
        flex-direction:row;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 24px;
    }

    .section-head span {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .section-head h2 {
        font-size: 24px;
    }

    .section-head h2::after {
        content: "";
    }

    .section-head .text-link {
        font-size: 13px;
    }

    .products-layout,
    .news-layout,
    .about-layout,
    .service-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-tabs {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-tabs button {
        height: auto;
        min-height: 42px;
        padding: 8px 6px;
        font-size: 12px;
        justify-content: center;
        border-radius: 10px;
        white-space: nowrap;
         box-shadow: none;
    }

    .product-tabs button i {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        padding: 12px 10px 16px;
        border-radius: 12px;
    }

    .product-card img {
        height: 100px;
        width: 100%;
        border-radius: 8px;
    }

    .product-card h3 {
        font-size: 13px;
        margin-top: 10px;
    }

    .product-card p {
        font-size: 11px;
        margin-top: 4px;
    }

    .solution-board {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-cards {
        min-height: auto;
        flex-direction: column;
        gap: 10px;
    }

    .solution-panel {
        flex: none !important;
        flex-basis: auto !important;
        padding: 18px 16px;
        margin-left: 0 !important;
        border-radius: 12px;
    }

    .solution-panel + .solution-panel {
        margin-left: 0 !important;
    }

    .solution-panel span {
        font-size: 17px;
    }

    .solution-panel p {
        font-size: 12px;
        margin-top: 8px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.6;
    }

    .solution-panel i {
        font-size: 50px;
        position: absolute;
        bottom: 6px;
        right: 12px;
        opacity: 0.3;
    }

    .solution-panel em {
        position: static;
        margin-top: 10px;
        opacity: 1;
        transform: none;
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 12px;
        padding: 4px 12px;
        border-radius: 20px;
        display: inline-block;
    }

    .solution-visual img {
        height: 220px;
        border-radius: 12px;
    }

    .news-head {
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative;
    }
    .news-head .mobile-link {
        position: absolute;
       top:5px;
       right: 0px;
    }
    .news-head .pc-link {
        display: none;
    }
    .news-tabs {
        justify-content: flex-start;
        gap: 6px;
        flex-wrap: wrap;
    }

    .news-tabs button {
        min-width: auto;
        padding: 5px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

    .featured-news {
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
    }

    .featured-news>img {
        width: 100%;
        min-width: auto;
        height: 180px;
    }

    .featured-news-body {
        padding: 16px;
    }

    .featured-news h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    .news-item {
        gap: 12px;
        border-radius: 10px;
        overflow: hidden;
    }

    .news-item img {
        width: 110px;
        height: 78px;
        border-radius: 8px;
    }

    .news-item h3 {
        font-size: 14px;
        line-height: 1.5;
    }

    .news-item p {
        font-size: 12px;
         display: none;
    }

    .about-layout {
        gap: 30px;
    }

    .about-media span {
        font-size: 14px;
    }

    .about-media h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .video-card {
        border-radius: 12px;
        overflow: hidden;
        margin-top: 0!important;
    }

    .video-card img {
        height: 220px;
    }

    .about-copy p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        display: none;
    }

    .about-stats div {
        min-height: 90px;
        padding: 14px 10px;
        border-radius: 10px;
    }

    .about-stats strong {
        font-size: 18px;
    }

    .about-stats em {
        font-size: 11px;
    }

    .service-copy {
        padding: 24px 16px;
    }

    .service-copy h2 {
        font-size: 22px;
    }

    .service-copy p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .service-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .step-icon i {
        font-size: 16px;
    }

    .service-steps strong {
        font-size: 12px;
    }

    .service-steps em {
        font-size: 10px;
    }

    .service-agent {
        display: none;
    }

    .contact-box {
        padding: 24px 16px;
        gap: 12px;
        border-radius: 12px;
    }

    .contact-box a:not(.btn) {
        font-size: 15px;
        gap: 10px;
    }
    .service-section{
        padding:20px 0 !important;
    }

    .btnwhite {
        min-width: auto;
        width: 100%;
        border-radius: 8px;
    }
}
@media (max-width: 620px) {
        .hero-slide img {
        min-height: 200px;
        }

    .stats-card {
        grid-template-columns: 1fr 1fr;
        border-radius: 12px;
    }

    .stat-item {
        padding: 14px 8px;
    }

    .stat-item:nth-child(1)::after,
    .stat-item:nth-child(3)::after {
        display: none;
    }

    .stat-item strong {
        font-size: 20px;
    }

    .stat-item span:last-child {
        font-size: 10px;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .stat-icon i {
        font-size: 16px;
    }

    .section {
        padding: 20px 0;
    }
   .products-section{
     padding: 20px 0 !important;
    }
    .section-head h2 {
        font-size: 20px;
    }

    .section-head .text-link {
        margin-top: 8px;
    }

    .product-tabs {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .product-tabs button {
        min-height: 36px;
        padding: 6px 4px;
        font-size: 11px;
        box-shadow: none;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-card {
        max-height: none;
        padding: 10px 8px 14px;
        border-radius: 10px;
    }

    .product-card img {
        height: 80px;
        border-radius: 6px;
    }

    .product-card h3 {
        font-size: 12px;
        margin-top: 8px;
    }

    .product-card p {
        font-size: 10px;
        margin-top: 2px;
    }

    .solution-panel {
        padding: 16px 14px;
    }

    .solution-panel span {
        font-size: 16px;
    }

    .solution-panel p {
        font-size: 12px;
    }

    .solution-panel i {
        font-size: 40px;
    }

    .solution-visual img {
        height: 180px;
        border-radius: 10px;
    }

    .news-layout {
        gap: 14px;
    }

    .news-tabs {
        gap: 4px;
    }
    .news-head{position:relative}
    .news-head .pc-link {
        display: none;
    }
     .news-head .mobile-link {
        position: absolute;
       top:5px;
       right: 0px;
       display: block;
    }
    .news-tabs button {
        padding: 4px 10px;
        font-size: 11px;
    }

    .featured-news>img {
        height: 140px;
    }

    .featured-news h3 {
        font-size: 15px;
    }

    .news-item {
        flex-direction:row;
        gap: 10px;
    }

    .news-item img {
          width: 120px !important;
          height: auto !important;
          object-fit: cover;
          display: block;
          border-radius: 8px;
          margin: 0;
          padding: 0;   
    }

    .news-item h3 {
        font-size: 14px;
    }

    .about-layout {
        gap: 24px;
    }

    .about-media span {
        font-size: 12px;
    }

    .about-media h2 {
        font-size: 20px;
    }

    .video-card img {
        height: 180px;
    }

    .about-copy p {
        font-size: 13px;
        line-height: 1.8;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        display: none;
    }

    .about-stats div {
        min-height: 80px;
        padding: 12px 8px;
        border-radius: 8px;
    }

    .about-stats strong {
        font-size: 16px;
    }

    .about-stats em {
        font-size: 10px;
    }

    .service-copy h2 {
        font-size: 18px;
    }

    .service-copy p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .service-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .service-steps div {
        text-align: center;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
        border-radius: 8px;
    }

    .step-icon i {
        font-size: 14px;
    }

    .service-steps strong {
        font-size: 12px;
    }

    .service-steps em {
        font-size: 10px;
        margin-top: 2px;
    }

    .contact-box {
        padding: 20px 14px;
    }

    .contact-box a:not(.btn) {
        font-size: 14px;
    }
     .service-section{
        padding: 20px 0 !important;
    }
    .featured-news img{
        width: 100%;
        min-width: auto;
        height: auto;
        object-fit:cover;
    }
}

