.service-system-sec {
    padding: 120px 0 90px;
    background-color: RGBA(248, 248, 248, 1);
}

.service-system-sec .section-title {
    text-align: center;
}

.service-system-sec .system-content {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-system-sec .system-text-box {
    width: 48%;
    position: relative;
    z-index: 3;
}

.service-system-sec .system-text-box .sys-title {
    font-weight: bold;
    font-size: 28px;
    color: #131313;
    line-height: 1.35;
}

.service-system-sec .system-text-box .sys-desc {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 2;
    margin-top: 20px;
}

.system-hex-box {
    width: 55%;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hex-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.hex-item {
    position: absolute;
    top: 50%;
    /* 新增：将定位基准点设为父容器中心 */
    left: 50%;
    /* 新增：将定位基准点设为父容器中心 */
    width: 200px;
    height: 174px;
    background-color: #fff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.06));
    z-index: 1;
    cursor: pointer;
}

.hex-item h4 {
    font-weight: bold;
    font-size: 18px;
    color: #131313;
    line-height: 24px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.hex-item p {
    font-family: Bahnschrift;
    font-weight: bold;
    font-size: 14px;
    color: #131313;
    line-height: 20px;
    opacity: 0.2;
    transition: 0.3s;
}

/* 中心红块特殊样式 */
.hex-item.center-red {
    background-color: rgba(229, 0, 18, 1);
    z-index: 10;
}

.hex-item.center-red h4 {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.hex-item.center-red p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hex-item.hex-center {
    transform: translate(-50%, -50%);
}

.hex-item.hex-1 {
    transform: translate(-50%, calc(-50% - 184px));
}
.hex-item.hex-2 {
    transform: translate(calc(-50% + 159px), calc(-50% - 92px));
}
.hex-item.hex-3 {
    transform: translate(calc(-50% + 159px), calc(-50% + 92px));
}
.hex-item.hex-4 {
    transform: translate(-50%, calc(-50% + 184px));
}
.hex-item.hex-5 {
    transform: translate(calc(-50% - 159px), calc(-50% + 92px));
}
.hex-item.hex-6 {
    transform: translate(calc(-50% - 159px), calc(-50% - 92px));
}


.hex-item:not(.center-red):hover h4 {
    color: rgba(229, 0, 18, 1);
}

.partner-sec {
    padding: 140px 0 130px;
    background-size: cover;
}

.partner-sec .section-title {
    color: #FFFFFF;
    text-align: center;
}

.partner-sec .section-subtitle {
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 30px;
    margin-top: .8em;
    text-align: center;
}

.partner-sec .partner-glass-card {
    margin-top: 45px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
}

.partner-sec .partner-glass-card .partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.partner-sec .partner-glass-card .partner-grid .p-card {
    padding: 64px 0 54px;
}

.partner-sec .partner-glass-card .partner-grid .p-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.partner-sec .partner-glass-card .partner-grid .p-icon img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.partner-sec .partner-glass-card .partner-grid .p-card:hover .p-icon img {
    transform: rotateY(180deg);
}

.partner-sec .partner-glass-card .partner-grid .c-step {
    position: relative;
    margin-top: 20px;
}

.partner-sec .partner-glass-card .partner-grid .c-step::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .2);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.partner-sec .partner-glass-card .partner-grid .p-card:not(:last-child) .c-step::after {
    position: absolute;
    content: "\e689";
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    font-family: "iconfont";
    color: #fff;
}

.partner-sec .partner-glass-card .partner-grid .c-step .dot {
    position: relative;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0);
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    margin: 0 auto;
    z-index: 3;
}

.partner-sec .partner-glass-card .partner-grid .c-step .dot::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background: #FFFFFF;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.partner-sec .partner-glass-card .partner-grid h3 {
    font-weight: bold;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 24px;
    padding: 0 20px;
    text-align: center;
    transition: all .6s;
}

.partner-sec .partner-glass-card .partner-grid .p-card:hover h3 {
    color: rgba(229, 0, 18, 1);
}

.partner-sec .partner-glass-card .partner-grid .p-list {
    padding: 0 20px 0 70px;
    font-weight: 400;
    font-size: 17px;
    color: #FFFFFF;
    line-height: 2;
    margin-top: 20px;
}

.partner-sec .partner-glass-card .partner-grid .p-list .iconfont {
    font-size: 14px;
    opacity: .8;
}

.flowchart-sec {
    padding: 120px 0 110px;
    background: url(../images/flowchart-sec-bg.png);
    background-size: cover;
}

.flowchart-sec .section-title {
    text-align: center;
}

.flowchart-sec .flow-container {
    margin-top: 60px;
}

.flowchart-sec .flow-container img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width:1199px) {

    .flowchart-sec,
    .partner-sec,
    .service-system-sec {
        padding: 75px 0;
    }

    .flowchart-sec .flow-container,
    .partner-sec .partner-glass-card {
        margin-top: 45px;
    }

    .service-system-sec .system-content {
        margin-top: 10px;
    }

    .partner-sec .partner-glass-card .partner-grid .p-card {
        padding: 45px 0;
    }

    .partner-sec .section-subtitle {
        font-size: 20px;
    }

    .partner-sec .partner-glass-card .partner-grid .p-list {
        padding-left: 30px;
    }
}

