body{
    background: #FFFFFF;
}
.bannerSwipperBox{
    height: 285px;
}
.swiper{
    height: 100%;
}
.swiper-slide a{
    background-size: cover !important;
}
.mainWrapper{
    min-height: 83vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.mediaList{
    width: 100%;
    padding: 70px 0;
}
.mediaListWrapper{
    max-width: 1400px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.description {
    text-align: center;
    margin-bottom: 40px;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tab-component {
    display: flex;
    overflow: hidden;
}

/* 左侧标签样式 */
.tab-list {
    width: 270px;
    background: #FFFFFF;
    border-right: 2px solid rgba(229, 229, 229, 1);
}

.tab-item-li {
    padding: 15px 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
font-size: 24px;
font-weight: 500;
letter-spacing: 0px;
line-height: 34px;
color: rgba(0, 0, 0, 1);

}


.tab-item-li.active {
    background-color: rgba(238, 239, 241, 1);
}

.tab-item-li.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 50%;
    background-color: rgba(26, 70, 214, 1);
}

/* 右侧内容区域 */
.tab-content {
    flex: 1;
    padding-left: 35px;
    min-height: 500px;
}

.content-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 服务介绍样式 */
.service-title {
    margin-bottom: 30px;
font-size: 26px;
font-weight: 500;
letter-spacing: 0px;
line-height: 37px;
color: rgba(0, 0, 0, 1);
}

.service-article {
font-size: 18px;
font-weight: 500;
letter-spacing: 0px;
line-height: 26px;
color: rgba(128, 128, 128, 1);

}

.service-article p {
    margin-bottom: 15px;
}

/* 合作媒体样式 */
.media-title {
    margin-bottom: 30px;
font-size: 26px;
font-weight: 500;
letter-spacing: 0px;
line-height: 37px;
color: rgba(0, 0, 0, 1);
}

.media-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.logo-item {
    background: #FFFFFF;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
}
.logo-item img{
    width: 100%;
    height: 100%;
}

.logo-placeholder {
    width: 100%;
    height: 60px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: bold;
}

/* 新闻资讯样式 */
.news-title {
    margin-bottom: 30px;
font-size: 26px;
font-weight: 500;
letter-spacing: 0px;
line-height: 37px;
color: rgba(0, 0, 0, 1);
}

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

.news-item {
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 290px;
    background-color: rgba(229, 229, 229, 1);
    position: relative;
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    padding: 10px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.news-item:hover .news-overlay {
    transform: translateY(0);
}

.news-item-title {

font-size: 18px;
font-weight: 400;
letter-spacing: 0px;
line-height: 26px;
color: #FFFFFF;
margin-bottom: 5px;
}

.news-date {
font-size: 18px;
font-weight: 400;
letter-spacing: 0px;
line-height: 26px;
color: #FFFFFF;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .bannerSwipperBox{
        height: calc(100vw / 2.88);
    }
    .tab-component {
        flex-direction: column;
    }
    
    .tab-list {
        width: 100%;
        display: flex;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .tab-item-li {
        flex: 1;
        justify-content: center;
        padding: 15px 10px;
        line-height: 16px;
        font-size: 16px;
    }
    
    .tab-item-li.active::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 50%;
        height: 2px;
    }
    .tab-content{
        padding: 10px;
        min-height: auto;
    }
    .service-title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .service-article{
        font-size: 14px;
    }
    .media-title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .news-title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .news-image{
        height: 180px;
    }
    .media-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .logo-item{
        height: 40px;
    }
    .news-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .news-overlay{
        padding: 5px 10px;
    }
    .news-item-title{
        line-height: 16px;
        font-size: 14px;
    }
    .news-date{
        line-height: 20px;
        font-size: 14px;
    }
}

