/* 主容器 */
.profile-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

/* 左侧部分 */
.left-section {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 个性签名框 */
.signature-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.date {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.year-month {
    color: #666;
    margin-bottom: 20px;
}

.quote {
    padding: 15px;
    border-top: 1px solid #eee;
}

.quote p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* 信息栏 */
.info-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    margin-bottom: 15px;
}

.info-item label {
    color: #666;
    width: 70px;
}

.info-item span {
    color: #333;
    flex: 1;
}

/* 右侧部分 */
.right-section {
    flex: 1;
}

.intro-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.intro-box h2 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e90ff;
}

.intro-box ul {
    list-style: none;
}

.intro-box li {
    margin-bottom: 25px;
}

.intro-label {
    color: #1e90ff;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.intro-content {
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
}

.intro-content p {
    margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }

    .left-section {
        flex: none;
        width: 100%;
    }
} 