/* 前端页面样式 */
@import url("//at.alicdn.com/t/c/font_5087168_aowok0zxhqj.css");

/* 全局样式 */
:root {
    --base-font-size: 14px;
    --blur-bg: rgba(255, 255, 255, 0.8);
    --body-bg-color: #fafbfc;
    --main-color: #4e5358;
    --main-bg-color: #fff;
    --main-width: 1320px;
    --main-border-color: rgba(50, 50, 50, 0.06);
    --main-shadow: rgba(116, 116, 116, 0.08);
    --main-radius: 10px;
    --muted-color: #777;
    --muted-2-color: #999;
    --muted-3-color: #b1b1b1;
    --header-bg: rgba(255, 255, 255, 0.8);
    --header-color: var(--main-color);
    --header-font: 1.05rem;
    --footer-bg: #1d1d1f;
    --footer-color: #fff;
}

html {
    font-size: var(--base-font-size);
}

html {
    --theme-color: #103e94;
    --web-nav-color: #103e94;
    --web-nav-active-color: #164eb7;
    --web-nav-font-color: #ffffff;
    --web-nav-font-active-color: #ffffff;
    --web-width: 1200px;
}

@media screen and (min-width: 769px) {
    html {
        font-size: 26.666px !important;
    }
}

@media (min-width: 576px) {
    :root {
        --base-font-size: 14px;
    }
}

@media (min-width: 768px) {
    :root {
        --base-font-size: 16px;
    }
}

* {
    box-sizing: border-box;
    font-family: "Microsoft Yahei", "WenQuanYi Micro Hei", sans-serif;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    color: var(--main-color);
    text-decoration: none;
    outline: 0;
    background-color: transparent;
}

a[href] {
    cursor: pointer;
    transition: color .2s, background .3s, opacity .3s, box-shadow .3s, transform .3s;
}

ol, ul {
    list-style: none;
}

body {
    padding: 0;
    margin: 0;
    color: var(--main-color);
    background: var(--body-bg-color);
    line-height: 1.5em;
}

/* 字体大小 */
.font-size-10 {
    font-size: 0.625rem;
}

.font-size-11 {
    font-size: 0.6875rem;
}

.font-size-12 {
    font-size: 0.75rem;
}

.font-size-14 {
    font-size: 0.875rem;
}

.font-size-15 {
    font-size: 0.9375rem;
}

.font-size-16 {
    font-size: 1rem;
}
.fs14 { font-size: 0.875rem; }
.fs16 { font-size: 1rem; }
.mt15 { margin-top: 15px; }
.flex-item { flex: 1 1 auto; }

.font-size-18 {
    font-size: 1.125rem;
}

.font-size-20 {
    font-size: 1.25rem;
}

.font-size-24 {
    font-size: 2rem;
}

/* 偏移大小 */
.mart-20 {
    margin-top: 1.25rem;
}

.marb-20 {
    margin-bottom: 1.25rem;
}

.marl-20 {
    margin-left: 1.25rem;
}

.marr-20 {
    margin-right: 1.25rem;
}

.mart-30 {
    margin-top: 1.875rem;
}

.marb-30 {
    margin-bottom: 1.875rem;
}

.marl-30 {
    margin-left: 1.875rem;
}

.marr-30 {
    margin-right: 1.875rem;
}

.padt-30 {
    padding-top: 1.875rem;
}

.padb-30 {
    padding-bottom: 1.875rem;
}

.pad-15 {
    padding: 0.9375rem;
}

.pad-20 {
    padding: 1.25rem;
}

.pad-30 {
    padding: 1.875rem;
}

/* 容器大小 */
section {
    padding: 50px 0;
}

section.bg-white {
    background: #fff;
}

section .title-box {
    margin-bottom: 1.875rem;
    text-align: center;
}

section .title-box h3 {
    color: #1d1d1f;
    font-size: 32px;
    font-weight: bold;
    line-height: 1em;
}

section .title-box .text {
    padding-top: 8px;
    color: #868c9e;
    font-size: 15px;
    line-height: 1em;
}

.wrapper {
    position: relative;
    margin: auto;
    /* 移除 padding，让导航栏和底部紧贴浏览器边缘 */
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    /* 移除 max-width 限制，让导航栏可以全宽显示 */
    white-space: normal;
    overflow-wrap: break-word;
}

