/* ====================== 基础重置 ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft Yahei", sans-serif;
    color: #fff;
    line-height: 1.7;
    background:
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.9) 0%, transparent 20%),
        radial-gradient(circle at 90% 10%, rgba(118, 75, 162, 0.9) 0%, transparent 22%),
        linear-gradient(135deg, #0a0e27 0%, #1a1d3a 45%, #0f172a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.header {
    background: rgba(10, 14, 39, 0.85);
    color: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}
.nav {
    display: flex;
    align-items: center;
    gap:22px;
}
.nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size:15px;
}
.nav a:hover {
    color: #a5b4fc;
}
.banner {
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0;
}
.fullscreen-banner {
    margin-top: 52px;
    position: relative !important;
    display: block;
    box-sizing: border-box;
    padding: 80px 0 40px 0;
}
.fullscreen-banner .container {
    width: 100%;
    padding-top: 0;
}
.fullscreen-banner h1 {
    font-size: 52px;
    margin-bottom: 24px;
}
.fullscreen-banner p {
    font-size: 22px;
    opacity: 0.9;
    margin-bottom:32px;
}
.banner-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}
.btn-primary {
    background: linear-gradient(90deg, #6366f1, #c026d3);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 1px solid #a5b4fc;
    color: #fff;
}
.section {
    padding: 70px 0;
    position: relative;
    z-index: 1;
}
.section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
}
.card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    min-width: 0;
}
.card:hover {
    transform: translateY(-6px);
}
.card-img {
    height: 160px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-body {
    padding: 16px;
}
.card-body h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #fff;
}
.card-body p {
    font-size: 14px;
    color: #cfd6ff;
}
.card-wrap-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.card-wrap-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-wrap-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 16px 20px;
    color: #fff;
}
.faq-q {
    font-weight: bold;
    font-size: 17px;
}
.faq-a {
    margin-top: 8px;
    color: #cfd6ff;
}
.contact-block {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info {
    text-align: center;
    color: #e0e7ff;
}
.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}
.footer {
    background: rgba(10, 14, 39, 0.85);
    color: #a5b4fc;
    padding: 35px 0;
    text-align: center;
    font-size: 14px;
    position: relative;
    z-index: 2;
}
.gradient-title {
    background: linear-gradient(90deg, #60a5fa 0%, #c084fc 50%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0.4px rgba(0,0,0,0.35);
    font-weight: 800;
    letter-spacing: 1px;
}
.gradient-subtitle {
    background: linear-gradient(90deg, #c7d2fe 0%, #e9d5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/*===================== 内页公共组件 =====================*/
