.section {
    background-image: url('../images/bgCallPaper_800x358.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1200px;
    margin: 0 auto;
}

.rating-stars {
    width: 100%;
    text-align: center;
}

.rating-stars .rating-stars-container {
    padding-top: 10px
}

.rating-stars .rating-stars-container .rating-star {
    display: inline-block;
    font-size: .8rem;
    color: #555555;
    cursor: pointer;
}

.rating-stars .rating-stars-container .rating-star.is--active,
.rating-stars .rating-stars-container .rating-star.is--hover {
    color: #f1c40f;
}

.rating-stars .rating-stars-container .rating-star.is--no-hover {
    color: #555555;
}

/* 导航菜单文字样式 */
.navbar-nav .nav-link {
    font-family: 微软雅黑;
    font-size: calc(var(--fontRatio, 1) * 16px);
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    color: #212121;
}

/* 鼠标悬停时的颜色 */
.navbar-nav .nav-link:hover {
    color: rgba(15, 28, 128, 1);
}

/* 移除下划线 */
.navbar-nav .nav-link:after {
    display: none;
}

/* 确保字体不倾斜 */
.navbar-nav .nav-link {
    font-style: normal !important;
}

/* 登录注册按钮容器 */
.s_member_login {
    display: flex;
    gap: 10px;  /* 按钮之间的间距 */
    margin: 0.616505vw 49.8305% 0vw 21.0174%;
}

/* 注册按钮样式 */
.s_member_login_register {
    padding: 8px 20px;
    background-color: #0098d3;  /* 主题背景色 */
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* 登录按钮样式 */
.s_member_login_login {
    padding: 8px 20px;
    background-color: #fff;
    color: #0098d3;
    border: 1px solid #0098d3;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* 按钮悬停效果 */
.s_member_login_register:hover {
    background-color: #0077a3;
    color: #fff;
}

.s_member_login_login:hover {
    background-color: #f5f5f5;
    color: #0077a3;
}

/* 修改section标题样式 */
.section-title {
    letter-spacing: 0.544px;
    color: #000000;
    font-family: 微软雅黑;
    font-size: 24px;
    font-weight: bold;  /* 对应strong标签的加粗效果 */
}

/* 如果不需要strong标签，可以直接使用上面的样式 */
/* 如果需要保留strong标签，可以这样写： */
.section-title strong {
    letter-spacing: 0.544px;
    color: #000000;
    font-family: 微软雅黑;
    font-size: 24px;
    font-weight: bold;
}

/* 图片展示区域样式 */
.jz_web_row {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.jz_web_row__content {
    position: relative;
    width: 100%;
    height: 100%;
}

.web_col_content_rows {
    position: relative;
    width: 100%;
}

.photo_display_wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.photo_display_area {
    position: relative;
    width: 100%;
}

.photo_display_list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.photo_display_list li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.photo_display_list li.activedPic {
    opacity: 1;
}

.photoItemWrap {
    width: 100%;
    height: 100%;
}

.photoItemWrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.dot_list {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.select_photo {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select_photo.active {
    background-color: #fff;
}

/* 图片效果样式 */
.c__imgeffects_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.c__image_wrap {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.c__image_wrap:hover {
    transform: scale(1.05);
}

/* 图片预览相关样式 */
.view-large-image {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.image-preview-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 1200px;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
}

#previewImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-modal:hover {
    color: #ccc;
}

/* 确保图片容器可以点击 */
.photo_item_imgwrap {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.photo_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
}

.photo_item:hover {
    transform: scale(1.05);
}

/* 背景图样式 */
.jz_web_row_bg {
    position: relative;
    width: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

/* 添加call_paper区域居中样式 */
#rowline1131 .jz_web_row {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 1200px !important;
}

.jz_web_row__content {
    position: relative;
    z-index: 2;
}

/* 富文本内容样式 */
.rich_article_wrap_html {
    position: relative;
    z-index: 2;
}

.rich_media_title {
    margin: 0 0 14px;
    padding: 0;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.9);
    font-family: "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
    letter-spacing: 0.544px;
}

.rich_media_title strong {
    letter-spacing: 0.544px;
    color: #000000;
    font-family: 微软雅黑;
    font-size: 24px;
}

/* 图片列表样式 */
.photo_display_area {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.photo_item_li0,
.photo_item_li1,
.photo_item_li2 {
    box-sizing: border-box;
    padding: 10px 25px;
}

.photo_item_imgwrap {
    position: relative;
    width: 100%;
    padding-bottom: 134.615%;
    overflow: hidden;
}

.photo_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
}

.photo_item:hover {
    transform: scale(1.05);
}

/* 图片预览导航按钮样式 */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* youth区域样式 */
#youth.jz_web_row {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

#youth.jz_web_row::before {
    display: none;
}

#youth .jz_web_row__content {
    position: relative;
    z-index: 2;
}

/* 下载按钮样式 */
.module_button_content {
    background-color: #ff0000 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    min-width: 300px;
    padding: 12px 30px !important;
    text-align: center;
    display: inline-block;
}

.module_button_content:hover {
    background-color: #cc0000 !important;
    color: #ffffff !important;
}

.module_button_text {
    color: #ffffff !important;
    font-size: 16px !important;
    white-space: nowrap;
}

/* 图片居中样式 */
.module_image_content {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.module_image_content .c__imgeffects_wrap {
    display: inline-block !important;
    text-align: center !important;
}

.module_image_content img {
    margin: 0 auto !important;
    display: block !important;
}

#rowline1175 .jz_web_row {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 1200px !important;
}

.carousel-item {
    text-align: center;
}

.carousel-item img {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* 移动端响应式调整 */
@media (max-width: 768px) {
    .jz_web_row {
        padding: 2px 2px !important; /* 减小内边距 */
    }
    
    .jz_web_col {
        margin: 0 !important; /* 移除外边距 */
    }
    
    .dot_list {
        bottom: 5px;
    }
    
    .select_photo {
        width: 8px;
        height: 8px;
    }

    .iframe_module iframe {
        height: 600px !important; /* 移动端减小高度 */
    }

    .jz_web_row_bg {
        padding: 2px 4px !important;
    }
    
    .photo_item_li0,
    .photo_item_li1,
    .photo_item_li2 {
        width: 100% !important;
        padding: 10px;
    }
    
    .rich_media_title {
        font-size: 18px;
    }
    
    .rich_media_title strong {
        font-size: 20px;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    #youth.jz_web_row {
        padding: 20px 10px !important;
    }

    .module_button_content {
        min-width: 200px;
        padding: 10px 20px !important;
    }
    
    .module_button_text {
        font-size: 14px !important;
    }
}

/* 人物展示区域样式 */
.speaker-row {
    max-width: 1200px;
    margin: 20px;
    background-color: #f2f2f2;
    padding: 20px 0;
}

.speaker-row__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.speaker-col {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.speaker-name {
    font-family: "思源黑体 Medium", sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.speaker-title {
    font-size: 16px;
    color: #666;
    min-height: 24px; /* 添加最小高度确保对齐 */
    display: flex;
    align-items: center;
}

.speaker-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.speaker-image:hover {
    transform: scale(1.05);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .speaker-row {
        padding: 10px 0;
    }
    
    .speaker-row__content {
        gap: 10px;
    }
    
    .speaker-col {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .speaker-name {
        font-size: 24px;
    }
    
    .speaker-title {
        font-size: 14px;
        min-height: 36px; /* 移动端稍微减小最小高度 */
        line-height: 1.2;
        margin-bottom: 10px;
    }
}