       .download-section {
            max-width: 880px;
            margin: 2rem auto;
            padding: 2rem;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(33, 150, 243, 0.1);
        }

        .section-title {
            text-align: center;
            font-family: 'Segoe UI', system-ui;
            color: #1976D2;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #E3F2FD;
        }

        .download-list {
            display: grid;
            gap: 0.5rem;
        }

        .download-card {
            display: flex;
            align-items: center;
            padding: 1.0rem;
            background: #f8f9ff;
            border-radius: 10px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #E3F2FD;
        }

        .download-card:hover {
            transform: translateY(-0.3px);
            box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
        }

        .file-icon {
            width: 42px;
            height: 42px;
            margin-right: 1.2rem;
            background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.2s;
        }

        .download-card:hover .file-icon {
            transform: scale(1.1);
        }

        .file-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 6rem;
        }

        .file-name {
            font-weight: 600;
            color: #1A237E;
            min-width: 180px;
        }

        .file-source {
            color: #546E7A;
            font-size: 0.95rem;
            min-width: 90px;
        }

        .extract-code {
            background: #E3F2FD;
            color: #1976D2;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .download-action {
            background: linear-gradient(135deg, #2196F3, #1976D2);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .download-action:hover {
            background: linear-gradient(135deg, #1976D2, #1565C0);
            box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
        }
		
		.tpdx{
			width: 100%;
			height: auto;
		}
		
		a[data-no-visited] {
  color: #FFFFFF !important;
}
a[data-no-visited]:visited {
  color: #FFFFFF !important;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    
    background: url('template/default/tupian/2025hzwt.jpg') no-repeat center center/cover;
}

.notice {
            color: #95a5a6;
            font-size: 0.87em;
            margin-top: 25px;
            opacity: 0.9;
            position: relative;
            display: none;
        }
        
        @media (max-width: 768px) {
            .download-section {
                padding: 1.5rem;
                margin: 1rem;
                border-radius: 8px;
            }

            .download-card {
                flex-wrap: wrap;
                padding: 1.2rem;
                gap: 1rem;
            }

            .file-info {
                flex-wrap: wrap;
                gap: 1rem !important;
                width: 100%;
            }

            .file-name {
                min-width: auto;
                width: 100%;
                order: 1;
            }

            .file-source {
                min-width: auto;
                order: 2;
            }

            .extract-code {
                order: 3;
                margin-right: auto;
                display: none;
            }

            .download-action {
                width: 100%;
                margin-top: 1rem;
                order: 4;
            }

            .file-icon {
                width: 36px;
                height: 36px;
                margin-right: 1rem;
            }
            .notice {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .download-section {
                padding: 1rem;
            }

            .section-title {
                font-size: 1.4rem;
                margin-bottom: 1.5rem;
            }

            .download-card {
                padding: 1rem;
            }

            .file-info {
                gap: 0.5rem !important;
            }

            .file-name {
                font-size: 0.95rem;
            }

            .file-source {
                font-size: 0.85rem;
            }

            .extract-code {
                font-size: 0.8rem;
                display: none;
            }

            .download-action {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            .notice {
                display: block;
            }
        }