/* 自定义样式补充Bootstrap */
body {
    font-family: "Noto Sans TC","Microsoft JhengHei","PingFangTC-Regular","Arial","Helvetica",sans-serif !important;
    background-color: #f5f5f5;
}
ul,li,a{
    margin: 0;
    list-style: none;
    text-decoration: none;
}
:root {
    --primary: #891d25;
    --accent1: #e8bd98;
    --accent2: #ff7100;
    --accent3: #e74c3c;
    --accent01: #4666a3;
    --accent02: #6f5226;
    --accent03: #5f4ea2;
    --accent04: #507873;
    --accent05: #6f5226;
    --accent06:  #a24e4e;
    --light-color: #891d2517;
    --text: #2b2b2b;
    --text1: #95a5a6;
    --white: #ffffff;
    --bs-border-color-translucent: #e5e5e5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
a:hover{
    color: var(--primary) !important;
}
.translations{
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    color: var(--accent06);
    background: #ffecec;
    padding: 10px;
    border-radius: 6px;
    margin-top: 5px;
    display: none;
}

.c-desc{
    color: var(--text)
}
.card-title{
    color: var(--text);
}
.feature-card {
    background: linear-gradient(to bottom, #ebe7fd, #f6f4f9);
    color: var(--accent03);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 16px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid var(--accent03);
    line-height: 30px;
    margin-right: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--bs-secondary-color);
    font-size: .875em;
}
.search-container {
    position: relative;
    width: 400px;
}

.searchHome-box {
    width: 100%;
    padding: 10px 20px;
    padding-right: 45px;
    background: #f7fafc;
    border: 2px solid #e2e8f0 !important;
    border-radius: 30px !important;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.searchHome-box:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    background: white;
}

.searchHome-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 18px;
    width: 60px;
    height: 38px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchHome-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.form-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.sectionHome-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 15px;
}

