/* 
 * Author: Lisect
 * Copyright Lisect.com
 */
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 主时钟区域 */
        .main-time {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
        }

        .current-time-label {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .current-time-label::before {
            content: '';
            width: 20px;
            height: 14px;
            background: #ff4444;
            margin-right: 8px;
        }

        .current-time-label span {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        .big-time {
            font-size: 6rem;
            font-weight: bold;
            color: #666;
            font-family: 'Arial', monospace;
            margin: 20px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .date-info {
            text-align: right;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* 搜索和筛选 */
        .search-container {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .search-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 15px;
            align-items: end;
        }

        .search-input {
            padding: 12px 16px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 14px;
        }

        .region-filter {
            padding: 12px 16px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 14px;
            background: white;
        }

        /* 时区表格 */
        .timezone-section {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .region-title {
            text-align: center;
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }

        .timezone-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .timezone-table th {
            background: #f8f9fa;
            padding: 12px 8px;
            text-align: left;
            border-bottom: 2px solid #dee2e6;
            color: #666;
            font-weight: normal;
            position: sticky;
            top: 0;
        }

        .timezone-table td {
            padding: 12px 8px;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: middle;
        }

        .timezone-table tr:hover {
            background: #f8f9fa;
        }

        .country-flag {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
        }

        .mini-flag {
            width: 20px;
            height: 14px;
            border: 1px solid #ddd;
            border-radius: 2px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timezone-badge {
            background: #e9ecef;
            color: #495057;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
        }

        .dst-badge {
            background: #fff3cd;
            color: #856404;
            padding: 3px 6px;
            border-radius: 10px;
            font-size: 11px;
            margin-left: 5px;
        }

        .dst-badge.active {
            background: #d4edda;
            color: #155724;
        }

        .time-cell {
            font-family: 'Courier New', monospace;
            font-weight: bold;
            color: #333;
        }

        .continent-header {
            background: #6c757d;
            color: white;
            text-align: center;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .big-time {
                font-size: 3.5rem;
            }
            
            .search-grid {
                grid-template-columns: 1fr;
            }
            
            .timezone-table {
                font-size: 12px;
            }
            
            .timezone-table th,
            .timezone-table td {
                padding: 8px 4px;
            }
        }
    </style>