/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

hr {
    border: 0;              /* 清除默认边框 */
    height: 1px;            /* 控制线条粗细 */
    background-color: #ccc; /* 设置线条颜色 */
    margin: 10px 0;         /* 调整上下间距 */;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f5f5 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 头部样式 */
.header {
    background-color: #333333;
    color: white;
    text-align: center;
    padding: 2.3rem 1rem;
}

.header h1 {
    font-size: 2.0rem;
    margin-bottom: 0.5rem;
}

/* 卡片容器布局 */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0rem 1rem;
    margin: 2.5rem auto; /* 卡片头部页脚距离 */
    z-index: 1;
    
}

/* 卡片样式 */
.content-section {
    background: white;
    border-radius: 10px;  /* 卡片圆角 */
    padding: 2rem;
    margin: 1.5rem 0;     /* 卡片上下间距 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-section:hover {
    transform: translateY(-3px);
}

.content-section h2 {
    color: #1cc088;
    text-align: center;
    margin-bottom: 1rem;
}

.content-section p {
    color: #666666;
    line-height: 1.6;
}

/* 头像样式 */
.logo-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: -80px auto 1rem;
    border: 4px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 页脚样式 */
.footer {
    background-color: #333333;
    color: white;
    text-align: center;
    padding: 1rem 1rem;
    font-size: 0.9em;
    margin-top: auto;
}

.footer p {
    line-height: 1.6;
}

.footer a {
    text-decoration: none; /* 去除下划线 */
    color: #FFFFFF;        /* 文字颜色 */
}

.footer a:hover {

    color: #1cc088;        /* 鼠标悬停颜色 */
    text-decoration: none; /* 悬停时也无下划线 */
}