.w156 {
    width: 1560px;
    margin: 0 auto;
}

.w12 {
    width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #e3f7f5;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 42px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin-left: 30px;
}

.nav-item>a {
    display: block;
    padding: 26px 15px;
    color: #2F364C;
    text-decoration: none;
    font-size: 18px;

}

.nav-item.active>a,
.nav-item:hover>a {
    background-color: #b9ece6;
    color: #0E7499;
    font-weight: bold;
}

.submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e3f7f5;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 175px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-item:hover .submenu {
    display: block !important;
}

.submenu li {
    padding: 0;
}

.submenu li a {
    padding: 10px 15px;
    color: #7C7C7C !important;
    font-size: 14px;

    font-weight: normal;
    background-color: transparent;
    display: block;
}

.submenu li:hover a,
.submenu li.active a {
    color: #0E7499 !important;
}

.header-right {
    display: flex;
    align-items: center;
}

.search-wrapper {
    position: relative;
    margin-right: 20px;
}

.search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.search-input {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 200px;
    font-size: 14px;
}

.search-wrapper.active .search-input {
    display: block;
}

.lang-wrapper {
    position: relative;
}

.lang-icon {

    height: 24px;
    cursor: pointer;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 25px;
    right: 0;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 100px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-wrapper:hover .lang-menu {
    display: block;
}

.lang-menu li {
    padding: 0;
}

.lang-menu li a {
    display: block;
    padding: 8px 15px;
    color: #2F364C;
    text-decoration: none;
    font-size: 14px;
}

.lang-menu li:hover a {
    background-color: #f5f5f5;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #2F364C;
    margin: 4px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1600px) {
    .w156 {
        width: 95%;
    }
}

@media (max-width: 1200px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #e3f7f5;
        padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .submenu {
        position: static;
        display: none;
        margin-top: 10px;
        border: none;
        box-shadow: none;
    }

    .has-submenu:hover .submenu,
    .has-submenu.active .submenu {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-right {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .header-right {
        right: 10px;
    }

    .search-wrapper {
        margin-right: 10px;
    }

    .search-input {
        width: 150px;
    }
}

.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 780px;
}

.banner-swiper .swiper-slide {
    position: relative;
    height: 100%;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 10;
}

.banner-content h2 {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 22px;
    color: #2F364C;
    margin-bottom: 30px;
    font-weight: normal;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 5%;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 116, 153, 0.4);
}

.banner-btn img {
    margin-left: 10px;
    width: 20px !important;
    height: auto !important;
}

.banner-swiper .swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 1;
    margin: 0 8px !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
}

@media (max-width: 1200px) {
    .banner-swiper {
        height: 400px;
    }

    .banner-content h2 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .banner-swiper {
        height: 300px;
    }

    .banner-content {
        padding: 0 20px;
        text-align: center;
    }

    .banner-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .banner-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .banner-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 6px !important;
    }
}

.features-section {
    background-color: #e3f7f5;
    padding: 40px 0;
}

.features-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.feature-item img {
    width: 55px;
    height: 55px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: #2F364C;
    font-weight: normal;
    line-height: 1.5;
}

.feature-divider {
    width: 1px;
    background-color: #0E7499;
    margin: 0 20px;
}

.sy_wapper {
    background-image: url(../images/sybg.png);
    background-size: 100% 100%;
}

@media (max-width: 1200px) {
    .feature-item {
        padding: 0 20px;
    }

    .feature-item img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .feature-divider {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
    }

    .feature-item {
        padding: 20px 0;
        justify-content: center;
        border-bottom: 1px solid #ccc;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-divider {
        display: none;
    }

    .feature-content {
        text-align: center;
    }

    .feature-item img {
        margin-right: 15px;
    }
}

.video-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.video-container {
    text-align: center;
}

.video-title {
    font-size: 26px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 30px;
    line-height: 1.5;
}

.video-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.tag-item {
    display: flex;
    align-items: center;
    color: #2F364C;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    margin-right: 10px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
}

.video-overlay.hidden {
    display: none;
}

.play-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.play-icon:hover {
    transform: scale(1.1);
}

.video-action {
    display: flex;
    justify-content: center;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 116, 153, 0.4);
}

.video-btn img {
    margin-left: 10px;
    width: 20px;
    height: auto;
}

