* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #1D2129;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    height: 580px;

    background-image: url("/statics/themes/sanpin/images/base/bg01.png");
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    /* 背景图也居中显示 */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* 可选：让背景图覆盖整个区域 */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #165DFF 0%, #00C5D1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


.hero-image {
    position: relative;
    text-align: center;
    width: 597px;
    height: 442px;
}

.hero-image img{
    width: 100%;
}

/* Schools Section */
.schools {
    padding: 80px 0;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.school-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.school-card:hover {
    transform: translateY(-5px);
}

.school-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.school-card .content {
    padding: 20px 20px 30px;
}

.school-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
}

.school-card p {
    line-height: 1.7;
    font-size: 1rem;
}

.schools-note{
    font-size: 0.9rem;
    background-color: rgba(22, 93, 255, 0.1);
    color: #165DFF;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 15px;
}

.school-card:nth-child(2) .schools-note{
    background-color: rgba(255, 93, 22, 0.1);
    color: #FF5D16;
}

.school-card:nth-child(3) .schools-note{
    background-color: rgba(176, 22, 255, 0.1);
    color: #B016FF;
}

/* Festival Section */
.festival {
    padding: 80px 0;
    background: #F1F6FE;
}

.festival-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


.festival-features {
    list-style: none;
    margin-bottom: 40px;
}

.festival-features li {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 12px;
}

.festival-features .icon {
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.festival-features .icon img{
    width: 30px;
}

.festival-features .feature-content strong {
    display: block;
    font-weight: 600;
}

.festival-features .feature-content {
    line-height: 1.6;
    font-size: 1rem;
}

.festival-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Workshop Section */
.workshop {
    padding: 80px 0;
    background: #ffffff;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.workshop-card {
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    background-color: #EEF2FF;
}
.workshop-card:nth-child(2){
    background-color: #FAF5FF ;
}
.workshop-card:nth-child(3){
    background-color: #F0FDFA;
}
.workshop-card:nth-child(4){
    background-color: #FEF3E8;
}
.workshop-card:nth-child(5){
    background-color: #FFF1F2;
}
.workshop-card:nth-child(6){
    background-color: #F4F8FF;
}

.workshop-card:hover {
    transform: translateY(-5px);
}

.workshop-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
}

.workshop-card .icon img{
    width: 100%;
}

.workshop-card h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.workshop-summary {
    width: 1200px;
    height: 188px;
    padding: 30px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;

    background-image: url("/statics/themes/sanpin/images/base/bg02.png");
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    /* 背景图也居中显示 */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* 可选：让背景图覆盖整个区域 */
}

.workshop-summary div{
    font-weight: 600;
    font-size: 1.5rem;
    color: #165DFF;
    display: inline-block;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 5px 20px;
    border-radius: 30px;
}


.workshop-summary p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 20px auto 0;
}

/* Research Section */
.research {
    padding: 80px 0;
    background: #F1F6FE;
}

.research-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.research-features {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.research-features h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.research-features ul {
    list-style: none;
}

.research-features li {
    padding: 5px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.research-features li img{
    width: 15px;
    margin-right: 5px;
}

.research-features li:last-child {
    border-bottom: none;
}

.research-image img {
    width: 100%;
    /*height: 350px;*/
    object-fit: cover;
    border-radius: 15px;
}

.research-conclusion {
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .festival-content,
    .research-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .schools-grid {
        grid-template-columns: 1fr;
    }

    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

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