@charset "utf-8";

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        }
        
        :root {
            --primary-color: #1e3c72;
            --secondary-color: #2a5298;
            --accent-color: #e52e71;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --success-color: #28a745;
            --info-color: #17a2b8;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            /*  padding: 0 15px;*/
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            /*  position: sticky;*/
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            display: flex;
            align-items: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }
        
        .search-box {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 12px 20px;
            border-radius: 30px;
            border: none;
            font-size: 16px;
            outline: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: linear-gradient(135deg, #ff8a00 0%, var(--accent-color) 100%);
            border: none;
            color: white;
            padding: 7px 15px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .search-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        
        .user-actions a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
            font-size: 14px;
            /*  padding: 8px 12px;*/
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .user-actions a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .user-actions a:last-child {
            background-color: var(--accent-color);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .user-actions a:last-child:hover {
            background-color: #c41a5e;
        }
        
        /* 导航栏 */
        nav {
            background-color: var(--secondary-color);
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
        }
        
        .nav-links li {
            margin: 5px 10px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 15px;
            position: relative;
        }
        
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: white;
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        
        .nav-links a:hover::after {
            width: 60%;
        }
        
        /* 主要内容 */
        .main-content {
            padding: 30px 0;
        }
        
        .section-title {
            font-size: 24px;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            color: var(--dark-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
        }
        
        .copy-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
        }
        
        .copy-btn:hover {
            background-color: #c41a5e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .copy-btn i {
            margin-right: 5px;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--accent-color);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            z-index: 1;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .card-img-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .card-img {
            width: auto;
            max-width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .card:hover .card-img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-title {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary-color);
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.6;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #888;
            margin-bottom: 15px;
            align-items: center;
        }
        
        .card-rating {
            display: flex;
            align-items: center;
            color: #ffc107;
            font-weight: bold;
        }
        
        .card-rating i {
            margin-right: 3px;
        }
        
        .card-price {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 14px;
        }
        
        .card-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .card-link {
            display: inline-block;
            padding: 6px 12px;
            background-color: #f0f0f0;
            color: #555;
            text-decoration: none;
            border-radius: 4px;
            font-size: 13px;
            transition: all 0.3s;
            font-weight: 500;
        }

         .card-link:hover {
            background-color: #e52e71;
            color: white;
        }
        
        .card-link-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .card-link-success {
            background-color: var(--success-color);
            color: white;
        }

        .zjcardlink {
            background-color: var(--success-color);
            color: white;
        }

        .zjcardlink:hover {
            background-color: #218838;
        }
        
        .card-link-warning {
            background-color: var(--warning-color);
            color: #333;
        }
        
        .card-link-danger {
            background-color: var(--danger-color);
            color: white;
        }
        
        .card-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        
        .card-link-primary:hover {
            background-color: #122a5e;
        }
        
        .card-link-success:hover {
            background-color: #218838;
        }
        
        .card-link-warning:hover {
            background-color: #e0a800;
        }
        
        .card-link-danger:hover {
            background-color: #c82333;
        }
        
        /* 广告区域 */
        .ad-section {
            width: 100%;
            margin: 40px 0;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .ad-section:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .ad-label {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .ad-img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 详细信息卡片 */
        .detail-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        
        .detail-title {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--primary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            padding-bottom: 10px;
        }
        
        .detail-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
        }
        
        .detail-content {
            line-height: 1.8;
        }
        
        .detail-content p {
            margin-bottom: 12px;
            color: #555;
        }
        
        .detail-content a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .detail-content a:hover {
            text-decoration: underline;
            color: #c41a5e;
        }
        
        .detail-list {
            list-style: none;
            margin: 15px 0;
        }
        
        .detail-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
        }
        
        .detail-list li:last-child {
            border-bottom: none;
        }
        
        .detail-list strong {
            min-width: 120px;
            color: var(--primary-color);
        }
        
        .qr-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        
        .qr-box {
            text-align: center;
        }
        
        .qr-code {
            width: 150px;
            height: 150px;
            border: 1px solid #eee;
            padding: 5px;
            margin-bottom: 5px;
            transition: all 0.3s;
        }
        
        .qr-code:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .qr-label {
            font-size: 13px;
            color: #666;
        }
        
        .contact-info {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px dashed #ddd;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .contact-icon {
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        /* 页脚 */
        footer {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 40px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
            display: block;
            padding: 5px 0;
        }
        
        .footer-column a:hover {
            color: white;
            padding-left: 8px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .footer-social a {
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* 标签样式 */
        .tag {
            display: inline-block;
            padding: 3px 8px;
            background-color: #f0f0f0;
            color: #555;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .tag-primary {
            background-color: rgba(30, 60, 114, 0.1);
            color: var(--primary-color);
        }
        
        .tag-success {
            background-color: rgba(40, 167, 69, 0.1);
            color: var(--success-color);
        }
        
        .tag-warning {
            background-color: rgba(255, 193, 7, 0.1);
            color: var(--warning-color);
        }
        
        .tag-danger {
            background-color: rgba(220, 53, 69, 0.1);
            color: var(--danger-color);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .card-container {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
                justify-content: center;
            }
            
            .search-box {
                margin: 15px 0;
                max-width: 100%;
            }
            
            .user-actions {
                margin-top: 15px;
            }
            
            .nav-links {
                justify-content: center;
            }
            
            .detail-list li {
                flex-direction: column;
            }
            
            .detail-list strong {
                margin-bottom: 5px;
            }
        }
        
        @media (max-width: 768px) {
            .card-container {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 20px;
            }
            
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .nav-links {
                /*  flex-direction: column;*/
                align-items: center;
            }
            
            .nav-links li {
                margin: 5px 0;
            }
            
            .card-container {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                /* flex-direction: column; */
                align-items: flex-start;
            }
            
            .copy-btn {
                margin-top: 10px;
                align-self: flex-end;
            }
        }


        /* 详细信息区域 */
        .detail-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .detail-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1e3c72;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .detail-content {
            line-height: 1.8;
        }
        
        .detail-content p {
            margin-bottom: 10px;
        }
        
        .detail-content a {
            color: #e52e71;
            text-decoration: none;
        }
        
        .detail-content a:hover {
            text-decoration: underline;
        }

.zjiteminfo {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-radius: 16px;
    overflow: hidden;
}

.zjiteminfo img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}

.zjiteminfo a {
    color: #e82f6e;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
}

.zjiteminfo:hover {
    transform: translateY(-3px);
}

.qr-code {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 15px auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
}

.ad-container, .ad-banner {
    position: relative;
    width: 100%;
    max-width: 1660px;
    height: auto;
    min-height: auto;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    /* */ margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /*  border-radius: 8px;*/
    overflow: hidden;
    /* padding: 15px; */
    text-align: center;
    border: 1px dashed #ccc;
}

.ad-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.ad-banner {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    color: #666;
    font-size: 18px;
    min-height: auto;
}

.ad-banner::before {
    content: "广告位招租";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #999;
    font-weight: bold;
    opacity: 0.5;
}

.ad-banner span {
    position: relative;
    z-index: 1;
    background-color: rgba(255,255,255,0.8);
    padding: 5px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.ad-banner span::before {
    content: "📞";
    margin-right: 8px;
}

        