.about-body
{
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
}
.about-body h1
{
    color: #222;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.about-body h2
{
    color: #444;
    margin-top: 40px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}
.about-body h2::before
{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: linear-gradient(to bottom, #4a90e2, #8e44ad);
    border-radius: 2px;
}
.about-body ul
{
    list-style-type: none;
    padding-left: 0;
}
.about-body li
{
    margin: 15px 0;
    padding-left: 20px;
    position: relative;
}
.about-body li::before
{
    content: "⦁";
    position: absolute;
    left: 0;
    color: #4a90e2;
}
.owner-section
{
    background-color: #f0f7ff;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid #d0e3ff;
}
.owner-card
{
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}
.owner-avatar
{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a90e2;
    margin-bottom: 15px;
}
.owner-name
{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.owner-title
{
    color: #4a90e2;
    font-weight: 500;
    margin-bottom: 10px;
}
.management-section
{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.management-group
{
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}
.manager-card
{
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s;
}
.manager-card:hover
{
    background-color: #f0f7ff;
}
.avatar
{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #e0e0e0;
}
.manager-info
{
    flex: 1;
}
.manager-name
{
    font-weight: 500;
    margin-bottom: 5px;
}
.manager-role
{
    color: #666;
    font-size: 14px;
}
.sponsor-section
{
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 25px;
    margin-top: 40px;
}
.sponsor-methods
{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}
.sponsor-method
{
    flex: 1;
    min-width: 200px;
}
.qr-code
{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: block;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
}
.sponsor-note
{
    font-style: italic;
    color: #666;
    margin-top: 30px;
    text-align: center;
}
.home-nav
{
    text-align: center;
    margin-bottom: 30px;
}
.home-link
{
    display: inline-block;
    padding: 8px 20px;
    background-color: #f0f7ff;
    color: #4a90e2;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid #d0e3ff;
    transition: all 0.3s ease;
}
.home-link:hover
{
    background-color: #4a90e2;
    color: white;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}