/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px;
}

.mz168user-badge {
    display: inline-block;
    background-color: #ff9e7d;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-right: 5px;
}


.mz168aaa{
    color: #333;
    text-decoration: none;
}

.mz168h2 {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: bold;
}
.mz168h2 a {
    color: #333;
    text-decoration: none;
}
.mz168h2 a:hover {
    color: orangered;
    text-decoration: none;
}

.mz168des {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: bold;
}

.mz168desad_ad-banner {
    height: 100px;
    background-color: #f5f5f5; /* Placeholder color */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mz168desad_ad-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*border-radius: 12px;*/
}

.mz168inssp {
    width: 500px;
}

.mz168video-container {
    text-align: center;
}

@media (max-width: 768px) {
    .mz168inssp {
        width: 100%;
    }
}

/* Desktop layout (two columns) */
@media (min-width: 768px) {
    .mz168desad_container {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .mz168desad_content-col {
        flex: 1;
    }

    .mz168desad_ad-col {
        width: 1042px;
        flex-shrink: 0;
    }


    .mz168desad_ad-banner img {
        width: 1042px;
        height: 100px;
    }
}



/* Mobile layout (stacked) */
@media (max-width: 767px) {
    .mz168desad_container {
        display: block;
        margin-bottom: 20px;
    }

    .mz168h2 {
        text-align: center;
    }

    .mz168des {
        text-align: center;
    }

    .mz168desad_ad-banner img {
        width: 100%;
        /*height: 100px;*/
        margin-top: 20px;
        margin-bottom: 20px;
        /*border-radius: 12px;*/
    }
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部第一行 */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
}

.search-box {
    flex: 0.6;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 16px;
}

.search-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 16px;
}

/* 关键字高亮样式 */
.highlight {
    color: red;
    font-weight: bold;
    background-color: #fff0f0;
    padding: 0 2px;
}

/* 弹出提示样式 */
.alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background-color: #ff4757;
    color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.alert.show {
    opacity: 1;
}

