@layer utilities {.content-auto {content-visibility: auto;}.text-shadow {text-shadow: 0 2px 4px rgba(0,0,0,0.1);}.card-hover {@apply transition-all duration-300 hover:shadow-xl hover:-translate-y-1;}.btn-primary {@apply bg-primary text-white px-6 py-3 rounded-lg font-medium transition-all duration-300 hover:bg-primary/90 hover:shadow-lg active:scale-95;}.btn-outline {@apply border-2 border-primary text-primary px-6 py-3 rounded-lg font-medium transition-all duration-300 hover:bg-primary/5 active:scale-95;}}.head-top{background-color: transparent;}.head-company{font-weight: 600;}.head-link .item a{font-weight: 600;}.head-info{background-color: transparent;}.navbarsbs.scrolled {background-color: white; /* 白色背景 */color: black !important; /* 黑色文字 */box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 可选：添加阴影增强视觉效果 */}/* 通知容器样式 */.news-notice {width: 500px; /* 可根据官网布局调整宽度 */height: 175px; /* 显示3条新闻，每条40px */border: 1px solid #e5e5e5;border-radius: 4px;overflow: hidden; /* 隐藏超出容器的内容 */margin: 0 auto;background: rgba(255, 255, 255, 0.8);position: absolute;bottom: 10px;right: 100px;z-index: 99 !important;padding: 10px;}/* 新闻列表样式 */.news-list {list-style: none;padding: 0;margin: 0;transition: transform 0.5s ease; /* 滚动过渡动画 */}/* 新闻项样式 */.news-item {height: 40px;line-height: 40px;padding: 0 15px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis; /* 文字超出省略 */cursor: pointer;}.news-item:hover { background-color: #e8f4ff; /* hover高亮 */}.news-item a {color: #333;text-decoration: none;}.news-item a:hover { color: #165DFF; /* 链接hover变色 */}
  @media (max-width: 900px) {
  .news-notice {
display: none;
  }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 外层大容器 - 背景切换载体 */
        .app-domain-container {
            width: 100%;
            height: 90vh;
            position: relative;
            overflow: hidden;
            /* 默认背景图 */
            background-image: url("/template/pc/skin/images/新能源.png");
            background-size: cover;
            background-position: center;
            /* 背景切换过渡动画 */
            transition: background-image 0.8s ease-in-out;
        }

        /* 遮罩层 - 关键：提升透明板块文字可读性 */
        .app-domain-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 20, 50, 0.4);
            z-index: 1;
        }

        /* 6大领域容器 - 网格布局实现两排三列满铺 */
        .app-domain-items {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* 每排3列、每列1fr，两排自动分配高度，实现完全满铺 */
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            /* 去除间距，保证满铺效果 */
            gap: 0;
            z-index: 2;
        }

        /* 单个领域板块样式 - 完全透明背景 */
        .app-domain-item {
            background-color: transparent; /* 核心：设置背景完全透明 */
            border: 1px solid rgba(255, 255, 255, 0.1); /* 细边框分隔板块，不影响透明效果 */
            /* 撑满网格单元格 */
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            cursor: pointer;
            /* 板块悬浮过渡 */
            transition: all 0.5s ease;
            text-align: center;
            padding: 20px;
        }

        /* 板块悬浮效果 - 透明状态下的反馈 */
        .app-domain-item:hover {
            background-color: rgba(255, 255, 255, 0.08); /* 悬浮时轻微高亮，保留透明感 */
            border-color: rgba(255, 255, 255, 0.2); /* 悬浮时边框略亮，增强反馈 */
            transform: scale(1.01);
            box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
        }

        /* 领域图标样式（白色显示，支持图片/字体图标） */
        .domain-icon {
            font-size: 48px;
            margin-bottom: 20px;
            /* 强制设置为白色，若为图片则通过filter转为白色 */
            color: #ffffff;
            filter: brightness(0) invert(1); /* 确保非白色图标/图片转为纯白色 */
            transition: all 0.5s ease;
        }

        /* 图标悬浮轻微放大效果 */
        .app-domain-item:hover .domain-icon {
            transform: scale(1.1);
            opacity: 0.9;
        }

        /* 领域标题样式 */
        .domain-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        /* 领域描述样式 */
        .domain-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            max-width: 80%;
        }

        /* 响应式适配 - 平板端（两排两列满铺） */
        @media (max-width: 992px) {
            .app-domain-items {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
            }

            .app-domain-container {
                height: 120vh;
            }
        }

        /* 响应式适配 - 手机端（一排一列满铺） */
        @media (max-width: 576px) {
            .app-domain-items {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 1fr);
            }

            .app-domain-container {
                height: 160vh;
            }

            .domain-title {
                font-size: 18px;
            }

            .domain-icon {
                font-size: 36px;
            }

            .domain-desc {
                max-width: 90%;
                font-size: 13px;
            }
        }