/* 运动员详情页样式 */
.player-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 个人资料头部 */
.profile-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 30px;
}

.profile-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    margin: 0 0 10px;
    color: #333;
    font-size: 2.5em;
}

.profile-info .title {
    color: #e4393c;
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* 统计信息 */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 4px;
}

.stat-item .label {
    display: block;
    color: #666;
    margin-bottom: 5px;
}

.stat-item .value {
    display: block;
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
}

/* 视频部分 */
.video-section {
    margin: 40px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 比例 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

/* 成就列表 */
.achievements {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.achievements h2 {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e4393c;
    padding-bottom: 10px;
}

.achievements ul {
    list-style: none;
    padding: 0;
}

.achievements li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.achievements li:last-child {
    border-bottom: none;
}

/* 时间线 */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e4393c;
    top: 0;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.year {
    background: #e4393c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 20px;
}

.event {
    background: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 0 1 50%;
} 