/* 重置样式 */
html{line-height:1.15;-webkit-text-size-adjust:100%}
body{margin:0}
main{display:block}
h1{font-size:2em;margin:0.67em 0}
hr{box-sizing:content-box;height:0;overflow:visible}
pre{font-family:monospace,monospace;font-size:1em}
a{background-color:transparent}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace,monospace;font-size:1em}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}
sup{top:-0.5em}
img{border-style:none}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
button,input{overflow:visible}
button,select{text-transform:none}
button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{padding:0.35em 0.75em 0.625em}
legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}
progress{vertical-align:baseline}
textarea{overflow:auto}
[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}
[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}
[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
details{display:block}
summary{display:list-item}
template{display:none}
[hidden]{display:none}

/* 主要样式 */
html, body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login[data-v-700e794c] {
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  position: relative;
  min-height: 100vh;
  z-index: 100; /* 确保内容在视频和背景之上 */
}


* {
            margin: 0;
            padding: 0;
        }
        
        body {
            background: linear-gradient(135deg, #0a0a2a, #000000, #061a44);
            color: #fff;
            font-family: 'Arial', sans-serif;
            height: 100vh;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .container {
            z-index: 10;
            text-align: center;
            padding: 2rem;
            background: rgba(10, 15, 30, 0.6);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(66, 215, 245, 0.3);
            box-shadow: 0 0 30px rgba(66, 215, 245, 0.2);
        }
        

        
        /* 星空背景 */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .star {
            position: absolute;
            background-color: #fff;
            border-radius: 50%;
            animation: twinkle linear infinite;
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }
        
        /* 科技感网格 */
        .grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(66, 135, 245, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(66, 135, 245, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 2;
            perspective: 500px;
            transform-style: preserve-3d;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
        }
        
        /* 粒子效果 */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
        }
        
        .particle {
            position: absolute;
            background: rgba(66, 215, 245, 0.8);
            border-radius: 50%;
            filter: blur(5px);
            animation: particleMove linear infinite;
        }
        
        @keyframes particleMove {
            0% { 
                transform: translateY(100vh) scale(0); 
                opacity: 0;
            }
            10% { 
                opacity: 1;
            }
            90% { 
                opacity: 1;
            }
            100% { 
                transform: translateY(-100vh) scale(1); 
                opacity: 0;
            }
        }
        
        /* 光晕效果 */
        .glow {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(rgba(66, 215, 245, 0.4), transparent 70%);
            filter: blur(30px);
            z-index: 4;
            animation: glowMove 15s infinite alternate;
        }
        
        @keyframes glowMove {
            0%, 100% { 
                transform: translate(20vw, 30vh) scale(1);
            }
            25% { 
                transform: translate(70vw, 60vh) scale(1.5);
            }
            50% { 
                transform: translate(40vw, 70vh) scale(0.8);
            }
            75% { 
                transform: translate(80vw, 20vh) scale(1.2);
            }
        }
        
        /* 科技感线条 */
        .tech-line {
            position: fixed;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(66, 215, 245, 0.8), transparent);
            z-index: 5;
            animation: linePulse 3s infinite alternate;
        }
        
        @keyframes linePulse {
            0% { opacity: 0.2; }
            100% { opacity: 0.8; }
        }


.header-container {
  display: flex;
  align-items: center;
  padding: 30px 5%;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 101; /* 确保可点击 */
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  color: rgb(255, 255, 255);
  font-weight: 900;
  padding-left: 10px;
  font-size: 28px;
}

.cta-button {
  margin-left: auto;
  color: rgb(255, 255, 255);
  font-size: 18px;
  cursor: pointer;
  background: linear-gradient(-125deg, #1737ff, rgb(154 111 244));
  padding: 10px 20px;
  text-align: center;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 102; /* 确保可点击 */
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.main-content {
  flex: 1 1 0%;
  color: rgb(255, 255, 255);
  padding: 40px 5%;
  margin-top: 50px;
  text-align: center;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 101; /* 确保可点击 */
}

.main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.main-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-top: 20px;
  line-height: 1.5;
}

.bg{
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  min-width: 50px;
  min-height: 50px;
}
.toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #4CAF50;
            color: white;
            padding: 16px 25px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }
        
        .toast.show {
            opacity: 1;
            visibility: visible;
            bottom: 30px;
        }

button {
    background: #6a11cb;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    display: block;
    width:100%;
}
input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
    margin:10px 0;
    text-align:center;
}
.model-container {
  padding: 40px 5%;
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 40px);
  flex-wrap: wrap;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 101;
}

.model_item{
  padding: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  padding-top: 30px;
  width: clamp(100px, 18%, 200px);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 102; /* 确保可点击 */
}

.model_item a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.model_item:hover {
  transform: translateY(-5px);
}

.model_item_img{
  max-width: 58px;
  max-height: 58px;
  width: 100%;
  height: auto;
}

