body {
    max-width: 1920px;
    margin: 0 auto;
}

.w156 {
    width: 1560px;
    margin: 0 auto;
}

.w12 {
    width: 1200px;
    margin: 0 auto;
}

/* 导航栏样式 */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    box-sizing: border-box;
}

.navbar.navbar2 {
    position: relative;
    background: #fff;
}

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

.navbar-left {
    display: flex;
    align-items: center;
}

.logo img {
    height: 62px;
    margin-right: 150px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-right: 82px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ED4154;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ED4154;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-right img {
    width: 35px;
    margin-right: 10px;
}

.navbar-right span {
    color: #333;
    font-size: 20px;
}

/* 轮播图样式 */
.swiper-container {
    width: 100%;
    height: 850px;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}



.slide-content {
    width: 1560px;
    margin: 0 auto;
    padding-left: 50px;
    max-width: 100%;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.slide-content p {
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #333;
    max-width: 800px;
}

.btn-more {
    display: inline-block;
    background-color: #ED4154;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-more:hover {
    background-color: #c9183a;
}

.btn-more img {
    margin-left: 8px;
    vertical-align: middle;
}

/* 轮播图分页样式 */
.swiper-pagination {
    position: absolute;
    bottom: 26% !important;
    left: 52% !important;
    transform: translateX(-50%);
    max-width: 1560px;
    text-align: left;
    display: flex;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ED4154;
    border-radius: 50%;
    margin: 0 5px !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background-color: #ED4154;
    border: 4px solid rgb(247, 187, 154);
    box-sizing: content-box;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .w156 {
        width: 90%;
    }

    .slide-content {
        max-width: 650px;
                margin: 0;
        padding-left: 30px;
    }
}

@media (max-width: 1200px) {
    .nav-menu li {
        margin-right: 20px;
    }

    .slide-content h2 {
        font-size: 36px;
    }

    .swiper-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .logo img {
        height: 30px;
        margin-right: 20px;
    }

    .nav-menu {
        display: none;
    }

    .slide-content h2 {
        font-size: 28px;
    }

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

    .btn-more {
        padding: 10px 20px;
        font-size: 14px;
    }

    .swiper-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .navbar-right span {
        font-size: 14px;
    }

    .slide-content {
        padding-left: 20px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .swiper-container {
        height: 350px;
    }
}

/* 核心技术及业务模块样式 */
.core-tech {
    background-image: url('../images/bg2.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    box-sizing: border-box;
}

.core-tech-container {
    position: relative;
}

.core-tech-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.core-tech-title h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.core-tech-title p {
    font-size: 16px;
    color: #666;
}

.core-tech-btn {
    display: inline-block;
    background-color: #ed4154;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.core-tech-btn:hover {
    background-color: #c9183a;
}

.core-tech-btn img {
    margin-left: 5px;
    vertical-align: middle;
}

.core-tech-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.core-tech-item {
    display: flex;
    align-items: center;
    background-image: url('../images/bgl.png');
    background-size: cover;
    background-position: center;
    padding: 10px 40px;
    box-sizing: border-box;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.core-tech-item.reverse {
    flex-direction: row-reverse;
}

.core-tech-content {
    flex: 1;
    padding: 0 30px;
}

.core-tech-content h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #000;
}

.core-tech-features {
    margin-bottom: 30px;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-label {
    display: inline-block;
    position: relative;
    padding-left: 10px;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

.feature-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 19px;
    border-radius: 5px;
    background-color: #ed4154;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;

}

.feature-link {
    display: inline-block;
    background-color: #ed4154;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.feature-link:hover {
    background-color: #c9183a;
}

.feature-link img {
    margin-left: 5px;
    vertical-align: middle;
}

.core-tech-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-tech-image img {
    max-width: 100%;
    height: auto;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .core-tech {
        padding: 60px 0;
    }

    .core-tech-header {
        margin-bottom: 40px;
    }

    .core-tech-title h3 {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .core-tech-item {
        flex-direction: column;
        text-align: center;
    }

    .core-tech-item.reverse {
        flex-direction: column;
    }

    .core-tech-content {
        padding: 0;
        margin-bottom: 30px;
    }

    .feature-item p {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .core-tech {
        padding: 40px 0;
    }

    .core-tech-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .core-tech-title h3 {
        font-size: 24px;
    }

    .core-tech-item {
        padding: 30px 20px;
    }

    .core-tech-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .core-tech {
        padding: 30px 0;
    }

    .core-tech-title h3 {
        font-size: 20px;
    }

    .core-tech-item {
        padding: 20px 15px;
    }

    .core-tech-content h4 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }
}

/* 核心技术栈模块样式 */
.tech-stack {
    background-image: url('../images/bg3.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.tech-stack-container {
    position: relative;
}

.tech-stack-header {
    margin-bottom: 60px;
}

.tech-stack-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.tech-stack-header p {
    font-size: 16px;
    color: #666;
}

.tech-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tech-stack-item {
    flex: 1;
    min-width: 45%;
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-stack-item:nth-child(1) {
    background-image: url('../images/bg3-1.png');
}

.tech-stack-item:nth-child(2) {
    background-image: url('../images/bg3-2.png');
}

.tech-stack-item:nth-child(3) {
    background-image: url('../images/bg3-3.png');
}

.tech-stack-item.full-width {
    flex: 100%;
    display: flex;
    align-items: center;
}

.tech-stack-content {
    flex: 1;
    padding: 0 30px 0 0;
}

.tech-stack-content h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #000;
    position: relative;
    padding-left: 15px;
}

.tech-stack-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #ed4154;
    border-radius: 15px;
}

.tech-stack-features {
    list-style: none;
}

.tech-stack-features li {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.tech-stack-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #ed4154;
    border-radius: 50%;
}

.tech-stack-image {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-stack-image img {
    max-width: 100%;
    height: auto;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .tech-stack {
        padding: 60px 0;
    }

    .tech-stack-header {
        margin-bottom: 40px;
    }

    .tech-stack-header h3 {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .tech-stack-item {
        flex: 100%;
        min-width: 100%;
    }

    .tech-stack-item.full-width {
        flex-direction: column;
        text-align: center;
    }

    .tech-stack-content {
        padding: 0;
        margin-bottom: 30px;
    }

    .tech-stack-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .tech-stack {
        padding: 40px 0;
    }

    .tech-stack-header h3 {
        font-size: 24px;
    }

    .tech-stack-item {
        padding: 30px 20px;
    }

    .tech-stack-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .tech-stack {
        padding: 30px 0;
    }

    .tech-stack-header h3 {
        font-size: 20px;
    }

    .tech-stack-item {
        padding: 20px 15px;
    }

    .tech-stack-content h4 {
        font-size: 16px;
    }

    .tech-stack-features li {
        font-size: 13px;
    }
}

/* 技术优势模块样式 */
.tech-advantages {
    background-color: #FEFEFE;
    padding: 80px 0;
}

.tech-advantages-container {
    position: relative;
}

.tech-advantages-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-advantages-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.tech-advantages-header p {
    font-size: 16px;
    color: #666;
}

.tech-advantages-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.tech-advantages-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.tech-advantages-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 35px;
    background-color: #ddd;
}

.tech-advantages-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-advantages-icon img {
    width: 60px;
    height: 60px;
}

.tech-advantages-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.tech-advantages-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .tech-advantages {
        padding: 60px 0;
    }

    .tech-advantages-header {
        margin-bottom: 40px;
    }

    .tech-advantages-header h3 {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .tech-advantages-list {
        flex-wrap: wrap;
    }

    .tech-advantages-item {
        flex: 48%;
        margin-bottom: 30px;
    }

    .tech-advantages-item:not(:last-child)::after {
        display: none;
    }

    .tech-advantages-item:nth-child(1)::after,
    .tech-advantages-item:nth-child(2)::after {
        display: block;
    }
}

@media (max-width: 768px) {
    .tech-advantages {
        padding: 40px 0;
    }

    .tech-advantages-header h3 {
        font-size: 24px;
    }

    .tech-advantages-item {
        flex: 100%;
        margin-bottom: 30px;
    }

    .tech-advantages-item::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .tech-advantages {
        padding: 30px 0;
    }

    .tech-advantages-header h3 {
        font-size: 20px;
    }

    .tech-advantages-icon img {
        width: 50px;
        height: 50px;
    }

    .tech-advantages-item h4 {
        font-size: 16px;
    }

    .tech-advantages-item p {
        font-size: 13px;
    }
}

/* 知名合作医疗机构与企业模块样式 */
.partners {
    background-color: #F3F9FF;
    background-image: url('../images/bg4.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.partners-header {
    margin-bottom: 60px;
}

.partners-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.partners-header p {
    font-size: 16px;
    color: #666;
}

.partners-scroll {
    width: 100%;
    overflow: hidden;
}

.partners-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.partners-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll linear infinite;
}

.partners-row-1 .partners-track {
    animation-duration: 30s;
}

.partners-row-2 .partners-track {
    animation-duration: 35s;
    animation-direction: reverse;
}

.partners-track img {
    height: 80px;
    margin-right: 60px;
    vertical-align: middle;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .partners {
        padding: 60px 0;
    }

    .partners-header {
        margin-bottom: 40px;
    }

    .partners-header h3 {
        font-size: 30px;
    }

    .partners-track img {
        height: 60px;
        margin-right: 40px;
    }
}

@media (max-width: 1200px) {
    .partners-track img {
        height: 50px;
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 40px 0;
    }

    .partners-header h3 {
        font-size: 24px;
    }

    .partners-track img {
        height: 40px;
        margin-right: 20px;
    }

    .partners-row {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .partners {
        padding: 30px 0;
    }

    .partners-header h3 {
        font-size: 20px;
    }

    .partners-track img {
        height: 30px;
        margin-right: 15px;
    }

    .partners-row {
        margin-bottom: 20px;
    }

    .partners-row-1 .partners-track {
        animation-duration: 20s;
    }

    .partners-row-2 .partners-track {
        animation-duration: 25s;
    }
}

/* 页脚模块样式 */
.footer {
    background-image: url('../images/bgfoot.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    border-top: 3px solid #ED4154;
}

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

.footer-left {
    flex: 0 0 50%;
}

.footer-right {
    flex: 0 0 30%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
}

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

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 25px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ED4154;
}

.footer-contact p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.footer-form .form-row {
    margin-bottom: 20px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.footer-form input {
    width: calc(50% - 10px);
    margin-right: 10px;
}

.footer-form input:last-child {
    margin-right: 0;
}

.footer-form textarea {
    height: 120px;
    resize: none;
}

.form-submit {
    background-color: #ED4154;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #c9183a;
}

.form-submit img {
    margin-left: 5px;
    vertical-align: middle;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .footer {
        padding: 40px 0;
    }

    .footer-left {
        flex: 0 0 55%;
    }

    .footer-right {
        flex: 0 0 40%;
    }
}

@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        flex: 100%;
        margin-bottom: 40px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-nav {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-form input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 0;
    }

    .footer-logo img {
        height: 30px;
    }

    .footer-nav li {
        margin-bottom: 10px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-form input,
    .footer-form textarea {
        padding: 8px;
        font-size: 13px;
    }

    .footer-form textarea {
        height: 100px;
    }

    .form-submit {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 案例介绍banner模块样式 */
.case-banner {
    background-image: url('../images/banneral.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0;
    box-sizing: border-box;
    margin-top: 0;
}

.case-banner-container {
    position: relative;
}

.case-banner-content {
    display: inline-block;
}

.case-banner-content h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    padding-left: 20px;
}

.case-banner-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    border-radius: 5px;
    background-color: #ED4154;
}

.case-banner-tags {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    max-width: 100%;
    width: auto;
}

.tag-white {
    background-color: #fff;
    color: #000;
}

.tag-red {
    background-color: #ED4154;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .case-banner {
        padding: 80px 0;
    }

    .case-banner-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 1200px) {
    .case-banner {
        padding: 60px 0;
    }

    .case-banner-content h2 {
        font-size: 30px;
    }

    .tag {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .case-banner {
        padding: 40px 0;
    }

    .case-banner-content h2 {
        font-size: 24px;
        padding-left: 15px;
    }

    .case-banner-content h2::before {
        height: 30px;
    }

    .tag {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .case-banner {
        padding: 30px 0;
    }

    .case-banner-content h2 {
        font-size: 20px;
    }

    .tag {
        font-size: 12px;
    }
}

/* 案例列表模块样式 */
.case-list {
    background-image: url('../images/anlibg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.case-list-container {
    position: relative;
}

.case-list-header {
    margin-bottom: 60px;
}

.case-list-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.case-list-header p {
    font-size: 16px;
    color: #666;
}

.case-list-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.case-list-item {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-list-item.reverse {
    flex-direction: row-reverse;
}

.case-list-image {
    flex: 0 0 50%;
    padding: 0 20px;
}

.case-list-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.case-list-content {
    flex: 0 0 50%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: center;
}

.case-list-content h4 {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #000;
}

.case-list-divider {
    width: 60px;
    height: 3px;
    background-color: #ED4154;
    border-radius: 2px;
    margin-bottom: 20px;
}

.case-list-content p {

    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.case-list-link {
    display: inline-block;
    background-color: #ED4154;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.case-list-link:hover {
    background-color: #c9183a;
}

.case-list-link img {
    margin-left: 5px;
    vertical-align: middle;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .case-list {
        padding: 60px 0;
    }

    .case-list-header {
        margin-bottom: 40px;
    }

    .case-list-header h3 {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .case-list-item {
        flex-direction: column;
    }

    .case-list-item.reverse {
        flex-direction: column;
    }

    .case-list-image,
    .case-list-content {
        flex: 100%;
        padding: 0;
    }

    .case-list-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .case-list {
        padding: 40px 0;
    }

    .case-list-header h3 {
        font-size: 24px;
    }

    .case-list-item {
        padding: 20px;
    }

    .case-list-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .case-list {
        padding: 30px 0;
    }

    .case-list-header h3 {
        font-size: 20px;
    }

    .case-list-item {
        padding: 15px;
    }

    .case-list-content h4 {
        font-size: 16px;
    }

    .case-list-content p {
        font-size: 13px;
    }

    .case-list-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 关于我们banner模块样式 */
.about-banner {

    padding: 120px 0 160px 0;
    box-sizing: border-box;
    margin-top: 0;
}

.about-banner-container {
    position: relative;
}

.about-banner-content {
    max-width: 800px;
}

.about-banner-content h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    position: relative;
    padding-left: 20px;
}

.about-banner-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    background-color: #ED4154;
}

.about-banner-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 30px;
}

.about-banner-tags {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tags-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 100%;
    width: auto;
}

.tag-white {
    background-color: #fff;
    color: #000;
}

.tag-red {
    background-color: #ED4154;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .about-banner {
        padding: 80px 0;
    }

    .about-banner-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 1200px) {
    .about-banner {
        padding: 60px 0;
    }

    .about-banner-content h2 {
        font-size: 30px;
    }

    .tag {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .about-banner {
        padding: 40px 0;
    }

    .about-banner-content h2 {
        font-size: 24px;
        padding-left: 15px;
    }

    .about-banner-content h2::before {
        height: 30px;
    }

    .about-banner-content p {
        font-size: 14px;
    }

    .tags-row {
        flex-wrap: wrap;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        padding: 30px 0;
    }

    .about-banner-content h2 {
        font-size: 20px;
    }

    .about-banner-content p {
        font-size: 13px;
    }
}

/* 企业简介模块样式 */
.company-profile {
    background-image: url('../images/abbg2.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.company-profile-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-profile-content {
    flex: 0 0 55%;
}

.company-profile-header {
    margin-bottom: 30px;
}

.company-profile-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.company-profile-header p {
    font-size: 16px;
    color: #666;
}

.company-profile-text {
    margin-bottom: 30px;
}

.company-profile-text p {

    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.company-profile-link {
    display: inline-block;
    background-color: #ED4154;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.company-profile-link:hover {
    background-color: #c9183a;
}

.company-profile-link img {
    margin-left: 5px;
    vertical-align: middle;
}

.company-profile-video {
    flex: 0 0 40%;
}

.video-container {
    position: relative;
    box-shadow: 8px 8px 0 #ED4154;
    border-radius: 5px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {

    transform: translate(-50%, -50%) scale(1.1);
}


/* 响应式设计 */
@media (max-width: 1600px) {
    .company-profile {
        padding: 60px 0;
    }

    .company-profile-header h3 {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .company-profile-container {
        flex-direction: column;
    }

    .company-profile-content,
    .company-profile-video {
        flex: 100%;
        width: 100%;
    }

    .company-profile-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .company-profile {
        padding: 40px 0;
    }

    .company-profile-header h3 {
        font-size: 24px;
    }

    .company-profile-text p {
        font-size: 13px;
    }

    .company-profile-link {
        padding: 10px 20px;
        font-size: 13px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .company-profile {
        padding: 30px 0;
    }

    .company-profile-header h3 {
        font-size: 20px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button img {
        width: 25px;
        height: 25px;
    }
}

/* 愿景模块样式 */
.vision-section {
    background-image: url('../images/yuanjingbg.png');
    background-size: cover;
    background-position: center;
    padding: 280px 0;
}

.vision-content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 60px 0;
}

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

.vision-left {
    flex: 0 0 40%;
}

.vision-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.vision-left h3 {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

.vision-right {
    flex: 0 0 55%;
}

.vision-text {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.vision-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vision-icon-item {
    flex: 0 0 calc(33% - 10px);
    display: flex;
    align-items: center;
    text-align: left;
}

.vision-icon-item img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.vision-icon-item p {
    font-size: 14px;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .vision-section {
        padding: 80px 0;
    }

    .vision-content {
        padding: 50px 0;
    }

    .vision-left h3 {
        font-size: 36px;
    }
}

@media (max-width: 1200px) {
    .vision-container {
        flex-direction: column;
        text-align: center;
    }

    .vision-left,
    .vision-right {
        flex: 100%;
        width: 100%;
    }

    .vision-left {
        margin-bottom: 40px;
    }

    .vision-icon-item {
        flex: 0 0 calc(50% - 10px);
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 60px 0;
    }

    .vision-content {
        padding: 40px 0;
    }

    .vision-left h3 {
        font-size: 28px;
    }

    .vision-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .vision-icon-item {
        flex: 0 0 100%;
        justify-content: flex-start;
    }

    .vision-icon-item img {
        width: 35px;
        height: 35px;
    }

    .vision-icon-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vision-section {
        padding: 40px 0;
    }

    .vision-content {
        padding: 30px 0;
    }

    .vision-left h3 {
        font-size: 24px;
    }

    .vision-icon-item {
        flex: 0 0 100%;
    }
}

/* 资质认证与知识产权模块样式 */
.qualifications {
    background-image: url('../images/zzbg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    box-sizing: border-box;
}

.qualifications-container {
    position: relative;
}

.qualifications-header {
    text-align: center;
    margin-bottom: 60px;
}

.qualifications-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.qualifications-header p {
    font-size: 16px;
    color: #666;
}

.qualifications-slider {
    position: relative;
}

.qualifications-swiper {
    position: relative;
    height: 550px;
}

.qualifications-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qualifications-swiper .swiper-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* 轮播图控制按钮样式 */
.qualifications-swiper .swiper-button-prev,
.qualifications-swiper .swiper-button-next {
    position: absolute;
    bottom: 15px;
    top: auto;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.qualifications-swiper .swiper-button-prev {
    left: 48%;
    background: #ED4154;
    color: #fff;
}

.qualifications-swiper .swiper-button-next {
    left: 51%;
    background: #222;
    color: #fff;
}

.qualifications-swiper .swiper-button-prev::after,
.qualifications-swiper .swiper-button-next::after {
    font-size: 16px;
    color: #fff;
}

/* 轮播图进度条样式 */
.qualifications-swiper .swiper-pagination {
    position: absolute;
    bottom: -40px;
    left: 80px;
    right: 0;
    height: 6px;
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
}

.qualifications-swiper .swiper-pagination-progressbar-fill {
    background-color: #ED4154;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .qualifications {
        padding: 60px 0;
    }

    .qualifications-header {
        margin-bottom: 40px;
    }

    .qualifications-header h3 {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .qualifications-swiper {
        width: 90%;
        margin: 0 auto;
    }

    .qualifications-swiper .swiper-slide {
        width: calc(33.333% - 13.333px);
    }

    .qualifications-swiper .swiper-button-prev,
    .qualifications-swiper .swiper-button-next {
        bottom: -30px;
    }

    .qualifications-swiper .swiper-pagination {
        bottom: -30px;
        left: 70px;
    }
}

@media (max-width: 768px) {
    .qualifications {
        padding: 40px 0;
    }

    .qualifications-header h3 {
        font-size: 24px;
    }

    .qualifications-swiper .swiper-slide {
        width: calc(50% - 10px);
    }

    .qualifications-swiper .swiper-button-prev,
    .qualifications-swiper .swiper-button-next {
        bottom: -25px;
        width: 25px;
        height: 25px;
    }

    .qualifications-swiper .swiper-button-next {
        left: 35px;
    }

    .qualifications-swiper .swiper-pagination {
        bottom: -25px;
        left: 65px;
    }

    .qualifications-swiper .swiper-button-prev::after,
    .qualifications-swiper .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .qualifications {
        padding: 30px 0;
    }

    .qualifications-header h3 {
        font-size: 20px;
    }

    .qualifications-swiper .swiper-slide {
        width: 100%;
    }

    .qualifications-swiper .swiper-button-prev,
    .qualifications-swiper .swiper-button-next {
        bottom: -20px;
        width: 20px;
        height: 20px;
    }

    .qualifications-swiper .swiper-button-next {
        left: 25px;
    }

    .qualifications-swiper .swiper-pagination {
        bottom: -20px;
        left: 50px;
    }

    .qualifications-swiper .swiper-button-prev::after,
    .qualifications-swiper .swiper-button-next::after {
        font-size: 12px;
    }
}

/* 联系我们模块样式 */
.contact-us {
    padding: 80px 0;

}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.contact-header p {
    font-size: 16px;
    color: #666;
}

.contact-info {
    margin-bottom: 80px;
}

.contact-info-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-info-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contact-info-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.contact-info-item p {

    color: #333;
    line-height: 1.5;
}

.contact-form-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-map {
    flex: 0 0 48%;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-form {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 3%;
    box-sizing: border-box;
}

.contact-form h4 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    padding-left: 20px;
}

.form-title-line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #ED4154;
    border-radius: 2px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-row textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    height: 120px;
    resize: none;
}

.form-submit {
    align-self: flex-start;
    background-color: #ED4154;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #c9183a;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .contact-us {
        padding: 60px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h3 {
        font-size: 30px;
    }

    .contact-info {
        margin-bottom: 60px;
    }
}

@media (max-width: 1200px) {
    .contact-info-container {
        flex-wrap: wrap;
    }

    .contact-info-item {
        flex: 0 0 calc(33.333% - 20px);
    }

    .contact-form-container {
        flex-direction: column;
    }

    .contact-map,
    .contact-form {
        flex: 100%;
    }

    .contact-map {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .contact-us {
        padding: 40px 0;
    }

    .contact-header h3 {
        font-size: 24px;
    }

    .contact-info-item {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-us {
        padding: 30px 0;
    }
    
    .contact-header h3 {
        font-size: 20px;
    }
    
    .contact-info-item {
        padding: 20px;
    }
    
    .contact-info-item img {
        width: 50px;
        height: 50px;
    }
    
    .contact-info-item h4 {
        font-size: 16px;
    }
    
    .contact-info-item p {
        font-size: 13px;
    }
    
    .contact-form h4 {
        font-size: 18px;
    }
    
    .form-row input,
    .form-row textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .form-submit {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* 核心功能模块样式 */
.core-function {
    background-image: url('../images/hexinbg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.core-function-container {
    position: relative;
}

.core-function-header {
    text-align: center;
    margin-bottom: 60px;
}

.core-function-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.core-function-header p {
    font-size: 16px;
    color: #666;
}

.core-function-item {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 120px;
    position: relative;
}

.core-function-item.reverse {
    flex-direction: row-reverse;
}

.core-function-content {
    flex: 0 0 50%;
    position: relative;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.core-function-content::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ddd;
}

.core-function-list {
    position: relative;
  
}

.core-function-list-item {
    margin-bottom: 40px;
    position: relative;
}

.core-function-list-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 2.5px;
    width: 10px;
    height: 10px;
    background-color: #ED4154;
    border: 5px solid rgb(247, 187, 154);
    border-radius: 50%;
    z-index: 1;
}

.core-function-list-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #ED4154;
    margin-bottom: 10px;
}

.core-function-list-item p {
    line-height: 1.6;
    color: #333;
}

.core-function-image {
    flex: 0 0 45%;
}

.core-function-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .core-function {
        padding: 60px 0;
    }
    
    .core-function-header {
        margin-bottom: 40px;
    }
    
    .core-function-header h3 {
        font-size: 30px;
    }
    
    .core-function-item {
        gap: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1200px) {
    .core-function-item {
        flex-direction: column;
    }
    
    .core-function-item.reverse {
        flex-direction: column;
    }
    
    .core-function-content,
    .core-function-image {
        flex: 100%;
    }
    
    .core-function-content {
        margin-bottom: 30px;
    }
    
    .core-function-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .core-function {
        padding: 40px 0;
    }
    
    .core-function-header h3 {
        font-size: 24px;
    }
    
    .core-function-content {
        padding-left: 30px;
    }
    
    .core-function-list-item::before {
        left: -30px;
    }
    
    .core-function-list-item h4 {
        font-size: 16px;
    }
    
    .core-function-list-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .core-function {
        padding: 30px 0;
    }
    
    .core-function-header h3 {
        font-size: 20px;
    }
    
    .core-function-content {
        padding-left: 25px;
    }
    
    .core-function-list-item::before {
        left: -25px;
    }
    
    .core-function-list-item h4 {
        font-size: 15px;
    }
    
    .core-function-list-item p {
        font-size: 12px;
    }
}

/* 应用场景模块样式 */
.application-scenario {
    background-image: url('../images/cjbg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.application-scenario-container {
    position: relative;
}

.application-scenario-header {
    text-align: center;
    margin-bottom: 60px;
}

.application-scenario-header h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.application-scenario-header p {
    font-size: 16px;
    color: #666;
}

.application-scenario-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.application-scenario-item {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.application-scenario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.application-scenario-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.application-scenario-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.application-scenario-item p {
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .application-scenario {
        padding: 60px 0;
    }
    
    .application-scenario-header {
        margin-bottom: 40px;
    }
    
    .application-scenario-header h3 {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .application-scenario-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .application-scenario {
        padding: 40px 0;
    }
    
    .application-scenario-header h3 {
        font-size: 24px;
    }
    
    .application-scenario-item {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .application-scenario-item h4 {
        font-size: 16px;
    }
    
    .application-scenario-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .application-scenario {
        padding: 30px 0;
    }
    
    .application-scenario-header h3 {
        font-size: 20px;
    }
    
    .application-scenario-item {
        padding: 20px;
    }
    
    .application-scenario-item img {
        width: 50px;
        height: 50px;
    }
    
    .application-scenario-item h4 {
        font-size: 15px;
    }
    
    .application-scenario-item p {
        font-size: 12px;
    }
}

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}


.frame {
    position: relative;
    max-width: 1920px;
    height: 1364px;
    margin: 0 auto;
    background-color: #ffffff;
}

.frame .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.frame .group {
    position: absolute;
    top: 110px;
    left: calc(50.00% - 152px);
    width: 308px;
    height: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.frame .div {
    margin-left: -4px;
    height: 48px;
    width: 304px;
    font-family: "Noto Sans SC-Bold", Helvetica;
    font-weight: 700;
    color: transparent;
    font-size: 40px;
    letter-spacing: 4.00px;
    line-height: 48.0px;
    white-space: nowrap;
}

.frame .text-wrapper {
    color: #ed4154;
    letter-spacing: 1.60px;
}

.frame .span {
    color: #000000;
    letter-spacing: 1.60px;
}

.frame .text-wrapper-2 {
    margin-left: -3px;
    height: 24px;
    width: 185px;
    font-family: "Roboto-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 20px;
    letter-spacing: 1.00px;
    line-height: 24.0px;
    white-space: nowrap;
}

.frame .div-2 {
    width: 350px;
    gap: 10px;
    padding: 30px 40px;
    top: 967px;
    left: 1205px;
    background-color: #f4f9ff;
    border-radius: 34px;
    box-shadow: 0px 5px 6px 1px #00000014;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
}

.frame .img {
    position: relative;
    width: 120px;
    height: 120px;
    aspect-ratio: 1;
}

.frame .text-wrapper-3 {
    font-family: "Noto Sans SC-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    position: relative;
    align-self: stretch;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.00px;
    line-height: 32.0px;
}

.frame .div-3 {
    width: 350px;
    gap: 10px;
    padding: 30px 40px;
    top: 967px;
    left: 365px;
    background-color: #f4f9ff;
    border-radius: 34px;
    box-shadow: 0px 5px 6px 1px #00000014;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
}

.frame .div-4 {
    width: 350px;
    gap: 10px;
    padding: 30px 40px;
    top: 967px;
    left: 785px;
    background-color: #f4f9ff;
    border-radius: 34px;
    box-shadow: 0px 5px 6px 1px #00000014;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
}

.frame .div-5 {
    width: 350px;
    gap: 10px;
    padding: 30px 40px;
    top: 266px;
    left: 995px;
    background-color: #f4f9ff;
    border-radius: 34px;
    box-shadow: 0px 5px 6px 1px #00000014;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
}

.frame .text-wrapper-4 {
    position: relative;
    align-self: stretch;
    font-family: "Noto Sans SC-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.00px;
    line-height: 32.0px;
}

.frame .div-6 {
    width: 350px;
    gap: 10px;
    padding: 30px 40px;
    top: 266px;
    left: 575px;
    background-color: #f4f9ff;
    border-radius: 34px;
    box-shadow: 0px 5px 6px 1px #00000014;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
}

.frame .div-7 {
    width: 355px;
    height: 239px;
    gap: 15px;
    padding: 30px 20px;
    top: 624px;
    left: 781px;
    background-color: #ed4154;
    border-radius: 20px;
    box-shadow: inset 0px 4px 20px 2px #0000000f, 0px 20px 60px #ed41544c, 0px 10px 60px #ed415433;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
}

.frame .element {
    position: relative;
    width: 71px;
    height: 78px;
}

.frame .text-wrapper-5 {
    height: 64px;
    font-family: "Noto Sans SC-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    align-self: stretch;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.00px;
    line-height: 32.0px;
}

.frame .rectangle {
    position: absolute;
    top: 520px;
    left: 749px;
    width: 422px;
    height: 60px;
}

.frame .line {
    top: 580px;
    left: 959px;
    height: 44px;
    position: absolute;
    width: 2px;
}

.frame .group-2 {
    position: absolute;
    top: 863px;
    left: 540px;
    width: 840px;
    height: 104px;
}

.frame .line-2 {
    top: 0;
    left: 419px;
    height: 44px;
    position: absolute;
    width: 2px;
}

.frame .line-3 {
    top: 44px;
    left: 419px;
    height: 60px;
    position: absolute;
    width: 2px;
}

.frame .rectangle-2 {
    position: absolute;
    top: 43px;
    left: -1px;
    width: 842px;
    height: 61px;
}

.frame .ellipse {
    top: 573px;
    left: 954px;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff7080;
    border-radius: 6px;
}

.frame .ellipse-2 {
    top: 902px;
    left: 954px;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff7080;
    border-radius: 6px;
}

.frame .ellipse-3 {
    top: 961px;
    left: 954px;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff7080;
    border-radius: 6px;
}

.frame .ellipse-4 {
    top: 961px;
    left: 1374px;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff7080;
    border-radius: 6px;
}

.frame .ellipse-5 {
    top: 961px;
    left: 534px;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff7080;
    border-radius: 6px;
}

.frame .ellipse-6 {
    top: 514px;
    left: 1164px;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff7080;
    border-radius: 6px;
}

.frame .ellipse-7 {
    top: 514px;
    left: 744px;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff7080;
    border-radius: 6px;
}
.jiagou{
    padding: 12px;
    text-align: center;
    box-sizing: border-box;
}
  .goTop >img{
            width: 50px;
            height: 50px;
            cursor: pointer;
        }
        .goTop{
            position: fixed;
            right : 20px;
            bottom : 20px;
        }