* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #1a73e8;
    --secondary-color: #4285f4;
    --accent-color: #34a853;
    --dark-color: #202124;
    --light-color: #f8f9fa;
    --gray-color: #5f6368;
    --border-color: #dadce0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: #f5f7fa;
    color: var(--dark-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.pb2345-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pb2345-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pb2345-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pb2345-btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.pb2345-btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 头部和导航 */
.pb2345-header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.pb2345-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.pb2345-logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.pb2345-logo img {
    height: 40px;
    margin-right: 12px;
}

.pb2345-search-container {
    display: flex;
    width: 45%;
    position: relative;
}

.pb2345-search-bar {
    display: flex;
    flex: 1;
    position: relative;
}

.pb2345-search-filter {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.pb2345-search-filter select {
    padding: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.pb2345-search-filter::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray-color);
    font-size: 12px;
}

.pb2345-search-bar input {
    flex: 1;
    padding: 14px 120px 14px 120px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.pb2345-search-bar input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
    outline: none;
}

.pb2345-search-bar button {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 9px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    height: calc(100% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb2345-user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pb2345-user-actions a {
    font-size: 16px;
    position: relative;
    font-weight: 500;
}

.pb2345-user-actions .pb2345-login-btn {
    color: var(--gray-color);
    transition: var(--transition);
}

.pb2345-user-actions .pb2345-login-btn:hover {
    color: var(--primary-color);
}

.pb2345-user-actions .pb2345-register-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pb2345-user-menu {
    position: relative;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 6px;
    transition: var(--transition);
}

.pb2345-user-menu:hover {
    background-color: rgba(26, 115, 232, 0.08);
}

.pb2345-user-menu:hover .pb2345-dropdown-menu {
    display: block;
}

.pb2345-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    width: 220px;
    padding: 12px 0;
    z-index: 100;
    overflow: hidden;
}

.pb2345-dropdown-menu li {
    padding: 10px 20px;
    font-size: 15px;
    transition: var(--transition);
}

.pb2345-dropdown-menu li:hover {
    background-color: #f5f7fa;
}

.pb2345-dropdown-menu li i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    color: var(--primary-color);
}

.pb2345-nav {
    background: linear-gradient(135deg, var(--dark-color), #2d2f33);
    position: relative;
}

.pb2345-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pb2345-nav-menu {
    display: flex;
}

.pb2345-nav-menu > li {
    position: relative;
}

.pb2345-nav-menu > li > a {
    display: block;
    padding: 18px 24px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.pb2345-nav-menu > li:hover > a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.pb2345-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    width: 220px;
    z-index: 100;
    overflow: hidden;
}

.pb2345-nav-menu > li:hover .pb2345-sub-menu {
    display: block;
}

.pb2345-sub-menu li a {
    display: block;
    padding: 14px 20px;
    color: var(--dark-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    transition: var(--transition);
}

.pb2345-sub-menu li:last-child a {
    border-bottom: none;
}

.pb2345-sub-menu li a:hover {
    background-color: #f5f7fa;
    color: var(--primary-color);
    padding-left: 25px;
}

.pb2345-nav-extra {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
}

.pb2345-nav-extra i {
    margin-right: 8px;
    color: var(--accent-color);
}

.pb2345-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 10px;
}

/* Banner区域 - 轮播 */
.pb2345-banner {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    height: 500px;
}

.pb2345-banner-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.pb2345-banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pb2345-banner-slide-1 {
    background: linear-gradient(135deg, var(--primary-color), #5b8def);
}

.pb2345-banner-slide-2 {
    background: linear-gradient(135deg, #34a853, #5bd36b);
}

.pb2345-banner-slide-3 {
    background: linear-gradient(135deg, #fbbc04, #f7d154);
}

.pb2345-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.pb2345-banner h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.pb2345-banner p {
    font-size: 20px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.pb2345-banner-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pb2345-banner-btns .pb2345-btn {
    background-color: white;
    color: var(--primary-color);
    padding: 14px 32px;
    font-size: 17px;
}

.pb2345-banner-btns .pb2345-btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.pb2345-banner-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.pb2345-banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.pb2345-banner-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.pb2345-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.pb2345-banner-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.pb2345-banner-arrow-left {
    left: 20px;
}

.pb2345-banner-arrow-right {
    right: 20px;
}

/* 内容区域 */
.pb2345-section {
    margin-bottom: 80px;
}

.pb2345-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.pb2345-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
}

.pb2345-section-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.pb2345-view-all {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pb2345-view-all:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* 模板和插件卡片 */
.pb2345-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.pb2345-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.pb2345-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pb2345-card-img {
    height: 318px;
    overflow: hidden;
    position: relative;
}

.pb2345-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pb2345-card:hover .pb2345-card-img img {
    transform: scale(1.08);
}

.pb2345-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.pb2345-card-badge.hot {
    background-color: #ea4335;
}

.pb2345-card-badge.new {
    background-color: var(--accent-color);
}

.pb2345-card-badge.free {
    background-color: #fbbc04;
}

.pb2345-card-content {
    padding: 24px;
}

.pb2345-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.pb2345-card-desc {
    color: var(--gray-color);
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.pb2345-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray-color);
    align-items: center;
}

.pb2345-card-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.pb2345-card-stats {
    display: flex;
    gap: 15px;
}

.pb2345-card-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 分类导航 */
.pb2345-category-nav {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.pb2345-category-title {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

.pb2345-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.pb2345-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

.pb2345-category-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.pb2345-category-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.pb2345-category-item:hover .pb2345-category-icon {
    color: white;
}

.pb2345-category-name {
    font-size: 16px;
    font-weight: 500;
}

/* 推荐资源 */
.pb2345-featured-resources {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.pb2345-featured-main {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.pb2345-featured-main-img {
    height: 350px;
    overflow: hidden;
}

.pb2345-featured-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pb2345-featured-main:hover .pb2345-featured-main-img img {
    transform: scale(1.05);
}

.pb2345-featured-main-content {
    padding: 25px;
}

.pb2345-featured-main-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.pb2345-featured-main-desc {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pb2345-featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pb2345-featured-side-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: var(--transition);
}

.pb2345-featured-side-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.pb2345-featured-side-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.pb2345-featured-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb2345-featured-side-content {
    padding: 15px;
    flex: 1;
}

.pb2345-featured-side-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb2345-featured-side-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-color);
}

/* 新闻资讯 */
.pb2345-news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.pb2345-news-item {
    display: flex;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 140px;
}

.pb2345-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.pb2345-news-img {
    width: 160px;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.pb2345-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pb2345-news-item:hover .pb2345-news-img img {
    transform: scale(1.05);
}

.pb2345-news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pb2345-news-title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.pb2345-news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-color);
}

/* 无图新闻模块 */
.pb2345-news-noimg {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.pb2345-news-noimg-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.pb2345-news-noimg-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.pb2345-news-noimg-item:last-child {
    border-bottom: none;
}

.pb2345-news-noimg-item:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
}

.pb2345-news-noimg-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.pb2345-news-noimg-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-color);
}

/* 会员等级 */
.pb2345-membership {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.pb2345-membership-intro {
    text-align: center;
    margin-bottom: 50px;
}

.pb2345-membership-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.pb2345-membership-intro p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
}

.pb2345-membership-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pb2345-level-card {
    background-color: white;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.pb2345-level-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pb2345-level-card.featured::before {
    content: '最受欢迎';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 35px;
    transform: rotate(45deg);
    font-size: 13px;
    font-weight: 600;
}

.pb2345-level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pb2345-level-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pb2345-level-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pb2345-level-card.featured .pb2345-level-icon {
    color: var(--secondary-color);
}

.pb2345-level-name {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.pb2345-level-price {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--dark-color);
}

.pb2345-level-price span {
    font-size: 16px;
    font-weight: normal;
    color: var(--gray-color);
}

.pb2345-level-features {
    margin-bottom: 30px;
    text-align: left;
}

.pb2345-level-features li {
    padding: 10px 0;
    font-size: 15px;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pb2345-level-features li:last-child {
    border-bottom: none;
}

.pb2345-level-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 16px;
}

.pb2345-level-card.featured .pb2345-level-features li::before {
    color: var(--primary-color);
}

/* 页脚 */
.pb2345-footer {
    background: linear-gradient(135deg, var(--dark-color), #2d2f33);
    color: white;
    padding: 80px 0 30px;
}

.pb2345-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.pb2345-footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.pb2345-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.pb2345-footer-column ul li {
    margin-bottom: 15px;
}

.pb2345-footer-column ul li a {
    color: #b0b3b8;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pb2345-footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.pb2345-footer-column ul li a i {
    width: 20px;
    text-align: center;
}

.pb2345-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    color: #b0b3b8;
}

/* 新闻详情页样式 */
.pb2345_news_container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.pb2345_news_wrapper {
    display: flex;
    gap: 30px;
}

/* 左侧导航样式 - 固定定位 */
.pb2345_news_sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky; /* 粘性定位，滚动时固定 */
    top: 30px; /* 距离顶部的距离 */
    align-self: flex-start; /* 从顶部开始定位 */
    max-height: calc(100vh - 60px); /* 最大高度为视口高度减去顶部和底部间距 */
    overflow-y: auto; /* 内容超出时可滚动 */
}

.pb2345_news_nav_title {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 20px;
    background-color: #165DFF;
    color: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 4px rgba(22, 93, 255, 0.15);
}

.pb2345_news_nav_list {
    background-color: #fff;
    border: 1px solid #f0f2f5;
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.pb2345_news_nav_item {
    border-bottom: 1px solid #f0f2f5;
}

.pb2345_news_nav_item:last-child {
    border-bottom: none;
}

.pb2345_news_nav_link {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    position: relative;
}

.pb2345_news_nav_link:hover {
    background-color: #f7f8fa;
}

.pb2345_news_nav_link.active {
    background-color: #f0f5ff;
    color: #165DFF;
    font-weight: 500;
}

.pb2345_news_nav_link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #165DFF;
}

/* 中间新闻列表样式 */
.pb2345_news_main {
    flex-grow: 1;
}

.pb2345_news_header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e6eb;
    position: relative;
}

.pb2345_news_header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 3px;
    background-color: #165DFF;
}

.pb2345_news_header h1 {
    font-size: 24px;
    color: #1d2129;
    font-weight: 700;
}

.pb2345_news_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pb2345_news_item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pb2345_news_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.pb2345_news_item_hasimg {
    display: flex;
}

.pb2345_news_img_wrapper {
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.pb2345_news_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pb2345_news_item:hover .pb2345_news_img {
    transform: scale(1.05);
}

.pb2345_news_content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pb2345_news_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d2129;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.pb2345_news_item:hover .pb2345_news_title {
    color: #165DFF;
}

.pb2345_news_desc {
    font-size: 15px;
    color: #6b7785;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.8;
}

.pb2345_news_meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #9da3af;
    align-items: center;
}

.pb2345_news_category {
    padding: 3px 10px;
    background-color: #f0f5ff;
    color: #165DFF;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* 右侧推荐样式 - 固定定位 */
.pb2345_news_sidebar_right {
    width: 300px;
    flex-shrink: 0;
    position: sticky; /* 粘性定位，滚动时固定 */
    top: 30px; /* 距离顶部的距离 */
    align-self: flex-start; /* 从顶部开始定位 */
}

.pb2345_news_sidebar_box {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pb2345_news_sidebar_title {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f2f5;
    color: #1d2129;
    position: relative;
}

.pb2345_news_sidebar_title::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -1px;
    width: 40px;
    height: 3px;
    background-color: #165DFF;
}

.pb2345_news_hot_list {
    padding: 15px 20px;
}

.pb2345_news_hot_item {
    padding: 12px 0;
    border-bottom: 1px dashed #f0f2f5;
    display: flex;
    align-items: flex-start;
}

.pb2345_news_hot_item:last-child {
    border-bottom: none;
}

.pb2345_news_hot_rank {
    width: 24px;
    height: 24px;
    background-color: #f5f5f5;
    color: #86909c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.pb2345_news_hot_rank.top3 {
    background-color: #ff4d4f;
    color: #fff;
}

.pb2345_news_hot_title {
    font-size: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.pb2345_news_hot_item:hover .pb2345_news_hot_title {
    color: #165DFF;
}

.pb2345_news_ad {
    padding: 20px;
}

.pb2345_news_ad_img {
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pb2345_news_ad:hover .pb2345_news_ad_img {
    transform: scale(1.02);
}

/* 加载更多按钮 */
.pb2345_news_loadmore {
    margin-top: 30px;
    text-align: center;
}

.pb2345_news_loadmore_btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    color: #1d2129;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pb2345_news_loadmore_btn:hover {
    background-color: #f0f5ff;
    color: #165DFF;
    border-color: #c9d1e0;
}

.pb2345_news_loadmore_btn:active {
    transform: translateY(1px);
}


/* 中间文章内容样式 */
.pb2345_news_main {
    flex-grow: 1;
}

.pb2345_article_header {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pb2345_article_title {
    font-size: 26px;
    font-weight: 700;
    color: #1d2129;
    line-height: 1.4;
    margin-bottom: 20px;
}

.pb2345_article_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 25px;
    color: #9da3af;
    font-size: 14px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f2f5;
}

.pb2345_article_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.pb2345_article_tag {
    padding: 4px 12px;
    background-color: #f0f5ff;
    color: #165DFF;
    border-radius: 18px;
    font-size: 13px;
}

.pb2345_article_content {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.pb2345_article_content p {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
}

.pb2345_article_content h2 {
    font-size: 22px;
    color: #1d2129;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f2f5;
}

.pb2345_article_content h3 {
    font-size: 19px;
    color: #1d2129;
    margin: 25px 0 12px;
}

.pb2345_article_content img {
    margin: 25px auto;
    max-width: 90%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.pb2345_article_content ul {
    margin: 0 0 20px 25px;
    list-style-type: disc;
}

.pb2345_article_content li {
    margin-bottom: 10px;
}

/* 上一篇/下一篇导航 */
.pb2345_article_nav {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.pb2345_article_prev,
.pb2345_article_next {
    padding: 10px 0;
}

.pb2345_article_prev {
    border-bottom: 1px solid #f0f2f5;
}

.pb2345_article_nav_label {
    font-size: 14px;
    color: #9da3af;
    margin-bottom: 5px;
    display: block;
}

.pb2345_article_nav_link {
    font-size: 16px;
    color: #1d2129;
    transition: color 0.3s ease;
}

.pb2345_article_nav_link:hover {
    color: #165DFF;
}

/* 相关文章推荐 */
.pb2345_related_articles {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pb2345_related_title {
    font-size: 18px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f2f5;
    position: relative;
}

.pb2345_related_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 40px;
    height: 3px;
    background-color: #165DFF;
}

.pb2345_related_list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pb2345_related_item {
    flex: 1 1 280px;
    display: flex;
    gap: 12px;
}

.pb2345_related_img {
    width: 100px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.pb2345_related_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pb2345_related_item:hover img {
    transform: scale(1.05);
}

.pb2345_related_content {
    flex-grow: 1;
}

.pb2345_related_link {
    font-size: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.pb2345_related_item:hover .pb2345_related_link {
    color: #165DFF;
}

/* 案例筛选区域 */
.pb2345-case-container {
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}
.pb2345-case-filter {
  margin-bottom: 40px;
}

.pb2345-case-filter-wrap {
  text-align: center;
}

.pb2345-case-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.pb2345-case-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #165DFF;
}

.pb2345-case-filter-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pb2345-case-filter-tag {
  padding: 8px 20px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 20px;
  color: #666;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pb2345-case-filter-tag.active {
  background-color: #165DFF;
  color: #fff;
}

.pb2345-case-filter-tag:hover:not(.active) {
  background-color: #e8e8e8;
}

/* 案例列表 */
.pb2345-case-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.pb2345-case-item {
  transition: transform 0.3s ease;
}

.pb2345-case-item:hover {
  transform: translateY(-8px);
}

.pb2345-case-item-inner {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pb2345-case-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.pb2345-case-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pb2345-case-item:hover .pb2345-case-pic {
  transform: scale(1.05);
}

.pb2345-case-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 93, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pb2345-case-item:hover .pb2345-case-mask {
  opacity: 1;
}

.pb2345-case-link {
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 8px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pb2345-case-link:hover {
  background-color: #fff;
  color: #165DFF;
}

.pb2345-case-info {
  padding: 20px;
}

.pb2345-case-name {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.pb2345-case-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pb2345-case-category {
  display: inline-block;
  font-size: 12px;
  color: #165DFF;
  background-color: rgba(22, 93, 255, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
}

/* 案例详情页基础样式 */
.pb2345-case-detail {
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
}

/* 导航路径 */
.pb2345-case-detail-nav {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.pb2345-case-detail-nav-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pb2345-case-detail-nav-link:hover {
  color: #165DFF;
}

.pb2345-case-detail-nav-sep {
  margin: 0 8px;
}

.pb2345-case-detail-nav-current {
  color: #333;
  font-weight: 500;
}

/* 标题与元信息 */
.pb2345-case-detail-header {
  margin-bottom: 30px;
  text-align: center;
}

.pb2345-case-detail-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.pb2345-case-detail-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #666;
  font-size: 14px;
}

.pb2345-case-detail-category {
  display: inline-block;
  font-size: 12px;
  color: #165DFF;
  background-color: rgba(22, 93, 255, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
}

/* 主图 */
.pb2345-case-detail-hero {
  margin-bottom: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pb2345-case-detail-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 内容区域 */
.pb2345-case-detail-content {
  margin-bottom: 60px;
}

.pb2345-case-detail-section {
  margin-bottom: 50px;
}

.pb2345-case-detail-section-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f5f5f5;
  font-weight: 600;
  position: relative;
}

.pb2345-case-detail-section-title:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #165DFF;
}

.pb2345-case-detail-section-text {
  line-height: 1.8;
  color: #666;
  font-size: 16px;
}

.pb2345-case-detail-section-text p {
  margin-bottom: 15px;
}

/* 图片展示 */
.pb2345-case-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
  gap: 30px;
}

.pb2345-case-detail-gallery-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.pb2345-case-detail-gallery-img:hover {
  transform: scale(1.02);
}

/* 功能特点 */
.pb2345-case-detail-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.pb2345-case-detail-feature-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pb2345-case-detail-feature-item:hover {
  background-color: #f0f5ff;
  transform: translateY(-5px);
}

.pb2345-case-detail-feature-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.pb2345-case-detail-feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 技术栈 */
.pb2345-case-detail-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pb2345-case-detail-tech-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: #f5f5f5;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease;
}

.pb2345-case-detail-tech-tag:hover {
  background-color: #165DFF;
  color: #fff;
}

/* 相关案例 */
.pb2345-case-detail-related {
  margin-top: 60px;
}

.pb2345-case-detail-related-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
}

.pb2345-case-detail-related-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.pb2345-case-detail-related-item {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.pb2345-case-detail-related-item:hover {
  transform: translateY(-8px);
}

.pb2345-case-detail-related-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.pb2345-case-detail-related-name {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pb2345-case-detail-related-item:hover .pb2345-case-detail-related-name {
  color: #165DFF;
}

.pb2345-case-detail-related-category {
  font-size: 12px;
  color: #165DFF;
  background-color: rgba(22, 93, 255, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
}

/* 资源主展示区 */
.pb2345-html-show-resource-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.pb2345-html-show-resource-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pb2345-html-show-resource-image {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pb2345-html-show-resource-image:hover {
  transform: translateY(-5px);
}

.pb2345-html-show-resource-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pb2345-html-show-resource-actions {
  text-align: center;
}

.pb2345-html-show-resource-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.pb2345-html-show-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  margin: 0 auto;
}

.pb2345-html-show-btn {
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.pb2345-html-show-btn-demo {
  background-color: #3498db;
  color: white;
}

.pb2345-html-show-btn-demo:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.pb2345-html-show-btn-download {
  background-color: #2ecc71;
  color: white;
}

.pb2345-html-show-btn-download:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.pb2345-html-show-resource-meta {
  margin-top: 1.5rem;
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* 资源预览图区 */
.pb2345-html-show-preview-section {
  margin: 3rem 0;
}

.pb2345-html-show-section-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #34495e;
  padding-left: 0.5rem;
  border-left: 3px solid #3498db;
}

.pb2345-html-show-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.pb2345-html-show-preview-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pb2345-html-show-preview-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pb2345-html-show-preview-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/* 相关资源区 */
.pb2345-html-show-related-resources {
  margin: 3rem 0;
}

.pb2345-html-show-resource-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.pb2345-html-show-resource-card:hover {
  transform: translateY(-3px);
}

.pb2345-html-show-resource-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.pb2345-html-show-resource-card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.pb2345-html-show-card-actions {
  display: flex;
  justify-content: space-evenly;
  margin-top: 0.8rem;
}

.pb2345-html-show-card-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* 模态框 */
.pb2345-html-show-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.pb2345-html-show-modal.active {
  display: flex;
}

.pb2345-html-show-modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.pb2345-html-show-modal-img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: 8px;
}

.pb2345-html-show-close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .pb2345-container {
      max-width: 1140px;
  }
  
  .pb2345-card-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .pb2345-featured-resources {
      grid-template-columns: 1fr;
  }
  
  .pb2345_news_wrapper {
      gap: 20px;
  }
  
  .pb2345_news_sidebar {
      width: 240px;
  }
  
  .pb2345_news_sidebar_right {
      width: 260px;
  }
}

@media (max-width: 992px) {
  .pb2345-container {
      max-width: 960px;
  }
  
  .pb2345-search-container {
      width: 40%;
  }
  
  .pb2345-banner h1 {
      font-size: 40px;
  }
  
  .pb2345-banner p {
      font-size: 18px;
  }
  
  .pb2345-section-title {
      font-size: 28px;
  }
  
  .pb2345-membership-levels {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .pb2345-category-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .pb2345_news_wrapper {
      flex-wrap: wrap;
  }
  
  .pb2345_news_sidebar,
  .pb2345_news_sidebar_right {
      position: static; /* 取消固定定位 */
      width: 100%;
      max-height: none; /* 取消最大高度限制 */
      overflow-y: visible; /* 取消滚动 */
      margin-bottom: 25px;
  }
  
  .pb2345_news_nav_list {
      display: flex;
      overflow-x: auto;
      border: 1px solid #f0f2f5;
      background-color: #fff;
      padding: 5px 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }
  
  .pb2345_news_nav_item {
      border-bottom: none;
      flex-shrink: 0;
      margin-right: 8px;
      border-radius: 6px;
      overflow: hidden;
  }
  
  .pb2345_news_nav_link {
      padding: 10px 18px;
      font-size: 15px;
  }
  
  .pb2345_news_nav_link.active::before {
      display: none;
  }
}

@media (max-width: 768px) {
  .pb2345-header-top {
      flex-wrap: wrap;
  }
  
  .pb2345-logo {
      margin-bottom: 15px;
  }
  
  .pb2345-search-container {
      width: 100%;
      order: 3;
      margin-top: 15px;
  }
  
  .pb2345-user-actions {
      margin-left: auto;
  }
  
  .pb2345-nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--dark-color);
      z-index: 100;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .pb2345-nav-menu.active {
      display: flex;
  }
  
  .pb2345-nav-menu > li > a {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .pb2345-sub-menu {
      position: static;
      width: 100%;
      box-shadow: none;
      border-radius: 0;
      display: none;
      background-color: rgba(0, 0, 0, 0.2);
  }
  
  .pb2345-nav-menu > li:hover .pb2345-sub-menu {
      display: none;
  }
  
  .pb2345-nav-menu > li.active .pb2345-sub-menu {
      display: block;
  }
  
  .pb2345-mobile-menu-btn {
      display: block;
  }
  
  .pb2345-nav-extra {
      display: none;
  }
  
  .pb2345-banner {
      height: 400px;
  }
  
  .pb2345-banner h1 {
      font-size: 32px;
  }
  
  .pb2345-banner p {
      font-size: 16px;
  }
  
  .pb2345-banner-btns {
      flex-direction: column;
      align-items: center;
      gap: 15px;
  }
  
  .pb2345-banner-btns .pb2345-btn {
      width: 100%;
      max-width: 280px;
  }
  
  .pb2345-section-title {
      font-size: 24px;
  }
  
  .pb2345-news-list {
      grid-template-columns: 1fr;
  }
  
  .pb2345-news-item {
      height: auto;
      flex-direction: column;
  }
  
  .pb2345-news-img {
      width: 100%;
      height: 180px;
  }
  
  .pb2345-membership-levels {
      grid-template-columns: 1fr;
  }
  
  .pb2345-level-card.featured {
      transform: scale(1);
  }
  
  .pb2345-level-card.featured:hover {
      transform: translateY(-8px);
  }
  
  .pb2345-footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .pb2345-category-grid {
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
  
  .pb2345-news-noimg-list {
      grid-template-columns: 1fr;
  }
  
  .pb2345_article_title {
      font-size: 22px;
  }
  
  .pb2345_article_header,
  .pb2345_article_content {
      padding: 20px 15px;
  }
  
  .pb2345_related_item {
      flex: 1 1 100%;
  }
  
  .pb2345-case-title {
      font-size: 26px;
  }
  
  .pb2345-case-list {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
  }
  
  .pb2345-case-filter-tag {
      padding: 6px 16px;
      font-size: 13px;
  }
  
  .pb2345-case-info {
      padding: 15px;
  }
  
  .pb2345-case-name {
      font-size: 16px;
  }
  
  .pb2345-case-detail-title {
      font-size: 26px;
  }
  
  .pb2345-case-detail-section-title {
      font-size: 22px;
  }
  
  .pb2345-case-detail-gallery {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .pb2345-case-detail-features {
      grid-template-columns: 1fr;
  }
  
  .pb2345-case-detail-related-list {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
  }
  
  .pb2345-html-show-resource-main {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .pb2345-container {
      padding: 0 15px;
  }
  
  .pb2345-logo {
      font-size: 24px;
  }
  
  .pb2345-logo img {
      height: 35px;
  }
  
  .pb2345-user-actions {
      gap: 15px;
  }
  
  .pb2345-user-actions .pb2345-register-btn {
      padding: 8px 16px;
      font-size: 14px;
  }
  
  .pb2345-banner {
      height: 350px;
  }
  
  .pb2345-banner h1 {
      font-size: 28px;
  }
  
  .pb2345-card-grid {
      grid-template-columns: 1fr;
  }
  
  .pb2345-membership {
      padding: 30px 20px;
  }
  
  .pb2345-membership-intro h2 {
      font-size: 28px;
  }
  
  .pb2345-membership-intro p {
      font-size: 16px;
  }
  
  .pb2345-category-grid {
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
  
  body {
      padding: 20px 0;
  }
  
  .pb2345_news_container {
      padding: 0 15px;
  }
  
  .pb2345_article_title {
      font-size: 22px;
  }
  
  .pb2345_article_meta {
      flex-direction: column;
      gap: 10px;
  }
  
  .pb2345_article_content {
      font-size: 15px;
  }
  
  .pb2345_related_list {
      grid-template-columns: 1fr;
  }
  
  .pb2345-case-container {
      padding: 20px 15px;
  }
  
  .pb2345-case-title {
      font-size: 22px;
  }
  
  .pb2345-case-list {
      grid-template-columns: 1fr;
  }
  
  .pb2345-case-detail {
      padding: 20px 15px;
  }
  
  .pb2345-case-detail-title {
      font-size: 22px;
  }
  
  .pb2345-case-detail-meta {
      flex-direction: column;
      gap: 10px;
  }
  
  .pb2345-case-detail-section-text {
      font-size: 15px;
  }
  
  .pb2345-case-detail-related-list {
      grid-template-columns: 1fr;
  }
}



    /* 模板列表页容器最大宽度限制 */
    .pb2345-mb-list-container {
      max-width: 1400px;
      margin: 25px auto;
    }
    
    /* 筛选区域样式 */
    .pb2345-mb-list-filters-wrap {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
      margin-bottom: 25px;
      overflow: hidden;
    }
    
    .pb2345-mb-list-filters-header {
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      border-bottom: 1px solid #f0f2f5;
    }
    
    .pb2345-mb-list-filters-title {
      font-size: 16px;
      font-weight: 600;
      color: #1d2129;
    }
    
    .pb2345-mb-list-filters-toggle {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #f0f2f5;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }
    
    .pb2345-mb-list-filters-toggle::after {
      content: '−';
      font-size: 18px;
      color: #86909c;
    }
    
    .pb2345-mb-list-filters-wrap.collapsed .pb2345-mb-list-filters-toggle::after {
      content: '+';
    }
    
    .pb2345-mb-list-filters {
      padding: 20px;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .pb2345-mb-list-filters-wrap.collapsed .pb2345-mb-list-filters {
      max-height: 0;
      padding: 0 20px;
      overflow: hidden;
    }
    
    .pb2345-mb-list-filter-row {
      display: flex;
      gap: 20px;
      margin-bottom: 15px;
      flex-direction: column;
    }
    
    .pb2345-mb-list-filter-group {
      flex: 1;
      min-width: 250px;
    }
    
    .pb2345-mb-list-filter-title {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #1d2129;
      display: flex;
      align-items: center;
    }
    
    .pb2345-mb-list-filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .pb2345-mb-list-filter-option {
      text-decoration: none;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 13px;
      transition: all 0.2s ease;
      cursor: pointer;
      color: #4e5969;
      background-color: #f2f3f5;
    }
    
    .pb2345-mb-list-filter-option:hover {
      background-color: #e5e6eb;
    }
    
    .pb2345-mb-list-filter-option.active {
      color: #fff;
      background-color: #1890ff;
    }
    
    /* 颜色筛选特殊样式 */
    .pb2345-mb-list-color-options {
      align-items: center;
    }
    
    .pb2345-mb-list-color-option {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      position: relative;
      padding: 0;
      border: 2px solid transparent;
    }
    
    .pb2345-mb-list-color-option.active {
      border-color: #1890ff;
      transform: scale(1.1);
    }
    
    .pb2345-mb-list-color-option::after {
      content: attr(data-color);
      position: absolute;
      bottom: -24px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
      color: #4e5969;
    }
    
    .pb2345-mb-list-color-option:hover::after {
      opacity: 1;
    }
    
    /* 模板列表样式 */
    .pb2345-mb-list-templates {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    
    .pb2345-mb-list-template-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .pb2345-mb-list-template-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }
    
    /* 图片区域样式 */
    .pb2345-mb-list-template-img-wrap {
      position: relative;
      overflow: hidden;
    }
    
    .pb2345-mb-list-template-img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .pb2345-mb-list-template-img-wrap:hover .pb2345-mb-list-template-img {
      transform: scale(1.05);
    }
    
    /* 操作按钮 - 仅图片悬停显示 */
    .pb2345-mb-list-template-actions {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .pb2345-mb-list-template-img-wrap:hover .pb2345-mb-list-template-actions {
      opacity: 1;
      visibility: visible;
    }
    
    .pb2345-mb-list-action-btn {
      padding: 8px 16px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      transition: transform 0.2s ease;
    }
    
    .pb2345-mb-list-action-btn:hover {
      transform: translateY(-2px);
    }
    
    .pb2345-mb-list-view-details {
      background-color: #fff;
      color: #1d2129;
    }
    
    .pb2345-mb-list-view-demo {
      background-color: #1890ff;
      color: #fff;
    }
    
    /* 模板信息区域 */
    .pb2345-mb-list-template-info {
      padding: 15px;
    }
    
    .pb2345-mb-list-template-name {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #1d2129;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .pb2345-mb-list-template-meta {
      font-size: 12px;
      color: #86909c;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }
    
    .pb2345-mb-list-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    
    .pb2345-mb-list-meta-item::before {
      content: '•';
      font-size: 8px;
      opacity: 0.7;
    }
    
    /* 价格和时间信息 */
    .pb2345-mb-list-template-status {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 10px;
      border-top: 1px dashed #f0f2f5;
      font-size: 13px;
    }
    
    .pb2345-mb-list-price {
      font-weight: 600;
      color: #f5222d;
    }
    
    .pb2345-mb-list-price.free {
      color: #52c41a;
    }
    
    .pb2345-mb-list-update-time {
      color: #86909c;
    }
    
    /* 响应式调整 */
    @media (max-width: 1400px) {
      .pb2345-mb-list-container {
        padding: 0 20px;
      }
    }
    
    @media (max-width: 992px) {
      .pb2345-mb-list-templates {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      .pb2345-mb-list-filter-row {
        flex-direction: column;
        gap: 15px;
      }
      
      .pb2345-mb-list-template-img {
        height: 160px;
      }
    }
    
    @media (max-width: 480px) {
      .pb2345-mb-list-templates {
        grid-template-columns: 1fr;
      }
      
      .pb2345-mb-list-filters {
        padding: 15px;
      }
      
      .pb2345-mb-list-filter-title {
        font-size: 14px;
      }
      
      .pb2345-mb-list-filter-option {
        padding: 4px 12px;
        font-size: 12px;
      }
    }
    
    
    /* 模板内容也基础样式 */
.pb2345-moban-show-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px;
    box-sizing: border-box;
    gap: 25px;
}

/* VIP价格优惠样式 */
.pb2345-moban-show-vip-pricing {
    position: relative;
    margin-bottom: 20px;
}

.pb2345-moban-show-vip-trigger {
    background-color: #fff3cd;
    color: #856404;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    border: 1px solid #ffeeba;
    transition: all 0.3s ease;
}

.pb2345-moban-show-vip-trigger:hover {
    background-color: #ffeeba;
}

.pb2345-moban-show-vip-icon {
    margin-right: 10px;
    font-size: 18px;
}

.pb2345-moban-show-vip-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-top: 8px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #f0f2f5;
}

.pb2345-moban-show-vip-pricing:hover .pb2345-moban-show-vip-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pb2345-moban-show-vip-option {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f2f5;
}

.pb2345-moban-show-vip-option:last-child {
    border-bottom: none;
}

.pb2345-moban-show-vip-level {
    color: #4e5969;
}

.pb2345-moban-show-vip-price {
    color: #f53f3f;
    font-weight: 600;
}

/* 按钮文本图标居中 */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 手机端二维码小图标 */
.pb2345-moban-show-qrcode-icon {
    font-size: 16px;
}

/* 网盘项目间距 */
.pb2345-moban-show-pan-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 左侧导航 */
.pb2345-moban-show-sidebar {
    width: 240px;
    padding: 20px 0;
    box-sizing: border-box;
    position: sticky;
    top: 180px;
    align-self: flex-start;
}

.pb2345-moban-show-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pb2345-moban-show-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    background-color: #f7f8fa;
    font-size: 15px;
}

.pb2345-moban-show-nav-icon {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.pb2345-moban-show-nav-link:hover {
    background-color: #eef2f7;
    color: #165dff;
    transform: translateX(3px);
}

.pb2345-moban-show-nav-link.active {
    background-color: #165dff;
    color: white;
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.15);
}

/* 中间内容区 */
.pb2345-moban-show-content {
    flex: 1;
    padding: 15px 0;
    box-sizing: border-box;
}

.pb2345-moban-show-section {
    margin-bottom: 60px;
    padding-bottom: 35px;
    border-bottom: 1px solid #f0f2f5;
}
    .pb2345-moban-show-section img{
        max-width: 100%;
    }
.pb2345-moban-show-title {
    color: #1d2129;
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #165dff;
    font-weight: 600;
}

.pb2345-moban-show-subtitle {
    color: #1d2129;
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: 18px;
    font-weight: 600;
}

.pb2345-moban-show-description {
    color: #4e5969;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 15px;
}

/* 缩略图 */
.pb2345-moban-show-thumbnail {
    margin-bottom: 35px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pb2345-moban-show-thumbnail-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.pb2345-moban-show-thumbnail:hover .pb2345-moban-show-thumbnail-img {
    transform: scale(1.03);
}

.pb2345-moban-show-thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    padding: 25px 20px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pb2345-moban-show-thumbnail:hover .pb2345-moban-show-thumbnail-overlay {
    opacity: 1;
}

.pb2345-moban-show-thumbnail-zoom {
    color: white;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 特点列表 */
.pb2345-moban-show-feature-list {
    list-style: none;
    padding: 0;
}

.pb2345-moban-show-feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #4e5969;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    margin-bottom: 8px;
}

.pb2345-moban-show-feature-list li:before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: #165dff;
    font-weight: bold;
    background-color: #e8f3ff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pb2345-moban-show-feature-list li:hover {
    background-color: #f7f8fa;
}

/* 截图展示 */
.pb2345-moban-show-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.pb2345-moban-show-screenshot-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.pb2345-moban-show-screenshot-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pb2345-moban-show-screenshot-wrapper {
    position: relative;
    overflow: hidden;
}

.pb2345-moban-show-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.pb2345-moban-show-screenshot-item:hover .pb2345-moban-show-screenshot-img {
    transform: scale(1.05);
}

.pb2345-moban-show-screenshot-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(22, 93, 255, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pb2345-moban-show-screenshot-item:hover .pb2345-moban-show-screenshot-hover {
    opacity: 1;
}

.pb2345-moban-show-screenshot-caption {
    text-align: center;
    padding: 12px;
    background-color: white;
    color: #4e5969;
    font-size: 15px;
    border-top: 1px solid #f0f2f5;
}

/* 文件结构 */
.pb2345-moban-show-file-tree {
    background-color: #f7f8fa;
    border-radius: 8px;
    padding: 25px;
    overflow-x: auto;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pb2345-moban-show-file-tree pre {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    font-family: Consolas, Monaco, monospace;
}

/* 使用文档 */
.pb2345-moban-show-guide-list {
    margin-bottom: 25px;
}

.pb2345-moban-show-guide-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4e5969;
}

.pb2345-moban-show-guide code {
    background-color: #f0f2f5;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
    color: #f53f3f;
}

/* 常见问题 */
.pb2345-moban-show-faq {
    margin-top: 20px;
}

.pb2345-moban-show-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: 20px;
}

.pb2345-moban-show-faq-item:last-child {
    border-bottom: none;
}

.pb2345-moban-show-faq-question {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d2129;
    font-size: 16px;
}

.pb2345-moban-show-faq-answer {
    color: #4e5969;
    margin: 0;
    line-height: 1.7;
}

/* 用户评价 */
.pb2345-moban-show-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.pb2345-moban-show-review-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f2f5;
}

.pb2345-moban-show-reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pb2345-moban-show-reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 2px solid #f0f2f5;
}

.pb2345-moban-show-reviewer-name {
    font-weight: 600;
    color: #1d2129;
    font-size: 16px;
}

.pb2345-moban-show-review-stars {
    color: #ff7d00;
    margin-bottom: 12px;
    font-size: 18px;
}

.pb2345-moban-show-review-content {
    color: #4e5969;
    margin: 0;
    line-height: 1.7;
}

/* 更新日志 */
.pb2345-moban-show-update-log {
    margin-top: 20px;
}

.pb2345-moban-show-update-item {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #f0f2f5;
}

.pb2345-moban-show-update-item:last-child {
    border-bottom: none;
}

.pb2345-moban-show-update-version {
    font-weight: 600;
    color: #165dff;
    margin-bottom: 10px;
    font-size: 17px;
}

.pb2345-moban-show-update-changes {
    margin-top: 0;
    padding-left: 22px;
}

.pb2345-moban-show-update-changes li {
    margin-bottom: 8px;
    color: #4e5969;
    line-height: 1.6;
}

/* 相关资源 */
.pb2345-moban-show-resources {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.pb2345-moban-show-resource-link {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    background-color: white;
    border-radius: 8px;
    color: #1d2129;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f2f5;
    font-weight: 500;
}

.pb2345-moban-show-resource-link:hover {
    background-color: #f7f8fa;
    transform: translateY(-3px);
    border-color: #e5e6eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pb2345-moban-show-resource-icon {
    margin-right: 12px;
    font-size: 20px;
    color: #165dff;
}

/* 右侧信息栏 */
.pb2345-moban-show-sidebar-right {
    width: 320px;
    padding: 15px 0;
    box-sizing: border-box;
    position: sticky;
    top: 180px;
    align-self: flex-start;
}

/* 价格区域 */
.pb2345-moban-show-pricing {
    background-color: white;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f2f5;
}

.pb2345-moban-show-price {
    font-size: 36px;
    font-weight: 700;
    color: #f53f3f;
    margin: 0 0 12px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pb2345-moban-show-price:before {
    content: "¥";
    font-size: 24px;
    margin-right: 5px;
}

.pb2345-moban-show-price-desc {
    color: #4e5969;
    margin: 0 0 25px 0;
    font-size: 15px;
}

/* 按钮样式 */
.pb2345-moban-show-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pb2345-moban-show-btn {
    display: block;
    padding: 14px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.pb2345-moban-show-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.pb2345-moban-show-btn:hover:after {
    width: 300px;
    height: 300px;
}

.pb2345-moban-show-btn-primary {
    background-color: #165dff;
    color: white;
}

.pb2345-moban-show-btn-primary:hover {
    background-color: #0e42d2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}

.pb2345-moban-show-btn-secondary {
    background-color: #5C8AFF;
    color: white;
}
.pb2345-moban-show-pan-item:nth-child(2) .pb2345-moban-show-btn-secondary {
  background-color: #2D85F0; 
}
.pb2345-moban-show-btn-secondary:hover {
    background-color: #2aa8a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 203, 203, 0.3);
}

.pb2345-moban-show-btn-outline {
    background-color: transparent;
    color: #165dff;
    border: 1px solid #165dff;
}

.pb2345-moban-show-btn-outline:hover {
    background-color: #165dff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.2);
}

/* 提取码样式 */
.pb2345-moban-show-extract-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f7f8fa;
    border-radius: 8px;
    border: 1px solid #e5e6eb;
}

.pb2345-moban-show-extract-code-label {
    color: #4e5969;
    font-size: 15px;
}

.pb2345-moban-show-extract-code-value {
    font-weight: 600;
    color: #165dff;
    font-size: 16px;
    letter-spacing: 2px;
}

.pb2345-moban-show-extract-code-copy {
    padding: 5px 12px;
    background-color: #165dff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.pb2345-moban-show-extract-code-copy:hover {
    background-color: #0e42d2;
}

/* 手机端预览和二维码 */
.pb2345-moban-show-mobile-preview {
    position: relative;
}

.pb2345-moban-show-qrcode {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    width: 200px;
}

.pb2345-moban-show-mobile-preview:hover .pb2345-moban-show-qrcode {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.pb2345-moban-show-qrcode-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.pb2345-moban-show-qrcode-desc {
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: #4e5969;
}

/* 模板信息 */
.pb2345-moban-show-info {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f2f5;
    margin-bottom: 25px;
}

.pb2345-moban-show-info-title {
    font-size: 18px;
    color: #1d2129;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f2f5;
    font-weight: 600;
}

.pb2345-moban-show-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pb2345-moban-show-info-list li {
    padding: 5px 0;
    border-bottom: 1px dashed #f0f2f5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.pb2345-moban-show-info-list li:last-child {
    border-bottom: none;
}

.pb2345-moban-show-info-label {
    flex: 0 0 100px;
    font-weight: 600;
    color: #4e5969;
    font-size: 14px;
}

.pb2345-moban-show-info-value {
    flex: 1;
    color: #1d2129;
    font-size: 15px;
}

/* 标签 */
.pb2345-moban-show-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pb2345-moban-show-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f2f3f5;
    border-radius: 20px;
    font-size: 13px;
    color: #4e5969;
    transition: all 0.2s ease;
}

.pb2345-moban-show-tag:hover {
    background-color: #e5e6eb;
    color: #1d2129;
}

/* 技术支持区域 */
.pb2345-moban-show-support {
    background-color: #f7faff;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e8f3ff;
}

.pb2345-moban-show-support-title {
    font-size: 17px;
    color: #165dff;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.pb2345-moban-show-support-desc {
    color: #4e5969;
    margin: 0 0 15px 0;
    line-height: 1.6;
    font-size: 14px;
}

.pb2345-moban-show-support-link {
    color: #165dff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.pb2345-moban-show-support-link:hover {
    color: #0e42d2;
    transform: translateX(3px);
}

/* 底部推荐模板 */
.pb2345-moban-show-recommendations {
    background-color: #f7f8fa;
    margin-top: 30px;
    border-top: 1px solid #f0f2f5;
}

.pb2345-moban-show-recommendations-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
    box-sizing: border-box;
}

.pb2345-moban-show-recommendations-title {
    color: #1d2129;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 2px solid #165dff;
    display: inline-block;
}

.pb2345-moban-show-recommendations-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.pb2345-moban-show-recommendation-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.pb2345-moban-show-recommendation-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.pb2345-moban-show-recommendation-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.pb2345-moban-show-recommendation-name {
    font-size: 18px;
    color: #1d2129;
    margin: 0;
    padding: 20px 20px 10px;
    font-weight: 600;
}

.pb2345-moban-show-recommendation-price {
    color: #f53f3f;
    font-weight: 600;
    padding: 0 20px 15px;
    font-size: 16px;
}

.pb2345-moban-show-recommendation-link {
    display: inline-block;
    color: #165dff;
    text-decoration: none;
    padding: 0 20px 20px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pb2345-moban-show-recommendation-link:hover {
    color: #0e42d2;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1299px) {
    .pb2345-moban-show-container {
        max-width: 100%;
        padding: 15px;
        gap: 15px;
    }
    
    .pb2345-moban-show-sidebar {
        width: 220px;
    }
    
    .pb2345-moban-show-sidebar-right {
        width: 280px;
    }
}

@media (max-width: 1023px) {
    .pb2345-moban-show-container {
        flex-wrap: wrap;
    }
    
    .pb2345-moban-show-sidebar {
        width: 100%;
        position: static;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .pb2345-moban-show-nav ul {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        padding-right: 10px;
    }
    
    .pb2345-moban-show-nav li {
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .pb2345-moban-show-content {
        width: 60%;
        padding: 0 10px 0 0;
    }
    
    .pb2345-moban-show-sidebar-right {
        width: 40%;
        padding-left: 10px;
    }
    
    .pb2345-moban-show-recommendations-list {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 767px) {
    .pb2345-moban-show-content,
    .pb2345-moban-show-sidebar-right {
        width: 100%;
        padding: 0;
    }
    
    .pb2345-moban-show-sidebar-right {
        margin-top: 30px;
        position: static;
    }
    
    .pb2345-moban-show-screenshots,
    .pb2345-moban-show-reviews,
    .pb2345-moban-show-resources,
    .pb2345-moban-show-recommendations-list {
        grid-template-columns: 1fr;
    }
    
    .pb2345-moban-show-nav-link {
        white-space: nowrap;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .pb2345-moban-show-title {
        font-size: 22px;
    }
    
    .pb2345-moban-show-section {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }

    .pb2345-moban-show-recommendations {
        padding: 40px 0;
        margin-top: 60px;
    }
}

    /* vip通用样式 */
    .pb2345-vip-container {
      max-width: 1400px;
      margin: 30px auto;
    }
    
    .pb2345-vip-title {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #1a1a2e;
      font-weight: 700;
      position: relative;
      padding-bottom: 10px;
      font-size:45px;
    }
    
    .pb2345-vip-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #ffc107, #ff9800);
      border-radius: 2px;
    }
    
    .pb2345-vip-subtitle {
      text-align: center;
      margin-bottom: 3rem;
      color: #666;
      font-weight: 400;
    }
    
    /* 会员特权对比样式 - 一排显示 */
    .pb2345-vip-comparison {
      margin-bottom: 4rem;
      overflow: hidden;
    }
    
    .pb2345-vip-cards-wrapper {
      overflow-x: auto;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
    }
    
    .pb2345-vip-cards {
      display: flex;
      gap: 2rem;
      min-width: max-content;
      padding: 1rem;
    }
    
    .pb2345-vip-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      padding: 2rem;
      width: 310px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    
    .pb2345-vip-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .pb2345-vip-card.popular {
      border: 2px solid #ffc107;
      transform: scale(1.02);
    }
    
    .pb2345-vip-card.popular::before {
      content: '最受欢迎';
      position: absolute;
      top: 20px;
      right: -40px;
      background: #ffc107;
      color: #fff;
      padding: 3px 40px;
      transform: rotate(45deg);
      font-weight: 600;
      font-size: 0.8rem;
    }
    
    .pb2345-vip-card-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    
    .pb2345-vip-card-title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: #1a1a2e;
    }
    
    .pb2345-vip-card-price {
      font-size: 2rem;
      font-weight: 700;
      color: #e63946;
      margin-bottom: 0.5rem;
    }
    
    .pb2345-vip-card-desc {
      color: #666;
      font-size: 0.9rem;
    }
    
    .pb2345-vip-card-features {
      margin: 1.5rem 0;
    }
    
    .pb2345-vip-feature {
      display: flex;
      align-items: center;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }
    
    .pb2345-vip-feature-icon {
      margin-right: 10px;
      font-size: 1.2rem;
    }
    
    .pb2345-vip-feature.included .pb2345-vip-feature-icon {
      color: #4caf50;
    }
    
    .pb2345-vip-feature.not-included .pb2345-vip-feature-icon {
      color: #f44336;
    }
    
    .pb2345-vip-feature.not-included {
      text-decoration: line-through;
      color: #999;
    }
    
    .pb2345-vip-card-button {
      display: block;
      width: 100%;
      padding: 12px;
      text-align: center;
      background: #1a1a2e;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
      margin-top: 1rem;
      text-decoration: none;
    }
    
    .pb2345-vip-card-button:hover {
      background: #2c2c54;
    }
    
    .pb2345-vip-card.popular .pb2345-vip-card-button {
      background: #ffc107;
      color: #1a1a2e;
    }
    
    .pb2345-vip-card.popular .pb2345-vip-card-button:hover {
      background: #e6ac00;
    }
    
    /* 常见问题样式 */
    .pb2345-vip-faq {
      margin-bottom: 4rem;
    }
    
    .pb2345-vip-faq-container {
      width: 100%;
      margin: 0 auto;
    }
    
    .pb2345-vip-faq-item {
      margin-bottom: 1rem;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .pb2345-vip-faq-question {
      background: #fff;
      padding: 1rem 1.5rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }
    
    .pb2345-vip-faq-question:hover {
      background: #f8f9fa;
    }
    
    .pb2345-vip-faq-question::after {
      content: '+';
      font-size: 1.5rem;
      font-weight: 300;
      transition: transform 0.3s ease;
    }
    
    .pb2345-vip-faq-question.active::after {
      transform: rotate(45deg);
    }
    
    .pb2345-vip-faq-answer {
      background: #fff;
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .pb2345-vip-faq-answer.active {
      padding: 1rem 1.5rem 1.5rem;
      max-height: 500px;
    }
    
    /* 跑马灯轮播样式 */
    .pb2345-vip-carousel {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      padding: 2rem;
      margin-bottom: 2rem;
      overflow: hidden;
    }
    
    .pb2345-vip-carousel-track {
      display: flex;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    
    .pb2345-vip-carousel-track:hover {
      animation-play-state: paused;
    }
    
    .pb2345-vip-carousel-item {
      display: flex;
      align-items: center;
      margin: 0 15px;
      flex-shrink: 0;
    }
    
    .pb2345-vip-user-activity {
      display: flex;
      align-items: center;
      background: #f8f9fa;
      padding: 1rem 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      white-space: nowrap;
    }
    
    .pb2345-vip-user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #e9ecef;
      margin-right: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      color: #495057;
    }
    
    /* 跑马灯动画 */
    @keyframes marquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
      .pb2345-vip-title {
        font-size: 1.8rem;
      }
      
      .pb2345-vip-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
      }
      
      .pb2345-vip-card.popular {
        transform: none;
      }
      
      .pb2345-vip-user-activity {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
      }
      
      .pb2345-vip-user-avatar {
        margin-right: 0;
        margin-bottom: 0.5rem;
      }
    }
    
    /* 分页 */
.pb2345_page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0px 40px 0px;
}

.pb2345_page ul {
    display: flex;
    align-items: center;
}

.pb2345_page ul li {
    margin: 0px 3px;
}

.pb2345_page ul a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0px 15px;
    box-sizing: border-box;
    background: #fff;
    font-size: 16px;
    color: #999;
    border-radius: 5px;
    border: 1px solid #eee;
}

.Pb2345_No_page a {
    cursor: not-allowed;
}

.pb2345_page ul li.on a {
    background: #0f5aa9;
    color: #FFF;
}


pre {
    display: block;
    padding: 8px 12px;
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 2;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: pre-wrap;
    width: 100%;
    box-sizing: border-box;
    font-family: Consolas, 'Liberation Mono', monospace;
    min-height: 30px; /* 确保短代码块也有足够高度显示按钮 */
}

/* 代码选中样式 */
pre::selection {
    background-color: #d6eaff;
}

pre::-moz-selection {
    background-color: #d6eaff;
}

/* 代码块容器 - 限制最大宽度 */
.code-block-wrapper {
    position: relative;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

/* 操作按钮容器 */
.code-operation {
    position: absolute;
    right: 5px;
    top: 5px;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

/* 悬停显示按钮 */
.code-block-wrapper:hover .code-operation {
    opacity: 1;
}

/* 按钮样式 */
.code-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #666;
}

.code-btn:hover {
    background: #f0f0f0;
    border-color: #ccc;
    color: #333;
}

/* 提示框样式 */
.code-toast {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.2s ease;
}

.code-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* 商业模板基础样式 */
.pb2345-shop-moban-show-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    box-sizing: border-box;
    gap: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    background-color: #f5f7fa;
}

/* 共用样式 */
.pb2345-shop-moban-show-section {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pb2345-shop-moban-show-section:last-child {
    border-bottom: none;
}
.pb2345-shop-moban-show-section img{
    max-width: 100%;
}
.pb2345-shop-moban-show-title {
    font-size: 36px;
    color: #1a202c;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #2c3e50;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pb2345-shop-moban-show-description {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 20px 0;
    max-width: 900px;
}

/* 价格卡片样式 */
.pb2345-shop-moban-show-price-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    margin: 0 0 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pb2345-shop-moban-show-price-info {
    flex: 1;
    min-width: 300px;
}

.pb2345-shop-moban-show-original-price {
    display: inline-block;
    color: #94a3b8;
    text-decoration: line-through;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.pb2345-shop-moban-show-member-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.pb2345-shop-moban-show-member-price {
    display: flex;
    flex-direction: column;
}

.member-type {
    font-size: 14px;
    color: #64748b;
}

.member-price {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.pb2345-shop-moban-show-price-actions {
    display: flex;
    gap: 15px;
}

.pb2345-shop-moban-show-price-btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pb2345-shop-moban-show-price-btn.buy-now {
    background-color: #2c3e50;
    color: #fff;
}

.pb2345-shop-moban-show-price-btn.download {
    background-color: #f1f5f9;
    color: #2c3e50;
}

.pb2345-shop-moban-show-price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 左侧导航 */
.pb2345-shop-moban-show-sidebar {
    width: 280px;
    position: sticky;
    top: 180px;
    align-self: flex-start;
}

.pb2345-shop-moban-show-nav-title {
    font-size: 20px;
    color: #1a202c;
    margin: 0 0 25px 0;
    padding-left: 20px;
    font-weight: 600;
}

.pb2345-shop-moban-show-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.pb2345-shop-moban-show-nav-link {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-size: 16px;
}

.pb2345-shop-moban-show-nav-link:hover {
    background-color: #f8fafc;
    color: #2c3e50;
}

.pb2345-shop-moban-show-nav-link.active {
    background-color: #f0f4f8;
    color: #2c3e50;
    border-left-color: #2c3e50;
    font-weight: 600;
}

.pb2345-shop-moban-show-nav-icon {
    margin-right: 15px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* 主内容区 */
.pb2345-shop-moban-show-content {
    flex: 1;
    background-color: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* 模板概述 */
.pb2345-shop-moban-show-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.pb2345-shop-moban-show-badge.premium {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.pb2345-shop-moban-show-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 50px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.pb2345-shop-moban-show-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pb2345-shop-moban-show-hero:hover .pb2345-shop-moban-show-hero-img {
    transform: scale(1.03);
}

.pb2345-shop-moban-show-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 60px 40px 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pb2345-shop-moban-show-hero-btn {
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pb2345-shop-moban-show-hero-btn.demo {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pb2345-shop-moban-show-hero-btn.buy-now {
    background-color: #2c3e50;
    color: #fff;
}

.pb2345-shop-moban-show-hero-btn.download {
    background-color: #fff;
    color: #2c3e50;
}

.pb2345-shop-moban-show-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pb2345-shop-moban-show-hero-btn.demo:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.pb2345-shop-moban-show-metrics {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.pb2345-shop-moban-show-metric-item {
    flex: 1;
    min-width: 180px;
    background-color: #f8fafc;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.pb2345-shop-moban-show-metric-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pb2345-shop-moban-show-metric-value {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.pb2345-shop-moban-show-metric-label {
    font-size: 15px;
    color: #64748b;
    letter-spacing: 0.3px;
}

/* 核心功能 */
.pb2345-shop-moban-show-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.pb2345-shop-moban-show-feature-category {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pb2345-shop-moban-show-feature-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pb2345-shop-moban-show-feature-icon {
    font-size: 36px;
    color: #2c3e50;
    margin: 0 0 25px 0;
}

.pb2345-shop-moban-show-feature-title {
    font-size: 20px;
    color: #1e293b;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.pb2345-shop-moban-show-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pb2345-shop-moban-show-feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #475569;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    font-size: 15px;
}

.pb2345-shop-moban-show-feature-list li:last-child {
    border-bottom: none;
}

.pb2345-shop-moban-show-feature-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c3e50;
    font-size: 22px;
    line-height: 1;
}

/* 客户评价 */
.pb2345-shop-moban-show-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.pb2345-shop-moban-show-review-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pb2345-shop-moban-show-review-item:hover {
    transform: translateY(-5px);
}

.pb2345-shop-moban-show-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 20px 0;
}

.pb2345-shop-moban-show-reviewer {
    display: flex;
    align-items: center;
}

.pb2345-shop-moban-show-reviewer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pb2345-shop-moban-show-reviewer-name {
    font-size: 17px;
    color: #1e293b;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.pb2345-shop-moban-show-review-stars {
    color: #f59e0b;
    font-size: 17px;
    letter-spacing: 1px;
}

.pb2345-shop-moban-show-review-date {
    font-size: 14px;
    color: #94a3b8;
    padding-top: 5px;
}

.pb2345-shop-moban-show-review-content {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* 更新记录 */
.pb2345-shop-moban-show-updates {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.pb2345-shop-moban-show-update-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pb2345-shop-moban-show-update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pb2345-shop-moban-show-update-version {
    font-size: 19px;
    color: #1e293b;
    margin: 0;
    font-weight: 600;
}

.pb2345-shop-moban-show-update-date {
    font-size: 15px;
    color: #64748b;
    margin-left: 15px;
    font-weight: normal;
}

.pb2345-shop-moban-show-update-type {
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.pb2345-shop-moban-show-update-type.major {
    background-color: #eef2ff;
    color: #2c3e50;
}

.pb2345-shop-moban-show-update-type.minor {
    background-color: #f0fdf4;
    color: #166534;
}

.pb2345-shop-moban-show-update-changes {
    padding: 30px;
}

.pb2345-shop-moban-show-update-changes h4 {
    font-size: 17px;
    color: #1e293b;
    margin: 0 0 18px 0;
    font-weight: 600;
}

.pb2345-shop-moban-show-update-changes ul {
    margin: 0 0 25px 0;
    padding-left: 25px;
}

.pb2345-shop-moban-show-update-changes li {
    margin: 0 0 10px 0;
    color: #475569;
    font-size: 15px;
}

/* 支持资源 */
.pb2345-shop-moban-show-resources {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.pb2345-shop-moban-show-resource-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pb2345-shop-moban-show-resource-item:hover {
    transform: translateY(-10px);
}

.pb2345-shop-moban-show-resource-icon {
    font-size: 48px;
    color: #2c3e50;
    margin: 0 0 25px 0;
}

.pb2345-shop-moban-show-resource-title {
    font-size: 20px;
    color: #1e293b;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.pb2345-shop-moban-show-resource-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.pb2345-shop-moban-show-resource-link {
    display: inline-block;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    border: 1px solid #2c3e50;
    transition: all 0.3s ease;
    font-size: 15px;
}

.pb2345-shop-moban-show-resource-link:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* CTA区域 */
.pb2345-shop-moban-show-cta-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pb2345-shop-moban-show-cta-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pb2345-shop-moban-show-cta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 40px 0;
}

.pb2345-shop-moban-show-cta-header h3 {
    font-size: 26px;
    margin: 0;
    font-weight: 700;
}

.pb2345-shop-moban-show-cta-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.pb2345-shop-moban-show-cta-info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 0 0 40px 0;
}

.pb2345-shop-moban-show-cta-price {
    flex: 0 0 250px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.pb2345-shop-moban-show-cta-price .pb2345-shop-moban-show-original-price {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.pb2345-shop-moban-show-cta-price-value {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: block;
}

.pb2345-shop-moban-show-cta-price-term {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: block;
}

.pb2345-shop-moban-show-cta-price .pb2345-shop-moban-show-member-prices {
    justify-content: center;
    gap: 25px;
}

.pb2345-shop-moban-show-cta-price .member-type {
    color: rgba(255, 255, 255, 0.7);
}

.pb2345-shop-moban-show-cta-price .member-price {
    color: #fff;
}

.pb2345-shop-moban-show-cta-includes {
    flex: 1;
}

.pb2345-shop-moban-show-cta-includes h4 {
    font-size: 18px;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.pb2345-shop-moban-show-cta-includes ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pb2345-shop-moban-show-cta-includes li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.pb2345-shop-moban-show-cta-includes li:last-child {
    border-bottom: none;
}

.pb2345-shop-moban-show-cta-includes li:before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: #fff;
    font-weight: 700;
}

.pb2345-shop-moban-show-cta-action {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pb2345-shop-moban-show-cta-btn {
    background-color: #fff;
    color: #2c3e50;
    border: none;
    padding: 18px 60px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pb2345-shop-moban-show-cta-btn.buy-now {
    background-color: #fff;
    color: #2c3e50;
}

.pb2345-shop-moban-show-cta-btn.download {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pb2345-shop-moban-show-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pb2345-shop-moban-show-cta-guarantee {
    margin: 15px 0 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .pb2345-shop-moban-show-container {
        max-width: 100%;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .pb2345-shop-moban-show-content {
        padding: 45px;
    }
    
    .pb2345-shop-moban-show-cta-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .pb2345-shop-moban-show-cta-price {
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .pb2345-shop-moban-show-container {
        flex-wrap: wrap;
    }
    
    .pb2345-shop-moban-show-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
    
    .pb2345-shop-moban-show-nav ul {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .pb2345-shop-moban-show-nav li {
        flex: 0 0 auto;
        margin-right: 10px;
    }
    
    .pb2345-shop-moban-show-content {
        width: 100%;
    }
    
    .pb2345-shop-moban-show-reviews {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pb2345-shop-moban-show-content {
        padding: 30px 20px;
    }
    
    .pb2345-shop-moban-show-title {
        font-size: 28px;
    }
    
    .pb2345-shop-moban-show-price-card {
        flex-direction: column;
    }
    
    .pb2345-shop-moban-show-price-actions {
        width: 100%;
        justify-content: center;
    }
    
    .pb2345-shop-moban-show-price-btn {
        flex: 1;
        min-width: 140px;
    }
    
    .pb2345-shop-moban-show-hero-overlay {
        flex-wrap: wrap;
        padding: 30px 20px 20px;
        gap: 15px;
    }
    
    .pb2345-shop-moban-show-hero-btn {
        flex: 1;
        min-width: 140px;
        padding: 12px;
    }
    
    .pb2345-shop-moban-show-metrics {
        flex-direction: column;
    }
    
    .pb2345-shop-moban-show-features {
        grid-template-columns: 1fr;
    }
    
    .pb2345-shop-moban-show-resources {
        grid-template-columns: 1fr;
    }
    
    .pb2345-shop-moban-show-cta-card {
        padding: 30px 20px;
    }
    
    .pb2345-shop-moban-show-cta-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pb2345-shop-moban-show-cta-btn {
        width: 100%;
        padding: 15px;
    }
}