/* 百家号风格 PC端作者主页 */
body {
    background: #f5f6f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 顶部淡蓝背景区域 */
.bjh-header-bg {
    background: url('{pboot:sitelpath}/skin/images/nybanner.jpg') no-repeat center top / cover;
    position: relative;
}

.bjh-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(228, 242, 255, 0.9) 0%, rgba(245, 246, 247, 1) 100%);
}

.bjh-header-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bjh-avatar-wrap {
    position: relative;
    width: 100px;
    height: 100px;
}

.bjh-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.bjh-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(2.0);
}

/* V认证角标 */
.bjh-v-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #fff;
    font-weight: bold;
    font-style: italic;
}

.bjh-author-info {
    flex: 1;
}

.bjh-name-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.bjh-name-row h1 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.bjh-btn-group {
    margin-left: auto;
    display: flex;
    gap: 16px;
}

.bjh-btn {
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-outline {
    background: #fff;
    color: #222;
    border: 1px solid #dcdcdc;
}

.btn-outline:hover {
    background: #f8f8f8;
}

.btn-solid {
    background: #2563eb;
    color: #fff;
    border: 1px solid #2563eb;
}

.btn-solid:hover {
    background: #1d4ed8;
    color: #fff;
}

.bjh-stats {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #666;
}

.bjh-stats span strong {
    font-size: 18px;
    color: #222;
    margin-right: 4px;
    font-weight: 700;
}

/* 主体分栏布局 */
.bjh-main {
    max-width: 1000px;
    margin: 20px auto 60px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bjh-left {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 0;
}

.bjh-tabs {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 20px;
}

.bjh-tab {
    padding: 16px 20px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    position: relative;
}

.bjh-tab.active {
    font-weight: 700;
    color: #222;
}

.bjh-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.bjh-content-list {
    padding: 20px;
}

/* 列表项样式 (仿百家号文章列表) */
.bjh-list-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
}

.bjh-list-item:last-child {
    border-bottom: none;
}

.bjh-list-img {
    width: 160px;
    height: 106px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.bjh-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bjh-list-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: color 0.2s;
}

.bjh-list-item:hover .bjh-list-title {
    color: #2563eb;
}

.bjh-list-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    gap: 16px;
}

.bjh-right {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 20px;
    flex-shrink: 0;
}

.right-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin: 0 0 16px;
}

.right-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #444;
    line-height: 1.8;
}

.right-info-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.right-info-list i {
    color: #999;
    margin-top: 4px;
}

.paging {
    text-align: center;
    margin: 20px 0;
}

.paging a {
    display: inline-block;
    background: #fff;
    padding: 6px 14px;
    margin: 0 4px;
    border-radius: 4px;
    border: 1px solid #eee;
    color: #666;
    font-size: 13px;
}

.paging a.on,
.paging a:hover {
    background: #f0f7ff;
    color: #2563eb;
    border-color: #bfdbfe;
    font-weight: bold;
}

.no-result {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 14px;
}