.model_item_span{
  margin-top: 20px;
  color: #fff;
  text-align: center;
  display: block;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.wechat-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(-125deg, #1737ff, rgb(154 111 244));
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.wechat-contact:hover {
  transform: scale(1.1);
}

.wechat-icon {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.wechat-qr {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 1001;
  display: none;
  flex-direction: column;
  align-items: center;
}

.wechat-qr img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
}

.wechat-qr p {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.service-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  position: relative;
  z-index: 101; /* 确保可点击 */
}

.feature-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  width: calc(33.33% - 20px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 102; /* 确保可点击 */
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.feature-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.feature-desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* 优化效果展示区域样式 */
.results-section {
  text-align: center;
  padding: 60px 5% 40px;
  color: white;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 101;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 40px;
  opacity: 0.9;
}

.results-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.result-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px 15px;
  width: calc(16.666% - 20px);
  min-width: 150px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 102;
}

.result-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.result-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.result-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(-125deg, #1737ff, rgb(154 111 244));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
}

/* 价格方案区域样式 */
.pricing-section {
  text-align: center;
  padding: 60px 5% 80px;
  color: white;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 101;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  width: calc(33.333% - 30px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #4a90e2;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #4a90e2;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
}

.pricing-notice {
  font-size: 0.9rem;
  color: #ffcc00;
  margin-bottom: 15px;
}

.pricing-options {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.pricing-option {
  width: 48%;
  padding: 15px 0;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.pricing-option h4 {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0;
  color: white;
}

.price span {
  font-size: 1rem;
  opacity: 0.8;
}

.pricing-platform {
  font-size: 0.9rem;
  margin: 20px 0;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
}

.pricing-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(-125deg, #1737ff, rgb(154 111 244));
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* 响应式设计 - 价格方案区域 */
@media (max-width: 1200px) {
  .pricing-card {
    width: calc(50% - 30px);
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 40px 5% 60px;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
  
  .pricing-options {
    flex-direction: column;
    gap: 15px;
  }
  
  .pricing-option {
    width: 100%;
  }
}

/* 响应式设计 - 优化效果区域 */
@media (max-width: 1200px) {
  .result-card {
    width: calc(33.333% - 20px);
  }
}

@media (max-width: 992px) {
  .result-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 40px 5% 30px;
  }
  
  .result-card {
    width: calc(50% - 20px);
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .result-card {
    width: 100%;
    max-width: 300px;
  }
}

.contact-section {
  text-align: center;
  padding: 60px 5% 80px;
  color: white;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 101;
}

.contact-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
}

.qr-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  z-index: 102; /* 确保可点击 */
}

.qr-box {
  background: white;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.qr-box img {
  width: clamp(150px, 30vw, 200px);
  height: auto;
}

.qr-box p {
  margin: 10px 0 0;
  color: #333;
  font-weight: bold;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

/* 确保视频和背景不阻挡点击 */
video, div[style*="position: fixed"] {
  pointer-events: none !important;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .feature-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 992px) {
  .model_item {
    width: calc(33.33% - 20px);
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  
  .logo-container {
    margin-bottom: 10px;
  }
  
  .cta-button {
    margin: 0;
    width: 80%;
    max-width: 250px;
  }
  
  .main-content {
    margin-top: 20px;
    padding-top: 20px;
  }
  
  .feature-item {
    width: 100%;
  }
  
  .model_item {
    width: calc(50% - 20px);
  }
  
  .wechat-contact {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .wechat-icon {
    width: 28px;
    height: 28px;
  }
  
  .wechat-qr {
    bottom: 80px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .model_item {
    width: 100%;
    max-width: 200px;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .main-subtitle {
    font-size: 1.1rem;
  }
  
  .service-features {
    gap: 15px;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .contact-section {
    padding-bottom: 100px;
  }
}

/* 新闻中心区域样式 */
.news-section {
  text-align: center;
  padding: 60px 5% 80px;
  color: white;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 101;
}

.news-container {
  margin-top: 40px;
  position: relative;
  z-index: 102; /* 确保可点击 */
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.news-link {
  display: flex;
  padding: 20px;
  text-decoration: none;
  color: white;
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  margin-right: 20px;
  background: linear-gradient(-125deg, rgba(23, 55, 255, 0.7), rgba(154, 111, 244, 0.7));
  border-radius: 8px;
  padding: 10px;
}

.day {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

.month {
  font-size: 0.9rem;
  margin-top: 5px;
}

.news-content {
  flex: 1;
  text-align: left;
}

.news-title {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.news-excerpt {
  font-size: 0.95rem;
  margin: 0 0 15px 0;
  opacity: 0.8;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.news-category {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 15px;
}

.news-views {
  display: flex;
  align-items: center;
}

.view-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0id2hpdGUiIGQ9Ik0xMiA5QTMgMyAwIDAgMCA5IDEyQTMgMyAwIDAgMCAxMiAxNUEzIDMgMCAwIDAgMTUgMTJBMyAzIDAgMCAwIDEyIDlNMTIgMTdBNSA1IDAgMCAxIDcgMTJBNSA1IDAgMCAxIDEyIDdBNSA1IDAgMCAxIDE3IDEyQTUgNSAwIDAgMSAxMiAxN00xMiA0LjVDNyA0LjUgMi43MyA3LjYxIDEgMTJDMi43MyAxNi4zOSA3IDE5LjUgMTIgMTkuNUMxNyAxOS41IDIxLjI3IDE2LjM5IDIzIDEyQzIxLjI3IDcuNjEgMTcgNC41IDEyIDQuNVoiLz48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
}

.news-more {
  margin-top: 40px;
}

.more-button {
  display: inline-block;
  color: white;
  background: linear-gradient(-125deg, #1737ff, rgb(154 111 244));
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.more-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* 响应式设计 - 新闻中心 */
@media (max-width: 768px) {
  .news-section {
    padding: 40px 5% 60px;
  }
  
  .news-link {
    flex-direction: column;
  }
  
  .news-date {
    flex-direction: row;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    justify-content: center;
    gap: 10px;
  }
  
  .day, .month {
    font-size: 1.2rem;
    margin: 0;
  }
  
  .news-title {
    font-size: 1.1rem;
  }
}