@media (max-width:1024px) {
    .partner-sec .partner-glass-card .partner-grid .p-card {
        padding: 0;
    }

    .partner-sec .partner-glass-card .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
        padding: 40px 20px;
    }

    .partner-sec .section-subtitle {
        font-size: 18px;
        margin-top: .4em;
    }

    .flowchart-sec,
    .partner-sec,
    .service-system-sec {
        padding: 65px 0;
    }

    .flowchart-sec .flow-container,
    .partner-sec .partner-glass-card {
        margin-top: 40px;
    }

    .service-system-sec .system-content {
        flex-direction: column;
        margin-top: 40px;
    }

    .service-system-sec .system-text-box {
        width: 100%;
    }

    .system-hex-box {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width:768px) {
    .partner-sec .partner-glass-card .partner-grid .p-list {
        margin-top: 15px;
    }

    .partner-sec .partner-glass-card .partner-grid h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .partner-sec .partner-glass-card .partner-grid .p-icon {
        width: 48px;
        height: 48px;
    }

    .partner-sec .section-subtitle {
        font-size: 16px;
    }

    .service-system-sec .system-content {
        margin-top: 30px;
    }

    .flowchart-sec,
    .partner-sec,
    .service-system-sec {
        padding: 55px 0;
    }

    .flowchart-sec .flow-container,
    .partner-sec .partner-glass-card {
        margin-top: 30px;
    }
}

@media (max-width:600px) {
.partner-sec .partner-glass-card .partner-grid .p-list{
    text-align: center;
}
    .partner-sec .partner-glass-card .partner-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:500px) {
    .system-hex-box {
        margin-top: 20px;
        height: 420px;
    }

    .hex-grid {
        transform: scale(.75);
    }

    .service-system-sec .system-content {
        margin-top: 25px;
    }

    .flowchart-sec,
    .partner-sec,
    .service-system-sec {
        padding: 45px 0;
    }

    .flowchart-sec .flow-container,
    .partner-sec .partner-glass-card {
        margin-top: 25px;
    }

    /* .hex-item {
        width: 120px;
        height: 104px; 
    }
    
    .hex-item h4 {
        font-size: 14px;
        line-height: 18px;
    }
    
    .hex-item p {
        font-size: 12px;
        line-height: 16px;
    }
    
    .hex-item.center-red h4 {
        font-size: 18px;
    }
    
    .hex-item.center-red p {
        font-size: 12px;
    }
    
    .hex-top {
        transform: translate(-50%, calc(-50% - 110px));
    }
    
    .hex-bottom {
        transform: translate(-50%, calc(-50% + 110px));
    }
    
    .hex-tr {
        transform: translate(calc(-50% + 95px), calc(-50% - 55px));
    }
    
    .hex-br {
        transform: translate(calc(-50% + 95px), calc(-50% + 55px));
    }
    
    .hex-tl {
        transform: translate(calc(-50% - 95px), calc(-50% - 55px));
    }
    
    .hex-bl {
        transform: translate(calc(-50% - 95px), calc(-50% + 55px));
    } */
}