/* 面包屑导航样式 */
.breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    color: #666;
}

.breadcrumb a {
    color: #e4393c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 运动员列表样式 */
.player-section {
    margin-bottom: 50px;
}

.player-section h2 {
    color: #333;
    border-bottom: 2px solid #e4393c;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.player-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.player-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.player-item:hover {
    transform: translateY(-5px);
}

.player-item img {
    width: 200px;
    height: 250px;
    object-fit: cover;
}

.player-info {
    padding: 20px;
    flex: 1;
}

.player-info h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #333;
}

.player-info .title {
    color: #e4393c;
    font-weight: bold;
    margin-bottom: 10px;
}

.player-info .description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #e4393c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c62828;
} 