/* 页面banner */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/club-banner.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    margin-bottom: 40px;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffd700;
}

/* 搜索区域 */
.search-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    margin-bottom: 15px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-box button {
    padding: 0 30px;
    background: #c00;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.filter-tags {
    display: flex;
    gap: 10px;
}

.filter-tags a {
    padding: 5px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.filter-tags a:hover,
.filter-tags a.active {
    background: #c00;
    color: #fff;
}

/* 俱乐部列表 */
.club-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.club-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.club-image {
    position: relative;
    height: 250px;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.tag {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
}

.tag.pro { background: #c00; }
.tag.amateur { background: #f90; }
.tag.new { background: #0c0; }
.tag.hot { background: #f00; }

.club-info {
    padding: 20px;
}

.club-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.club-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.club-meta i {
    margin-right: 5px;
}

.club-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.club-features span {
    padding: 3px 10px;
    background: #f5f5f5;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

.club-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.club-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f90;
}

.reviews {
    font-size: 14px;
    color: #999;
}

.club-actions {
    display: flex;
    gap: 10px;
}

.club-actions a {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-detail {
    background: #f5f5f5;
    color: #666;
}

.btn-join {
    background: #c00;
    color: #fff;
}

.btn-detail:hover {
    background: #e5e5e5;
}

.btn-join:hover {
    background: #a00;
}

/* 活动日历 */
.calendar-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #c00;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.month-selector {
    display: flex;
    align-items: center;
    gap: 20px;
}

.month-selector button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.calendar-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.training { background: #c00; }
.dot.match { background: #f90; }
.dot.event { background: #0c0; }

/* 会员风采 */
.member-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.member-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.member-photo {
    height: 200px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 15px;
    text-align: center;
}

.member-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.level {
    color: #c00;
    font-size: 14px;
    margin-bottom: 5px;
}

.achievement {
    color: #f90;
    font-size: 14px;
    margin-bottom: 10px;
}

.description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    gap: 10px;
}

.member-social a {
    flex: 1;
    padding: 5px 0;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-follow {
    background: #c00;
    color: #fff;
}

.btn-message {
    background: #f5f5f5;
    color: #666;
}

.btn-follow:hover {
    background: #a00;
}

.btn-message:hover {
    background: #e5e5e5;
}

/* 留言板 */
.message-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.message-form {
    margin-bottom: 30px;
}

.message-form textarea {
    width: 100%;
    height: 100px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    margin-bottom: 15px;
}

.message-form button {
    padding: 10px 30px;
    background: #c00;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.message-form button:hover {
    background: #a00;
}

.message-item {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.message-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.message-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.time {
    font-size: 12px;
    color: #999;
}

.message-content {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.message-actions {
    display: flex;
    gap: 20px;
}

.message-actions a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.message-actions a:hover {
    color: #c00;
} 