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

:root {
    --primary-color: #4045bc;
    --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: 55px;
    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 50px 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 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.pb2345-nav-menu > li.active{
    background-color: #46474b
}
.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), #555bcb);
}

.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: 25px;
    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: 14px;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.3;
    color:#333;
}

.pb2345-card-desc {
    color: var(--gray-color);
    font-size: 12px;
    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: 200px;
    flex-shrink: 0;
    position: sticky; /* 粘性定位，滚动时固定 */
    top: 10px; /* 距离顶部的距离 */
    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: 10px; /* 距离顶部的距离 */
    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_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;
      margin-top:20px;
  }
  
  .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;
      max-width:120px;
  }
  
  .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: 14px;
      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: #4e54c8;
    }
    
    /* 颜色筛选特殊样式 */
    .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: #4e54c8;
      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: #4e54c8;
      color: #fff;
    }
    
    /* 模板信息区域 */
    .pb2345-mb-list-template-info {
      padding: 15px;
    }
    
    .pb2345-mb-list-template-name {
      font-size: 14px;
      font-weight: 400;
      margin-bottom: 8px;
      color: #333;
      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;
      font-size:14px;
    }
    
    .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: auto;
      }
    }
    
    @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: 140px;
    padding: 20px 0;
    box-sizing: border-box;
    position: fixed;
    top: 205px;
    align-self: flex-start;
    left: 20px;
}

