/* 通用头部导航样式 — 已迁移至 ../css/common.css */

/* 固定导航栏默认白色背景 */
.navbar {
    background: #fff !important;
    box-shadow: 0 1px 20px rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.navbar .nav-link {
    color: #333 !important;
}
.navbar .nav-link:hover {
    color: #333 !important;
    background: rgba(0,0,0,.05);
}
.navbar .nav-link.active {
    color: #333 !important;
}

#navNewsLink {
    display: none;
}

/* Banner区域 */
.banner {
    /* background: linear-gradient(135deg, #4a6fa5 0%, #5c7fb8 100%); */
    background: linear-gradient(135deg, #007aff 0%, #12a5d6 100%);
    padding: 25px 20px;
    text-align: center;
    color: #fff;
    margin-top: 64px;
    max-width: 100%;
    width: 100%;
}
.content .plagiarismCheck-block .system-submit .plagiarismCheck-form {
    padding: 0;
}
.banner h1 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}


/* 右侧边栏 */
.sidebar {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px 10px 20px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    border: 1px solid #f0f0f0;
}
.sidebar-box2 {
    margin-bottom: 0;
}

.sidebar-box h3 {
    font-size: 14px;
    color: #1a4fa0;
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 3px solid #1a4fa0;
    margin-top: 0;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box ul li {
    font-size: 12px;
    color: #666;
    line-height: 2;
    padding-left: 15px;
    position: relative;
}

.sidebar-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a4fa0;
}

.sidebar-box .notice-content {
    font-size: 12px;
    color: #666;
    line-height: 2;
    max-height: 309px;
    overflow-y: auto;
    padding-right: 10px;
}

/* 自定义滚动条样式 - 细淡 */
.sidebar-box .notice-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-box .notice-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.sidebar-box .notice-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.sidebar-box .notice-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.sidebar-box .notice-content p {
    margin-bottom: 15px;
    font-size: 12px;
}

.sidebar-box .notice-content strong {
    color: #1a2a5e;
    display: block;
    margin-bottom: 5px;
}

/* 只隐藏不需要的右侧介绍区域 */
.system-introduce,
.right-introduce,
.information-block,
.guide {
    display: none !important;
}

/* 固定悬浮框样式 */
.fixedBox {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}
.customerBox {
    width: auto;
    background-image: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0 auto;
    position: static;
    overflow: hidden;
    display: block;
}
.customerBox .qqText,
.customerBox .telephone,
.customerBox .mailbox,
.customerBox .wxText {
    display: none;
}

/* 侧边栏联系我们样式覆盖 */
.sidebar-box .customerBox .customerWay {
    padding: 0;
}

.sidebar-box .customerBox .customerWay p {
    line-height: 2;
    color: #666;
    font-size: 13px;
    margin: 0;
    margin-bottom: 5px;
}

.sidebar-box .customerBox .customerWay .s0 {
    width: 70px;
    display: inline-block;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.sidebar-box .customerBox .customerWay .s1 {
    color: #666;
    font-size: 13px;
}


/* ====================
   底部CTA & 按钮动画
   ==================== */
.bottom-cta {
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    background: url('../img/ithenticate39.png') no-repeat center center;
    background-size: 100% 100%;
    color: #fff;
}

.bottom-cta h2 {
    font-size: 2.375rem;
    font-weight: 900;
    line-height: 2.37rem;
}

.bottom-cta p {
    margin-bottom: 30px;
    font-size: 2.375rem;
    font-weight: 900;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* 按钮动画效果 */
.btn-primary {
    position: relative;
    width: 10rem;
    height: 2.6875rem;
    font-size: 1rem;
    padding: 0;
    cursor: pointer;
    line-height: 2.6875rem;
    text-align: center;
    border-radius: 1.375rem;
    overflow: hidden;
    background: transparent;
    color: #fff;
    border: none;
    z-index: 1;
    transition: background .5s ease,color .5s ease,border-color .5s ease,line-height .5s ease;
}

.btn-primary:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,#2585d8,#69baff);
    transform: translateX(0);
    transition: transform .5s ease;
    z-index: -1;
}

.btn-primary:hover:before {
    transform: translateX(50%);
}

.btn-primary:hover {
    color: #305386;
    border: 0.0625rem solid #305386;
    background: #fff;
}

.FloatingWindow {
    position: absolute;
    left: -140px;
    top: 35px;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}
