* {
    margin: 0;
    padding: 0;

}

/* 页面标题 */
.page-header {
    text-align: center;
    padding: 40px 0 40px;
    position: relative;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: #333;
    z-index: 1; /* 确保标题在正确层级 */
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #dea7c4 0%, #f9e270 100%);
    border-radius: 2px;
    z-index: 2; /* 确保伪元素可见 */
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.8;
    max-width: 700px;
    margin: 30px auto 0;
    color: #666;
}



.desktop-navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.mobile-navbar{
    display: none;
}
.logo-container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-war {
    font-size: 1rem;
    background: linear-gradient(to bottom, #572cd4 0%, #dea7c4 20%, #f9e270 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(255, 56, 100, 0.2);
    letter-spacing: 1px;
    margin-right: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo-war:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(255, 56, 100, 0.3);
}

.logo-main {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(to bottom, #572cd4 0%, #dea7c4 20%, #f9e270 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.logo-main:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 16px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #572cd4, #f9e270);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #000;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-item.active .nav-link {
    color: #000;
}

.nav-item.active .nav-link::before {
    width: 100%;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(76, 201, 240, 0.2);
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-35px) translateX(-10px);
    }
    75% {
        transform: translateY(-15px) translateX(15px);
    }
}

.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 8s infinite alternate;
    z-index: -1;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}











/* 头部样式 */
.mobile-type{
    display: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.common-header {
    background: #ffffff;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid #eaeaea;
    width: 100%;
}

.common-header-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    /*color: #572cd4;*/
    background: linear-gradient(to bottom, #572cd4 0%, #dea7c4 20%, #f9e270 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}




.user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    overflow: hidden;
}

.action-btn {
    color: #333;
    background: rgba(106, 17, 203, 0.1);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.action-btn a{
    color: #333;
    text-decoration: none;
}
.action-btn:hover, .action-btn.active {
    background: rgba(106, 17, 203, 0.1);
    color: #666;
}

.common-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: #fff;
    overflow: visible; /* 改为visible避免裁剪 */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
}
.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 20px;
    margin-bottom: 20px;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}
.footer-section h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #572cd4 0%, #f9e270 100%);
}
.about p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #bdc3c7;
}
.support p{
    line-height: 1.3;
    margin-bottom: 6px;
    color: #bdc3c7;
}
.contact-list {
    list-style: none;
}
.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #bdc3c7;
}
.contact-list i {
    margin-right: 10px;
    color: #f9e270;
    font-size: 18px;
    width: 20px;
    text-align: center;
}
.social-icons {
    display: flex;
    gap: 20px;
    position: relative;
    overflow: visible;
}

.direct-qrcode {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 10px;
}

.social-item {
    text-align: center;
    margin: 10px;
}

.social-item p {
    margin: 0;
    font-size: 14px;
}


.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}

.copyright {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
}

.copyright a{
    color: #bdc3c7;
    text-decoration: none;
}

.copyright a:hover{
    text-decoration: none;
}


@media (max-width: 768px) {
    .desktop-navbar {
        display: none;
    }
    .mobile-navbar {
        display: block;
    }
    .page-header {
        display: none;
        text-align: center;
        padding: 25px 10px 35px;
        margin-bottom: 20px;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 3px solid transparent;
        display: inline-block;
    }

    .page-subtitle {
        font-size: 16px;
        opacity: 0.8;
        max-width: 90%;
        margin: 15px auto 0;
        color: #666;
        line-height: 1.5;
    }

    .clear{
        height: 100px;
    }
    .container{
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }
    .common-header {
        background: #572cd4;
        padding: 5px;
        position:fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .common-header-content{
        width: 100%;
        margin: 0 auto;

    }
    .logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 10px 0 0;
    }

    .logo-img {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .logo-text {
        flex: 1;
        text-align: left;
        font-size: 22px;
        font-weight: 700;
        color: white;
        margin: 0 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-type {
        display: flex !important;
        flex: 0 0 auto;
        justify-content: flex-end;
        align-items: center;
        min-width: 30px;
    }

    .el-dropdown {
        display: flex;
        align-items: center;
    }

    .el-dropdown-link {
        cursor: pointer;
        color: #fff;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .el-dropdown-menu {
        z-index: 2000 !important;
    }

    .el-dropdown-menu__item {
        padding: 2px 20px;
        font-size: 14px;
    }

    .nav-menu,.user-actions {
        display: none;
    }
    .type {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 8px 14px;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    .type a{
        color: white;
        text-decoration: none;
    }
    .type:hover, .type.active {
        background: rgba(255, 255, 255, 0.3);
        color: #fff;
    }
    .mobile-header a{
        font-size: 18px;
        text-decoration: none;
    }
    .mobile-header:link,
    .mobile-header:visited,
    .mobile-header:hover,
    .mobile-header:active {
        color: #572cd4;
        text-decoration: none;
    }



    .footer-content {
        flex-direction: column;
        padding: 30px 20px;
    }
    .footer-section {
        padding: 0;
        margin-bottom: 30px;
    }

    .support p{
        line-height: 1.6;
        margin-bottom: 15px;
        color: #bdc3c7;
    }
    social-icons {
        display: flex;
        flex-direction: column;
    }
    .social-item {
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .social-icon {
        margin-right: 10px;
        font-size: 24px;
        color: #fff;
        transition: transform 0.3s ease;
    }



}