/* 认证会员展示页面样式 */
.planner-container {
    width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
    font-family: "黑体", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

/* 筛选栏样式 */
.filter-bar {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 40px;
    box-shadow: 0 12px 35px rgba(26, 41, 128, 0.25);
    position: relative;
    overflow: hidden;
}

.filter-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.filter-left, .filter-right {
    flex: 1;
    min-width: 280px;
}

.province-select {
    width: 100%;
    padding: 0px 18px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 52px;
    color: #333;
    font-weight: 300;
    font-family: "黑体", sans-serif;
}

.province-select:focus {
    outline: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    background: white;
}

.search-form {
    display: flex;
    width: 100%;
    height: 52px;
}

.search-form input {
    flex: 1;
    padding: 0px 18px;
    border: none;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    height: 100%;
    color: #333;
    font-weight: 300;
    font-family: "黑体", sans-serif;
}

.search-form input:focus {
    outline: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
}

.search-form button {
    padding: 0 30px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    height: 100%;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "黑体", sans-serif;
    min-width: 100px;
}

.search-form button:hover {
    background: #43a047;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

/* 会员展示区域 */
.members-container {
    min-height: 500px;
}

.no-members {
    text-align: center;
    padding: 100px 20px;
    font-size: 18px;
    color: #666;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-family: "黑体", sans-serif;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* 会员卡片样式 */
.member-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 20px 25px 15px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 110px;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
    z-index: 0;
    transition: all 0.5s ease;
}

.member-card:hover .header-bg {
    opacity: 1;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,70 Q50,90 100,70 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.member-avatar {
    margin-right: 25px;
    position: relative;
    z-index: 1;
}

.member-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.member-card:hover .member-avatar img {
    transform: scale(1.08);
    border-color: white;
}

.member-basic {
    flex: 1;
    position: relative;
    z-index: 1;
}

.name-badge-container {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.member-name {
    margin: 0;
    font-size: 20px;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    font-family: "黑体", sans-serif;
}

/* 已认证徽章样式 */
.credit-badge {
    display: inline-block;
    background: #ecad05;
    color: #d32f2f;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
    line-height: 1;
}

.member-id {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: "黑体", sans-serif;
}

.card-body {
    padding: 20px 25px;
    flex: 1;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bio-item {
    flex-direction: column;
    align-items: flex-start;
    text-indent: 2em;
    line-height: 2;
}

.info-item .label {
    color: #a3a5ab;
    font-size: 16px;
    font-weight: 600;
    font-family: "黑体", sans-serif;
    white-space: nowrap;
    margin-right: 10px;
}

.info-item .value {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    font-family: "黑体", sans-serif;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bio-content {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Helvetica Neue", "Segoe UI", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 5px;
    width: 100%;
    position: relative;
    padding: 5px 0 5px 0;
    min-height: 80px;
    background: url('/static/image/common/yinhao.png') no-repeat 0 5px;
    background-size: 25px 20px;
}

.credit-level {
    color: #e74c3c;
    font-weight: 700;
}

/* 信用等级文本样式 */
.credit-text {
    color: #333;
    font-weight: 600;
}

/* 问号图标样式 */
.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #f3f3f3;
    color: #bcbcbc;
    border-radius: 50%;
    margin-left: 8px;
    font-size: 12px;
    cursor: help;
    font-weight: bold;
}

.card-footer {
    padding: 15px 25px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.profile-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    font-family: "黑体", sans-serif;
}

.profile-btn:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
    font-weight: 700;
    color: white;
}

/* 分页样式 - 确保高度一致和右对齐 */
.page-nav {
    text-align: center;
    margin-top: 30px;
}

.page-nav a, .page-nav strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    margin: 0 2px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #3498db;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: "黑体", sans-serif;
    font-size: 16px;
    height: 44px;
    box-sizing: border-box;
    vertical-align: top;
}

.page-nav a:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.page-nav strong {
    background: #3498db;
    color: white;
    border-color: #3498db;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .planner-container {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-container {
        flex-direction: column;
    }
    
    .filter-left, .filter-right {
        width: 100%;
    }
    
    .page-nav {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .planner-container {
        padding: 15px;
    }
    
    .card-header {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }
    
    .member-avatar {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .member-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .member-name {
        font-size: 18px;
    }
    
    .name-badge-container {
        flex-direction: row;
        gap: 8px;
    }
    
    .credit-badge {
        margin-left: 10px;
        background: #ecad05;
        color: #d32f2f;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        line-height: 1;
    }
    
    .filter-bar {
        padding: 20px;
    }
    
    .search-form {
        height: 48px;
    }
    
    .search-form button {
        padding: 0 25px;
        min-width: 80px;
        font-size: 16px;
    }
    
    .bio-content {
        background-size: 20px 16px;
        background-position: 0 3px;
        font-size: 14px;
        padding: 3px 0 3px 0;
    }
    
    .page-nav {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .page-nav a, .page-nav strong {
        margin: 2px;
        padding: 10px 14px;
        height: 40px;
        font-size: 14px;
    }
    
    /* 手机版问号样式 */
    .help-icon {
        width: 16px;
        height: 16px;
        font-size: 11px;
        margin-left: 6px;
    }
    
    /* 手机版设计师主页按钮样式 */
    .profile-btn {
        background: #3498db;
        color: white !important;
        padding: 10px;
        font-size: 14px;
    }
}