@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;
                }
            }
        }

        /* 自定义样式 */
        .news-card {
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
        }
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .news-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #0056b3;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-weight: bold;
        }
        .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;
            padding-left: 10px;
        }
        .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;
        }
        .filter-active {
            background: #0056b3;
            color: white;
        }