@charset "UTF-8";

body {
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    background-color: #007BFF;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    margin: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.back-to-home:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.page-content {
    background-color: #fff;
    padding: 2.5rem;
    margin: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tp img {
    max-width: 80%; /* 可以根据需要调整最大宽度 */
    max-height: 200px; /* 可以根据需要调整最大高度 */
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #34495e;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.8rem;
    margin-top: 3rem;
    font-size: 1.7rem;
}

p {
    margin-bottom: 2rem;
    text-align: justify;
    color: #555;
}

ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: #555;
}

.works {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.works img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vp-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.vp-photo {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}