.header {
    width: 100%;
    height: 80px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E2E7F0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
}

.nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav li {
    margin: 0 15px;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}
.nav a:hover{
    color: #0082DC;
}
.nav a.active{
    color: #0082DC;
}
.auth-buttons {
    display: flex;
    width: 155px;
    height: 40px;
    border-radius: 8px;
    opacity: 1;
    box-sizing: border-box;
    border: 1px solid #D9E4F0;
    align-items: center;
    justify-content: space-around;
}

.auth-buttons a {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}
.auth-buttons a:hover{
    color: #0082DC;
}
.header-box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header-split {
    background: #D9E4F0;
    height: 30px;
    margin: 0 20px;
    width: 1px;
}

/* Footer Styles */
.footer {
    background-color: #0F172A;
    padding-top: 60px;
    padding-bottom: 75px;
    color: white;
    text-align: center;
}

.footer p {
    font-size: 10px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.5);
}
.footer .footer-text-bottom {
    margin-top: 21px;
    color: #475569;
    font-size: 16px;
    line-height: 22px;
}
.footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    vertical-align: middle;
}

.footer a:hover {
    text-decoration: underline;
}
.user-avatar{
    width: 44px;
    height: 44px;
    border-radius: 22px;
    cursor: pointer;
}
.auth-user-buttons {
    position: relative;
}
ul.auth-user-box {
    z-index: 9;
    position: absolute;
    width: 105px;
    border-radius: 8px;
    opacity: 1;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
    right: 0;
        padding: 10px;
}
ul.auth-user-box li {
    padding-left: 16px;
    line-height: 36px;
}
ul.auth-user-box li:hover a{
    color: #0082DC;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul.auth-user-box li a {
    color: #333;
}
.common-breadcrumb {
    width: 1200px;
    margin: auto;
    padding: 21px 0 26px 0;
    font-size: 14px;
    line-height: 22px;
    color: #8C8C96;
}
.common-breadcrumb a {
  color: #8C8C96 !important;
}
.common-breadcrumb-txt {
    color: #1A1A1A;
}
.common-breadcrumb a:hover {
    color: #0082DC !important;
}
.dynamic-toast {
    position: fixed;
    left: 50%;  /* 水平居中 */
    top: 50%;   /* 垂直居中 */
    transform: translate(-50%, -50%);  /* 精准居中 */
    max-width: 300px;
    padding: 10px 20px;
    background: #333;
    color: white;
    border-radius: 4px;
    z-index: 9999999;
    opacity: 0;
    transition: opacity 0.3s ease;
    word-wrap: break-word;
}
.dynamic-toast.show {
    opacity: 1;
}

.dynamic-toast a {
    color: #00BFFF;
    text-decoration: underline;
    cursor: pointer;
}

.dynamic-toast a:hover {
    color: #1E90FF;
}