
        body {
            background-color: #f5f7fa;
            margin: 20px;
            font-family: 'Microsoft YaHei', Arial;
        }

        .page-wrapper {
            display: flex;
            max-width: 1600px;
            margin: 0 auto;
            gap: 20px;
        }
        .ad-area {
            width: 240px;
            position: relative;
        }
        .main-content {
            flex: 1;
            min-width: 0;
        }

        .container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        header {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 10px 10px 0 0;
        }

        h1 {
            margin: 0;
            font-size: 28px;
        }

        .subtitle {
            opacity: 0.9;
            margin-top: 5px;
            font-size: 14px;
        }

        .table-container {
            margin: 20px;
            overflow-x: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }

        th {
            background: linear-gradient(#3498db, #2980b9);
            color: white;
            padding: 15px;
            position: sticky;
            top: 0;
            text-align: left;
        }

        td {
            padding: 12px 15px;
            border-bottom: 1px solid #eaeaea;
            vertical-align: middle;
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        tr:hover {
            background-color: #f1f7fd;
            font-size:17px;
            /* font-weight: bold; */
            color:deepskyblue;
        }
        .pagination {
            margin: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .page-btn {
            padding: 8px 15px;
            background: #ecf0f1;
            color: #2c3e50;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin: 0 5px;
        }

        .page-btn:hover:not(:disabled) {
            background: #3498db;
            color: white;
        }

        .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .page-btn.active {
            background: #3498db;
            color: white;
            font-weight: bold;
        }

        .page-input {
            width: 60px;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
            text-align: center;
            margin: 0 5px;
        }

        .ad-box {
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: fixed;
            top: 40px;
            width: 240px;
            height: 350px;
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 3px dashed #e0e0e0;
            background: repeating-linear-gradient(
                45deg,
                #f9f9f9,
                #f9f9f9 10px,
                #f0f0f0 10px,
                #f0f0f0 20px
            );
        }

        .left-ad .ad-box {
            left: calc(50% - 700px);
        }

        .right-ad .ad-box {
            right: calc(50% - 700px);
        }

        .ad-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s;
            border-color: #3498db;
        }

        .ad-placeholder {
            text-align: center;
            padding: 25px;
            color: #666;
        }

        .ad-icon {
            font-size: 50px;
            margin-bottom: 15px;
            color: #95a5a6;
        }

        .ad-title {
            font-size: 24px;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 10px;
            text-shadow: 2px 2px 0 #f0f0f0;
        }

        .ad-subtitle {
            font-size: 16px;
            color: #3498db;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .ad-desc {
            font-size: 13px;
            color: #7f8c8d;
            line-height: 1.5;
            margin-bottom: 20px;
            text-align: center;
            padding: 0 10px;
        }

        .ad-contact {
            background: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
            font-size: 14px;
        }

        .ad-contact:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(52, 152, 219, 0.3);
        }

        .ad-contact:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
        }

        .ad-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e74c3c;
            color: white;
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(5deg);
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .ad-tooltip {
            position: fixed;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            padding: 20px;
            z-index: 1001;
            max-width: 300px;
            animation: tooltipFade 0.3s ease;
            border: 1px solid #e0e0e0;
        }

        @keyframes tooltipFade {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tooltip-content {
            text-align: center;
        }

        .tooltip-icon {
            font-size: 30px;
            color: #3498db;
            margin-bottom: 10px;
        }

        .tooltip-title {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .tooltip-text {
            color: #7f8c8d;
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .tooltip-close {
            background: #f0f0f0;
            color: #666;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
        }

        .tooltip-close:hover {
            background: #e0e0e0;
        }

        .movie-img {
            width: 80px;
            height: 110px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .movie-img:hover {
            transform: scale(1.05);
            transition: all 0.3s;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal img {
            max-width: 80%;
            max-height: 80%;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: -40px;
            right: -40px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .modal-close:hover {
            color: #ff4444;
        }
        @media (max-width: 1200px) {
            .page-wrapper {
                flex-direction: column;
            }

            .ad-area {
                width: 100%;
                margin-bottom: 20px;
            }

            .ad-box {
                position: static;
                width: 100%;
                height: 300px;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 768px) {
            .movie-img {
                width: 60px;
                height: 85px;
            }

            .ad-title {
                font-size: 22px;
            }

            .ad-subtitle {
                font-size: 15px;
            }
        }