@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            .transition-all {
                transition: all 0.3s ease;
            }
            .hover-scale {
                transition: transform 0.3s ease;
            }
            .hover-scale:hover {
                transform: scale(1.03);
            }
			.footer-grid {
                display: grid !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
			@media (max-width: 767px) {
                .footer-company-info,
                .footer-quick-links,
                .footer-services,
                .footer-contact,
                .footer-links {
                    display: none !important;
                }
            }
        }
        /* 自定义样式 */
        .sticky-sidebar {
            position: fixed;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: 1000;
        }
        .sidebar-item {
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2px;
            background: #0056b3;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .sidebar-item:hover {
            width: 160px;
            background: #003366;
        }
        .sidebar-item span {
            display: none;
            margin-left: 10px;
        }
        .sidebar-item:hover span {
            display: inline;
        }
        .mobile-bottom {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            z-index: 1000;
        }
        @media (min-width: 768px) {
            .mobile-bottom {
                display: none;
            }
        }
        .mobile-btn {
            flex: 1;
            padding: 15px;
            text-align: center;
            color: white;
            font-weight: bold;
        }
        .mobile-call {
            background: #e63946;
        }
        .mobile-chat {
            background: #0056b3;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        .template-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .template-feature i {
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #0056b3;
            color: white;
            border-radius: 50%;
            margin-right: 10px;
        }
        .template-preview {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }
        .template-preview:hover .template-overlay {
            opacity: 1;
        }
        .template-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 86, 179, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .template-overlay a {
            background: white;
            color: #0056b3;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .template-overlay a:hover {
            background: #f3f4f6;
            transform: scale(1.05);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .tab-button {
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .tab-button.active {
            background: #0056b3;
            color: white;
            border-radius: 4px;
        }
        .color-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .color-option:hover {
            transform: scale(1.2);
        }
        .color-option.active {
            border: 2px solid #0056b3;
        }