.page-banner {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 52px;
    position: relative;
    z-index: 1;
}
.page-banner h1 {
    font-size: 42px;
    margin: 0 0 10px;
    color: #ffffff;
}
.page-banner p {
    color: #cfd6ff;
    font-size: 17px;
}
.section-top-sm {
    padding-top: 20px;
}
.breadcrumb {
    padding:20px 0;
    color:#cfd6ff;
    font-size:15px;
}
.breadcrumb a {
    color:#a5b4fc;
    text-decoration:none;
}
.breadcrumb span {
    margin:0 8px;
    color:#8892b0;
}
.article-text {
    color:#e0e7ff;
    line-height:2;
    font-size:16px;
}
.article-text h3 {
    color:#ffffff;
    margin:32px 0 12px;
    font-size:22px;
}
.article-text h4 {
    color:#ffffff;
    margin:24px 0 8px;
    font-size:19px;
}
.article-text p {
    margin-bottom:16px;
}
.info-card {
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:12px;
    padding:24px;
    min-width:0;
}
.info-card h4 {
    color:#ffffff;
    font-size:20px;
    margin-bottom:16px;
}
.info-item {
    color:#cfd6ff;
    margin-bottom:10px;
    font-size:15px;
}
.info-item strong {
    color:#ffffff;
    min-width:120px;
    display:inline-block;
}
.info-item a {
    color:#a5b4fc;
    text-decoration:none;
}
.tag-group {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:12px;
}
.tag {
    background:rgba(96, 165, 250,0.15);
    border:1px solid rgba(96, 165, 250,0.25);
    color:#a5b4fc;
    padding:6px 14px;
    border-radius:6px;
    font-size:14px;
}
.pagination {
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:40px;
    flex-wrap:wrap;
}
.pagination .page-btn.active {
    background: linear-gradient(90deg, #6366f1, #c026d3);
    border-color: transparent;
    color:#fff;
}
/* ===================== 首页：企业优势 ===================== */
.home-advantage-section{
    padding:70px 0;
    position:relative;
    z-index:1;
}
.home-advantage-section h2{
    text-align:center;
    font-size:30px;
    margin-bottom:10px;
    color:#ffffff;
}
.advantage-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.advantage-item{
    transition: transform 0.3s ease;
    min-width:0;
}
.advantage-item:hover{
    transform: translateY(-6px);
}
.adv-icon{
    font-size:36px;
    color:#818cf8;
    margin-bottom:14px;
}
.advantage-item h3{
    color:#fff;
    font-size:20px;
    margin-bottom:12px;
}
.advantage-item p{
    color:#cfd6ff;
    line-height:1.7;
    margin:0;
}
/* ===================== 首页：企业应用场景 ===================== */
.home-scene-section{
    padding:70px 0;
    position:relative;
    z-index:1;
}
.home-scene-section h2{
    text-align:center;
    font-size:30px;
    margin-bottom:10px;
    color:#ffffff;
}
.scene-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.scene-item{
    transition: transform 0.3s ease;
    min-width:0;
}
.scene-item:hover{
    transform: translateY(-6px);
}
.scene-item h3{
    color:#fff;
    font-size:20px;
    margin-bottom:12px;
}
.scene-item p{
    color:#cfd6ff;
    line-height:1.7;
    margin:0;
}
@media(max-width:992px){
    .advantage-grid{grid-template-columns:repeat(2,1fr);}
    .scene-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:768px){
    .home-advantage-section{padding:50px 0;}
    .advantage-grid{grid-template-columns:1fr;}
    .home-scene-section{padding:50px 0;}
    .scene-grid{grid-template-columns:1fr;}
}
/*===================== 关于我们 =====================*/
.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    margin-top: 30px;
}
.about-content {
    min-width: 0;
}
.about-sidebar {
    width: 360px;
    flex-shrink: 0;
    min-width:0;
}
.service-section {
    margin-top: 50px;
}
.service-section h3 {
    color: #ffffff;
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
}
.service-desc {
    color: #cfd6ff;
    font-size: 15px;
    text-align: center;
    margin-bottom: 24px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 22px;
    min-width:0;
}
.service-card h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom:12px;
}
@media (max-width: 992px) {
    .about-main-grid {grid-template-columns: 1fr;}
    .about-sidebar {width: 100%;}
    .service-grid {grid-template-columns: 1fr;}
}
@media (max-width: 768px) {
    .card-wrap-4 {grid-template-columns: repeat(2, 1fr);}
    .card-wrap-3 {grid-template-columns: 1fr;}
    .card-wrap-6 {grid-template-columns: repeat(2, 1fr);}
    .nav {flex-wrap: wrap; gap:12px;}
    .fullscreen-banner h1 {font-size: 34px;}
    .fullscreen-banner p {font-size: 18px;}
    .page-banner h1 {font-size: 32px;}
}
/*===================== 产品服务 =====================*/
.product-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:30px;
    margin-top:20px;
}
.product-card {
    display:block;
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:14px;
    overflow:hidden;
    backdrop-filter: blur(10px);
    text-decoration:none;
    transition: transform 0.3s ease;
    min-width:0;
}
.product-card:hover {
    transform: translateY(-6px);
}
.product-card-img {
    height:220px;
    background: linear-gradient(135deg,rgba(102, 126, 234, 0.7),rgba(118, 75, 162,0.7));
}
.product-card-img img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.product-card-body {
    padding:22px;
}
.product-card-body h3 {
    color:#ffffff;
    font-size:20px;
    margin-bottom:10px;
}
.product-card-body p {
    color:#cfd6ff;
    font-size:15px;
    line-height:1.7;
}
@media(max-width:992px){
    .product-grid {grid-template-columns: 1fr;}
}
/*===================== 服务区域 =====================*/
.area-search-box {
    margin:20px 0 30px;
    display:flex;
    gap:12px;
}
.area-search-box form {
    display:flex;
    width:100%;
    gap:12px;
    flex-wrap: wrap;
}
.area-search-box input {
    flex:1;
    min-width:220px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:12px;
    padding:16px 20px;
    color:#fff;
    font-size:15px;
    outline:none;
}
.area-search-box input::placeholder {
    color:#949cb8;
}
.btn-search {
    min-width:110px;
    background: linear-gradient(90deg,#6366f1,#c026d3);
    border:none;
    color:#fff;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
}
.province-two-col-grid {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:24px;
    margin-bottom:60px;
}
.province-card {
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:14px;
    padding:22px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width:0;
}
.province-title {
    color:#ffffff;
    font-size:20px;
    margin-bottom:16px;
    border-left:4px solid #818cf8;
    padding-left:12px;
}
.city-item-wrap {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.city-tag {
    display:block;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.11);
    color:#cfd6ff;
    padding:8px 14px;
    border-radius:8px;
    text-decoration:none;
    transition:0.25s;
}
.city-tag:hover{
    background:#2540b8;
    border-color:#536dff;
    color:#fff;
}
@media(max-width:992px){
    .province-two-col-grid {grid-template-columns: 1fr;}
}
.part-city-section {
    margin-top:60px;
    padding:28px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.10);
    border-radius:16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.part-city-title {
    font-size:22px;
    color:#ffffff;
    margin-bottom:24px;
    font-weight:bold;
}
.part-city-grid {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}
.part-city-item {
    display:block;
    text-align:center;
    padding:16px 10px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:10px;
    color:#e4e9ff;
    text-decoration:none;
    transition:0.25s;
}
.part-city-item:hover {
    background:rgba(100,140,255,0.15);
    border-color:rgba(110,160,255,0.35);
}
.part-city-more-wrap {
    margin-top:26px;
    text-align:center;
}
.part-city-more-btn {
    display:inline-block;
    padding:10px 28px;
    border-radius:999px;
    border:1px solid rgba(133,164,255,0.4);
    color:#c7d2fe;
    text-decoration:none;
    transition:0.25s;
}
.part-city-more-btn:hover {
    background:linear-gradient(90deg,#6366f1,#c026d3);
    border-color:transparent;
    color:#fff;
}
@media(max-width:992px){
    .part-city-grid{grid-template-columns:repeat(2,1fr);}
}
/*===================== 新闻动态 =====================*/
.news-list {
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:24px;
}
.news-item {
    display:flex;
    gap:22px;
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:14px;
    padding:22px;
    backdrop-filter: blur(10px);
    text-decoration:none;
    transition: transform 0.3s ease;
    min-width:0;
}
.news-item:hover {
    transform: translateY(-4px);
}
.news-item-img {
    width:160px;
    height:160px;
    flex-shrink:0;
    border-radius:10px;
    background: linear-gradient(135deg,rgba(102, 126, 234, 0.7),rgba(118, 75, 162,0.7));
    overflow:hidden;
}
.news-item-img img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.news-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-bottom: 36px;
    min-width:0;
}
.news-date {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    color: #a5b4fc;
    margin: 0;
}
.news-item-body h3 {
    color:#ffffff;
    font-size:20px;
    margin-bottom:10px;
}
.news-item-body p {
    color:#cfd6ff;
    font-size:15px;
    line-height:1.7;
}
@media(max-width:768px){
    .news-item {flex-direction:column;}
    .news-item-img {width:100%;height:220px;}
    .news-item-body {padding-bottom:0;}
    .news-date {position: static;margin-top:10px;}
}
/*===================== 其他杂项 =====================*/
.home-about-section{
    padding:70px 0;
    position:relative;
    z-index:1;
}
.home-about-section h2{
    text-align:center;
    font-size:30px;
    margin-bottom:10px;
    color:#ffffff;
}
.home-about-section .info-card{
    padding:36px;
}
.home-about-section .article-text p{
    margin-bottom:18px;
}
.home-about-btn-wrap{
    margin-top:28px;
    text-align:center;
}
.home-about-btn-wrap .btn-primary{
    border-radius:999px;
    text-decoration:none;
    display:inline-block;
}
@media(max-width:768px){
    .home-about-section{padding:50px 0;}
    .home-about-section .info-card{padding:24px;}
}
.home-case-wrap{
    padding: 24px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}
.faq-section-wrap {
    padding:24px;
    background:rgba(255,255,255,0.04);
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.08);
}
.faq-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}
.faq-item-card {
    padding:20px;
    background:rgba(255,255,255,0.05);
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.08);
    min-width:0;
}
.faq-item-card h4 {
    color:#ffffff;
    font-size:17px;
    margin:0 0 12px 0;
}
.faq-item-card p {
    color:#c5c9f0;
    font-size:15px;
    line-height:1.6;
    margin:0;
}
@media(max-width:768px){
    .faq-grid{grid-template-columns:1fr;}
}
.article-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    object-fit: contain;
}
.service-area-wrap{
    margin-top:20px;
}
.block-title{
    font-size:24px;
    color:#e4e7ff;
    margin-bottom:20px;
}
.area-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(140px,1fr));
    gap:14px;
}
.area-item a {
    display:block;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    color:#e4e9ff;
    text-decoration:none;
    text-align:center;
    padding:14px 8px;
    border-radius:8px;
    transition:0.25s;
}
.area-item a:hover {
    background:#2540b8;
    border-color:#536dff;
}
.area-no-url {
    display:block;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    color:#999;
    text-align:center;
    padding:14px 8px;
    border-radius:8px;
}
.footer,
.footer p,
.footer span {
    color: #a5b4fc !important;
}
.footer a,
.footer-inner-link a,
.friend-link a {
    color: #818cf8 !important;
    text-decoration: none;
}
.footer a:hover,
.footer-inner-link a:hover,
.friend-link a:hover {
    color: #c7d2fe !important;
}
.footer-inner-link,
.friend-link {
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .footer-inner-link {line-height: 2.2;}
}
.float-consult-wrap {
    position: fixed;
    right:24px;
    bottom:80px;
    z-index:9999;
}
.float-btn {
    width:56px;
    height:56px;
    background: linear-gradient(90deg, #6366f1, #c026d3);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size:14px;
}
.float-mask {
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:9998;
    display:none;
}
.float-popup {
    position:fixed;
    right:20px;
    bottom:150px;
    width:280px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius:12px;
    backdrop-filter: blur(10px);
    z-index:10000;
    padding:24px;
    box-sizing:border-box;
    display:none;
    box-shadow:0 6px 24px rgba(0,0,0,0.25);
}
.float-popup h4{
    text-align:center;
    margin:0 0 16px;
    font-size:17px;
    color:#ffffff;
}
.qrcode-box{
    text-align:center;
    margin-bottom:16px;
}
.qrcode-box img{
    width:160px;
    height:160px;
    border-radius:8px;
}
.tel-item{
    text-align:center;
    font-size:16px;
    margin:8px 0;
    color:#cfd6ff;
}
.tel-item a{
    color:#a5b4fc;
    text-decoration:none;
}
.tel-item a:hover{
    color:#c7d2fe;
}
.close-popup{
    position:absolute;
    right:12px;
    top:10px;
    font-size:20px;
    cursor:pointer;
    color:#a5b4fc;
}
.close-popup:hover{
    color:#ffffff;
}
@media(max-width:768px){
    .float-consult-wrap{right:16px;bottom:60px;}
    .float-popup{right:12px;left:12px;width:auto;bottom:130px;}
}
/* ========= 跑马灯 ========= */
.marquee-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 92%;
    max-width: 1100px;
    margin: 50px auto 0 auto;
    z-index: 10;
    position: relative;
}
.marquee-left {
    flex-shrink: 0;
    color: #e0e7ff;
    font-size: 12px;
    line-height: 1.6;
    white-space: nowrap;
    width: 140px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(224, 231, 255, 0.8);
}
.marquee-right {
    flex: 1;
    height: 48px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0 12px;
}
.marquee-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    width: max-content;
    animation: marquee 24s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 48px;
    color: #ffffff;
    font-size: 13px;
}
.marquee-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #fff;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width:768px) {
    .marquee-wrap {gap:12px; margin-top:24px; width:94%;}
    .marquee-left {width: 110px; font-size:11px;}
    .marquee-item {margin-right:32px;}
    .marquee-icon {width:20px; height:20px;}
}
/* ========== GEO诊断工具页面 ========== */
.tool-wrap{
    display:grid;
    grid-template-columns: 420px 1fr;
    gap:28px;
    margin-top:24px;
}
@media(max-width:920px){
    .tool-wrap{grid-template-columns:1fr;}
}
.tool-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:16px;
    padding:28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width:0;
}
.tool-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    background-color: #2b2b48;
    color: #ffffff;
    border: 1px solid #444466;
    border-radius: 12px;
    box-sizing: border-box;
}
textarea.tool-input {resize: none;}
.tool-input:focus {outline: none;border-color:#6366f1;}
.tool-input::placeholder{color:#949cb8;}
.tool-textarea{min-height:120px;}
.form-item{margin-bottom:20px;}
.form-item label{display:block;color:#fff;margin-bottom:8px;}
.btn-gradient-purple{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    color:#fff;
    font-size:16px;
    background:linear-gradient(90deg,#4f46e5,#a855f7);
    cursor:pointer;
    transition:0.3s;
}
.btn-gradient-purple:hover{opacity:0.92;}
.report-empty{
    min-height:320px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#949cb8;
}
#report-area {min-height: 420px;}
#report-area > .report-loading-box {width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;}
.pre-code{
    background:#0f172a;
    padding:18px;
    border-radius:10px;
    color:#a5b4fc;
    white-space:pre-wrap;
    font-size:13px;
    border:1px solid rgba(255,255,255,0.1);
    overflow-x:auto;
}
.alert-err{
    border-left:4px solid #ef4444;
    background:rgba(239,68,68,0.08);
    padding:14px;
    border-radius:8px;
    color:#fca5a5;
    margin:12px 0;
}
.alert-tip{
    border-left:4px solid #f59e0b;
    background:rgba(245,158,11,0.08);
    padding:14px;
    border-radius:8px;
    color:#fcd34d;
    margin:12px 0;
}
.alert-ok{
    border-left:4px solid #10b981;
    background:rgba(16,185,129,0.08);
    padding:14px;
    border-radius:8px;
    color:#6ee7b7;
    margin:12px 0;
}
.alert-ai{
    border-left:4px solid #818cf8;
    background:rgba(129,140,248,0.08);
    padding:18px;
    border-radius:10px;
    margin:16px 0;
}
details{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:10px;
    padding:14px;
    margin-top:16px;
}
summary{cursor:pointer;color:#a5b4fc;}
.ai-table{
    width:100%;
    border-collapse: collapse;
    margin:14px 0;
}
.ai-table th,.ai-table td{
    border:1px solid rgba(255,255,255,0.12);
    padding:12px 6px;
    text-align:center;
    vertical-align: middle;
}
.ai-table th{
    background:rgba(255,255,255,0.08);
    color:#fff;
}
.ai-table-wrap{overflow-x:auto;}
.report-scroll-wrap{
    max-height: 900px;
    overflow-y: auto;
    padding-right:6px;
}
.report-scroll-wrap::-webkit-scrollbar {width: 6px;}
.report-scroll-wrap::-webkit-scrollbar-track {background: rgba(255,255,255,0.1);}
.report-scroll-wrap::-webkit-scrollbar-thumb {background: #8884ff;border-radius:3px;}
.report-wait-box{
    min-height: 320px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#949cb8;
    text-align:center;
    padding:24px;
}
.report-wait-icon{
    width:64px;
    height:64px;
    max-width:64px;
    max-height:64px;
    margin-bottom:16px;
    color:#818cf8;
}
.report-wait-icon svg{width:100%;height:100%;display:block;}
.report-wait-title{font-size:16px;color:#cfd6ff;margin-bottom:8px;}
.report-wait-text{font-size:14px;color:#949cb8;}
.report-loading-box{
    min-height: 320px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#949cb8;
    text-align:center;
    padding:24px;
}
.loading-progress-wrap{width:100%;max-width:460px;margin-bottom:24px;}
.loading-progress-bar{width:100%;height:8px;background:rgba(255,255,255,0.08);border-radius:999px;overflow:hidden;margin-bottom:12px;}
.loading-progress-fill{height:100%;width:0%;background:linear-gradient(90deg,#60a5fa,#c084fc);border-radius:999px;transition: width 0.3s ease;}
.loading-status-text{font-size:14px;color:#cfd6ff;}
.loading-tip{font-size:13px;color:#949cb8;margin-top:8px;}
.spinner{
    width:48px;
    height:48px;
    box-sizing: border-box;
    border:3px solid rgba(255,255,255,0.08);
    border-top-color:#818cf8;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin-bottom:16px;
}
@keyframes spin{to{transform:rotate(360deg);}}
.required {color:#f87171;}
.quota-tip {margin-top:12px;font-size:14px;color:#22c55e;text-align:right;}
.quota-tip.warn {color:#f87171;}
.report-list-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    gap:12px;
    flex-wrap:wrap;
}
.report-list-header h3 {font-size:20px;color:#ffffff;margin:0;}
.btn-sm {padding:6px 14px;font-size:14px;}
.report-list {display:flex;flex-direction:column;gap:14px;}
.report-empty {
    min-height:300px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#949cb8;
    text-align:center;
}
.report-empty-icon {width:64px;height:64px;margin-bottom:16px;color:#8884ff;}
.report-empty-title {font-size:16px;color:#cfd6ff;margin-bottom:6px;}
.report-empty-text {font-size:14px;line-height:1.6;}
.report-task-item {
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.09);
    border-radius:10px;
    padding:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}
.report-task-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.report-task-item:last-child {border-bottom: none !important;}
.task-left {display:flex;flex-direction:column;gap:6px;min-width:0;flex:1;}
.task-keyword {font-size:16px;font-weight:600;color:#ffffff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.task-company {font-size:13px;color:#a89cc8;}
.task-right {display:flex;flex-direction:column;align-items:flex-end;gap:8px;flex-shrink:0;margin-left:16px;}
.task-status-row {display:flex;align-items:center;gap:10px;}
.task-time {font-size:12px;color:#7a6f99;}
.status-running {color:#ffdd77;}
.status-success {color:#72e8aa;}
.status-fail {color:#ff9494;}
.task-status-tag {padding:4px 10px;border-radius:6px;font-size:13px;}
.status-running{background:rgba(180,145,40,0.25);}
.status-success{background:rgba(40,170,110,0.25);}
.status-fail{background:rgba(200,70,70,0.25);}


/* 弹窗内部星星漂浮动画 */
@keyframes modalStarFloat {
    0% { transform: translateY(0); opacity: 0.3; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}
/* ========== 终极弹出层内部星空守卫（纯CSS，绝对生效） ========== */
/* 1. 绝对不允许任何鼠标悬浮动画、位移出现在弹窗内部！ */
#report-modal-box:hover *,
#report-modal-box *:hover {
    transform: none !important;
    transition: none !important;
}

/* 2. 绝对不允许星星动画被任何人影响！ */
#report-modal-box span {
    animation: modalStarFloat infinite linear !important;
    pointer-events: none !important;
}

/* 3. 绝对恢复关闭按钮的样式！ */
#report-modal-box #close-report,
#report-modal-box #close-report:hover {
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
    background: linear-gradient(90deg, #6366f1, #c026d3) !important;
    color: #fff !important;
}