.user-actions {
    display: flex;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn-login {
    background-color: #880ad8;
    color: white;
    border: none;
    margin-left: 15px;
}

.btn-register {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #666;
    margin-left: 10px;
}

.mobile-icon {
    margin-right:20px;
    position: relative;
    cursor: pointer;
}

.mobile-icon i {
    font-size: 24px;
    color: #666;
}

.qrcode-popup {
    position: absolute;
    right: 0;
    top: 35px;
    width: 160px;
    padding: 15px;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    border-radius: 6px;
    display: none;
    z-index: 100;
}

.mobile-icon:hover .qrcode-popup {
    display: block;
}

.qrcode-popup img {
    width: 100%;
}

.qrcode-popup p {
    text-align: center;
    font-size: 14px;
    margin-top: 8px;
    color: #666;
}

/* 导航栏 - 全屏背景 */
.navbar-container {
    background-color: #e74c3c;
    width: 100%;
}

.navbar-container-car {
    background-color: #018b22;
    width: 100%;
}

.navbar {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-item > a {
    display: block;
    padding: 18px 25px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.nav-item:hover > a {
    background-color: #c0392b;
}

.navactive {
    background-color: #c0392b;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: none;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #e74c3c;
    padding-left: 25px;
}


.news-title {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #e74c3c;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #999;
    margin-top: auto;
}

.news-meta .time {
    margin-right: auto;
}

.news-meta .time a{
    color: #999;
    text-decoration: none;
}

.news-meta i {
    margin-right: 5px;
}

.news-meta .price {
    margin-right: auto;
    font-size: 14px;
    color: #ff6a5b;
}

.news-meta .vipprice {
    font-size: 14px;
    color: #e74c3c;
}

.news-meta .tovip a{
    font-size: 14px;
    font-weight: bold;
    color: red;
    text-decoration: none;
}


/* 热点新闻 - 桌面端样式 */
.hot-news {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.hot-news-item {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.hot-news-img {
    height: 180px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 6px;
}

.hot-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hot-news-img:hover img {
    transform: scale(1.05);
}

.hot-news-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.hot-news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.hot-news-title a:hover {
    color: #e74c3c;
}

.hot-news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #999;
}

.hot-news-meta .author-time {
    display: flex;
    flex-wrap: wrap;
}

.hot-news-meta .author-time span {
    margin-right: 10px;
}

/* 友情链接 */
.friend-links {

    padding: 20px 0px;
    border-radius: 6px;
}

.friend-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
}

.links-container a {
    margin-right: 20px;
    margin-bottom: 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.links-container a:hover {
    color: #e74c3c;
}

/* 页脚 */
.footer {
    background-color: #d1d1d1;
    color: #36332f;
    padding: 40px 0;
    text-align: center;
    font-size: 16px;
}

.footer p {
    margin-bottom: 10px;
}

.footer a{
    color: #36332f;
    text-decoration: none;
}


/* 移动端适配 */
@media (max-width: 992px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .header-top {
        flex-direction: column;
        align-items: stretch;
        padding: 15px 0;
    }

    .logo {
        margin-bottom: 15px;
        text-align: center;
        font-size: 22px;
        font-weight: bold;
    }

    .search-box {
        flex: 1;
        margin-bottom: 15px;
    }

    .search-box input {
        font-size: 14px;
        padding: 8px 15px;
    }

    .user-actions {
        justify-content: center;
        margin-top: 15px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .mobile-icon i {
        display:none;
    }

    /* 导航栏横向滚动 */
    .navbar-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .navbar {
        display: inline-flex;
        flex-wrap: nowrap;
        padding: 0 10px;
        white-space: nowrap;
    }

    .navbar::-webkit-scrollbar {
        height: 3px;
    }

    .navbar::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 2px;
    }

    .nav-item > a {
        padding: 12px 15px;
        font-size: 15px;
        font-weight: bold;
    }

    .dropdown-menu {
        position: fixed;
        width: 100%;
        left: 0;
        top: auto;
        z-index: 1000;
    }



    /* 移动端热点新闻 - 改为与新闻列表相同样式 */
    .hot-news {
        flex-direction: column;
        margin: 0;
    }

    .hot-news-item {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
    }

    .hot-news-img {
        height: 150px;
        margin-bottom: 10px;
    }

    .hot-news-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .friend-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .links-container a {
        font-size: 14px;
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .footer {
        font-size: 13px;
        padding: 25px 0;
    }
}

/* 容器样式 */
.mz168index_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 主要内容区 */
.mz168index_main-content {
    margin: 30px 0;
}

/* 行布局 */
.mz168index_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* 轮播图区域 */
.mz168index_carousel-wrap {
    flex: 0 0 70%;
    padding: 0 15px;
}

.mz168index_carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mz168index_carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.mz168index_carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none; /* 防止非激活项拦截点击 */
}

.mz168index_carousel-item.active {
    opacity: 1;
    z-index: 1; /* 激活项置于顶层 */
    pointer-events: auto; /* 允许点击激活项中的链接 */
}

.mz168index_carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mz168index_carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.mz168index_carousel-caption h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.mz168index_carousel-caption p {
    font-size: 14px;
}

/* 轮播控制按钮 */
.mz168index_carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s;
}

.mz168index_carousel-control:hover {
    background-color: rgba(255,255,255,0.9);
}

.mz168index_carousel-control i {
    font-size: 14px;
    color: #333;
}

.mz168index_carousel-control.prev {
    left: 20px;
}

.mz168index_carousel-control.next {
    right: 20px;
}

/* 新闻列表区域 */
.mz168index_news-wrap {
    flex: 0 0 30%;
    padding: 0 15px;
}

.mz168index_news-list {
    height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

/* 自定义滚动条 */
.mz168index_news-list::-webkit-scrollbar {
    width: 6px;
}

.mz168index_news-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mz168index_news-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.mz168index_news-list::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* 新闻项 */
.mz168index_news-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.mz168index_news-item:last-child {
    border-bottom: none;
}

.mz168index_news-img {
    /*flex: 0 0 100px;*/
    height: 80px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
}

.mz168index_news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mz168index_news-img:hover img {
    transform: scale(1.05);
}

.mz168index_news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mz168index_news-title {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mz168index_news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.mz168index_news-title a:hover {
    color: #e74c3c;
}

.mz168index_news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: auto;
}

.mz168index_news-meta span {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.mz168index_news-meta i {
    margin-right: 4px;
    font-size: 12px;
}

.mz168index_news-meta .time {
    margin-right: 10px;
}


/* 响应式设计 */
@media (max-width: 992px) {
    .mz168index_carousel-wrap,
    .mz168index_news-wrap {
        flex: 0 0 100%;
    }

    .mz168index_carousel {
        margin-bottom: 20px;
        height: 300px;
    }

    .mz168index_news-list {
        height: auto;
        overflow-y: visible;
    }

    .mz168index_carousel-caption h3 {
        font-size: 14px;
    }

    .mz168index_carousel-caption p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .mz168index_carousel {
        height: 200px;
    }

    .mz168index_news-item {
        flex-direction: column;
    }

    .mz168index_news-img {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* about Container */
.mz168about_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Title Section */
.mz168about_title-wrapper {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.mz168about_main-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.mz168about_subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.mz168about_subtitle a {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    text-decoration: none;
}

/* Content Section */
.mz168about_content-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.mz168about_content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: left;
}

.mz168about_content p {
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mz168about_container {
        padding: 30px 15px;
    }

    .mz168about_main-title {
        font-size: 2rem;
    }

    .mz168about_subtitle {
        font-size: 1rem;
    }

    .mz168about_content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mz168about_main-title {
        font-size: 1.8rem;
    }

    .mz168about_content-wrapper {
        padding: 0 10px;
    }
}

/* Avatar Container */
.mz168tx_avatar-container {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
    margin: 10px;
    transition: all 0.3s ease;
}

/* Avatar Circle Background */
.mz168tx_avatar-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Avatar Image */
.mz168tx_avatar-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover Effects */
.mz168tx_avatar-container:hover .mz168tx_avatar-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
}

.mz168tx_avatar-container:hover .mz168tx_avatar-img {
    transform: scale(0.95);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Optional Pulsing Animation on Hover */
@keyframes mz168tx_pulse {
    0% { box-shadow: 0 0 0 0 rgba(118, 75, 162, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(118, 75, 162, 0); }
    100% { box-shadow: 0 0 0 0 rgba(118, 75, 162, 0); }
}

.mz168tx_avatar-container:hover .mz168tx_avatar-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    animation: mz168tx_pulse 1.5s infinite;
}



/* Container */
.mz168pds_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px;
}

/* Product Row */
.mz168pds_product-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

/* 左侧商品图片 */
.mz168pds_product-image {
    flex: 0 0 402px;
    height: 320px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mz168pds_product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mz168pds_product-image:hover img {
    transform: scale(1.03);
}

/* 中间商品信息 */
.mz168pds_product-info {
    flex: 1;
    min-width: 300px;
}

.mz168pds_product-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.mz168pds_price-container {
    margin-bottom: 25px;
}

.mz168pds_price-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.mz168pds_price {
    font-size: 16px;
    color: #e74c3c;
    font-weight: bold;
}

.mz168pds_vip-price {
    font-size: 16px;
    color: #e67e22;
    margin-top: 10px;
}

.mz168pds_vip-tag {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

/* 数量与购物车 */
.mz168pds_quantity-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.mz168pds_quantity-label {
    margin-right: 15px;
    font-size: 16px;
    color: #666;
}

.mz168pds_quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.mz168pds_add-to-cart {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}


.mz168pds_add-to-cart:hover {
    background-color: #c0392b;
}



.mz168pds_to-vip {
    background-color: #2dad01;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.mz168pds_to-vip:hover {
    background-color: #196000;
}

/* 右侧二维码区域 */
.mz168pds_qrcode-section {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mz168pds_qrcode-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.mz168pds_qrcode-image {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
}

.mz168pds_qrcode-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mz168pds_qrcode-desc {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* 商品详情 */
.mz168pds_product-details {
    width: 100%;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.mz168pds_details-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.mz168pds_details-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.mz168pds_details-content p {
    margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .mz168pds_qrcode-section {
        flex: 0 0 180px;
    }
}

@media (max-width: 992px) {
    .mz168pds_product-image {
        flex: 0 0 100%;
        max-width: 402px;
        margin: 0 auto;
    }

    .mz168pds_product-info {
        flex: 0 0 100%;
    }

    .mz168pds_qrcode-section {
        flex: 0 0 100%;
        max-width: 200px;
        margin: 30px auto 0;
    }
}

@media (max-width: 576px) {
    .mz168pds_container {
        padding: 20px 15px;
    }

    .mz168pds_product-title {
        font-size: 24px;
    }

    .mz168pds_quantity-container {
        flex-wrap: wrap;
    }

    .mz168pds_add-to-cart {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .mz168pds_qrcode-section {
        display: none;
    }

    .mz168pds_qrcode-image {
        width: 120px;
        height: 120px;
    }
}



.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}
.quantity-input {
    width: 40px;
    height: 28px;
    border: 1px solid #ddd;
    text-align: center;
    margin: 0 5px;
    font-size: 14px;
}




.mz168s1_container {
    max-width: 1412px;
    width: 100%;
    margin: 10px auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
}

.mz168s1_container a{
    color: #333;
    text-decoration: none;
}


.mz168s1_container a:hover {
    color: #df4900;
    text-decoration: none;
}

.mz168s1_title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.mz168s1_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}


.mz168s1_info {
    color: #666;
    font-size: 14px;
}

.mz168s1_actions {
    display: flex;
    gap: 20px;
}

.mz168s1_btn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
}

.mz168s1_btn-liked {
    color: #ff4757;
}

.mz168s1_btn-favorited {
    color: #ff4757;
}

.mz168s1_content {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #333;
}

.mz168s1_content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    cursor: pointer;
    border-radius: 4px;
}

.mz168s1_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.mz168s1_footer-actions {
    display: flex;
    gap: 15px;
}

.mz168s1_icon {
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.mz168s1_icon:hover {
    color: #333;
}

/* 图片放大效果 */
.mz168s1_modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.mz168s1_modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mz168s1_close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mz168s1_container {
        padding: 20px;
    }

    .mz168s1_title {
        font-size: 24px;
    }

    .mz168s1_meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .mz168s1_actions {
        width: 100%;
        justify-content: flex-end;
    }
}


.mz168p2_container {
    max-width: 1412px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mz168p2_container a{
    text-decoration: none;
}

.mz168p2_header {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.mz168p2_count {
    font-size: 16px;
    color: #666;
    margin-left: 10px;
    font-weight: normal;
}

.mz168p2_list {
    margin-bottom: 30px;
}

.mz168p2_item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.mz168p2_main-comment {
    display: flex;
}

.mz168p2_avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.mz168p2_content {
    flex: 1;
    min-width: 0;
}

.mz168p2_user-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.mz168p2_user {
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mz168p2_user a {
    color: #333;
    text-decoration: none;
}
.mz168p2_user a:hover {
    color: #df4900;
    text-decoration: none;
}

.mz168p2_text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    word-break: break-word;
}

.mz168p2_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mz168p2_time {
    color: #999;
    font-size: 14px;
    white-space: nowrap;
    margin-right: 10px;
}

.mz168p2_actions {
    display: flex;
    align-items: center;
}

.mz168p2_like-btn, .mz168p2_reply-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
    margin-left: 10px;
    font-size: 14px;
}

.mz168p2_like-btn:hover, .mz168p2_reply-btn:hover {
    color: #1890ff;
}

.mz168p2_like-btn.mz168p2_liked {
    color: #ff4757;
}

.mz168p2_like-icon, .mz168p2_reply-icon {
    margin-right: 5px;
    font-size: 16px;
}

.mz168p2_like-count {
    font-size: 14px;
}

.mz168p2_reply-form {
    margin-top: 15px;
    padding-left: 65px;
    display: none;
}

.mz168p2_reply-form.mz168p2_show {
    display: block;
}

.mz168p2_reply-box {
    display: flex;
    margin-top: 10px;
}

.mz168p2_reply-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    font-size: 16px;
    min-height: 80px;
    outline: none;
    transition: border 0.3s;
}

.mz168p2_reply-input:focus {
    border-color: #1890ff;
}

.mz168p2_reply-submit {
    margin-left: 15px;
    padding: 0 25px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-end;
    height: 80px;
}

.mz168p2_reply-submit:hover {
    background-color: #40a9ff;
}

.mz168p2_newsreply-form {
    margin-top: 15px;
    padding-left: 65px;
    display: none;
}


.mz168p2_newsreply-box {
    display: flex;
    margin-top: 10px;
}

.mz168p2_newsreply-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    font-size: 16px;
    min-height: 80px;
    outline: none;
    transition: border 0.3s;
}

.mz168p2_newsreply-input:focus {
    border-color: #1890ff;
}

.mz168p2_newsreply-submit {
    margin-left: 15px;
    padding: 0 25px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-end;
    height: 80px;
}

.mz168p2_newsreply-submit:hover {
    background-color: #40a9ff;
}

@media (max-width: 768px) {
    .mz168p2_container {
        padding: 15px;
    }

    .mz168p2_avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .mz168p2_user-info {
        margin-bottom: 5px;
    }

    .mz168p2_text {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .mz168p2_meta {
        flex-wrap: wrap;
    }

    .mz168p2_time {
        font-size: 13px;
        margin-right: 5px;
    }

    .mz168p2_reply-form {
        padding-left: 50px;
    }

    .mz168p2_reply-box {
        flex-direction: column;
    }

    .mz168p2_reply-submit {
        margin-left: 0;
        margin-top: 10px;
        padding: 10px;
        width: 100%;
        height: auto;
    }

    .mz168p2_newsreply-form {
        padding-left: 50px;
    }

    .mz168p2_newsreply-box {
        flex-direction: column;
    }

    .mz168p2_newsreply-submit {
        margin-left: 0;
        margin-top: 10px;
        padding: 10px;
        width: 100%;
        height: auto;
    }
}


.share-notification {
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.share-notification.show {
    opacity: 1;
}





.mz168top_float-wrapper {
    position: fixed;
    right: 70px; /* 与正文右侧间隔 */
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    text-align: center;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mz168top_qrcode {
    width: 120px;
    height: 120px;
    background-color: #f0f0f0;
    margin-bottom: 30px; /* 增大与按钮的间距 */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.mz168top_qrcode-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 30px; /* 增大与按钮的间距 */
}

.mz168top_back-to-top {
    width: 40px;
    height: 40px;
    background-color: #fb6400;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mz168top_back-to-top.mz168top_show {
    opacity: 1;
    visibility: visible;
}

.mz168top_back-to-top:hover {
    background-color: #e43600;
}

@media (max-width: 768px) {
    .mz168top_float-wrapper {
        display: none;
    }
}


/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 15px;
    padding: 10px 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.page-link:hover {
    background-color: #f0f0f0;
}

.page-link.active {
    background-color: #ff6b6b;
    color: white;
}

.page-link.disabled {
    color: #ccc;
    pointer-events: none;
}

.page-link i {
    font-size: 12px;
}




/* 打赏按钮容器 */
.mz168ds_donate-container {
    position: relative;
    width: 200px;
    height: 60px;
    perspective: 1000px;
    margin: 100px auto;
}

/* 打赏按钮主体 */
.mz168ds_donate-btn {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.mz168ds_donate-container:hover .mz168ds_donate-btn {
    transform: rotateX(15deg);
}

/* 按钮正面样式 */
.mz168ds_donate-btn-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(255, 154, 158, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.mz168ds_donate-btn:hover .mz168ds_donate-btn-front {
    background: linear-gradient(135deg, #fad0c4 0%, #ff9a9e 100%);
    box-shadow: 0 15px 25px rgba(255, 154, 158, 0.4);
}

/* 按钮边缘效果 */
.mz168ds_donate-btn-edge {
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #e88a8e 0%, #e8c0b8 100%);
    border-radius: 0 0 30px 30px;
    transform: rotateX(-90deg);
    transform-origin: top center;
    opacity: 0.8;
}

/* 爱心图标 */
.mz168ds_donate-btn-front::before {
    content: "❤️";
    margin-right: 8px;
    font-size: 20px;
    animation: mz168ds_pulse 1.5s infinite;
    color: #e25433;
    text-shadow: 0 0 8px #FFF8DC;
}

/* 爱心跳动动画 */
@keyframes mz168ds_pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* 点击效果 */
.mz168ds_donate-btn:active .mz168ds_donate-btn-front {
    transform: translateY(5px);
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
}

/* 弹窗样式 */
.mz168ds_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.mz168ds_modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mz168ds_modal-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.mz168ds_amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.mz168ds_amount-option {
    position: relative;
}

.mz168ds_amount-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mz168ds_amount-option label {
    display: block;
    padding: 5px 8px;
    background-color: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-width: 60px;
}

.mz168ds_amount-option input:checked + label {
    background-color: #ff9a9e;
    color: white;
}


.mz168ds_pay-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.mz168ds_pay-option {
    position: relative;
}

.mz168ds_pay-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mz168ds_pay-option label {
    display: block;
    padding: 5px 8px;
    background-color: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-width: 60px;
}

.mz168ds_pay-option input:checked + label {
    background-color: #357d00;
    color: white;
}

.mz168ds_custom-amount {
    margin-bottom: 20px;
}

.mz168ds_custom-amount label {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

.mz168ds_custom-amount input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.mz168ds_submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #da4300;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mz168ds_submit-btn:hover {
    background-color: #f34a00;
}

/* 成功提示 */
.mz168ds_success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.mz168ds_success-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mz168ds_success-icon {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.mz168ds_success-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.mz168ds_success-close {
    padding: 8px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .mz168ds_donate-container {
        width: 160px;
        height: 50px;
    }

    .mz168ds_donate-btn-front {
        font-size: 16px;
    }

    .mz168ds_modal-content {
        padding: 20px;
    }
}

/* 失败提示样式 */
.mz168ds_fail-content {
    background-color: #fff;
}

.mz168ds_fail-icon {
    color: #f44336;
    font-size: 50px;
}

.mz168ds_fail-close {
    background-color: #f44336;
}

.mz168ds_fail-close:hover {
    background-color: #d32f2f;
}





/* 阅读数样式 */
.mz168jr_view-count {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.mz168jr_view-count-number {
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

/* 加热按钮样式 */
.mz168jr_heat-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 4px;
    margin-left: 30px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mz168jr_heat-btn:hover {
    background-color: #ff5252;
}

/* 弹出层样式 */
.mz168jr_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mz168jr_modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mz168jr_modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 弹出层内容样式 */
.mz168jr_modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mz168jr_modal-label {
    font-weight: bold;
    color: #333;
}

.mz168jr_modal-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 150px;
}

.mz168jr_modal-input:focus {
    outline: none;
    border-color: #ff6b6b;
}

.mz168jr_modal-calc {
    color: #666;
    font-size: 14px;
}

.mz168jr_modal-calc span {
    font-weight: bold;
    color: #ff6b6b;
}

/* 按钮区域样式 */
.mz168jr_modal-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.mz168jr_modal-btn {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.mz168jr_modal-btn-cancel {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

.mz168jr_modal-btn-cancel:hover {
    background-color: #e1e1e1;
}

.mz168jr_modal-btn-pay {
    background-color: #ff6b6b;
    color: white;
    border: none;
}

.mz168jr_modal-btn-pay:hover {
    background-color: #ff5252;
}

/* 提示信息弹出层 */
.mz168jr_message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mz168jr_message-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mz168jr_message-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    width: 90%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mz168jr_message-text {
    margin-bottom: 20px;
    font-size: 16px;
}

.mz168jr_message-btn {
    padding: 8px 16px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .mz168jr_modal-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .mz168jr_modal-input {
        width: 100%;
        margin-top: 5px;
    }
}


.mz168jrshow_container {
    max-width: 1412px;
    margin: 30px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 30px 40px;
}

.mz168jrshow_recommend-title {
    text-align: left;
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    font-weight: 600;
    padding-left: 0;
}

.mz168jrshow_recommend-item {
    display: flex;
    margin-bottom: 5px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.mz168jrshow_recommend-item:hover {
    background-color: #f9f9f9;
    transform: translateY(-3px);
}

.mz168jrshow_item-image {
    flex: 0 0 350px;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.mz168jrshow_item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mz168jrshow_recommend-item:hover .mz168jrshow_item-image img {
    transform: scale(1.05);
}

.mz168jrshow_item-content {
    flex: 1;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mz168jrshow_item-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.4;
}

.mz168jrshow_item-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mz168jrshow_item-title a {
    color: red;
    text-decoration: none;
}

.mz168jrshow_item-desc a {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-decoration: none;
}

.mz168jrshow_item-meta {
    color: #666;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.mz168jrshow_item-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.mz168jrshow_item-meta i {
    margin-right: 8px;
    color: #999;
    font-size: 16px;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .mz168jrshow_container {
        padding: 20px 20px 20px 20px;
    }

    .mz168jrshow_recommend-item {
        flex-direction: column;
        padding: 5px 0;
    }

    .mz168jrshow_item-image {
        flex: 1 1 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 350/200;
        margin-bottom: 20px;
        margin-left: 0;
    }

    .mz168jrshow_item-content {
        padding-left: 0;
    }

    .mz168jrshow_item-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .mz168jrshow_item-desc {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .mz168jrshow_item-meta {
        margin-top: 10px;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .mz168jrshow_item-meta span {
        margin-right: 15px;
        margin-bottom: 8px;
    }
}



.mz168dcjjr_container {
    max-width: 1412px;
    margin: 30px auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}



.mz168dcjjr_member-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.mz168dcjjr_member-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mz168dcjjr_join-member {
    background: linear-gradient(135deg, #36D1DC, #5B86E5);
}

.mz168dcjjr_join-vip {
    background: linear-gradient(135deg, #FF8008, #FFC837);
}

.mz168dcjjr_member-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.mz168dcjjr_button-bar {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.mz168dcjjr_category-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.mz168dcjjr_category-button:first-child {
    background-color: #c32e00;
}

.mz168dcjjr_category-button:not(:first-child) {
    background-color: #e73600;
}

.mz168dcjjr_category-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mz168dcjjr_sarea-button {
    background-color: #efbf00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 6px;
    color: #6c2701;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.mz168dcjjr_sarea-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



.mz168car_category-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.mz168car_category-button:first-child {
    background-color: #4b9000;
}

.mz168car_category-button:not(:first-child) {
    background-color: #336300;
}

.mz168car_category-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mz168car_sarea-button {
    background-color: #efbf00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 6px;
    color: #6c2701;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.mz168car_sarea-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mz168car_title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mz168car_title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.mz168car_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    background-color: #336300;
    border-radius: 3px;
}

.mz168cars_sarea-button {
    background-color: #d100d4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.mz168cars_sarea-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.mz168dcjjr_title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mz168dcjjr_title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.mz168dcjjr_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 32px;
    background-color: #db4300;
    border-radius: 3px;
}

.mz168dcjjr_view-more {
    color: #db4300;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.mz168dcjjr_view-more:hover {
    color: #fb4d00;
    transform: translateX(5px);
}

.mz168dcjjr_view-more::after {
    content: '→';
    margin-left: 5px;
    transition: all 0.3s ease;
}

.mz168dcjjr_view-more:hover::after {
    transform: translateX(3px);
}

.mz168dcjjr_celebrity-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.mz168dcjjr_celebrity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mz168dcjjr_celebrity-card:hover {
    transform: translateY(-5px);
}

.mz168dcjjr_celebrity-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.mz168dcjjr_celebrity-card:hover .mz168dcjjr_celebrity-image {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mz168dcjjr_celebrity-name {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
}

.mz168dcjjr_view-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #fb4d00;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mz168dcjjr_view-button:hover {
    background-color: #db4300;
    transform: scale(1.05);
}

.mz168dcjjr_view2-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #666a6d;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mz168dcjjr_view2-button:hover {
    background-color: #44474a;
    transform: scale(1.05);
}



.mz168dcjjr_form-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mz168dcjjr_form-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
    position: relative;
    padding-left: 15px;
}

.mz168dcjjr_form-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #1890ff;
    border-radius: 2px;
}

.mz168dcjjr_form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.mz168dcjjr_form-row {
    display: contents;
}

.mz168dcjjr_form-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.mz168dcjjr_form-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s;
}

.mz168dcjjr_form-input:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
    outline: none;
}

.mz168dcjjr_form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 10px center;
    background-size: 15px;
}

.mz168dcjjr_photo-upload {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mz168dcjjr_photo-preview {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background-color: #eee;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.mz168dcjjr_photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mz168dcjjr_upload-btn {
    padding: 8px 15px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}

.mz168dcjjr_upload-btn:hover {
    background-color: #40a9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}

.mz168dcjjr_form-submit {
    grid-column: 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.mz168dcjjr_submit-btn {
    padding: 12px 30px;
    background-color: #e73600;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.mz168dcjjr_submit-btn:hover {
    background-color: #b92300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}


/* 移动端样式 */
@media (max-width: 768px) {
    .mz168dcjjr_container {
        padding: 20px;
    }

    .mz168dcjjr_member-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mz168dcjjr_member-button {
        height: 60px;
        font-size: 14px;
    }

    .mz168dcjjr_button-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .mz168dcjjr_category-button {
        height: 40px;
        font-size: 14px;
    }

    .mz168dcjjr_title-wrapper {
        margin-bottom: 30px;
    }

    .mz168dcjjr_title {
        font-size: 16px;
        padding-left: 15px;
    }

    .mz168dcjjr_title::before {
        height: 24px;
    }

    .mz168dcjjr_view-more {
        font-size: 14px;
    }

    .mz168dcjjr_celebrity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mz168dcjjr_celebrity-image {
        height: 140px;
        margin-bottom: 12px;
    }

    .mz168dcjjr_celebrity-name {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .mz168dcjjr_view-button {
        padding: 6px 16px;
        font-size: 13px;
    }


    .mz168dcjjr_form-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .mz168dcjjr_form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .mz168dcjjr_form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mz168dcjjr_form-label {
        margin-bottom: 5px;
    }

    .mz168dcjjr_form-submit {
        grid-column: 1;
        justify-content: center;
    }
}



.mz168dcjjru_container {
    max-width: 996px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mz168dcjjru_profile-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mz168dcjjru_profile-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 25px;
}

.mz168dcjjru_name-section {
    flex: 1;
    min-width: 250px;
}

.mz168dcjjru_name {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
}

.mz168dcjjru_verification {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.mz168dcjjru_verification-icon {
    color: #1a73e8;
    font-size: 16px;
}

.mz168dcjjru_badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.mz168dcjjru_badge-grey {
    color: #999;
    font-size: 16px;
}

.mz168dcjjru_badge-gold {
    color: gold;
    font-size: 16px;
}

.mz168dcjjru_photo-section {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.mz168dcjjru_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mz168dcjjru_company-info {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #444;
}

.mz168dcjjru_contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.mz168dcjjru_phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
}

.mz168dcjjru_phone-icon {
    color: #1a73e8;
}

.mz168dcjjru_phone-link {
    color: inherit;
    text-decoration: none;
}

.mz168dcjjru_wechat-qr {
    position: relative;
    display: inline-block;
}

.mz168dcjjru_wechat-small {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.mz168dcjjru_wechat-popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 15px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.mz168dcjjru_wechat-popup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.mz168dcjjru_wechat-popup img {
    width: 150px;
    height: 150px;
    display: block;
}

.mz168dcjjru_wechat-qr:hover .mz168dcjjru_wechat-popup {
    display: block;
}

.mz168dcjjru_profile-section {
    margin-top: 30px;
}

.mz168dcjjru_section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.mz168dcjjru_profile-content {
    line-height: 1.6;
    color: #444;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
}


@media (max-width: 768px) {
    .mz168dcjjru_profile-header {
        flex-direction: column;
    }

    .mz168dcjjru_photo-section {
        order: -1;
        margin-bottom: 15px;
    }

    .mz168dcjjru_wechat-qr {
        display: none;
    }

    .mz168dcjjru_phone-link {
        color: #1a73e8;
    }

    .mz168dcjjru_phone-desktop {
        display: none;
    }

    .mz168dcjjru_phone-mobile {
        display: inline;
    }
}

@media (min-width: 769px) {
    .mz168dcjjru_phone-mobile {
        display: none;
    }

    .mz168dcjjru_phone-desktop {
        display: inline;
    }
}