.sub-banner .txtarea .tit {
    .title1 {
        background: linear-gradient(90deg, #2b96f5 -3%, #1366ec 19%, #7c6df9 46%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.c3d {
    color: #3d3d3d;
}

/* 平台优势 - 四个优势卡片 */
.ai4s-advantages {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 45px;
}

.ai4s-adv-item {
    position: relative;
    flex: 1;
    border-radius: 16px;
    padding: 180px 29px 26px 29px;
    display: flex;
    flex-direction: column;
    align-items: center;

    background: #FFFFFF;

    /* AI4S投影1 */
    box-shadow: 0px 4px 30px 0px rgba(215, 227, 238, 0.7);
}

.ai4s-adv-svg {
    width: 100%;
    height: auto;
    display: block;
}

.ai4s-adv-icon {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ai4s-adv-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ai4s-adv-desc .title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0px;
    text-align: center;
    color: #3D3D3D;
}

.ai4s-adv-desc p {
    margin-top: 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    color: #A0A0A0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.ai4s-adv-desc .break-here {
    display: inline-block;
    max-width: 100%;
}

.ai4s-architecture {
    width: 100%;
}

/* 应用场景 - 网格布局 */
.ai4s-scenarios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 24px;
    margin-top: 45px;
}

.ai4s-scen-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 4px 30px 0px rgba(215, 227, 238, 0.7);
}

.ai4s-scen-left {
    flex: 1;
    padding: 49px 34px 29px 34px;
    display: flex;
    flex-direction: column;
}

.ai4s-scen-title {
    margin: 0 0 17px 0;
    font-family: HarmonyOS Sans SC;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    color: #3d3d3d;
}

.ai4s-scen-desc {
    flex: 1;
    min-height: 88px;
    max-height: 88px;
    margin: 0 0 40px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    text-overflow: ellipsis;
    font-family: HarmonyOS Sans SC;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    letter-spacing: 0px;
    color: #a0a0a0;
    cursor: default;
}

.ai4s-scen-btns {
    display: flex;
    gap: 9px;
    min-height: 34px;
}

.ai4s-scen-dropdown {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.ai4s-scen-btn {
    font-family: HarmonyOS Sans SC;
    display: inline-block;
    padding: 4px 25px;
    font-size: 14px;
    line-height: 22px;
    background: #FFFFFF;
    color: #3D3D3D;
    box-sizing: border-box;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

@media screen and (max-width: 1445px) {
    .ai4s-scen-btn {
        padding: 4px 16px;
    }

}

.ai4s-scen-btn:hover {
    border: 1px solid transparent;
    border-radius: 4px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(250deg, #1366ece6 -1%, #7c6df9e6 101%) border-box;
    color: #1366ec;
}

.ai4s-scen-btn.primary {
    background: linear-gradient(75deg, #2b96f5 -20%, #1366ec 17%, #a095ff 107%, #ff8e18 107%);
    color: #fff;
}

.ai4s-scen-btn.disabled {
    color: #A0A0A0;
    cursor: not-allowed;
    border: 1px solid #ECECEE;
}

.ai4s-scen-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    z-index: 20;
    min-width: 120px;
    padding: 8px 0;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
    display: none;
}

.ai4s-scen-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 22px;
    color: #3D3D3D;
    white-space: nowrap;
}

.ai4s-scen-menu a:hover {
    background: #F6F8FC;
    color: #1366EC;
}

.ai4s-scen-dropdown:hover .ai4s-scen-menu {
    display: block;
}

.ai4s-scen-btn.primary:hover {
    background: linear-gradient(75deg, #2b96f5 -20%, #1366ec 17%, #a095ff 107%, #ff8e18 107%);
}

.ai4s-scen-right {
    padding: 16px;
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai4s-scen-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.ai4s-tooltip {
    position: absolute;
    z-index: 9999;
    display: none;
    max-width: 320px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(38, 38, 38, 0.92);
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    white-space: normal;
    word-break: break-word;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.ai4s-eco-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 16px;
    row-gap: 24px;
    margin-top: 45px;
}

.ai4s-eco-card {
    min-height: 120px;
    border-radius: 12px;
    opacity: 1;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(215, 227, 238, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.ai4s-eco-card img {
    width: 70%;
    height: auto;
    display: block;
}