:root {
    --primary-pink: #FF9EC5;
    --light-pink: #FFEBF0;
    --accent-yellow: #FFD166;
    --accent-blue: #A0E7FF;
    --accent-purple: #D9B6FF;
    --text-dark: #5A3D5C;
    --text-light: #FFFFFF;
    --border-radius: 24px;
    --shadow-main: 0 10px 20px rgba(255, 158, 197, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
}

.slides {
    width: 100%;
    min-height: 100vh;
    /* background: linear-gradient(135deg, #131313, #131313); */
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.slides::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.slides::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.slidesWapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.banner-text {
    padding-left: 60px;
    flex: 2;
}

.slidesImg {
    flex: 1;
    text-align: center;
    position: relative;
}

.slidesImg::before {
    content: '';
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0.3;
}

.banner-text .sweet-title {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(to right, #009cff, #0066a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-text .sweet-tagline {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.1;
}

.sweet-tagline span {
    background: linear-gradient(to right, #009cff, #0066a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sweet-subtitle {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sweet-description {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

.downbtn {
    display: inline-flex;
    width: 220px;
    height: 80px;
    background: linear-gradient(to right, #009cff, #0066a6);
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    text-decoration: none;
    z-index: 2;
}

.downbtn:hover {
    transform: translateY(-5px) scale(1.05);
}

.downbtn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.5s;
}

.downbtn:hover::after {
    left: 100%;
}

.downbtn i {
    margin-left: 12px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.downbtn:hover i {
    transform: translateX(5px);
}

.character-img {
    max-width: 100%;
    height: auto;
    max-height: 780px;
    filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.1));
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.character-img:hover {
    transform: scale(1.03) rotate(-2deg);
}

.LineDiv {
    width: 100%;
    padding: 100px 20px;
    position: relative;
}

.LineDiv:nth-child(even) {
    background-color: #002d4a;
    border-top: 5px solid #0066a6;
}

.boxTitle {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 40px;
    /* background: linear-gradient(to right, #009cff, #0066a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #0066a6;
    position: relative;
}
.LineDiv:nth-child(even) .boxTitle {
    color: #fff;
}

.boxTitle::after {
    content: '';
    display: block;
    width: 100px;
    height: 8px;
    /* background: linear-gradient(to right, #009cff, #0066a6); */
    margin: 20px auto 0;
    border-radius: 10px;
}

.itemGrid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 156, 255, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #009cff;
}

.feature-card:hover {
    transform: translateY(-15px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rbga(0, 156, 255, .6);
    border-radius: 30%;
    padding: 20px;
}

.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.feature-showcase-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.showcase-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-column {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-main);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.feature-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* background: linear-gradient(to right, #FF6B9D, #FF9EC5); */
    background: linear-gradient(to right, #009cff, #0066a6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

.feature-header-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-header-title .highlight {
    color: #009cff;
}

.funList {
    list-style: none;
}

.showcase-wrapper dd {
    padding: 15px 0;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
}

.showcase-wrapper dd:last-child {
    border-bottom: none;
}

.showcase-wrapper dd i {
    color: #009cff;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 156, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.showcase-wrapper dd .feature-name {
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
    min-width: 120px;
}

.showcase-wrapper dd .feature-desc {
    color: var(--text-dark);
    font-size: 1rem;
    display: inline-block;
}

.sweet-gallery {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #FFFFFF, #FFF0F5);
    position: relative;
}

.gallery-container {
    margin: 0 auto;
    position: relative;
}

.swiper-container {
    padding: 40px 0;
    position: relative;
}

.swiper-slide {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-main);
}

.swiper-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 158, 197, 0.4);
}

.case-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.case-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.swiper-slide:hover .case-image img {
    transform: scale(1.05);
}

.view-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    color: #FF6B9D;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
}

.swiper-slide:hover .view-btn {
    opacity: 1;
    transform: translateY(0);
}

.view-btn:hover {
    background: white;
    color: #FF6B9D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.navigation-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0 20px;
}

.nav-btn:hover {
    background: linear-gradient(to right, #FF6B9D, #FF9EC5);
}

.nav-btn:hover i {
    color: white;
}

.nav-btn i {
    font-size: 20px;
    color: #FF6B9D;
    transition: color 0.3s ease;
}

.h5i6j {
    background: linear-gradient(to right, #009cff, #0066a6);
    border-radius: var(--border-radius);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #0066a6;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.k7l8m {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.z7a8b ul {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.z7a8b li {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.z7a8b li:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.z7a8b li:hover .showbtn {
    display: flex;
}

.z7a8b li img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.z7a8b li .showbtn {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.z7a8b li .showbtn i {
    color: #0066a6;
    font-size: 20px;
}


.f1g2hc {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.f1g2hc .modal-content {
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(237, 102, 255, 0.4);
    border-radius: 8px;
}

.f1g2hc .close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.f1g2hc .close:hover {
    background: rgba(237, 102, 255, 0.8);
    transform: rotate(90deg);
}

.footBox {
    width: 100%;
    padding: 40px 20px;
    background: #0066a6;
    color: #fff;
    text-align: center;
}

.footBox .link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footBox .link:hover {
    color: #fff;
}

.footBox .copyright {
    color: #fff;
    font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .slidesWapper {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .sweet-title {
        font-size: 4rem;
    }

    .sweet-tagline {
        font-size: 2.5rem;
    }

    .showcase-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .sweet-title {
        font-size: 3rem;
    }

    .sweet-tagline {
        font-size: 2rem;
    }

    .sweet-subtitle {
        font-size: 1.5rem;
    }

    .sweet-description {
        font-size: 1.1rem;
    }

    .downbtn {
        width: 200px;
        height: 70px;
        font-size: 1.4rem;
    }

    .boxTitle {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .funList li {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }
}

.fucitem{

}
.gridBox {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    gap: 25px;
    margin-top: 40px;
    width: 1400px;
    margin: 0 auto;
}

.gridBoxCard {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 120px;
    display: flex;
}

.gridBoxCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.gridBox .icon-container {
    width: 90px;
    background-color: #f8bbd0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gridBox .item-icon {
    font-size: 28px;
    font-weight: bold;
    color: #ad1457;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gridBox .itemcontent {
    padding: 18px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gridBox .itemname {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #333;
}

.gridBox .itemname .tm {
    font-size: 12px;
    vertical-align: super;
    margin-left: 4px;
    color: #f50057;
}

.gridBox .feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* 卡片颜色变化 */
.gridBoxCard:nth-child(1) .icon-container {
    background-color: #f8bbd0;
}

.gridBoxCard:nth-child(1) .item-icon {
    color: #ad1457;
}

.gridBoxCard:nth-child(2) .icon-container {
    background-color: #e1bee7;
}

.gridBoxCard:nth-child(2) .item-icon {
    color: #6a1b9a;
}

.gridBoxCard:nth-child(3) .icon-container {
    background-color: #bbdefb;
}

.gridBoxCard:nth-child(3) .item-icon {
    color: #1565c0;
}

.gridBoxCard:nth-child(4) .icon-container {
    background-color: #b3e5fc;
}

.gridBoxCard:nth-child(4) .item-icon {
    color: #00838f;
}

.gridBoxCard:nth-child(5) .icon-container {
    background-color: #c8e6c9;
}

.gridBoxCard:nth-child(5) .item-icon {
    color: #2e7d32;
}

.gridBoxCard:nth-child(6) .icon-container {
    background-color: #ffecb3;
}

.gridBoxCard:nth-child(6) .item-icon {
    color: #ff8f00;
}

.gridBoxCard:nth-child(7) .icon-container {
    background-color: #ffccbc;
}

.gridBoxCard:nth-child(7) .item-icon {
    color: #e64a19;
}

.gridBoxCard:nth-child(8) .icon-container {
    background-color: #d1c4e9;
}

.gridBoxCard:nth-child(8) .item-icon {
    color: #4527a0;
}

@media (max-width: 768px) {
    .gridBox {
        grid-template-columns: 1fr;
    }
}