body{
    background: linear-gradient(to bottom, #572cd4 0%, #dea7c4 20%, #f9e270 100%);
}

/* 主视觉区域 - 轮播背景 */
.hero {
    height: 530px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);*/
}
.large-icon {
    font-size: 16px;
}

/* 内容区域 */
.intro-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    color: #572cd4;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #572cd4 0%, #f9e270 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 介绍区域 */
.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.intro-text{
    margin-top: 20px;
    padding: 5px 30px;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-indent: 2em;
    text-align: justify;
}

.info-card {
    justify-content: center;
    background: #ecf0f1;
    border-radius: 12px;
    padding: 25px;
    border-left: 5px solid #dea7c4;
    border-right: 5px solid #dea7c4;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #dea7c4 0%, #f9e270 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 25px;
    margin-left: 15px;
    flex-shrink: 0;
}

.info-content {
    font-size: 1.1rem;
}

.info-label {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.notice-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    background-color: #f5f7fa;
    padding: 0 15px;
    border-radius: 8px;
    box-sizing: border-box;
}

.notice-icon {
    margin-right: 10px;
    color: #f9e270;
}

.notice-content {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.notice-item {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-tag {
    margin-right: 8px;
}

.notice-text {
    font-size: 18px;
    color: #606266;
}

.notice-more {
    margin-left: 10px;
}

/* 向左滑动动画 */
.slide-left-enter-active,
.slide-left-leave-active {
    transition: all 0.5s ease;
}

.slide-left-enter {
    opacity: 0;
    transform: translateX(100%);
}

.slide-left-leave-to {
    opacity: 0;
    transform: translateX(-100%);
}

/* 向右滑动动画 */
.slide-right-enter-active,
.slide-right-leave-active {
    transition: all 0.5s ease;
}

.slide-right-enter {
    opacity: 0;
    transform: translateX(-100%);
}

.slide-right-leave-to {
    opacity: 0;
    transform: translateX(100%);
}

.news-list {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
.news-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px dashed #eaeaea;
    transition: all 0.3s ease;
}
.news-item:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
}
.news-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
}
.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 12px;
    min-width: 70px;
    text-align: center;
}
.tag-event {
    background-color: #ffeded;
    color: #ff5c5c;
}
.tag-scene {
    background-color: #e6f7ff;
    color: #1890ff;
}
.tag-industry {
    background-color: #fff5e9;
    color: #ff9c39;
}
.tag-free {
    background-color: #f6ffed;
    color: #52c41a;
}
.news-title {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.news-title:hover {
    color: #1890ff;
}
.news-date {
    color: #999;
    font-size: 14px;
}
.more {
    text-align: center;
    margin-top: 20px;
}
.more-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #f5f7fa;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}
.more-btn:hover {
    background-color: #e6f7ff;
    color: #1890ff;
}


/* 精彩呈现 */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.showcase-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.showcase-card:hover {
    transform: translateY(-10px);
}

.showcase-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.showcase-content {
    padding: 20px;
    background: white;
}

.showcase-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}
/* 票务信息 */
.ticket-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


.pass-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.pass-bg{
    background: #f3f3f3;
    border-radius: 15px;
    padding: 30px;
    color: #2c3e50;
    text-align: center;
}

.pass-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pass-desc {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* 活动地图 */
.map-container {
    background: #ecf0f1;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.map-container img{
    border-radius: 6px;
}

.map-placeholder {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 30px 0;
}

/* 合作伙伴 */

.page-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #303133;
    position: relative;
    padding-bottom: 15px;
}
.page-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #409EFF;
}
.partner-section {
    /*margin-bottom: 25px;*/
    /*padding: 15px;*/
    /*border: 1px solid #EBEEF5;*/
    /*border-radius: 4px;*/
    /*transition: all 0.3s ease;*/
}
.partner-section:hover {
    /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);*/
    /*transform: translateY(-2px);*/
}
.partner-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #572cd4;
    display: flex;
    align-items: center;
}
.partner-title:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #dea7c4;
    margin-right: 8px;
    border-radius: 2px;
}
.company-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.company-item {
    transition: all 0.3s;
    cursor: default;
    padding: 2px 5px;
    margin: 5px 4px;
    border: 2px solid;
    border-image: linear-gradient(90deg, #572cd4 0%, #f9e270 100%);
    border-image-slice: 1;
}
.company-item img{
    border-radius: 6px;
}
.company-item:hover {
    transform: scale(1.03);
}


.partner-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.partner-grid .partner-card {
    flex: 0 0 calc(100% / 7);
}

.partner-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    cursor: pointer;
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
}

.partner-logo {
    border-radius: 4px;
    width: 130px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
    object-fit: contain;
}



@media (max-width: 768px) {
    partner-section{
        margin:20px;
    }
    .partner-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .partner-grid .partner-card {
        flex: 0 0 calc(100% / 2);
    }
    .hero {
        margin-top: -20px;
        height: 260px;
    }
    .carousel-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 260px;
        z-index: 1;
    }
    .carousel-item {
        width: 100%;
        height: 230px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 230px;
        /*background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);*/
    }
    .intro-section {
        padding: 15px 0;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
    }
    .intro-grid{
        display:flex;
        flex-direction: column;
        padding: 0 20px;
        text-align: justify;
    }
    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        color: #572cd4;
        overflow: visible;
        margin-bottom: 15px;
    }

    .section-title:after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, #572cd4 0%, #f8e16f 100%);
        border-radius: 2px;
    }
    .section-subtitle {
        color: #7f8c8d;
        font-size: 1.1rem;
        padding: 10px 20px;
        text-align: justify;
    }
    .intro-text{
        padding: 20px 5px;
    }
    .intro-text p {
        font-size: 1.1rem;
        line-height: 24px;
        text-indent: 2em;
        text-align: justify;
    }
    .showcase-grid {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }
    .showcase-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .showcase-card:hover {
        transform: translateY(0px);
    }

    .map-container {
        margin-top: -20px;
        background: #fff;
        padding: 0 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .map-container img{
        border-radius: 5px;
    }
    .ticket-container{
        display: flex;
        flex-direction: column;
    }
    .partner-container {
        padding: 15px;
    }
    .company-list {
        justify-content: center;
    }
    .news-item {
        margin:0 15px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .news-title {
        font-size: 18px;
        text-align: left;
    }
    .tag{
        font-size: 14px;
        padding:5px 0
    }
    .news-date {
        margin-top: 6px;
        margin-left: 2px;
    }


}