/* 通用头部导航样式 */

/* 头部导航 */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 35px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a4fa0;
    text-decoration: none;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-login {
    padding: 6px 20px;
    background: #1a4fa0;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-login:hover {
    background: #154080;
}
.loginBox {
    position: relative !important;
    top: auto !important;
    padding-bottom: 20px;
    margin-bottom: -20px;
}
.loginBox img {
    vertical-align:middle;
}
#memberCarrier .loginButton {
    border-radius: 4px !important;
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    line-height: normal !important;
    float: none !important;
    padding: 10px 24px;
}
.btn-login , #memberCarrier .loginButton{
    background: #1a4fa0 !important;
    color: #fff !important;
}
.btn-register {
    padding: 6px 20px;
    background: #fff;
    color: #1a4fa0;
    border: 1px solid #1a4fa0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-register:hover {
    background: #f0f5ff;
}

/* 下拉菜单样式 */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.nav-dropdown .dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 5px;
    list-style: none;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 100%;
    height: 10px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: #f8fafc;
    color: #1a4fa0;
    padding-left: 25px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner区域 */
.banner {
    background: linear-gradient(135deg, #4a6fa5 0%, #5c7fb8 100%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    margin-top: 0;
    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;
}

.sidebar-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px 10px 20px 20px;
    margin-bottom: 20px;
}
.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: 400px;
    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('../../../image/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;
}

/* 下拉菜单样式 */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.nav-dropdown .dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 5px;
    list-style: none;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 100%;
    height: 10px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-main);
    white-space: nowrap;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: #f8fafc;
    color: var(--primary-blue);
    padding-left: 25px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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