.radius-box {
    background: var(--main-bg-color);
    box-shadow: 0 0 10px var(--main-shadow);
    border-radius: var(--main-radius);
}

.radius-box.full {
    height: 100%;
}

.radius-box.hidden {
    overflow: hidden;
}

.radius-box > .ntitle {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.radius-box > .ntitle.small {
    font-size: 0.93rem;
}

.frontend-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 头部样式 */
.frontend-header {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 20px;
    padding: 0;
    transition: .3s;
    color: var(--header-color);
    background: var(--header-bg);
    box-shadow: 0 4px 10px var(--main-shadow);
    opacity: 0.9;
}

.frontend-header .header-row {
    align-items: center;
    height: 3.75rem;
}

.frontend-header .logo {
    display: flex;
    align-items: center;
}

.frontend-header .logo img {
    width: 100%;
    max-width: 150px;
    max-height: 32px;
}

/* 搜索框样式 */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.search-box .form-control {
    height: 1.5rem;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 0.8rem;
    width: 200px;
}

.search-box .search-btn {
    height: 1.5rem;
    padding: 0 10px;
    background-color: #103e94;
    border: 1px solid #103e94;
    border-radius: 0 4px 4px 0;
    color: white;
    cursor: pointer;
    font-size: 0.4rem !important;
}

.search-box .search-btn:hover {
    background-color: #0d357f;
    border-color: #0d357f;
}

.search-box .iconfont {
    font-size: 0.6rem;
    margin-right: 0.25rem;
}

.frontend-header .nav-link {
    font-weight: 500;
    transition: color 0.2s ease-in-out;
    color: var(--header-color);
    font-size: var(--header-font);
    border-bottom: 0;
}

.frontend-header .nav-link:hover {
    color: #007bff !important;
    background: none;
}

.frontend-header .nav-item {
    margin: 5px;
}

.frontend-header .nav-item:hover {
    background: rgb(0 0 0 / 3%);
    border-radius: 5px;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* 主要内容区域 */
.container.my-4, .main-index {
    flex: 1;
}

/* 首页样式 */
.main-index .index-slide {
    margin-bottom: 20px;
    height: 445px; /* 设置幻灯片区域的固定高度 */
}

.main-index .index-news {
    margin-bottom: 20px;
}

.notice-module .carousel-notice-module {
    height: 445px; /* 设置轮播图容器高度 */
}

.notice-module .carousel-notice-module .carousel-notice-item {
    position: relative;
    height: 445px; /* 设置每个轮播项的高度 */
}

.notice-module .carousel-notice-module .carousel-notice-item img {
    width: 790px; /* 设置图片固定宽度 */
    height: 445px; /* 设置图片固定高度 */
    object-fit: cover;
    vertical-align: bottom;
    border-radius: 0.1rem;
    margin: 0 auto; /* 居中显示 */
}

.carousel-img {
    width: 790px; /* 设置carousel-img类的固定宽度 */
    height: 445px; /* 设置carousel-img类的固定高度 */
    object-fit: cover;
    object-position: center;
    margin: 0 auto; /* 居中显示 */
}

.article-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.article-card .card-img-top {
    object-fit: cover;
    height: 200px;
}

.article-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.article-card .card-text {
    font-size: 0.9rem;
    color: #666;
}

/* 文章详情页样式 */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail .article-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.article-detail .article-meta {
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.article-detail .article-image {
    margin: 1.5rem 0;
    text-align: center;
}

.article-detail .article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-detail .article-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.25rem;
}

.article-detail .article-content p {
    margin-bottom: 1rem;
}

.article-detail .article-tags {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.article-detail .article-tags .badge {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* 面包屑导航 */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

/* 分页样式 */
.pagination {
    margin-top: 2rem;
    --bs-pagination-padding-x: 0.5rem;
    --bs-pagination-padding-y: 0.25rem;
    --bs-pagination-font-size: 0.875rem;
}

.pagination .page-link {
    color: #007bff;
    border-color: #dee2e6;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.pagination .page-link:hover {
    color: #0056b3;
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 0.875rem;
}

/* 底部样式 */
.frontend-footer {
    background-color: var(--footer-bg);
    color: var(--footer-color);
    margin-top: auto;
    padding: 50px 0 10px;
}

.frontend-footer h4 {
    margin: 0 0 24px 0;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.frontend-footer .text {
    display: flex;
    flex-direction: row;
    color: #fff;
    font-size: 0.92rem;
    line-height: 2em;
}

.frontend-footer .text a {
    color: #fff;
}

.frontend-footer .text a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.frontend-footer .info {
    flex: 1 1 0%;
}

.frontend-footer .icon-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.frontend-footer .icon-box {
    display: flex;
    align-items: center;
}

.frontend-footer .icon-box i {
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
}

.frontend-footer .btn-box a {
    display: inline-block;
    padding: 8px 15px;
    color: #fff;
    font-size: 14px;
    line-height: 1em;
    border-radius: 3px;
    border: 1px solid #4c5059;
    align-items: center;
    overflow: hidden;
}

.frontend-footer .btn-box a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.frontend-footer .btn-box span {
    margin-left: 6px;
}

.frontend-footer .copyright {
    text-align: center;
    margin: 20px;
    color: #8e97ae;
    font-size: 0.875rem;
    font-weight: 400;
}

.frontend-footer .copyright a {
    color: #8e97ae;
}

.frontend-footer .copyright a:hover {
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .frontend-header {
        margin-bottom: 10px;
    }
    
    .wrapper {
        /* 移除 padding，让导航栏和底部紧贴浏览器边缘 */
        /* padding-left: 10px; */
        /* padding-right: 10px; */
    }
    
    section .title-box h3 {
        font-size: 20px;
    }
    
    .nav {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .web-container {
        width: 100%;
        min-width: auto;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    .article-card .card-img-top {
        height: 120px;
    }
    
    .container.my-4 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .wrapper {
        /* 移除 padding，让导航栏和底部紧贴浏览器边缘 */
        /* padding-left: 10px; */
        /* padding-right: 10px; */
    }
    
    section .title-box h3 {
        font-size: 20px;
    }
}

/* cts index.css */
.web-container {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    max-width: 100%; /* 添加这一行确保在小屏幕上不会超出视口 */
}
.theme-color,
.theme-color .ant-breadcrumb-link {
    color: var(--theme-color);
}
.error-color { color: #f55 !important; }
.ccc-color { color: #ccc; }
ul, li { list-style: none; padding: 0; margin: 0; }
.ant-btn, .ant-input { height: 1.5rem; }
.iconfont { font-size: 0.65rem; }
.header { padding: 0.75rem 0; background-color: #fff; }
.header .logo img { width: 11rem; height: 2.2rem; object-fit: contain; }
.search-box { width: 100%; max-width: 22rem; }
.search-box .form-control { height: 1.5rem; border-radius: 0.1rem 0 0 0.1rem; border: 1px solid #e5e5e5; flex: 1 1 auto; font-size: 0.5rem; }
.search-box .form-control::placeholder { font-size: 0.5rem; }
.search-box .btn.search-btn { height: 1.5rem; width: 2rem; background: var(--theme-color); color: #fff; border-radius: 0 0.1rem 0.1rem 0; border: none; display: flex; align-items: center; justify-content: center; }
.nav {
    height: 55px;
    line-height: 2rem;
    background: var(--web-nav-color);
    color: var(--web-nav-font-color);
    position: relative;
    z-index: 2;
    transition: all 0.25s ease-in-out;
    box-shadow: 0px 3px 8px 0px rgba(9, 79, 120, 0.08);
    box-sizing: content-box;
    /* 确保导航栏全宽 */
    width: 100%;
}
.nav-wrapper { flex-direction: row-reverse; }
.nav .nav-menu { display: none; }
.nav-item {
    position: relative;
    line-height: 1.2;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
}
.nav-item-p {
    display: block;
    padding: 0 15px;
    width: 100%;
    font-size: 0.65rem;
    text-align: center;
    height: 2rem;
    line-height: 2rem;
    color: var(--web-nav-font-color);
    overflow: hidden;
}
.nav-item.selected .nav-item-p,
.nav-item:hover .nav-item-p {
    background: var(--web-nav-active-color);
    color: var(--web-nav-font-active-color);
}
.nav-item .nav-item-second {
    width: 200%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    display: none;
    background: var(--web-nav-color);
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
}
.nav-item .nav-item-second a {
    display: block;
    text-align: center;
    padding: 10px;
    line-height: 1.2;
    color: var(--web-nav-font-color);
}
.nav-item .nav-item-second a:hover {
    background: var(--web-nav-active-color);
    color: var(--web-nav-font-active-color);
}
.nav-item:hover .nav-item-second { display: block; }
.common-module {
    background-color: #fff;
    padding: 15px;
    border-radius: 0.1rem;
    overflow: hidden;
}
.common-module-title { font-size: 0.6rem; margin-bottom: 20px; }
.common-module-title img { width: 0.5rem; height: 0.5rem; }
.common-module-title .more-text { font-size: 0.45rem; }
.common-module-list-title, .common-module-item-title {
    font-size: 0.53rem;
    margin-bottom: 5px;
    color: #000;
}
.common-module-list-title .ant-tag, .common-module-item-title .ant-tag {
    background: rgba(16, 62, 148, 0.1);
    color: var(--theme-color);
    font-weight: 500;
    padding: 0 4px;
    font-size: 0.45rem;
    margin-right: 2px;
    border: 0px;
    border-radius: 2px;
    line-height: 1.6em;
}
.common-module-list-content, .common-module-item-content {
    font-size: 0.45rem;
    color: #999;
}
.common-module-list img, .common-module-item img {
    width: 5.3rem;
    height: 100%;
    object-fit: cover;
    border-radius: 0.1rem;
}
.common-module-list a, .common-module-item a { width: 100%; }
.common-module-item:not(:last-child) { margin-bottom: 20px; }
.notice-module { margin-top: 30px; margin-bottom: 1.5rem; height: auto; padding: 0; }
.notice-module .common-module { padding: 15px; height: auto; }
.notice-module .carousel-notice-module { height: auto; }
.notice-module .carousel-notice-module .carousel-notice-item { position: relative; height: auto; }
.notice-module .carousel-notice-module .carousel-notice-item img {
    width: 790px;
    height: 445px;
    object-fit: cover;
    vertical-align: bottom;
    border-radius: 0.1rem;
    margin: 0 auto;
}
.notice-module .carousel-notice-module .carousel-notice-item .carousel-notice-item-title {
    padding-right: 120px; position: absolute; left: 0; bottom: 0; height: 1.5rem;
    background: rgba(0, 0, 0, 0.5); width: 100%; color: #fff; line-height: 1.5rem;
    padding-left: 0.5rem; margin-bottom: 0; border-radius: 0 0 0.1rem 0.1rem;
}
.notice-module .carousel-notice-module .custom-dots {
    width: auto; right: 0.5rem; bottom: 0.8rem;
}
.notice-module .carousel-notice-module .custom-dots button {
    background: #fff !important; opacity: 0.5; transition: all 0.15s linear;
    width: 5px !important; height: 5px !important; border-radius: 50%;
}
.notice-module .notice-module-content { height: auto; overflow: visible; }
.notice-module .notice-module-content .notice-module-title { margin-bottom: 38px; }
.notice-module .notice-module-content .notice-module-item:not(:last-child) { margin-bottom: 1.3rem; }
.expert-module { max-height: none; overflow: visible; margin-bottom: 1.3rem; }
.expert-module-item img {
    width: 3.3rem; height: 3.3rem; border-radius: 50%; object-fit: cover; transition: transform 0.3s ease-in-out;
}
.expert-module-item-teaching, .expert-module-item-position {
    font-size: 0.56rem; margin-top: 6px; width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
    transition: color 0.3s ease-in-out;
}
.expert-module-item-position { font-size: 0.45rem; margin-top: 2px; }
.expert-module-item:hover img { transform: scale(1.1); }
.expert-module-item:hover .expert-module-item-teaching { color: var(--theme-color); }
.expert-module-item:hover .expert-module-item-position { color: #333; }
.exper-module-list { display: flex; flex-wrap: nowrap; --bs-gutter-x: 0; }
.exper-module-list > [class*="col-"] { flex: 0 0 12.5% !important; max-width: 12.5% !important; }
.xueshu-module { min-height: 17rem; }
.xueshu-module-middle img {
    width: 100%; height: 4.9rem; object-fit: cover; border-radius: 0.1rem 0.1rem 0 0;
}
.xueshu-module-middle-desc {
    border-radius: 0 0 0.1rem 0.1rem; box-shadow: 0rem 0.08rem 0.15rem 0rem rgba(0, 0, 0, 0.08);
    padding: 5px 10px; transition: color 0.3s ease-in-out;
}
.xueshu-module-middle-desc-title { font-size: 0.53rem; }
.xueshu-module-middle-desc-time { font-size: 0.45rem; }
.xueshu-module-date {
    width: 3rem; height: 3rem; background: linear-gradient(180deg, #2572c6 0%, #103e94 100%);
    border-radius: 0.11rem; color: #fff; font-size: 0.83rem; margin-right: 10px;
}
.xueshu-module-content { width: calc(100% - 3rem - 10px); height: 3rem;}
.kepu-module { min-height: 17rem; }
.kepu-module-middle { margin-bottom: 23px; }
.kepu-module-middle img {
    width: 100%; height: 6.75rem; object-fit: cover; border-radius: 0.1rem;
}
.kepu-module-content { width: 100%; }
.kepu-module .common-module-item-title { margin-bottom: 3px; }
.kepu-module .common-module-item:not(:last-child) { margin-bottom: 25px; }
.top-module { min-height: 17rem; }
.top-module-content { width: calc(100% - 5.3rem - 10px); }
.top-module .common-module-item-title { margin-bottom: 0px; }
.top-module .zhinan-list .top-module-content { width: 100%; }
.top-module .zhinan-list .common-module-item-title { margin-bottom: 3px; }
.top-module .zhinan-list .common-module-item:not(:last-child) { margin-bottom: 25px; }
.top-module .ant-tag:hover { cursor: pointer; transform: scale(1.1); }
.friend-link-module { margin-top: 1.3rem; max-height: 8.1rem; overflow: hidden; }
.friend-link-module-list img {
    width: 100%; height: 2.25rem; object-fit: cover; transition: all 0.3s ease-in-out; border-radius: 0.1rem;
}
.friend-link-module-list img:hover { transform: scale(1.1); }
.footer { background-color: #fff; padding: 20px 0; margin-top: 35px; }
.footer-wrapper { gap: 100px; }
.footer .logo { width: 3.1rem; height: 3rem; object-fit: cover; }
.call-module-link-title { margin-bottom: 5px; }
.call-module-link-list a, .call-module-link-list li { font-size: 0.45rem; }
.call-module-link-list a:not(:last-child), .call-module-link-list li:not(:last-child) { margin-bottom: 5px; }
.call-module .erweima { font-weight: bold; color: #333; }
.copyright { padding: 0.2rem 0; background-color: var(--theme-color); color: #fff; font-size: 0.45rem; }
.sub-banner {
    background: url(../images/sub-banner.png) no-repeat center center; background-size: auto 100%; overflow: hidden; padding: 15px 0;
}
.sub-banner-title { font-size: 20px; color: #333; font-weight: bold; margin-top: 15px; line-height: 1.2; text-align: center; }
.sub-nav {
    background-color: #ffffff; box-shadow: 0px 0px 10px 0px rgba(0, 137, 110, 0.26); padding: 0.35rem 0; position: sticky; top: 60px; z-index: 9;
}
.sub-news-module { background-color: #fff; padding: 25px; }
.sub-news-module-title-wrapper { margin-bottom: 15px; }
.sub-news-module-title { font-size: 0.6rem; color: #333; }
.components-reconnect-container { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
#components-reconnect-modal { display: none !important; position: fixed; width: 0; height: 0; padding: 0; margin: 0; border: 0; }
#components-reconnect-modal[open] { display: block !important; position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 20rem; height: auto; padding: 1rem; border-radius: 0.5rem; box-shadow: 0 3px 6px 2px rgba(0,0,0,0.3); background-color: #fff; }
#components-reconnect-modal::backdrop { background-color: rgba(0,0,0,0.4); }
.sub-news-module .news-item:not(:last-child) {
    padding-bottom: 0.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid #ededed; transition: all 0.3s ease-in-out; color: #333;
}
.second-news-module { padding: 25px !important; }
.filter-wrapper { background: #ffffff; padding: 0.8rem 0; box-shadow: 0rem 0.08rem 0.23rem 0rem rgba(0, 0, 0, 0.1); }
.meeting-list { margin-top: 0px; }
.meeting-list .meeting-item { padding-bottom: 0.5rem; margin-bottom: 0.5rem; border-bottom: 1px dashed #ddd; }
.meeting-list .meeting-item-avatar-wrapper { flex: 0 0 6.5rem; }
.meeting-list .meeting-item-avatar { padding-top: 56%; position: relative; overflow: hidden; }
.meeting-list .meeting-item-avatar img {
    position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover;
}
.meeting-list .meeting-item-details-title { color: #000; }
.meeting-list .meeting-item:hover .meeting-item-details .meeting-item-details-title { color: var(--theme-color); }
.meeting-list .meeting-item:hover .meeting-item-avatar { transform: scale(1.05); }
.sub-expert-list { height: auto !important; }
.guest-detail-info { margin-left: 25px; }
.guest-detail-avatar-wrapper { width: 160px; }
.guest-detail-avatar { padding-top: 140%; position: relative; }
.guest-detail-avatar img {
    position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover;
}
@media screen and (max-width: 768px) {
    body { overflow-x: hidden; }
    .web-container { width: 100%; min-width: auto; padding: 0 15px; }
    .header { padding: 15px 0; height: 70px; }
    .header .logo img { width: 8rem; height: auto; }
    .ant-input-search { position: absolute; left: 15px; top: 80px; z-index: 3; width: 70vw; }
    .search-box { position: absolute; left: 15px; top: 80px; z-index: 3; width: 70vw; }
    .ant-btn, .ant-input { height: 32px; }
    .ant-btn { border: 1px solid; }
    .nav .nav-menu {
        display: block; font-size: 1rem; padding: 0 0.3rem; position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    }
    .nav .nav-list {
        display: none; position: absolute; right: 0; top: 1.8rem; width: 8rem; z-index: 1; max-height: 70vh; overflow: auto; background: var(--web-nav-color);
    }
    .nav .nav-list .nav-item-p {
        line-height: 1.2; padding: 0.5rem; text-align: left; font-size: 0.6rem; height: auto;
    }
    .nav .nav-list .nav-item-second {
        position: static; width: 100%; font-size: 0.5rem; display: block; background: var(--web-nav-active-color);
    }
    .nav .nav-list .nav-item-second a { text-align: left; position: relative; padding: 0.3rem 0.3rem 0.3rem 1rem; }
    .nav .nav-list .nav-item-second a:before {
        content: " - "; position: absolute; left: 0.5rem; top: 0.25rem;
    }
    .common-module-title { margin-bottom: 10px; }
    .notice-module { min-height: auto; margin-bottom: 15px; margin-top: 15px; }
    .notice-module .carousel-notice-module { height: auto; }
    .notice-module .carousel-notice-module .carousel-notice-item { height: auto; }
    .notice-module .carousel-notice-module .carousel-notice-item img,
    .carousel-img { width: 100% !important; height: auto !important; }
    .notice-module .notice-module-content .notice-module-title { margin-bottom: 10px; }
    .notice-module .notice-module-content .notice-module-item:not(:last-child) { margin-bottom: 0.6rem; }
    .expert-module { max-height: none; margin-bottom: 15px; }
    .xueshu-module, .kepu-module, .top-module { min-height: auto; margin-bottom: 6px; }
    .friend-link-module { max-height: none; margin-top: 10px; }
    .footer { padding: 0.3rem 0; margin-top: 20px; }
    .footer-wrapper { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
    .footer-wrapper .quick-link { width: 100%; justify-content: space-between; }
    .call-module-link-title { font-size: 0.4rem; }
    .call-module-link-list a, .call-module-link-list li { font-size: 0.35rem; }
    .copyright { padding: 0.1rem 0; font-size: 0.3rem; }
    .sub-banner { height: auto; }
    .sub-banner-title { font-size: 0.8rem; margin-top: 10px; margin-bottom: 10px; }
    .sub-nav { top: 3.6rem; overflow-x: auto; }
    .sub-nav-item { padding: 0.3rem 0.8rem; }
    .guest-detail-content { display: block; }
    .guest-detail-info { margin-left: 0; margin-top: 0.5rem; width: 100% !important; }
    .guest-detail-info p { margin-bottom: 0.2rem; }
    .guest-detail-info p:first-child { text-align: center; margin-bottom: 15px; }
    .guest-detail-avatar-wrapper { width: 120px; margin: 0 auto; }
}

.flex { display: flex; }
.flex-column { flex-direction: column; }
.x-between { justify-content: space-between; }
.x-center { justify-content: center; }
.x-right { justify-content: flex-end; }
.y-center { align-items: center; }
.t-c { text-align: center; }
.bold { font-weight: 600; }
.mr10 { margin-right: 10px; }
.mr5 { margin-right: 5px; }
.pt10 { padding-top: 10px; }
.pb10 { padding-bottom: 10px; }
.row-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.row-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