.form-group {
    flex: 1 0 300px;
    padding: 0 10px;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

textarea {
    min-height: 120px;
    resize: vertical;
}


.checkbox-group {
    margin-top: 10px;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input {
    margin-right: 8px;
}

.file-upload {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 10px;
    background: #fafafa;
    transition: border 0.3s;
}

.file-upload:hover {
    border-color: var(--primary);
}

.file-upload p {
    margin-bottom: 10px;
    color: #7f8c8d;
}

.form_button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin: 30px auto 10px;
    font-weight: 600;
}

button:hover {
    background: var(--primary);
}

.form-footer {
    text-align: center;
    color: var(--text1);
    font-size: 14px;
    margin-top: 20px;
}

.error {
    color: var(--primary);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
/* 顶部导航栏 */
.top-nav {
    background-color: var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    height: 80px;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.top-nav h1{
    font-size: 26px;
    font-weight: normal;
    color: #fff;
    letter-spacing: 2px;
}
/* Logo设计 */
.logo{
    height: 50px;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, #4d6d9a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.logo-icon::before, .logo-icon::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.5);
}

.logo-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.logo-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

.logo-text span {
    font-size: 14px;
    color: #666;
}

.login-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s;
}

.login-btn:hover {
    background: var(--primary);
    color: #fff;
}

.ms-auto{
    display: flex;
    align-items: center;
}
.menuButton{
    display: none;
}

.ms-auto-menu li{
    display: inline-block;
    height: 80px;
}

.ms-auto-menu li a{
    line-height: 80px;
    color: var(--white);
    padding: 0 15px;
    display: block;
}
.ms-auto-menu li a:hover{
    background: var(--white);
    color: var(--primary);
}
/* 主要内容区 */
.main-container {
    margin-top: 90px;
    min-height: 700px;
}

/* 动态资讯滚动条 */
.ticker-label {
    background: var(--primary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 30px;
    white-space: nowrap;
}

.ticker-item a{
    color: var(--text);
}

.ticker-item::before {
    content: "•";
    color: var(--primary);
    margin-right: 10px;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Metro风格主模块 */
.metro-tile {


    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: var(--primary);
    height: 220px;
    min-height: 180px;
}
.metro-tile div{
    position: relative;
}
.metro-tile::before {
    content: "";
    position: absolute;
    bottom:0 ;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 70% !important;
    /*background:linear-gradient(0deg, var(--primary) 0%, #e8bd98c9 100%);*/
}
.metro-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

.tile-icon {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--accent1);
    display: none;
}

.tile-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tile-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

/*!* 模块颜色 *!*/
.tile-org { background: linear-gradient(to bottom,#eee5d3,#fcf9f4);color: var(--accent05) }
.tile-org::before{background:url("../images/005.png") right bottom no-repeat;}


.tile-pub {background: linear-gradient(to bottom,#f5e4d9,#fff7f2);color: var(--accent02) }
.tile-pub::before{background:url("../images/002.png") right bottom no-repeat;}

.tile-school { background: linear-gradient(to bottom,#e2ecff,#f1f7ff);color: var(--accent01) }
.tile-school::before{background:url("../images/003.png") right bottom no-repeat;}

.tile-rank { background: linear-gradient(to bottom,#ebf8e9,#f5fff3);color: var(--accent04) }
.tile-rank::before{background:url("../images/004.png") right bottom no-repeat;}

.tile-scholar { background: linear-gradient(to bottom,#eee5d3,#fcf9f4);color: var(--accent05) }
.tile-scholar::before{background:url("../images/001.png") right bottom no-repeat;}

.tile-resource { background: linear-gradient(to bottom,#ebe7fd,#f6f4f9);color: var(--accent03) }
.tile-resource::before{background:url("../images/006.png") right bottom no-repeat;}

.tile-fire { background: linear-gradient(to bottom,#f5d9d9, #fff2f2);color: var(--accent06) }
.tile-fire::before{background:url("../images/007.png") right bottom no-repeat;}

.active>.page-link, .page-link.active{
    background-color: var(--primary);
    border-color: var(--primary);
}
.tags-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
/* 热门标签 */
.q1{
    padding: 4px 8px;
    background: #f5e9e9;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
    color: var(--primary);
}

.tag {
    /*padding: 6px 14px;*/
    /*background: #f0f0f0;*/
    /*border-radius: 20px;*/
    /*font-size: 14px;*/
    /*transition: all 0.3s;*/
    cursor: pointer;
    display: block;
    color: var(--text);
    /*margin-right: 20px;*/
    /*margin-top: 20px;*/
}
.tag .fas{
    color: var(--accent06) !important;
}
.tag:hover {
    /*background: var(--primary);*/
    color: var(--primary);
}

.tag.hot {
    color: var(--accent06) ;
}

/* 页脚 */
footer.footer {
    background: var(--primary);
    color: #fff;
    padding: 30px 0;
}
.footer h3{
    font-size: 20px;
    color: white;
}

.footer p,.footer-section p, .footer-section a {
    color: var(--white);
    line-height: 1.8;
    text-decoration: none;
    font-size: 14px;
}

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

.partner-logo {
    width: 100px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color:  var(--white);
}


.school-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.school-header {
    height: 120px;
    background:#e7ebf0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.school-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    overflow: hidden;
}
.school-logo img{
    width: 80%;
}
.school-body {
    padding: 25px;
}

.school-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.school-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.school-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

.school-features {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 4px 10px;
    background: #f5f3ff;
    color: var(--primary);
    border-radius: 12px;
    font-size: 12px;
}

.school-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.action-btn.primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/*顶尖学术*/
/* 顶部统计卡片 */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

/* 标签页切换 */
.tab-nav {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    gap: 10px;
}

.tab-btn {

    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}
.tab-btn a{
    display: block;
    padding: 12px 24px;
    color: #333;
}
.tab-btn.active {
    background: var(--primary);
    color: #fff;
}
.tab-btn.active a{
    color: white !important;
}
.tab-btn:hover:not(.active) {
    background: #f0f0f0;
}

/* 期刊展示区 */
.journals-section {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* 筛选栏 */
.filter-bar {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-size: 14px;
    color: #666;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
}

/* 期刊列表 */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.journal-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
}

.journal-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.journal-header {
    background: linear-gradient(135deg, var(--primary), #1abc9c);
    color: #fff;
    padding: 20px;
}

.journal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    height: 45px;
    color: var(--text);
}

.journal-abbr {
    font-size: 14px;
    opacity: 0.9;
}

.journal-body {
    padding: 20px;
}
.journal-body:hover .journal-title{
    color: var(--primary);
}
.journal-metrics {
    display: flex
;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 15px; */
    /* margin-bottom: 20px; */
    height: 100px;
    align-items: center;
    justify-content: space-around;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent05);
}

.metric-label {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

.journal-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}


.journal-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.action-btn:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
}

/* 最新论文区 */
.papers-section {
    margin-top: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
}

.view-all-btn {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.papers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.paper-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.paper-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.paper-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.paper-journal {
    color: var(--primary);
    font-weight: 500;
}

.paper-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    cursor: pointer;
}

.paper-title:hover {
    color: var(--primary);
}

.paper-authors {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.paper-abstract {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.paper-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.paper-action {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.paper-action:hover {
    text-decoration: underline;
}

/*===========学术资源--招生信息===========*/

/* 主内容区 */
.main-container {
    margin: 80px auto 0;
}

/* 简化的筛选栏 */
.simple-filter {
    background: #fff;
    border-radius: 8px;
    padding:0;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

.search-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

/* 快速分类 */
.quick-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag-btn {
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}
.tag-btn a{
    color: var(--text);
}

.tag-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tag-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.tag-btn.active a{
    color: white;
}
/* 信息列表 - 简化版 */
.info-list {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.list-title {
    font-size: 18px;
    font-weight: 600;
}

.list-count {
    font-size: 14px;
    color: #666;
}

/* 招生信息条目 - 简化版 */
.admission-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.admission-item:last-child {
    border-bottom: none;
}

.admission-item:hover {
    background: #fafafa;
    margin: 0 -25px;
    padding: 20px 25px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.item-title a{
    color: var(--text);
}

.item-school {
    font-size: 15px;
    color: var(--primary);
}

.item-badge {
    padding: 4px 12px;
    background: #ffebee;
    color: #c62828;
    border-radius: 12px;
    font-size: 12px;
    white-space: nowrap;
}

.item-badge.new {
    background: #e8f5e9;
    color: #2e7d32;
}

.item-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
}

.page-btn {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 右侧快速链接 */
.sidebar {
    /*position: fixed;*/
    /*right: 20px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    /*background: #fff;*/
    /*border-radius: 8px;*/
    /*padding: 15px;*/
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
    /*width: 60px;*/
}

.quick-link {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.quick-link:hover {
    background: #f0f0f0;
    color: var(--primary);
}


/*========权威机构=========*/
/* 侧边栏 */
.sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: fit-content;
    /*position: sticky;*/
    top: 80px;
}

.sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.org-category {
    margin-bottom: 25px;
}

.org-category h4 {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.org-list {
    list-style: none;
    padding-left: 20px;
}

.org-list li {
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 16px;
}
.org-list li a{
    color: var(--text);
}
.org-list li:hover {
    color: var(--primary);
}

.org-list li.active {
    color: var(--primary);
    font-weight: 600;
}
.org-list li.active a{
    color: var(--primary);
}
/* 内容区 */
.content-area {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* 机构展示网格 */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.org-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
    width: 99%;
}

.org-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.org-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.org-logo {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: hidden;
}

.org-logo img{
    height: 100%;
}
.org-info{
    width: calc(100% - 75px);
}
.org-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text);
}

.org-info span {
    font-size: 12px;
    color: #666;
}

.org-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.org-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    display: none;
}

/* 动态资讯区 */
.news-section {
    margin-top: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
}

.filter-tabs {
    display: flex;
    gap: 20px;
}

.filter-tab {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 资讯列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.news-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.news-org-tag {
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.importance-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #f39c12;
}

.news-content:hover .news-title{
    color: var(--primary);
}
.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    cursor: pointer;
}
.news-title a{
    color: var(--text);
}
.news-title a:hover {
    color: var(--primary);
}

.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.page-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}


/**/
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.award-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
}

.award-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/*.award-card:hover::before {*/
/*    width: 100%;*/
/*    opacity: 0.1;*/
/*}*/

.award-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.award-card:hover .award-name{
    color: var(--primary);
}
.award-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.award-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.award-count {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

/* 时间轴导航 */
.timeline-nav {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
}

.timeline-controls {
    display: flex;
    gap: 10px;
}

.timeline-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.timeline-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.year-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.year-item {
    padding: 10px 20px;
    background: #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-size: 14px;
}

.year-item.active {
    background: var(--primary);
    color: #fff;
}

/* 学者展示区 */
.scholars-section {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.toggle-btn {
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.toggle-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 学者卡片网格 */
.scholars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.scholar-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.scholar-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.scholar-header {
    background: #e7ebf0;
    color: var(--primary);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.scholar-photo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    overflow: hidden;
    color: var(--primary);
}
.scholar-photo img{
    width:100%
}
.scholar-basic {
    flex: 1;
}

.scholar-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.scholar-title {
    font-size: 14px;
    opacity: 0.9;
}

.scholar-body {
    padding: 20px;
}

.award-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.award-year {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.award-type {
    font-size: 14px;
    color: #666;
}

.scholar-achievement {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.scholar-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.scholar-tag {
    padding: 4px 12px;
    background: #ecf0f1;
    color: var(--primary);
    border-radius: 12px;
    font-size: 12px;
}

.scholar-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.scholar-link {
    flex: 1;
    text-align: center;
    padding: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.scholar-link:hover {
    background: #f8f9fa;
    border-radius: 4px;
}

/* 项目展示区 */
.projects-section {
    margin-top: 40px;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.project-categories {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.category-btn {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-size: 14px;
}

.category-btn a{
    color: var(--text);
}

.category-btn.active {
    background: var(--primary);
    color: #fff;
}

.category-btn.active a{
    color: white;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.project-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.project-info {
    flex: 1;
}

.project-title {
    font-size: 18px;
    font-weight: 600;

    color: #333;
}
.project-title a{
    color: #333;
}
.project-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.project-status {
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 12px;
    font-size: 12px;
}

.project-leader {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 10px;
}

.project-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/**/
/* 左侧分类导航 */
.category-nav {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 80px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.category-list {
    list-style: none;
    padding-left: 20px;
}

.category-item {
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.category-item a{
    color: var(--text);
}

.category-item:hover {
    color: var(--primary);
}

.category-item.active {
    color: var(--primary);
    font-weight: 600;
}

.category-count {
    font-size: 12px;
    color: #999;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
}

/* 右侧内容区 */
.content-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 顶部筛选栏 */

.filter-select {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

.keyword-search {
    flex: 1;
    width: 300px;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

/* 排序选项 */
.sort-options {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.sort-btn {
    padding: 6px 12px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.sort-btn.active {
    background: var(--primary);
    color: #fff;
}

/* 职位列表 */
.job-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* 简化的职位卡片 */
.job-card {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    cursor: pointer;
}

.job-card:last-child {
    border-bottom: none;
}

.job-card:hover {
    background: #fafafa;
    padding: 20px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.job-main {
    flex: 1;
}

/*.job-title {*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    color: #333;*/
/*    margin-bottom: 5px;*/
/*}*/

.job-company {
    font-size: 15px;
    color: var(--text1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-type {
    font-size: 12px;
    color: #666;
    padding: 2px 8px;
    background: #f0f0f0;
    border-radius: 10px;
}

.job-salary {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 600;
}

.job-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.job-tag {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-requirements {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.req-tag {
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f5f5f5;
}

.post-time {
    font-size: 13px;
    color: #999;
}

.job-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    padding: 6px 15px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.action-btn.primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 加载更多 */
.load-more {
    text-align: center;
    padding: 20px;
}

.load-btn {
    padding: 10px 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.load-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* 日历视图切换 */
.view-switcher {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-tabs {
    display: flex;
    gap: 10px;
}

.view-tab {
    padding: 8px 16px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.view-tab.active {
    background: var(--primary);
    color: #fff;
}

.month-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.month-btn {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.current-month {
    font-size: 16px;
    font-weight: 600;
}

/* 快速筛选 */
.quick-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.chip-icon {
    font-size: 16px;
}

/* 会议列表容器 */
.conference-container {
    display: grid;
    gap: 20px;
}

/* 月份分组 */
.month-group {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.month-header {
    background: #f8f9fa;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

/* 简化的会议条目 */
.conference-item {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.conference-item:last-child {
    border-bottom: none;
}

.conference-item:hover {
    background: #fafafa;
}

.date-block {
    width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.date-day {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
}

.date-month {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

.conference-content {
    flex: 1;
    width: 100%;
}

.conference-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.conference-title a{
    color: var(--text);
    display: block;
    width: 80%;
}
.conference-title span{
    color: #666;
    font-weight: normal;
}
.conference-info {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.conference-status {
    display: inline-flex;
    gap: 8px;
}

.status-tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.status-tag.cfp {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-tag.registration {
    background: #fff3e0;
    color: #f57c00;
}

.status-tag.online {
    background: #e3f2fd;
    color: #1976d2;
}

/* 会议详情预览 */
.conference-preview {
    position: fixed;
    right: 20px;
    top: 80px;
    width: 350px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 25px;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.preview-header {
    margin-bottom: 20px;
}

.preview-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.preview-dates {
    font-size: 14px;
    color: #666;
}

.preview-section {
    margin-bottom: 20px;
}

.preview-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.preview-content {
    font-size: 14px;
    line-height: 1.6;
}

.preview-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.preview-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.preview-btn.primary {
    background: var(--primary);
    color: #fff;
}

.preview-btn.secondary {
    background: #f0f0f0;
    color: #333;
}

/* 日历视图 */
.calendar-view {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: none;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.calendar-cell {
    background: #fff;
    padding: 10px;
    min-height: 80px;
    font-size: 14px;
}

.calendar-cell.header {
    background: #f8f9fa;
    font-weight: 600;
    text-align: center;
    min-height: auto;
    padding: 12px 10px;
}

.calendar-date {
    font-weight: 500;
    margin-bottom: 5px;
}

.calendar-event {
    font-size: 12px;
    color: var(--primary);
    cursor: pointer;
    padding: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 资源分类导航 */
.resource-nav {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.nav-tab {
    background: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-tab:hover{
    background: var(--primary);
}
.nav-tab a{
    padding: 12px 24px;
    color: var(--text);
    display: block;
}
.nav-tab a:hover{
    color: white !important;
}
.nav-tab.active {
    background: var(--primary);
    color: #fff;
}
.nav-tab.active a{
    color: white !important;
}


/* 投稿指南部分 */
.submission-guide {
    display: none;
}

.submission-guide.active {
    display: block;
}

.guide-header {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.guide-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

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

.stat-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* 期刊筛选区 */
.journal-filter {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.filter-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}



.filter-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    display: block;

    text-align: right;
}

.filter-select {
    padding: 10px;
    width: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.filter-btn.primary {
    background: var(--primary);
    color: #fff;
}

.filter-btn.secondary {
    background: #f0f0f0;
    color: #333;
}

/* 期刊列表 */
.journal-list {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.journal-table {
    width: 100%;
    border-collapse: collapse;
}

.journal-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #666;
    font-size: 14px;
    border-bottom: 2px solid #e0e0e0;
}

.journal-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.journal-table tr:hover {
    background: #fafafa;
}

.journal-name {
    font-weight: 500;
    color: #333;
}

.journal-abbr {
    font-size: 12px;
    color: #666;
}

.journal-badges {
    display: flex;
    gap: 5px;
}

.badge {
    padding: 2px 8px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 12px;
    font-size: 12px;
}

.badge.q1 {
    background: #e3f2fd;
    color: #1565c0;
}

.badge.utd {
    background: #fff3e0;
    color: #e65100;
}

.journal-links {
    display: flex;
    gap: 10px;
}

.journal-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

.journal-link:hover {
    text-decoration: underline;
}

/* 招聘信息部分 */
.recruitment-section {
    display: none;
}

.recruitment-section.active {
    display: block;
}

.job-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.category-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-count {
    font-size: 14px;
    color: #666;
}

/* 职位列表 */
.job-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.job-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.job-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0;
}

.job-title {
    font-size: 16px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.job-title a{
    width: 80%;
    color: #333;
}
.job-title span{
    color: var(--text1);
    font-weight: normal;
}
.job-institution {
    font-size: 16px;
    color: var(--text1);
}

.job-deadline {
    background: #ffebee;
    color: #c62828;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.job-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-actions {
    display: flex;
    gap: 10px;
}

.job-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.job-btn.primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 会议信息部分 */
.conference-section {
    display: none;
}

.conference-section.active {
    display: block;
}

.conference-calendar {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.month-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.conference-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conference-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s;
}

.conference-item:hover {
    background: #f0f0f0;
}

.conference-date {
    width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.date-day {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.date-month {
    font-size: 14px;
    color: #666;
}

.conference-info {
    flex: 1;
}

.conference-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.conference-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.conference-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.conference-tag {
    padding: 4px 10px;
    background: #e0e0e0;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
}

.conference-tag.cfp {
    background: #e8f5e9;
    color: #2e7d32;
}

/* 学术工具部分 */
.tools-section {
    display: none;
}

.tools-section.active {
    display: block;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tool-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.tool-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tool-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-link {
    padding: 10px;
    background: #f0f0f0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

.tool-link:hover {
    background: var(--primary);
    color: #fff;
}


/* 排名体系概览 */
.ranking-overview {
    margin-bottom: 30px;
}

.ranking-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s;
}

.ranking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.ranking-card.active {
    border: 2px solid var(--primary);
    background: #fff9f5;
}

.ranking-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.ranking-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.ranking-desc {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* 主要内容区 */
.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

/* 侧边栏 */
.sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: fit-content;
    /* position: sticky;*/
    top: 80px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.filter-option input[type="checkbox"] {
    accent-color: var(--primary);
}

.year-selector {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.year-btn {
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.year-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 排名展示区 */
.ranking-display {
    background: #fff;
    border-radius: 8px;
    padding:25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.display-title {
    font-size: 20px;
    font-weight: 600;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.view-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 排名表格 */
.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #666;
    font-size: 14px;
    border-bottom: 2px solid #e0e0e0;
}

.ranking-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.ranking-table tr:hover {
    background: #fafafa;
}

.rank-number {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    width: 60px;
}

.rank-change {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.rank-up {
    color: #27ae60;
}

.rank-down {
    color: #e74c3c;
}

.rank-same {
    color: #95a5a6;
}

.institution-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.institution-flag {
    width: 30px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.institution-name {
    font-weight: 500;
}

.institution-location {
    font-size: 13px;
    color: #666;
}

.score-bar {
    width: 100px;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
}

/* 数据可视化 */
.visualization-section {
    margin-top: 40px;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.viz-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.viz-tab {
    padding: 10px 0;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.viz-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.chart-container {
    height: 400px;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* 对比功能 */
.compare-section {
    margin-top: 30px;
    padding: 20px;
    background: #fff8f3;
    border: 1px solid #ffe4d1;
    border-radius: 8px;
}

.compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.compare-title {
    font-size: 18px;
    font-weight: 600;
}

.compare-btn {
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.selected-institutions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.selected-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
}

.remove-btn {
    cursor: pointer;
    color: #e74c3c;
}

/* 世界地图区域 */
.map-section {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.map-title {
    font-size: 24px;
    font-weight: 600;
}

.region-tabs {
    display: flex;
    gap: 10px;
}

.region-tab {
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}
.region-tab a{
    color: var(--text);
    padding: 8px 16px;
    display: block;
}
.region-tab a:hover{
    color: white !important;
}
.region-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.region-tab.active a{
    color: white;
}
.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f5f3ff 0%, #e8e5ff 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-points {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}
.map-points img{
    height: 100%;
}
.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s infinite;
}
.phone-search{
    display: none;
}
@media (max-width: 1360px) {
    .ms-auto-menu li a{
        padding: 0 10px;
    }
}
@media (max-width: 1220px) {
    .ms-auto-menu li a{
        padding: 0 20px;
        color: #333;
    }
    .logo{
        height: 40px;
    }
}


@media (max-width: 992px) {

    .top-nav{
        height: 60px;
    }
    .logo-icon{
        width: 34px;
        height: 34px;
    }
    .logo-text h1{
        font-size: 18px;
    }
    .ms-auto-menu{
        display: none;
        position: fixed;
        width: 100%;
        left: 0;
        top: 60px;
        background: #fff;
        padding: 10px 0;
        height: calc(100vh - 60px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .ms-auto-menu li{
        display: block;
        height: 50px;
    }
    .ms-auto-menu li a{
        line-height: 50px;
    }
    .menuButton{
        display: flex;
    }
    .conference-title,.conference-info,.info-item,.journal-header1{
        display: block !important;
    }
    .journal-title{
        height: auto;
    }
    .home-search{
        display: none;
    }
    .phone-search{
        display: block;
        width: 100%;
    }
    .search-container{
        width: 100%;
    }
}