/* 全局样式 */
body {
    font-family: "Microsoft YaHei", "Heiti SC", sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.resume-container {
    max-width: 1200px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 30px auto;
}

.resume-header .avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.resume-header .name {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.resume-header .title {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.contact-short span {
    font-size: 0.95rem;
    color: #555;
}

.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
    background-color: #2c3e50 !important;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #f1f1f1;
    padding: 0.8rem 1.25rem;
}

.list-group-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .resume-container {
        padding: 15px;
        margin: 15px auto;
    }
    .resume-header .avatar {
        width: 120px;
        height: 120px;
    }
    .contact-short {
        flex-direction: column;
        gap: 10px !important;
    }
    .left-column, .right-column {
        margin-bottom: 20px;
    }
}
