* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* 自定义滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8da1;
}

:root {
    --primary: #FFC0CB;
    --primary-dark: #FF8DA1;
    --primary-light: #FFE6EA;
    --secondary: #1E6BB8;
    --secondary-dark: #15528D;
    --secondary-light: #E6F0FA;
    --accent: #FF922B;
    --accent-dark: #E07A1A;
    --accent-light: #FFE0B2;
    --dark: #343A40;
    --light: #F8F9FA;
    --gray: #E9ECEF;
    --gray-dark: #495057;
    --header-bg: linear-gradient(135deg, #FFC0CB 0%, #FF8DA1 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--light);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffc0cb' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    color: #333;
    line-height: 1.7;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.2px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background: var(--header-bg);
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 100;
    transition: var(--transition);
}

header:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff 0%, #ffe0e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.subtitle {
    position: relative;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 15px;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.domain {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 3.618%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.domain:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 主体内容 */
main {
    flex: 1;
    padding: 40px 0;
    animation: fadeIn 0.8s ease-out;
}

.spirit-content {
    position: relative;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
    right: 120px;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .about-content {
        gap: 20px;
    }

    .team-spirit {
        padding: 25px 15px;
    }

    .footer-links {
        gap: 10px 15px;
        font-size: 0.9rem;
    }
    .spirit-content{
        right: 10px;
    }
}

.content-section {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.content-section:hover::before {
    opacity: 1;
}

.section-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
}

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

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.card-title i {
    margin-right: 10px;
    color: var(--primary);
}

.info-content {
    line-height: 1.8;
    color: #495057;
}

.founder-link, .link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.founder-link::after, .link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.founder-link:hover, .link:hover {
    color: var(--secondary-dark);
}

.founder-link:hover::after, .link:hover::after {
    width: 100%;
}

.founder-link:hover {
    text-decoration: underline;
    color: #1a4d8c;
}

.team-spirit {
    background: linear-gradient(135deg, #fff9db, #ffe8cc);
    border-left: 4px solid var(--accent);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .team-spirit {
        padding: 15px 10px;
        margin: 20px 0;
        font-size: 0.9rem;
    }
}

.spirit-title {
    position: relative;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--accent-dark);
    margin-bottom: 20px;
    font-weight: 600;
    left: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: var(--transition);
}

.contact-item i {
    width: 30px;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-right: 10px;
}

.contact-item:hover {
    transform: translateX(5px);
}

.icp-info {
    background: var(--gray);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

/* 页脚分隔线 */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 20px 0;
}

footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin: 25px 0;
    justify-content: center;
}

.footer-link {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-link:hover {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icp {
    margin-top: 20px;
    text-align: center;
    color: #6cf;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-icp a {
    color: #6cf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-icp a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-icp p {
    margin: 8px 0;
}

/* 信息卡片图标颜色优化 */
.card-title i {
    color: var(--primary);
    transition: color 0.3s ease;
}

.info-card:hover .card-title i {
    color: var(--secondary);
    transform: scale(1.1);
    transition: all 0.3s ease;
}
