.navList{
    width: 100%;
    display: flex;
    margin-bottom: 50px;
}
.navList li{
    width: calc(100% / 4);
    padding: 15px 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    color: #555;
    border-bottom: 2px solid #fae5e8;
    text-align: center;
}
.navList li:hover{
    color: #cc0022;
}
.navList li.active{
    color: #cc0022;
    border-bottom-color: #cc0022;
}
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px)  {
    .navList li{
        padding: 15px 0;
        font-size: 14px;
    }
}

/* 添加加载动画和过渡效果---- 加载状态start */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s ease;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* 添加加载动画和过渡效果---- 加载状态end */

/* 懒加载相关样式 */
.load-more-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
}

.load-more-btn {
    background: #cc0022;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #b8001f, #cc0022);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 34, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

.loading-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.loading-spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #cc0022;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.no-more-data {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .load-more-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .load-more-container {
        margin: 20px 0;
        padding: 15px 0;
    }
}



/* 新闻稿详情 */
#press .details p{
    margin-block: 20px 0;
}
#press .details ul + p,
#press .details picture + p{
    margin-top: 0;
}
#press .details ul {
    margin-block: 30px;
}
#press .details ul li picture{
    margin: 0;
}
#press .details h2{
    margin-bottom: 0;
    margin-top: 50px;
    font-size: 25px;
}
#press .ImgStyle1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#press .ImgStyle1 span{
    margin-top: 10px;
    font-size: 14px;
}
#press .ImgStyle1 picture{
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    margin-bottom: 0;
}
#press .ImgStyle1 picture img{
    width: calc((100% - 24px) / 2);
}
#press article.details a{
    color: #B1000E;
    text-decoration: underline;
}

#press article.details a:hover{
    text-decoration: none;
}

#press article.details a::after{
    display: none;
}
@media screen and (max-width: 767px) {
    article.details .titleArea h1 br{
        display: none;
    }
    #press .ImgStyle1 picture{
        flex-direction: column;
    }
    #press .ImgStyle1 picture img{
        width: 100%;
    }
}