.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: #fff;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.pb2345-moban-show-nav-link:hover {
    background-color: #165dff;
    color: #fff;
    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 25px;
    box-sizing: border-box;
    background:#fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.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-section p{
    line-height: 2.3;
}    
.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: 10px;
    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: #fe696a;
    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: #4045bc;
    color: white;
}
.pb2345-moban-show-pan-item:nth-child(2) .pb2345-moban-show-btn-secondary {
  background-color: #34a853; 
}
.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: 150px;
        z-index: 9999;
    }
    
    .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 15px;
    }
    
    .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: 15px;
    }
    
    .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: #4e54c8;
    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: 10px;
    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;
    }
}


        /* 客服悬浮窗样式 */
        .customer-service {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .service-toggle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
        }
        
        .service-toggle:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
        }
        
        .service-toggle i {
            color: white;
            font-size: 24px;
        }
        
        .top-toggle {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(79, 172, 254, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }
        
        .top-toggle.show {
            opacity: 1;
            visibility: visible;
        }
        
        .top-toggle:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
        }
        
        .top-toggle i {
            color: white;
            font-size: 20px;
        }
        
        .service-panel {
            position: absolute;
            top: 50%;
            right: 80px;
            transform: translateY(-50%);
            width: 320px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            padding: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .service-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(0);
        }
        
        .panel-header {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            padding: 25px;
            border-radius: 20px 20px 0 0;
            text-align: center;
            position: relative;
        }
        
        .panel-header::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #00c6fe;
        }
        
        .panel-header h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .panel-header p {
            font-size: 14px;
            opacity: 0.9;
            margin: 0;
            color: white;
        }
        
        .panel-content {
            padding: 25px;
        }
        
        .contact-methods {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 15px;
            background: #f8fafc;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 2px solid transparent;
            text-align: center;
        }
        
        .contact-item:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border-color: #4facfe;
        }
        
        .contact-item i {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .qq {
            color: #1989fa;
            background: rgba(25, 137, 250, 0.1);
        }
        
        .wechat {
            color: #07c160;
            background: rgba(7, 193, 96, 0.1);
        }
        
        .phone {
            color: #ff4d4f;
            background: rgba(255, 77, 79, 0.1);
        }
        
        .official {
            color: #8762d7;
            background: rgba(135, 98, 215, 0.1);
        }
        
        .contact-item span {
            font-size: 15px;
            color: #2c3e50;
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }
        
        .contact-item small {
            font-size: 12px;
            color: #7f8c8d;
        }
        
        .qrcode-popup {
            position: absolute;
            left: -170px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 1002;
            width: 160px;
            text-align: center;
            animation: popIn 0.3s ease-out;
            border: 1px solid #e1e5e9;
        }
        
        .qrcode-popup::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid white;
        }
        
        .qrcode-popup img {
            width: 100%;
            height: auto;
            margin-bottom: 10px;
            border-radius: 8px;
        }
        
        .qrcode-popup p {
            font-size: 13px;
            margin: 0;
            color: #2c3e50;
            font-weight: 500;
        }
        
        .contact-item.qrcode {
            position: relative;
        }
        
        .contact-item.qrcode:hover .qrcode-popup {
            display: block;
        }
        
        .contact-info {
            font-size: 12px;
            color: #7f8c8d;
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
            line-height: 1.6;
        }
        
        @keyframes popIn {
            from { 
                opacity: 0; 
                transform: translateY(-50%) scale(0.9);
            }
            to { 
                opacity: 1; 
                transform: translateY(-50%) scale(1);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .customer-service {
                right: 15px;
            }
            
            .service-panel {
                width: 280px;
                right: 70px;
            }
            
            .contact-methods {
                grid-template-columns: 1fr;
            }
            
            .qrcode-popup {
                left: -150px;
                width: 140px;
            }
        }
        
        @media (max-width: 480px) {
            .service-panel {
                width: 260px;
            }
            
            .qrcode-popup {
                left: -130px;
                width: 120px;
            }
        }
        
                /* 简单样式优化，使布局更美观 */
        .search-form {
            display: flex;
            width: 100%;
              margin-bottom: 20px;
        }
        .search-input {
            flex: 1; /* 输入框占满剩余宽度 */
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-right: none; /* 取消右侧边框，避免与按钮重叠 */
            border-radius: 4px 0 0 4px; /* 左圆角 */
            outline: none;
        }
        .search-btn {
            padding: 8px 16px;
            border: 1px solid #ddd;
            background-color: #f5f5f5;
            border-radius: 0 4px 4px 0; /* 右圆角 */
            cursor: pointer;
        }
        .search-btn:hover {
            background-color: #eee; /*  hover 效果 */
        }
        
          /* VIP赠品容器样式 */
        .pb2345-vip-zp-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        /* 标题样式 */
        .pb2345-vip-zp-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .pb2345-vip-zp-title h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .pb2345-vip-zp-title p {
            font-size: 16px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .pb2345-vip-zp-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #1e88e5, #ffc107);
            margin: 20px auto 0;
            border-radius: 3px;
        }
        
        /* 图例说明（新增） */
        .pb2345-vip-legend {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 20px;
            padding: 15px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #666;
        }
        
        .legend-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            flex-shrink: 0;
        }
        
        /* 卡片容器 */
        .pb2345-vip-zp-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        
        /* 卡片样式 */
        .pb2345-vip-zp-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #eee;
        }
        
        .pb2345-vip-zp-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.12);
        }
        
        /* 卡片头部 */
        .pb2345-vip-zp-card-header {
            padding: 25px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pb2345-vip-zp-card-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .pb2345-vip-zp-card.monthly .pb2345-vip-zp-card-header::before {
            background: linear-gradient(135deg, #e8f4f8 0%, #d6e9f2 100%);
        }
        
        .pb2345-vip-zp-card.yearly .pb2345-vip-zp-card-header::before {
            background: linear-gradient(135deg, #f0f8fb 0%, #d4e9f0 100%);
        }
        
        .pb2345-vip-zp-card.lifetime .pb2345-vip-zp-card-header::before {
            background: linear-gradient(135deg, #fef7fb 0%, #fce4ec 100%);
        }
        
        .pb2345-vip-zp-card:hover .pb2345-vip-zp-card-header::before {
            transform: scale(1.05);
        }
        
        .pb2345-vip-zp-card-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .pb2345-vip-zp-card.monthly .pb2345-vip-zp-card-badge {
            background-color: #1e88e5;
            box-shadow: 0 3px 10px rgba(30, 136, 229, 0.3);
        }
        
        .pb2345-vip-zp-card.yearly .pb2345-vip-zp-card-badge {
            background-color: #26a69a;
            box-shadow: 0 3px 10px rgba(38, 166, 154, 0.3);
        }
        
        .pb2345-vip-zp-card.lifetime .pb2345-vip-zp-card-badge {
            background-color: #e91e63;
            box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
        }
        
        .pb2345-vip-zp-card-title {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .pb2345-vip-zp-card-desc {
            font-size: 14px;
            color: #666;
        }
        
        /* 卡片内容 */
        .pb2345-vip-zp-card-body {
            padding: 25px 20px;
            max-height: 600px;
            overflow-y: auto;
        }
        
        /* 滚动条美化 */
        .pb2345-vip-zp-card-body::-webkit-scrollbar {
            width: 6px;
        }
        
        .pb2345-vip-zp-card-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .pb2345-vip-zp-card-body::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }
        
        .pb2345-vip-zp-card-body::-webkit-scrollbar-thumb:hover {
            background: #bbb;
        }
        
        .pb2345-vip-zp-gift-list {
            list-style: none;
        }
        
        .pb2345-vip-zp-gift-item {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
            font-size: 14px;
            position: relative;
        }
        
        .pb2345-vip-zp-gift-item:last-child {
            border-bottom: none;
        }
        
        .pb2345-vip-zp-gift-item:hover {
            background-color: #fafafa;
            padding-left: 8px;
        }
        
        /* 包含项样式 */
        .gift-include {
            color: #2d3748;
            font-weight: 500;
        }
        
        /* 未包含项样式（重点优化） */
        .gift-exclude {
            color: #9fa5b5; /* 浅灰色弱化 */
            position: relative;
            padding-right: 50px; /* 给标签留空间 */
        }
        
        /* 未包含项右上角标签 */
        .exclude-tag {
            position: absolute;
            right: 0;
            top: 2px;
            padding: 2px 8px;
            background-color: #fef2f2;
            color: #dc2626;
            font-size: 11px;
            border-radius: 12px;
            font-weight: 600;
        }
        
        /* 高亮项样式 */
        .pb2345-vip-zp-gift-item.highlight {
            background-color: #f5fafe; /* 淡蓝色背景突出 */
            border-left: 3px solid #1e88e5; /* 左侧彩色边框 */
            padding-left: 15px;
            margin-left: -20px;
            margin-right: -20px;
            padding-right: 20px;
        }
        
        .pb2345-vip-zp-gift-item.highlight.gift-include {
            color: #1e88e5; /* 高亮项文字变色 */
        }
        
        .pb2345-vip-zp-gift-icon {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        /* 图标差异化 */
        .check-icon {
            color: #4ade80; /* 亮绿色对勾 */
            stroke-width: 1.5;
        }
        
        .lock-icon {
            color: #cbd5e1; /* 灰色锁形图标 */
        }
        
        .pb2345-vip-zp-gift-text {
            flex: 1;
            line-height: 1.6;
        }
        
        /* 热门标签 */
        .pb2345-vip-zp-hot {
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #ff9800;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 35px;
            transform: rotate(45deg);
            box-shadow: 0 2px 5px rgba(255, 152, 0, 0.3);
            z-index: 1;
        }
        
        /* 查看链接样式 */
        .pb2345-vip-zp-gift-link {
            color: #1e88e5;
            text-decoration: none;
            margin-left: 5px;
            font-size: 13px;
        }
        
        .pb2345-vip-zp-gift-link:hover {
            color: #1565c0;
            text-decoration: underline;
        }
        
        /* 底部按钮 */
        .pb2345-vip-zp-card-footer {
            padding: 0 20px 25px;
            text-align: center;
        }
        
        .pb2345-vip-zp-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #1e88e5;
            color: #fff;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(30, 136, 229, 0.2);
        }
        
        .pb2345-vip-zp-card.yearly .pb2345-vip-zp-btn {
            background-color: #26a69a;
            box-shadow: 0 4px 10px rgba(38, 166, 154, 0.2);
        }
        
        .pb2345-vip-zp-card.lifetime .pb2345-vip-zp-btn {
            background-color: #e91e63;
            box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
        }
        
        /* 响应式调整 */
        @media (max-width: 1200px) {
            .pb2345-vip-zp-cards {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .pb2345-vip-zp-title h2 {
                font-size: 24px;
            }
            
            .pb2345-vip-legend {
                gap: 15px;
                padding: 10px;
            }
            
            .pb2345-vip-zp-cards {
                gap: 20px;
            }
            
            .pb2345-vip-zp-card-header {
                padding: 20px 15px;
            }
            
            .pb2345-vip-zp-card-body {
                padding: 20px 15px;
                max-height: 450px;
            }
            
            .pb2345-vip-zp-gift-item {
                padding: 10px 0;
                font-size: 13px;
            }
            
            .exclude-tag {
                font-size: 10px;
                padding: 1px 6px;
            }
            
            .pb2345-vip-zp-btn {
                padding: 10px 25px;
                font-size: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .pb2345-vip-zp-container {
                padding: 20px 15px;
            }
            
            .pb2345-vip-zp-title {
                margin-bottom: 30px;
            }
            
            .pb2345-vip-zp-title h2 {
                font-size: 22px;
            }
            
            .pb2345-vip-zp-title p {
                font-size: 14px;
            }
            
            .pb2345-vip-zp-card-title {
                font-size: 20px;
            }
            
            .pb2345-vip-zp-card-body {
                max-height: 400px;
            }
            
            .gift-exclude {
                padding-right: 40px;
            }
        }

        .pb2345_xr_zhanshi_container {
            width: 95%;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        .pb2345_xr_zhanshi_header {
            padding: 60px 0 40px;
            text-align: center;
            background: linear-gradient(135deg, #0f1b33 0%, #1a365d 100%);
            color: white;
            margin-bottom: 50px;
            border-radius:16px;
            box-shadow: 0 4px 20px rgba(15, 27, 51, 0.15);
        }
        
        .pb2345_xr_zhanshi_h1 {
            font-size: 3.2rem;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, #fff, #a3bffa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .pb2345_xr_zhanshi_subtitle {
            font-size: 1.3rem;
            opacity: 0.85;
            max-width: 700px;
            margin: 0 auto 30px;
            font-weight: 300;
            line-height: 1.7;
        }
        
        /* 搜索区域样式 */
        .pb2345_xr_zhanshi_search_section {
            background: white;
            padding: 35px 40px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 50px;
            border: 1px solid #e8edf5;
        }
        
        .pb2345_xr_zhanshi_search_box {
            display: flex;
            max-width: 700px;
            margin: 0 auto 40px;
            position: relative;
        }
        
        .pb2345_xr_zhanshi_search_box input {
            flex: 1;
            padding: 18px 25px;
            border: 1px solid #d5dce8;
            border-radius: 12px;
            font-size: 1.05rem;
            transition: all 0.3s;
            background: #f8fafc;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        }
        
        .pb2345_xr_zhanshi_search_box input:focus {
            outline: none;
            border-color: #4c7bf3;
            background: white;
            box-shadow: 0 4px 12px rgba(76, 123, 243, 0.15);
        }
        
        .pb2345_xr_zhanshi_search_box  button {
            background: #4c7bf3;
            color: white;
            border: none;
            padding: 0 32px;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            margin-left: 12px;
            box-shadow: 0 4px 12px rgba(76, 123, 243, 0.3);
        }
        
        .pb2345_xr_zhanshi_search_box button:hover {
            background: #3a6ae0;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(76, 123, 243, 0.4);
        }
        
        /* 筛选器样式 - 桌面端 */
        .pb2345_xr_zhanshi_filters_vertical {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .pb2345_xr_zhanshi_filter_group {
            width: 100%;
        }
        
        .pb2345_xr_zhanshi_filter_header {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
        }
        
        .pb2345_xr_zhanshi_filter_header h3 {
            font-size: 1.15rem;
            color: #2d3748;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .pb2345_xr_zhanshi_filter_header h3:before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 20px;
            background: linear-gradient(to bottom, #4c7bf3, #2b59c3);
            margin-right: 12px;
            border-radius: 3px;
        }
        
        .pb2345_xr_zhanshi_filter_options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .pb2345_xr_zhanshi_filter_options a {
            display: inline-block;
            padding: 12px 22px;
            background: #f7f9fc;
            border-radius: 8px;
            text-decoration: none;
            color: #4a5568;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
            font-weight: 500;
        }
        
        .pb2345_xr_zhanshi_filter_options a:hover {
            background: #edf2f7;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        
        .pb2345_xr_zhanshi_filter_options a.active {
            background: #4c7bf3;
            color: white;
            border-color: #4c7bf3;
            box-shadow: 0 4px 12px rgba(76, 123, 243, 0.3);
        }
        
        /* 移动端筛选器样式 - 下拉选择式 */
        .pb2345_xr_zhanshi_mobile_filters {
            display: none;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .pb2345_xr_zhanshi_mobile_filter_group {
            margin-bottom: 20px;
        }
        
        .pb2345_xr_zhanshi_mobile_filter_label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2d3748;
        }
        
        .pb2345_xr_zhanshi_mobile_filter_select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            background: white;
            font-size: 1rem;
            color: #4a5568;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
            cursor: pointer;
        }
        
        .pb2345_xr_zhanshi_mobile_filter_select:focus {
            outline: none;
            border-color: #4c7bf3;
            box-shadow: 0 0 0 3px rgba(76, 123, 243, 0.1);
        }
        
        /* 模板网格样式 */
        .pb2345_xr_zhanshi_templates_grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
            margin-bottom: 70px;
        }
        
        .pb2345_xr_zhanshi_template_card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s;
            border: 1px solid #f0f4f9;
            position: relative;
        }
        
        .pb2345_xr_zhanshi_template_card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .pb2345_xr_zhanshi_template_image {
            position: relative;
            height: auto;
            overflow: hidden;
        }
        
        .pb2345_xr_zhanshi_template_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
            cursor: pointer;
        }
        
        .pb2345_xr_zhanshi_template_card:hover .pb2345_xr_zhanshi_template_image img {
            transform: scale(1.05);
        }
        
        .pb2345_xr_zhanshi_demo_link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(76, 123, 243, 0.9) 0%, rgba(43, 89, 195, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .pb2345_xr_zhanshi_template_card:hover .pb2345_xr_zhanshi_demo_link {
            opacity: 1;
        }
        
        .pb2345_xr_zhanshi_demo_link a {
            color: white;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.15);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s;
            backdrop-filter: blur(5px);
        }
        
        .pb2345_xr_zhanshi_demo_link a:hover {
            background: white;
            color: #4c7bf3;
            transform: scale(1.05);
        }
        
        .pb2345_xr_zhanshi_template_info {
            padding: 24px;
        }
        
        .pb2345_xr_zhanshi_template_title {
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 600;
            color: #2d3748;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .pb2345_xr_zhanshi_template_title:hover {
            color: #4c7bf3;
        }
        
        .pb2345_xr_zhanshi_template_title a {
            text-decoration: none;
            color: inherit;
        }
        
        .pb2345_xr_zhanshi_template_tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }
        
        .pb2345_xr_zhanshi_template_tag {
            font-size: 0.8rem;
            padding: 6px 12px;
            border-radius: 20px;
            background: #f1f5fd;
            color: #4c7bf3;
            font-weight: 500;
        }
        
        .pb2345_xr_zhanshi_template_description {
            color: #718096;
            font-size: 0.85rem;
            line-height: 1.6;
        }
        

        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .pb2345_xr_zhanshi_templates_grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                gap: 30px;
            }
        }
        
        @media (max-width: 992px) {
            .pb2345_xr_zhanshi_h1 {
                font-size: 2.8rem;
            }
            
            .pb2345_xr_zhanshi_templates_grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .pb2345_xr_zhanshi_h1 {
                font-size: 2.4rem;
            }
            
            .pb2345_xr_zhanshi_subtitle {
                font-size: 1.15rem;
            }
            
            .pb2345_xr_zhanshi_search_box {
                flex-direction: column;
            }
            
            .pb2345_xr_zhanshi_search_box input {
                border-radius: 10px;
                margin-bottom: 15px;
            }
            
            .pb2345_xr_zhanshi_search_box button {
                border-radius: 10px;
                padding: 16px;
                margin-left: 0;
            }
            
            /* 移动端显示下拉选择式筛选器，隐藏桌面版筛选器 */
            .pb2345_xr_zhanshi_filters_vertical {
                display: none;
            }
            
            .pb2345_xr_zhanshi_mobile_filters {
                display: flex;
            }
            
            /* 移动端：一排两个模板 */
            .pb2345_xr_zhanshi_templates_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .pb2345_xr_zhanshi_template_info {
                padding: 18px;
            }
            
            .pb2345_xr_zhanshi_template_title {
                font-size: 1.15rem;
            }
            
            .pb2345_xr_zhanshi_template_description {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .pb2345_xr_zhanshi_container {
                padding: 0 15px;
            }
            
            .pb2345_xr_zhanshi_header {
                padding: 40px 0 30px;
                margin-bottom: 40px;
            }
            
            .pb2345_xr_zhanshi_h1 {
                font-size: 2rem;
            }
            
            .pb2345_xr_zhanshi_subtitle {
                font-size: 1rem;
            }
            
            .pb2345_xr_zhanshi_search_section {
                padding: 25px;
            }
            
            .pb2345_xr_zhanshi_pagination {
                flex-wrap: wrap;
            }
            
            /* 小屏幕移动端：保持一排两个但调整间距 */
            .pb2345_xr_zhanshi_templates_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .pb2345_xr_zhanshi_template_image {
                height: 180px;
            }
            
            .pb2345_xr_zhanshi_template_info {
                padding: 15px;
            }
            
            .pb2345_xr_zhanshi_template_title {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }
            
            .pb2345_xr_zhanshi_template_tags {
                margin-bottom: 12px;
            }
            
            .pb2345_xr_zhanshi_template_tag {
                font-size: 0.75rem;
                padding: 4px 10px;
            }
            
            .pb2345_xr_zhanshi_template_description {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 400px) {
            /* 超小屏幕：调整为一排两个但更紧凑 */
            .pb2345_xr_zhanshi_templates_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .pb2345_xr_zhanshi_template_image {
                height: 160px;
            }
            
            .pb2345_xr_zhanshi_template_info {
                padding: 12px;
            }
            
            .pb2345_xr_zhanshi_template_title {
                font-size: 1rem;
            }
            
            .pb2345_xr_zhanshi_template_tags {
                gap: 6px;
            }
            
            .pb2345_xr_zhanshi_template_tag {
                font-size: 0.7rem;
                padding: 3px 8px;
            }
            
            .pb2345_xr_zhanshi_template_description {
                font-size: 0.8rem;
            }
        }

    /* 详情页容器 - 左右布局核心容器 */
    .pb2345-plugin-show {
      max-width: 1400px;
      margin: 0 auto;
      padding: 32px 20px;
      width: 100%;
      color: #343a40;
      line-height: 1.7;
      display: grid;
      grid-template-columns: 1fr 320px; /* 主内容区宽，右侧功能区固定宽 */
      gap: 32px;
      /* 关键：父容器必须有高度参考，sticky才生效 */
      min-height: calc(100vh - 64px);
    }

    /* 左侧主内容区（插件介绍+版本历史） */
    .pb2345-plugin-show-main {
      width: 100%;
    }

    /* 内容区 - 细腻容器 */
    .pb2345-plugin-show-content {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #f5f5f5;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
      margin-bottom: 32px;
    }

    /* 选项卡导航 - 细腻交互 */
    .pb2345-plugin-show-tabs {
      display: flex;
      border-bottom: 1px solid #f5f5f5;
      background: #fafafa;
      padding-left: 12px;
    }

    .pb2345-plugin-show-tab {
      padding: 16px 32px;
      font-size: 15px;
      font-weight: 500;
      color: #6c757d;
      cursor: pointer;
      transition: all 0.25s ease;
      border-bottom: 3px solid transparent;
      position: relative;
      letter-spacing: 0.02em;
    }

    .pb2345-plugin-show-tab::after {
      content: "";
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 0;
      height: 1px;
      background: #36b37e;
      transition: width 0.3s ease;
    }

    .pb2345-plugin-show-tab:hover::after {
      width: 100%;
    }

    .pb2345-plugin-show-tab.active {
      color: #36b37e;
      border-bottom-color: #36b37e;
      background: #ffffff;
      box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
    }

    .pb2345-plugin-show-tab:hover:not(.active) {
      color: #495057;
      background: #f8f9fa;
    }

    /* 选项卡内容区 - 细腻留白 + 图片容器限制 */
    .pb2345-plugin-show-tab-content {
      padding: 36px;
      display: none;
      animation: fadeIn 0.4s ease;
    }

    /* 图片容器：防止图片溢出，同时保持美观 */
    .pb2345-plugin-img-container {
      margin: 24px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
.pb2345-plugin-img-container img {
    max-width: 100%;
}
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .pb2345-plugin-show-tab-content.active {
      display: block;
    }

    /* 描述文本 - 细腻排版 */
    .pb2345-plugin-show-desc {
      font-size: 15px;
      color: #495057;
      line-height: 1.8;
      margin-bottom: 24px;
      text-align: left;
      letter-spacing: 0.01em;
      text-indent: 2em;
    }

    .pb2345-plugin-show-desc:first-of-type {
      text-indent: 0;
    }

    /* 版本历史 - 细腻列表 */
    .pb2345-plugin-show-version-list {
      border-radius: 10px;
      overflow: hidden;
    }

    .pb2345-plugin-show-version-item {
      padding: 24px;
      border-bottom: 1px solid #f5f5f5;
      transition: all 0.2s ease;
      position: relative;
      padding-left: 24px;
    }

    .pb2345-plugin-show-version-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 28px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #36b37e;
      border: 2px solid #f0fdf4;
    }

    .pb2345-plugin-show-version-item:last-child {
      border-bottom: none;
    }

    .pb2345-plugin-show-version-item:hover {
      background: #fafafa;
      padding-left: 30px;
    }

    .pb2345-plugin-show-version-item:hover::before {
      transform: scale(1.3);
    }

    .pb2345-plugin-show-version-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .pb2345-plugin-show-version-name {
      font-size: 17px;
      font-weight: 600;
      color: #212529;
      letter-spacing: 0.01em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pb2345-plugin-show-version-name::after {
      content: "最新版本";
      font-size: 11px;
      font-weight: 400;
      color: #36b37e;
      background: #f0fdf4;
      padding: 2px 8px;
      border-radius: 12px;
      border: 1px solid #d1fae5;
      display: none;
    }

    .pb2345-plugin-show-version-item:first-child .pb2345-plugin-show-version-name::after {
      display: inline-block;
    }

    .pb2345-plugin-show-version-date {
      font-size: 13px;
      color: #9ca3af;
      letter-spacing: 0.01em;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .pb2345-plugin-show-version-date::before {
      content: "📅";
      font-size: 14px;
    }

    .pb2345-plugin-show-version-changes {
      font-size: 14px;
      color: #495057;
      line-height: 1.8;
      letter-spacing: 0.01em;
    }

    .pb2345-plugin-show-version-changes ul {
      padding-left: 28px;
    }

    .pb2345-plugin-show-version-changes li {
      margin-bottom: 8px;
      position: relative;
      padding-left: 8px;
    }

    .pb2345-plugin-show-version-changes li::before {
      content: "";
      position: absolute;
      left: -20px;
      top: 8px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #36b37e;
      transition: all 0.2s ease;
    }

    .pb2345-plugin-show-version-changes li:hover::before {
      transform: scale(1.5);
      background: #2f9e6d;
    }

    .pb2345-plugin-show-version-changes li:last-child {
      margin-bottom: 0;
    }

    /* 右侧功能区（置顶）- 关键修复：确保sticky生效 */
    .pb2345-plugin-show-sidebar {
      position: sticky;
      top: 30px;
      height: fit-content;
      display: flex;
      flex-direction: column;
      gap: 24px;
      /* 修复：添加z-index确保置顶时不被遮挡 */
      z-index: 10;
      /* 修复：限制最大高度，避免内容过多时超出视口 */
      max-height: calc(100vh - 64px);
      overflow-y: auto;
      /* 自定义滚动条（可选，提升体验） */
      scrollbar-width: thin;
      scrollbar-color: #36b37e #f5f5f5;
    }

    /* 右侧滚动条样式（Chrome/Safari） */
    .pb2345-plugin-show-sidebar::-webkit-scrollbar {
      width: 6px;
    }
    .pb2345-plugin-show-sidebar::-webkit-scrollbar-track {
      background: #f5f5f5;
      border-radius: 3px;
    }
    .pb2345-plugin-show-sidebar::-webkit-scrollbar-thumb {
      background: #36b37e;
      border-radius: 3px;
    }

    /* 插件信息卡片 */
    .pb2345-plugin-info-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #f5f5f5;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    /* 插件图标 - 细腻质感 */
    .pb2345-plugin-show-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      background: linear-gradient(145deg, #f8f9fa, #e9ecef);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .pb2345-plugin-show-icon:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .pb2345-plugin-show-icon img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    }

    /* 插件标题 */
    .pb2345-plugin-show-sidebar-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 16px;
      color: #212529;
      line-height: 1.3;
      text-align: center;
      letter-spacing: -0.02em;
    }

    /* 侧边栏标签 */
    .pb2345-plugin-show-sidebar-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
      justify-content: center;
    }

    .pb2345-plugin-show-sidebar-tag {
      padding: 4px 12px;
      background: #f8f9fa;
      color: #6c757d;
      border-radius: 24px;
      font-size: 12px;
      border: 1px solid #e9ecef;
      transition: all 0.2s ease;
    }

    .pb2345-plugin-show-sidebar-tag:hover {
      background: #f0fdf4;
      color: #36b37e;
      border-color: #d1fae5;
      transform: translateY(-1px);
    }

    /* 价格标签 */
    .pb2345-plugin-show-sidebar-price {
      text-align: center;
      margin-bottom: 16px;
    }

    .pb2345-plugin-show-sidebar-price-value {
      font-size: 32px;
      font-weight: 600;
      color: #36b37e;
      letter-spacing: -0.02em;
      display: inline-block;
      position: relative;
    }

    .pb2345-plugin-show-sidebar-price-value::after {
      content: "热销";
      position: absolute;
      top: -4px;
      right: -45px;
      font-size: 12px;
      font-weight: 400;
      color: #6c757d;
      background: #f0fdf4;
      padding: 2px 8px;
      border-radius: 12px;
      border: 1px solid #d1fae5;
    }

    /* 侧边栏操作按钮 */
    .pb2345-plugin-show-sidebar-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    .pb2345-plugin-show-sidebar-btn {
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      letter-spacing: 0.02em;
      width: 100%;
    }

    .pb2345-plugin-show-sidebar-btn-buy {
      background: linear-gradient(145deg, #36b37e, #2f9e6d);
      color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

    .pb2345-plugin-show-sidebar-btn-buy::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .pb2345-plugin-show-sidebar-btn-buy:hover::before {
      left: 100%;
    }

    .pb2345-plugin-show-sidebar-btn-buy:hover {
      background: linear-gradient(145deg, #2f9e6d, #298c5f);
      box-shadow: 0 4px 8px rgba(54, 179, 126, 0.2);
      transform: translateY(-2px);
    }

    .pb2345-plugin-show-sidebar-btn-buy:active {
      transform: translateY(0);
      box-shadow: 0 2px 4px rgba(54, 179, 126, 0.15);
    }

    .pb2345-plugin-show-sidebar-btn-demo {
      background: #ffffff;
      color: #36b37e;
      border: 1px solid #d1fae5;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    }

    .pb2345-plugin-show-sidebar-btn-demo:hover {
      background: #f0fdf4;
      border-color: #36b37e;
      box-shadow: 0 4px 8px rgba(54, 179, 126, 0.1);
      transform: translateY(-2px);
    }

    .pb2345-plugin-show-sidebar-btn-demo:active {
      transform: translateY(0);
      box-shadow: 0 2px 4px rgba(54, 179, 126, 0.08);
    }

    /* 侧边栏元数据 */
    .pb2345-plugin-show-sidebar-meta {
      background: #fafafa;
      border-radius: 10px;
      border: 1px solid #f5f5f5;
      padding: 20px;
      margin-bottom: 16px;
    }

    .pb2345-plugin-show-sidebar-meta-item {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 13px;
    }

    .pb2345-plugin-show-sidebar-meta-item:last-child {
      border-bottom: none;
    }

    .pb2345-plugin-show-sidebar-meta-key {
      color: #6c757d;
      font-weight: 500;
    }

    .pb2345-plugin-show-sidebar-meta-value {
      color: #495057;
    }

    /* 推荐插件模块 - 新增2个插件，丰富内容 */
    .pb2345-plugin-recommend {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #f5f5f5;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .pb2345-plugin-recommend-title {
      font-size: 18px;
      font-weight: 600;
      color: #212529;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0.01em;
    }

    .pb2345-plugin-recommend-title::before {
      content: "🔥";
      font-size: 16px;
    }

    .pb2345-plugin-recommend-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .pb2345-plugin-recommend-item {
      display: flex;
      gap: 16px;
      padding: 16px;
      border-radius: 8px;
      background: #fafafa;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 1px solid transparent;
    }

    .pb2345-plugin-recommend-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      background: #f0fdf4;
      border-color: #d1fae5;
    }

    .pb2345-plugin-recommend-icon {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      background: linear-gradient(145deg, #f8f9fa, #e9ecef);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .pb2345-plugin-recommend-icon img {
      width: 32px;
      height: 32px;
      object-fit: contain;
    }

    .pb2345-plugin-recommend-info {
      flex: 1;
    }

    .pb2345-plugin-recommend-name {
      font-size: 15px;
      font-weight: 500;
      color: #212529;
      margin-bottom: 4px;
      letter-spacing: 0.01em;
    }

    .pb2345-plugin-recommend-desc {
      font-size: 13px;
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .pb2345-plugin-recommend-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .pb2345-plugin-recommend-tag {
      padding: 2px 8px;
      background: #ffffff;
      color: #6c757d;
      border-radius: 12px;
      font-size: 11px;
      border: 1px solid #e9ecef;
    }

    /* 响应式调整 */
    @media (max-width: 992px) {
      .pb2345-plugin-show {
        grid-template-columns: 1fr;
        padding: 28px 16px;
        gap: 24px;
        min-height: auto;
      }

      .pb2345-plugin-show-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        max-height: none;
        overflow-y: visible;
      }
    }

    @media (max-width: 768px) {
      .pb2345-plugin-show {
        padding: 24px 12px;
      }

      .pb2345-plugin-show-tab {
        padding: 14px 20px;
        font-size: 14px;
      }

      .pb2345-plugin-show-tab-content {
        padding: 28px 16px;
      }

      .pb2345-plugin-show-desc {
        font-size: 14px;
        text-indent: 1.5em;
      }

      .pb2345-plugin-show-version-item {
        padding: 20px 16px;
        padding-left: 20px;
      }
    }

    @media (max-width: 480px) {
      .pb2345-plugin-show-icon {
        width: 72px;
        height: 72px;
      }

      .pb2345-plugin-show-icon img {
        width: 50px;
        height: 50px;
      }

      .pb2345-plugin-show-sidebar-title {
        font-size: 22px;
      }

      .pb2345-plugin-show-tab-content {
        padding: 24px 12px;
      }

      .pb2345-plugin-recommend-item {
        padding: 12px;
      }

      .pb2345-plugin-recommend-icon {
        width: 40px;
        height: 40px;
      }

      .pb2345-plugin-recommend-icon img {
        width: 28px;
        height: 28px;
      }
    }
    
    
    /* 收藏模块核心样式 */
.favorite {
    display: flex;
    justify-content: space-between; /* 左右分布 */
    align-items: center; /* 垂直居中对齐 */
    gap: 15px; /* 两个a标签之间的间距 */
    padding: 8px 0; /* 上下内边距，增加点击区域 */
}

/* 第一个a标签（功能不足提示）样式 */
.favorite > a:first-child {
    color: #999; /* 浅灰色文字 */
    font-size: 12px; /* 小号字体 */
    text-decoration: none; /* 去掉下划线 */
    white-space: nowrap; /* 防止文字换行 */
}

.favorite > a:first-child:hover {
    color: #666; /* 鼠标悬浮变深 */
    text-decoration: underline; /* 悬浮显示下划线 */
}

/* 第二个a标签（收藏按钮）样式 */
.favorite > a:last-child {
    color: #ff4400; /* 收藏主题色（橙红色） */
    font-size: 14px;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 4px;
    transition: all 0.2s; /* 过渡动画 */
    white-space: nowrap;
}

/* 收藏按钮悬浮效果 */
.favorite > a:last-child:hover {
    background-color: #f8f8f8; /* 浅灰色背景 */
    color: #ff3300;
}

/* 已收藏/收藏图标样式统一 */
.favorite > a:last-child i {
    margin-right: 4px; /* 图标和文字间距 */
}