.user-panel {
    width: 520px !important;
    min-height: 935px;
    background: #FFFFFF;
    border-radius: 0px;
    border: 0px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10000000;
    flex-shrink: 0;
}

/* 用户信息区域 */
.user-info {
    display: flex;
    align-items: center;
    margin: 30px;
    padding-bottom: 20px;
}

.user-avatar {
    margin-right: 15px;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    flex: 1;
}

.user-name {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0 0 5px 0;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.user-subtitle {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
}

/* 账户导航菜单 */
.personal-nav {
    margin-top: 20px;
}

.nav-title {
    font-size: 14px;
    color: #131523;
    font-weight: bold;
    margin: 42px 30px 28px 32px;
    text-transform: none;
    font-style: normal;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 5px;
    height: 35px;
    font-size: 14px;
    margin-bottom: 10px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/*.nav-link {*/
/*    width: 280px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding-left: 30px;*/
/*    color: #5A607F;*/
/*    text-decoration: none;*/
/*    border-radius: 6px;*/
/*    transition: all 0.3s ease;*/
/*    font-weight: 500;*/
/*}*/

/*.nav-link:hover {*/
/*    background-color: #f8f9fa;*/
/*    text-decoration: none;*/
/*}*/

/*.nav-item.active .nav-link {*/
/*    background-color: #EFF6FF;*/
/*    color: #165DFF;*/
/*}*/

.nav-icon {
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #6B7280;
}

.nav-item.active .nav-icon {
    color: #165DFF;
}

/* 右侧主要内容区域 */
.main-content {
    border-radius: 16px;
    z-index: 100;
    flex: 1;
    background-color: #fff;
    padding-top: 48px;
    padding-left: 42px;
}


.banner-box {
    width: 100%;
    max-width: 98%;
    height: 153px;
    margin: 10px auto;
    background-color: #1473e6;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-content {
    font-size: 47px;
    margin-left: 114px;
    line-height: 120px;
    font-family: Robot Robot;
    color: #fff;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
}

/* Banner响应式设计 */
@media (max-width: 1440px) {
    .banner-box {
        height: 140px;
    }

    .banner-content {
        font-size: 42px;
        margin-left: 100px;
        line-height: 110px;
    }
}

@media (max-width: 1200px) {
    .banner-box {
        height: 130px;
    }

    .banner-content {
        font-size: 38px;
        margin-left: 90px;
        line-height: 100px;
    }
}

@media (max-width: 992px) {
    .banner-box {
        height: 120px;
    }

    .banner-content {
        font-size: 34px;
        margin-left: 80px;
        line-height: 90px;
    }
}

@media (max-width: 768px) {
    .banner-box {
        height: 100px;
        margin: 5px auto;
    }

    .banner-content {
        font-size: 28px;
        margin-left: 60px;
        line-height: 80px;
    }
}

@media (max-width: 480px) {
    .banner-box {
        height: 80px;
        margin: 5px auto;
    }

    .banner-content {
        font-size: 24px;
        margin-left: 40px;
        line-height: 70px;
    }
}

.content-title {
    font-family: Inter, Inter;
    font-weight: bold;
    font-size: 16px;
    color: #131523;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

/* 用户表单样式 */
.user-form {
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
    min-height: 352px;
}

.form-group {
    margin-bottom: 20px;
}

/* 主要内容区域布局 */
.main-content-wrapper {
    width: 100%;
    max-width: 98%;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    /* background: #f9fafb; */
    padding-top: 10px;
    margin-bottom: 50px;
}

/* 响应式断点 - 参照顶部导航栏的写法 */
@media (max-width: 1440px) {
    .main-content-wrapper {
        max-width: 95%;
    }
}

@media (max-width: 1200px) {
    .main-content-wrapper {
        max-width: 92%;
    }
}

@media (max-width: 992px) {
    .main-content-wrapper {
        max-width: 90%;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-content-wrapper {
        max-width: 100%;
        padding: 0 10px;
        flex-direction: column;
    }

    .news-detail {
        padding: 20px;
    }

    .news-content-m {
        margin: 0 20px 40px 20px;
    }
}

@media (max-width: 480px) {
    .main-content-wrapper {
        padding: 0 5px;
    }

    .news-detail {
        padding: 15px;
    }

    .news-content-m {
        margin: 0 10px 40px 10px;
    }
}

.news-more {
    font-size: 14px;
    color: #1E5EFF;
    font-weight: 400;
    cursor: pointer;
    padding-left: 30px;

}

.mt {
    margin-top: 130px;
}

/* 新闻详情页面样式 */
.news-detail {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.05);
}

/* 新闻标题样式 */
.news-title {
    font-family: Source Han Sans, Source n Sans;
    font-weight: 700;
    font-size: 18px;
    color: #131523;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 0 auto 24px auto;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

/* 关键词样式 */
.news-keywords {
    font-size: 14px;
    color: #3D3D3D;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 350;
    font-family: Source Han Sans, Source n Sans;
}

/* 作者和日期信息样式 */
.news-meta {
    display: flex;
    gap: 30px;
    margin: 0 auto 30px auto;
    font-weight: 35px;
    font-size: 12px;
    color: #a6a6a6;
    text-align: center;
    justify-content: center;
    font-family: Source Han Sans, Source n Sans;
}

.news-author {
    font-weight: 500;
}

.news-date {
    font-weight: 500;
}

/* 分隔线样式 */
.news-separator {
    height: 0px;
    border: 1px solid #D8D8D8;
    margin: 20px 40px 40px 0;
}

/* 新闻内容区域样式 */
.news-content-m {
    min-height: 650px;
    margin-bottom: 120px;
}

.content-placeholder {
    font-size: 14px;
    color: #52555a;
    font-weight: 350;
    font-family: Source Han Sans, Source Han Sans;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

/* 导航链接样式 */
.news-navigation {
    display: flex;
    justify-content: space-between;
    padding-right: 40px;
}

.nav-prev,
.nav-next {
    color: #848896;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 350px;
    font-family: Source Han Sans, Source Han Sans;
}