@media (max-width: 1200px) {
    .video-title {
        font-size: 20px;
    }

    .video-tags {
        gap: 20px;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-title {
        font-size: 18px;
        padding: 0 20px;
    }

    .video-tags {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .tag-item {
        font-size: 13px;
    }

    .play-icon {
        width: 50px;
        height: 50px;
    }

    .video-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.core-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.core-container {
    background: linear-gradient(to bottom, #DDFFFC 0%, #FFFFFF 50%);
    border-radius: 20px;
    padding: 80px;
    box-sizing: border-box;
}

.core-header {
    text-align: center;
    margin-bottom: 40px;
}

.core-title {
    font-size: 28px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.core-subtitle {
    font-size: 20px;
    color: #0E7499;
    line-height: 1.6;
}

.core-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.core-left {
    flex: 1;
}

.core-item {
    margin-bottom: 30px;
}

.core-item:last-of-type {
    margin-bottom: 40px;
}

.core-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    margin-right: 12px;
    vertical-align: middle;
}

.core-item h3 {
    font-size: 23px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: middle;
}

.core-item p {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    line-height: 1.6;
    padding-left: 22px;
    box-sizing: border-box;
    margin-bottom: 5px;
}

.core-item p:last-child {
    margin-bottom: 0;
}

.core-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: #fff;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%) 1;
    color: #0E7499;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-left: 22px;
    box-sizing: border-box;
}

.core-btn:hover {
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
}

.core-btn img {
    margin-left: 8px;
    width: 16px;
    height: auto;
}

.core-right {
    flex: 1;
    text-align: center;
}

.core-right img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .core-container {
        padding: 30px;
        box-sizing: border-box;
    }

    .core-content {
        gap: 40px;
    }

    .core-title {
        font-size: 22px;
    }

    .core-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .core-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .core-container {
        padding: 20px;
        box-sizing: border-box;
    }

    .core-content {
        flex-direction: column;
        gap: 30px;
    }

    .core-left {
        order: 2;
    }

    .core-right {
        order: 1;
    }

    .core-title {
        font-size: 20px;
    }

    .core-subtitle {
        font-size: 14px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .core-item {
        margin-bottom: 20px;
    }

    .core-item h3 {
        font-size: 16px;
    }

    .core-item p {
        font-size: 14px;
    }

    .core-btn {
        margin-left: 0;
        display: block;
        text-align: center;
        justify-content: center;
    }
}

.services-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.services-container {
    text-align: center;
}

.services-header {
    margin-bottom: 40px;
}

.services-title {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 20px;
    color: #2F364C;
}

.services-content {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.service-card {
    flex: 1;
    background: linear-gradient(to bottom, #DDFFFC 0%, #FFFFFF 50%);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;

}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 18px;
    color: #2F364C;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

.nei-title {
    font-size: 28px;
    font-weight: bold;
    color: #2F364C;
}

@media (max-width: 1200px) {
    .services-content {
        gap: 20px;
    }

    .service-card {
        padding: 25px;
        box-sizing: border-box;
    }

    .services-title {
        font-size: 22px;
    }

    .services-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .services-content {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        padding: 25px;
        box-sizing: border-box;
    }

    .services-title {
        font-size: 20px;
    }

    .services-subtitle {
        font-size: 14px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }
}

.solution-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.solution-container {
    text-align: center;
}

.solution-header {
    margin-bottom: 40px;
}

.solution-title {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.solution-subtitle {
    font-size: 20px;
    color: #2F364C;
}

.solution-content {
    display: flex;
    gap: 30px;
}

.solution-left {
    width: 280px;
    background: linear-gradient(0deg, #DDFFFC 0%, #FFFFFF 50%, #DDFFFC 100%);
    box-shadow: 4px 4px 10px 0px rgba(52, 95, 146, 0.05);
    border-radius: 8px;
    padding: 20px 0;
    box-sizing: border-box;
}

.solution-category {
    padding: 15px 20px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #2F364C;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.solution-category.active {
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    box-shadow: 0px 4px 10px 0px rgba(10, 57, 123, 0.25);
}

.solution-right {
    flex: 1;
    background: linear-gradient(0deg, #DDFFFC 0%, #FFFFFF 50%);
    box-shadow: 4px 4px 10px 0px rgba(52, 95, 146, 0.05);
    border-radius: 8px;
    padding: 30px;
    box-sizing: border-box;
    min-height: 500px;
}

.solution-item {
    display: none;
}

.solution-item.active {
    display: block;
}

.solution-item h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 20px;
}

.solution-item img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.solution-item p {
    font-size: 15px;
    text-align: left;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: normal;
}

.solution-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.solution-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 116, 153, 0.4);
}

.solution-btn::after {
    content: ' →';
    margin-left: 8px;
}

@media (max-width: 1200px) {
    .solution-left {
        width: 220px;
        padding: 15px 0;
        box-sizing: border-box;
    }

    .solution-category {
        padding: 12px 15px;
        font-size: 14px;
    }

    .solution-right {
        padding: 20px;
        box-sizing: border-box;
    }

    .solution-title {
        font-size: 30px;
    }

    .solution-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .solution-content {
        flex-direction: column;
        gap: 20px;
    }

    .solution-left {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        box-sizing: border-box;
        justify-content: center;
    }

    .solution-category {
        padding: 10px 15px;
        font-size: 13px;
        margin: 5px;
        border-radius: 5px;
    }

    .solution-right {
        padding: 20px;
        box-sizing: border-box;
    }

    .solution-title {
        font-size: 24px;
    }

    .solution-subtitle {
        font-size: 16px;
    }

    .solution-item h3 {
        font-size: 20px;
    }

    .solution-item p {
        font-size: 14px;
    }
}

.cases-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.cases-container {
    text-align: center;
}

.cases-header {
    margin-bottom: 40px;
}

.cases-title {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.cases-subtitle {
    font-size: 20px;
    color: #2F364C;
}

.cases-swiper {
    width: 100%;
    padding: 20px 0 50px;
    box-sizing: border-box;
}

.cases-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.cases-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.case-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.case-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.case-card h3 {
    font-size: 18px;
    text-align: left;
    font-weight: bold;
    color: #2F364C;
    padding: 20px 20px 10px;
    box-sizing: border-box;
    margin: 0;
}

.case-card p {
    font-size: 14px;
    text-align: left;
    color: #666;
    line-height: 1.6;
    padding: 0 20px 20px;
    box-sizing: border-box;
    margin: 0;
}

.cases-swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.cases-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cases-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
}

.cases-swiper .swiper-button-next,
.cases-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #2F364C;
}

.cases-swiper .swiper-button-next::after,
.cases-swiper .swiper-button-prev::after {
    font-size: 18px;
}

@media (max-width: 1200px) {
    .cases-title {
        font-size: 30px;
    }

    .cases-subtitle {
        font-size: 18px;
    }

    .case-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .cases-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .cases-title {
        font-size: 24px;
    }

    .cases-subtitle {
        font-size: 16px;
    }

    .case-card img {
        height: 150px;
    }

    .case-card h3 {
        font-size: 16px;
        padding: 15px 15px 8px;
        box-sizing: border-box;
    }

    .case-card p {
        font-size: 13px;
        padding: 0 15px 15px;
        box-sizing: border-box;
    }

    .cases-swiper .swiper-button-next,
    .cases-swiper .swiper-button-prev {
        display: none;
    }
}

.advantages-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.advantages-container {
    text-align: center;
}

.advantages-header {
    margin-bottom: 40px;
}

.advantages-title {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.advantages-subtitle {
    font-size: 20px;
    color: #2F364C;
}

.advantages-content {
    display: flex;
    gap: 30px;
}

.advantage-card {
    flex: 1;
    background: linear-gradient(to bottom, #DDFFFC 0%, #FFFFFF 30%);
    border-radius: 10px;
    padding: 60px;
    box-sizing: border-box;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.advantage-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('../images/bg1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;

}

.advantage-card h3 {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 25px;
}

.advantage-item {
    text-align: left;
    margin-bottom: 25px;
}

.advantage-item h4 {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.advantage-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-item li {
    color: #666;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
}

.advantage-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
}

.highlight-text {
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.big-num {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    max-width: 100px;
    margin: 0 auto;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.advantage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 116, 153, 0.4);
}

.advantage-btn .arrow {
    margin-left: 8px;
}

@media (max-width: 1200px) {
    .advantages-content {
        gap: 20px;
    }

    .advantage-card {
        padding: 25px;
        box-sizing: border-box;
        min-height: 550px;
    }

    .advantages-title {
        font-size: 30px;
    }

    .advantages-subtitle {
        font-size: 18px;
    }

    .big-num {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .advantages-content {
        flex-direction: column;
        gap: 25px;
    }

    .advantage-card {
        padding: 25px;
        box-sizing: border-box;
        min-height: auto;
    }

    .advantages-title {
        font-size: 24px;
    }

    .advantages-subtitle {
        font-size: 16px;
    }

    .advantage-card h3 {
        font-size: 20px;
    }

    .advantage-item h4 {
        font-size: 15px;
    }

    .advantage-item li {
        font-size: 13px;
    }

    .highlight-text {
        font-size: 14px;
    }

    .big-num {
        font-size: 36px;
    }

    .advantage-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

.partners-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.partners-container {
    text-align: center;
}

.partners-title {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.partner-item {
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;

    object-fit: contain;
}

@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .partners-title {
        font-size: 40px;
    }

    .partner-item {
        padding: 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .partners-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .partner-item {
        padding: 15px;
        box-sizing: border-box;
    }

    .partner-item img {
        max-height: 40px;
    }
}

.tech-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.tech-container {
    text-align: center;
}

.tech-header {
    margin-bottom: 40px;
}

.tech-title {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.tech-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: normal;
}

.tech-content {
    display: flex;
    gap: 30px;
}

.tech-card {
    flex: 1;
    background: linear-gradient(to bottom, #DDFFFC 0%, #FFFFFF 100%);
    border-radius: 15px;
    padding: 20px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-top-img {
    width: 100%;

    height: auto;
    margin-bottom: 20px;
}

.tech-text {
    width: 100%;
    text-align: left;
    flex: 1;
}

.tech-subtitle-item {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.tech-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tech-text li {

    color: #666;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
    margin-bottom: 8px;
}

.tech-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
}

.tech-bottom-img {
    width: 100%;
    max-width: 280px;
    height: auto;

}

.tech-action {
    margin-top: 40px;
}

.tech-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tech-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 116, 153, 0.4);
}

@media (max-width: 1200px) {
    .tech-content {
        gap: 20px;
    }

    .tech-title {
        font-size: 40px;
    }

    .tech-card {
        padding: 20px;
        box-sizing: border-box;
    }

    .tech-top-img {
        max-width: 150px;
    }

    .tech-bottom-img {
        max-width: 140px;
    }
}

@media (max-width: 768px) {
    .tech-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .tech-content {
        flex-direction: column;
        gap: 25px;
    }

    .tech-title {
        font-size: 28px;
    }

    .tech-subtitle {
        font-size: 16px;
    }

    .tech-card {
        padding: 20px;
        box-sizing: border-box;
    }

    .tech-text li {
        font-size: 13px;
    }

    .tech-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.news-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, #e3f7f5 100%);
    box-sizing: border-box;
}

.news-container {
    text-align: center;
}

.news-header {
    margin-bottom: 40px;
}

.news-title {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.news-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: normal;
}

.news-content {
    display: flex;
    gap: 30px;
}

.news-left {
    width: 48%;
}

.news-right {
    width: 52%;
    position: relative;
    height: 550px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-card.big-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-swiper {
    width: 100%;
    height: 100%;
}

.news-card.big-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.news-info {
    padding: 25px;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    text-align: left;
    flex-direction: column;
}

.news-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 15px;
}

.news-info p {
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.news-time {
    font-size: 13px;
    color: #999;
}

.news-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #0E7499;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%) 1;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.news-link:hover {
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
}

.news-link img {
    width: 14px !important;
    height: auto !important;
    margin-left: 5px;
}

.news-swiper {
    height: 100%;
}

.news-swiper .swiper-wrapper {
    height: 100%;
}

.news-swiper .swiper-slide {
    height: auto;
}

.news-card.small-card {
    display: flex;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
}

.news-card.small-card:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-card.small-card img {

    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.news-text {
    flex: 1;
    padding-left: 15px;
    box-sizing: border-box;
    display: flex;
    text-align: left;
    flex-direction: column;
}

.news-text h4 {
    font-size: 18px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 8px;
}

.news-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
}

.news-text .news-footer {
    margin-top: 10px;
    padding-top: 10px;
}

.news-text .news-link {
    padding: 8px 10px;

}

.news-swiper .swiper-pagination {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(180deg, #0E7499 0%, #57D1C6 100%);
}

@media (max-width: 1200px) {
    .news-content {
        gap: 20px;
    }

    .news-title {
        font-size: 40px;
    }

    .news-card.big-card img {
        height: 220px;
    }

    .news-info {
        padding: 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .news-content {
        flex-direction: column;
        gap: 25px;
    }

    .news-left,
    .news-right {
        width: 100%;
    }

    .news-title {
        font-size: 28px;
    }

    .news-subtitle {
        font-size: 16px;
    }

    .news-card.big-card img {
        height: 200px;
    }

    .news-card.small-card {
        flex-direction: column;
    }

    .news-card.small-card img {
        width: 100%;
        height: 150px;
        margin-bottom: 15px;
    }

    .news-text {
        padding-left: 0;
        box-sizing: border-box;
    }

    .news-swiper .swiper-pagination {
        right: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(50%);
        flex-direction: row;
    }
}

.footer {
    background-color: #050505;
    padding: 60px 0;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 200px;
    height: auto;
}

.footer-nav {

    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-nav-item {
    /* width: 100px; */
}

.footer-nav-item h4 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-nav-item h4 a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-nav-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item li {
    margin-bottom: 12px;
}

.footer-nav-item a {
    color: #D9D9D9;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-item a:hover {
    color: #57D1C6;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-content {
        gap: 40px;
    }

    .footer-nav {
        gap: 30px;
    }

    .footer-nav-item {
        /* min-width: 100px; */
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        gap: 30px;
    }

    .footer-nav-item {
        /* min-width: 120px; */
        text-align: center;
    }

    .footer-divider {
        margin: 30px 0;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

.mianbao {
    height: 50px;
    line-height: 50px;
    color: #2F364C;
    letter-spacing: 1px;
}

.mianbao a {

    color: #2F364C;
}

.product-banner {

    padding: 180px 0;
    box-sizing: border-box;
    position: relative;
}


.product-banner-container {
    position: relative;
    z-index: 1;
}

.product-banner-content {
    text-align: left;
}

.product-banner-title {
    font-size: 56px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.product-banner-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: normal;
}

@media (max-width: 1200px) {
    .product-banner {
        padding: 60px 0;
        box-sizing: border-box;
    }

    .product-banner-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .product-banner {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .product-banner-title {
        font-size: 28px;
    }

    .product-banner-subtitle {
        font-size: 16px;
    }
}

.carbon-platform {
    padding: 60px 0;

    box-sizing: border-box;
}

.carbon-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.carbon-left {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.carbon-right {
    width: 25%;
    background: linear-gradient(to bottom, #e3f7f5 0%, #fff 100%);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
}

.carbon-top {
    margin-bottom: 20px;
}

.carbon-title {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.carbon-desc {
    font-size: 18px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.carbon-bottom {
    display: flex;
    gap: 25px;
}

.carbon-video {
    width: 50%;
}

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.video-cover {
    width: 100%;
    height: auto;
    display: block;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.carbon-text {
    width: 50%;
}

.carbon-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.carbon-content {
    font-size: 14px;
    color: #2F364C;
    line-height: 1.8;
    margin: 0;
}

.carbon-right-title {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 25px 0;
}

.carbon-list {
    margin-bottom: 20px;
}

.carbon-list h4 {
    font-size: 14px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.carbon-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.carbon-tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    font-size: 13px;
    border-radius: 5px;
}

.carbon-tags .tag .badge {
    background: #fff;
    color: #0E7499;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
}

.carbon-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

@media (max-width: 1200px) {
    .carbon-container {
        gap: 20px;
    }

    .carbon-left {
        width: 70%;
    }

    .carbon-right {
        width: 30%;
        padding: 20px;
        box-sizing: border-box;
    }

    .carbon-title {
        font-size: 26px;
    }

    .carbon-bottom {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .carbon-platform {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .carbon-container {
        flex-direction: column;
        gap: 25px;
    }

    .carbon-left,
    .carbon-right {
        width: 100%;
    }

    .carbon-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .carbon-video,
    .carbon-text {
        width: 100%;
    }

    .carbon-title {
        font-size: 22px;
    }

    .carbon-subtitle {
        font-size: 18px;
    }

    .carbon-right {
        padding: 20px;
        box-sizing: border-box;
    }
}

.eudr-section {
    padding: 60px 0;

    box-sizing: border-box;
}

.eudr-container {
    text-align: center;
}

.eudr-title {
    font-size: 28px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 40px 0;
}

.eudr-content {
    display: flex;
    gap: 25px;
}

.eudr-card {
    flex: 1;
    background: linear-gradient(180deg, #e3f7f5 0%, #fff 100%);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
}

.eudr-card h3 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.eudr-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.eudr-card img {
    width: 100%;
    max-width: 180px;
    height: auto;
}

@media (max-width: 1200px) {
    .eudr-content {
        gap: 20px;
    }

    .eudr-title {
        font-size: 24px;
    }

    .eudr-card {
        padding: 25px;
        box-sizing: border-box;
    }

    .eudr-card img {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .eudr-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .eudr-content {
        flex-direction: column;
        gap: 20px;
    }

    .eudr-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .eudr-card {
        padding: 20px;
        box-sizing: border-box;
    }

    .eudr-card h3 {
        font-size: 16px;
    }

    .eudr-card p {
        font-size: 13px;
    }

    .eudr-card img {
        max-width: 140px;
    }
}

.expert-service {
    padding: 60px 0;
    box-sizing: border-box;
}

.expert-container {
    text-align: center;
}

.expert-title {
    font-size: 28px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 40px 0;
}

.expert-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.expert-item {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.expert-item.reverse {
    flex-direction: row-reverse;
}

.expert-image {
    width: 48%;
}

.expert-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.expert-content {
    width: 48%;
    text-align: left;
}

.expert-content h3 {
    font-size: 22px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.expert-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1200px) {
    .expert-item {
        gap: 25px;
    }

    .expert-title {
        font-size: 24px;
    }

    .expert-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .expert-service {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .expert-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .expert-item,
    .expert-item.reverse {
        flex-direction: column;
        gap: 20px;
    }

    .expert-image,
    .expert-content {
        width: 100%;
    }

    .expert-content {
        text-align: center;
    }

    .expert-content h3 {
        font-size: 16px;
    }

    .expert-content p {
        font-size: 13px;
    }
}

.carbon-value {
    padding: 60px 0;
    box-sizing: border-box;
}

.carbon-value-container {
    text-align: center;
}

.carbon-value-title {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 25px 0;
}

.carbon-value-desc {
    text-align: center;
    color: #666;

    line-height: 1.8;
    text-align: center;
    margin: 0 0 35px 0;
}

.carbon-video-section {
    margin-bottom: 40px;
}

.carbon-main-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.carbon-content-section {
    text-align: left;
    margin-bottom: 40px;
}

.carbon-content-title {
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
}

.carbon-content-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.carbon-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #57D1C6;
    flex-shrink: 0;
    margin-top: 7px;
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

.feature-text strong {
    color: #0E7499;
}

.carbon-video-container {
    margin-top: 40px;
}

.video-box {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.video-box .video-cover {
    width: 100%;
    height: auto;
    display: block;
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .carbon-value-title {
        font-size: 26px;
    }

    .carbon-content-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .carbon-value {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .carbon-value-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .carbon-value-desc,
    .carbon-content-text {
        font-size: 14px;
    }

    .carbon-content-title {
        font-size: 18px;
    }

    .feature-text {
        font-size: 13px;
    }
}

.project-case {
    padding: 60px 0;
    box-sizing: border-box;
}

.project-container {
    display: flex;
    gap: 30px;
}

.project-left {
    width: 75%;
    background: linear-gradient(to bottom, #e3f7f5 0%, #fff 100%);
    border-radius: 15px;
    padding: 40px;
    box-sizing: border-box;
}

.project-right {
    width: 25%;
    background: linear-gradient(to bottom, #e3f7f5 0%, #fff 100%);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
}

.project-title {
    font-size: 28px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
}

.project-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.project-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    display: inline-block;
    font-size: 52px;
    font-weight: bold;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-unit {
    display: inline-block;
line-height: 1.4;
    color: #2F364C;
}

.stat-label {
    display: block;

    color: #2F364C;
    margin-top: 10px;
    line-height: 1.4;
}

.project-right-title {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 25px 0;
}

.project-info {
    margin-bottom: 20px;
}

.project-info h4 {
    font-size: 14px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tag {
    padding: 8px 16px;
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
}

.project-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 25px 0;
}

@media (max-width: 1200px) {
    .project-container {
        gap: 20px;
    }

    .project-left {
        width: 70%;
        padding: 30px;
        box-sizing: border-box;
    }

    .project-right {
        width: 30%;
        padding: 20px;
        box-sizing: border-box;
    }

    .project-title {
        font-size: 24px;
    }

    .stat-value {
        font-size: 30px;
    }

    .project-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .project-case {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .project-container {
        flex-direction: column;
        gap: 25px;
    }

    .project-left,
    .project-right {
        width: 100%;
        padding: 25px;
        box-sizing: border-box;
    }

    .project-title {
        font-size: 22px;
    }

    .project-desc {
        font-size: 14px;
    }

    .project-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        text-align: left;
    }

    .stat-value {
        font-size: 28px;
    }

    .project-right-title {
        font-size: 18px;
    }
}

.customer-intro {
    padding: 60px 0;
   
    box-sizing: border-box;
}

.customer-container {
    text-align: left;
}

.customer-section {
    margin-bottom: 50px;
}

.customer-title {
    font-size: 28px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
}

.customer-desc {
    font-size: 17px;
    color: #2F364C;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.customer-video {
    margin-top: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.video-container .video-cover {
    width: 100%;
    height: auto;
    display: block;
}

.video-container video {
    width: 100%;
 
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.business-section {
    margin-top: 50px;
}

.business-title {
    font-size: 28px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
}

.business-desc {

    color: #2F364C;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

@media (max-width: 1200px) {
    .customer-title,
    .business-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .customer-intro {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .customer-title,
    .business-title {
        font-size: 22px;
    }

    .customer-desc,
    .business-desc {
        font-size: 14px;
    }

    .customer-section {
        margin-bottom: 40px;
    }

    .business-section {
        margin-top: 40px;
    }
}

.knowledge-base {
    padding: 60px 0;
    background: #f8fafc;
    box-sizing: border-box;
}

.knowledge-container {
    display: flex;
    gap: 30px;
}

.knowledge-left {
    width: 280px;
    flex-shrink: 0;
    background: #e3f7f5;
    border-radius: 15px;
    padding: 25px;
    box-sizing: border-box;
    height: fit-content;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.search-box .search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    position: relative;
    border-radius: 20px;
    font-size: 14px;
    top: 0;
    background: #fff;
    display: block;
    box-sizing: border-box;
}

.search-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.directory-tree {
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
    padding-top: 20px;
}

.tree-title {
    font-size: 14px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.tree-item {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tree-item:hover {
    color: #0E7499;
}

.tree-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 10px 0;
}

.tree-category {
    margin-bottom: 5px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.category-header:hover {
    color: #0E7499;
}

.expand-icon {
    font-size: 12px;
    color: #57D1C6;
    font-weight: bold;
}

.sub-categories {
    padding-left: 20px;
}

.sub-item {
    font-size: 13px;
    color: #888;
    padding: 6px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sub-item:hover {
    color: #0E7499;
}

.knowledge-right {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.document-header {
    display: flex;
    background: #e3f7f5;
    padding: 15px 20px;
    box-sizing: border-box;
    font-weight: bold;
    color: #2F364C;
    font-size: 14px;
}

.header-item {
    flex: 1;
}

.date-header {
    text-align: center;
}

.download-header {
    text-align: right;
}

.document-list {
    max-height: 600px;
    overflow-y: auto;
}

.document-item {
    display: flex;
    padding: 15px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background 0.3s ease;
}

.document-item:hover {
    background: #f8fafc;
}

.doc-name {
    flex: 1;
 
    color: #2F364C;
}

.doc-date {
    text-align: center;
    width: 120px;
       flex: 1;
  
    color: #666;
}

.doc-download {
    text-align: right;
    flex: 1;
    width: 60px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #57D1C6;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #57D1C6;
}

.download-btn:hover svg {
    stroke: #fff;
}

@media (max-width: 1200px) {
    .knowledge-left {
        width: 250px;
        padding: 20px;
        box-sizing: border-box;
    }

    .document-header {
        padding: 12px 15px;
        box-sizing: border-box;
    }

    .document-item {
        padding: 12px 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .knowledge-base {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .knowledge-container {
        flex-direction: column;
        gap: 20px;
    }

    .knowledge-left {
        width: 100%;
    }

    .document-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-item {
        width: 100%;
        text-align: left !important;
    }

    .document-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .doc-name,
    .doc-date,
    .doc-download {
        width: 100%;
        text-align: left;
    }

    .doc-download {
        order: 3;
    }
}

.news-list-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.news-list-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 40%;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.news-item .news-content {
    flex: 1;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 auto 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.news-date {
    font-size: 13px;
    color: #999;
}

.news-link {
    font-size: 14px;
    color: #0E7499;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #57D1C6;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.news-link:hover {
    background: linear-gradient(90deg, #0E7499 0%, #57D1C6 100%);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 1200px) {
    .news-item {
        gap: 25px;
    }

    .news-content {
        padding: 20px;
        box-sizing: border-box;
    }

    .news-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .news-list-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .news-item {
        flex-direction: column;
        gap: 0;
    }

    .news-image {
        width: 100%;
    }

    .news-image img {
        min-height: 180px;
    }

    .news-content {
        padding: 20px;
        box-sizing: border-box;
    }

    .news-title {
        font-size: 16px;
    }

    .news-desc {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }

    .news-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .news-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.news-detail {
    padding: 60px 0;
   
    box-sizing: border-box;
}


.news-article {
    
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.article-title {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
}

.meta-item {
    font-size: 14px;
    color: #999;
}

.article-content {
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.article-content p {
    margin: 0 0 20px 0;
    text-indent: 2em;
}

.article-content h2 {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin: 30px 0 15px 0;
}

.article-image {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

.article-content blockquote {
    border-left: 4px solid #57D1C6;
    padding: 15px 20px;
    background: #f8fafc;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
    margin: 0;
    text-indent: 0;
    font-style: italic;
    color: #666;
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.share-links {
    margin-bottom: 30px;
}

.share-links span {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
}

.share-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #57D1C6;
    color: #fff;
}

.related-news h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
}

.related-news ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-news li {
    margin-bottom: 12px;
}

.related-news li:last-child {
    margin-bottom: 0;
}

.related-news a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.related-news a:hover {
    color: #0E7499;
}

@media (max-width: 1200px) {
    .news-detail-container {
        max-width: 700px;
    }

    .article-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .news-detail {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .news-article {
        padding: 25px;
        box-sizing: border-box;
    }

    .article-title {
        font-size: 22px;
    }

    .article-content {
        font-size: 14px;
    }

    .article-content h2 {
        font-size: 18px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .share-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .share-links span {
        margin-right: 0;
    }

    .share-btn {
        margin-right: 8px;
        padding: 6px 12px;
        font-size: 13px;
    }
}

.job-section {
    padding: 60px 0;
  
    box-sizing: border-box;
}

.job-container {
    text-align: center;
}

.job-tabs {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.tab-item {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.tab-item.active {
    background: linear-gradient(90deg, #0E7499, #57D1C6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0E7499, #57D1C6);
    border-radius: 3px;
}

.job-list {
    text-align: left;
}

.job-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(90deg, #e3f7f5, #fff);
    cursor: pointer;
    box-sizing: border-box;
}

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: #2F364C;
    margin: 0;
}

.expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.expand-btn img {
    /* width: 24px; */
    height: 24px;
    transition: transform 0.3s ease;
}

.job-content {
    display: none;
    padding: 30px;
    background: #fff;
    border: 1px solid #e3f7f5;
    border-top: none;
    border-radius: 0 0 15px 15px;
    background-image: url('../images/jpbg.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto 60%;
    box-sizing: border-box;
}

.job-content.active {
    display: flex;
    gap: 40px;
}

.job-left {
    flex: 2;
}

.job-right {
    flex: 1;
}

.job-section-item {
    margin-bottom: 30px;
}

.job-section-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 10px 0;
}

.job-section-item h5 {
    
    font-weight: bold;
    color: #0E7499;
    margin: 0 0 10px 0;
}

.job-section-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-section-item li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.job-section-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;

    position: relative;
    margin-bottom: 8px;
}
.job-section-item li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #57D1C6;
    font-weight: bold;
}

.apply-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #0E7499, #57D1C6);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(87, 209, 198, 0.4);
}

.job-right h4 {
    font-size: 18px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
}
.job-right p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;

    position: relative;
    margin-bottom: 8px;
}

  
.福利-item {
    margin-bottom: 20px;
}

.福利-item h5 {
   
    font-weight: bold;
    color: #0E7499;
    margin: 0 0 8px 0;
}

.福利-item p {

    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .job-tabs {
        gap: 40px;
    }

    .job-content.active {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .job-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .job-tabs {
        gap: 20px;
        padding-bottom: 15px;
        box-sizing: border-box;
    }

    .tab-item {
        font-size: 16px;
        padding-bottom: 8px;
    }

    .job-header {
        padding: 15px 20px;
        box-sizing: border-box;
    }

    .job-title {
        font-size: 16px;
    }

    .expand-btn img {
        width: 20px;
        height: 20px;
    }

    .job-content {
        padding: 20px;
        background-image: none;
        box-sizing: border-box;
    }

    .job-content.active {
        flex-direction: column;
        gap: 25px;
    }

    .job-section-item li {
        font-size: 13px;
    }

    .apply-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.about-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.about-container {
    display: flex;
    gap: 50px;
}

.about-left {
    flex: 1;
}

.about-title {
    font-size: 36px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
}

.about-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.about-list li {
    font-size: 15px;
    color: #444;
    line-height: 2;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list .dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0E7499, #57D1C6);
}

.about-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(90deg, #0E7499, #57D1C6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
}

.stat-label {

    color: #2F364C;
    margin: 0;
}

.about-right {
    flex: 1;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.video-container .video-cover {
    width: 100%;
    height: auto;
    display: block;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-list li {
        font-size: 14px;
    }

    .about-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-item {
        width: calc(33.33% - 20px);
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }
}

.qualification-section {
    padding: 60px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.qualification-container {
    text-align: center;
}

.qualification-title {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 40px 0;
}

.qualification-scroll {
    overflow: hidden;
    position: relative;
}

.qualification-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.qualification-item {
    flex: 0 0 auto;
    width: 280px;
    margin-right: 30px;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.qualification-item img {
    width: 100%;
  
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.qualification-item span {
    font-size: 14px;
    color: #2F364C;
    font-weight: 500;
}

.qualification-scroll:hover .qualification-track {
    animation-play-state: paused;
}

@media (max-width: 1200px) {
    .qualification-title {
        font-size: 28px;
    }

    .qualification-item {
        width: 240px;
        margin-right: 25px;
    }
}

@media (max-width: 768px) {
    .qualification-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .qualification-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .qualification-item {
        width: 200px;
        margin-right: 20px;
        padding: 15px;
        box-sizing: border-box;
    }

    .qualification-item img {
        height: 140px;
    }

    .qualification-item span {
        font-size: 13px;
    }

    .qualification-track {
        animation-duration: 25s;
    }
}

.team-new-section {
    padding: 60px 0;
   
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}



.team-new-container {
    position: relative;
    z-index: 1;
     background: linear-gradient(180deg, #e3f7f5 0%, #fff 100%);
    box-sizing: border-box;
      padding: 60px 0;
}
.team-new-container::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 480px;
    height: 400px;
    background-image: url('../images/timg.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    opacity: 0.6;
}
.team-new-title {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    text-align: center;
    margin: 0 0 30px 0;
}

.team-new-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}
.team-new-stats span{
    font-size: 24px;
}

.team-new-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #2F364C;
}

.team-new-stat img {
    width: 28px;
    height: 28px;
}

.team-new-content {
    max-width: 1280px;
    margin: 0 auto;
}

.team-new-item {
    margin-bottom: 30px;
}

.team-new-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-new-subtitle .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0E7499, #57D1C6);
    flex-shrink: 0;
}

.team-new-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-new-list p {
    color: #444;
    line-height: 2;
    padding-left: 24px;
    position: relative;
}



.team-new-project {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 24px;
    font-size: 15px;
        margin-bottom: 20px;
    color: #444;
}
.team-new-project span{
       display: flex;
    align-items: center;
}
.team-new-project img {
    width: 20px;
    height: 20px;
}

.highlight-number {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #0E7499, #57D1C6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .team-new-section::after {
        width: 280px;
        height: 280px;
    }

    .team-new-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team-new-section {
        padding: 40px 0;
        box-sizing: border-box;
    }

    .team-new-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .team-new-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 30px;
    }

    .team-new-stat {
        font-size: 16px;
    }

    .team-new-subtitle {
        font-size: 18px;
    }

    .team-new-list li {
        font-size: 14px;
    }

    .team-new-project {
        font-size: 14px;
        padding-left: 20px;
    }

    .highlight-number {
        font-size: 22px;
    }

    .team-new-section::after {
        display: none;
    }
}

.form-section {
    background: linear-gradient(180deg, #e3f7f5 0%, #fff 100%);
}

.form-container {
    display: flex;
    min-height: 500px;
}

.form-left {
    flex: 1;
    padding: 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-content {
    width: 100%;
    max-width: 680px;
}

.form-title {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
}

.form-desc {
    font-size: 16px;
    color: #666;
    margin: 0 0 8px 0;
}

.form-subdesc {
    font-size: 14px;
    color: #888;
    margin: 0 0 30px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #57D1C6;
    box-shadow: 0 0 0 3px rgba(87, 209, 198, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(90deg, #0E7499, #57D1C6);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(87, 209, 198, 0.4);
}

.form-right {
    flex: 1;
    position: relative;
 
}

.form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bdbg.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .form-left {
        padding: 40px;
        box-sizing: border-box;
    }

    .form-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }

    .form-left {
        padding: 40px 20px;
        box-sizing: border-box;
        order: 2;
    }

    .form-right {
        order: 1;
        height: 200px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        box-sizing: border-box;
    }

    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
