/* === Style Block 1 === */
/* 全局样式 */
:root {
  --primary-color: #0066cc;
  --primary-dark: #004e9e;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --border-color: #e5e5e5;
  --footer-bg: #333;
  --footer-text: #fff;
  --footer-light: #ccc;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --header-height: 53px; /* 添加页眉高度变量 */
}

/* 调整所有带有padding-top: 80px的页面组件 */
.contact-page,
.solutions-page,
.news-page,
.digital-tech-page,
.applications-page,
.about-page,
[class$="-page"] {  /* 选择所有以'-page'结尾的类名 */
  padding-top: var(--header-height);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-small {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-small:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in {
  animation: slideIn 0.5s ease forwards;
}

/* === Style Block 2 === */
.main-header[data-v-c970699f] {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateY(0);
  will-change: transform, opacity, background-color;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* 透明状态 */
.transparent-header[data-v-c970699f] {
  background-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.transparent-header .logo-image[data-v-c970699f] {
  opacity: 0;
  transform: translateY(-20px);
}






/* 确保下拉菜单内容在透明模式下依然清晰可见 */
.transparent-header .dropdown-content[data-v-c970699f] {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.transparent-header .dropdown-content[data-v-c970699f]:before {
  border-bottom-color: rgba(255, 255, 255, 0.95);
}
.transparent-header .dropdown-item[data-v-c970699f] {
  color: #333;
  text-shadow: none;
}
.transparent-header .dropdown-item[data-v-c970699f]:hover {
  color: #0066cc;
  background-color: rgba(245, 245, 245, 0.8);
}
.transparent-header .lang-btn[data-v-c970699f] {
  color: #555555;
  border-color: rgba(85, 85, 85, 0.4);
  background: rgba(255, 255, 255, 0.15);
  text-shadow: none;
}
.transparent-header .lang-btn[data-v-c970699f]:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #333333;
}
.transparent-header .mobile-menu-toggle span[data-v-c970699f] {
  background-color: #555555;
}
.main-header.scrolled[data-v-c970699f] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.95);
}
.main-header.header-hidden[data-v-c970699f] {
  transform: translateY(-105%);
  box-shadow: none;
  pointer-events: none; /* 隐藏时禁用交互 */
  opacity: 0.8;
}

/* 为logo添加显示/隐藏动画 */
.logo[data-v-c970699f] {
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.05s, 
              opacity 0.4s ease 0.05s;
}
.logo-image[data-v-c970699f] {
  height: 50px;
  max-width: 180px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.main-header.header-hidden .logo[data-v-c970699f] {
  transform: translateY(-10px);
  opacity: 0;
}

/* 为导航项添加级联动画效果 */
.nav-item[data-v-c970699f] {
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
              opacity 0.3s ease;
}
.main-header.header-hidden .nav-item[data-v-c970699f] {
  transform: translateY(-15px);
  opacity: 0;
}
.main-header:not(.header-hidden) .nav-item[data-v-c970699f] {
  animation: fadeInDown-c970699f 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  opacity: 0;
}
.main-header:not(.header-hidden) .nav-item[data-v-c970699f]:nth-child(1) { animation-delay: 0.02s;
}
.main-header:not(.header-hidden) .nav-item[data-v-c970699f]:nth-child(2) { animation-delay: 0.04s;
}
.main-header:not(.header-hidden) .nav-item[data-v-c970699f]:nth-child(3) { animation-delay: 0.06s;
}
.main-header:not(.header-hidden) .nav-item[data-v-c970699f]:nth-child(4) { animation-delay: 0.08s;
}
.main-header:not(.header-hidden) .nav-item[data-v-c970699f]:nth-child(5) { animation-delay: 0.1s;
}

/* 为语言切换按钮添加动画 */
.language-switch[data-v-c970699f] {
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0.15s,
              opacity 0.3s ease 0.15s;
}
.main-header.header-hidden .language-switch[data-v-c970699f] {
  transform: translateY(-15px);
  opacity: 0;
}
@keyframes fadeInDown-c970699f {
from {
    opacity: 0;
    transform: translateY(-15px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.header-container[data-v-c970699f] {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 55px;
  gap: 365px;
}
.logo-placeholder[data-v-c970699f] {
  height: 50px;
  width: 180px;
  background-color: #0066cc;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.logo-placeholder[data-v-c970699f]:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 102, 204, 0.25);
}
.logo-image[data-v-c970699f] {
  height: 50px;
  max-width: 180px;
  transition: all 0.3s ease;
}
.logo-image[data-v-c970699f]:hover {
  transform: scale(1.02);
}
.main-nav[data-v-c970699f] {
  flex: 1;
}
.main-nav ul[data-v-c970699f] {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-item[data-v-c970699f] {
  margin: 0 30px;
  position: relative;
}
.nav-link[data-v-c970699f] {
  padding: 8px 5px;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  color: #333;
  white-space: nowrap;
}
.nav-link[data-v-c970699f]:hover, .nav-link.active[data-v-c970699f] {
  color: #0066cc;
}
.nav-link[data-v-c970699f]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0066cc;
  transition: width 0.3s ease;
}
.nav-link[data-v-c970699f]:hover:after, .nav-link.active[data-v-c970699f]:after {
  width: 100%;
}

/* 下拉菜单 */
.dropdown[data-v-c970699f] {
  position: relative;
}
.dropdown-content[data-v-c970699f] {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 6px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}
.dropdown-content[data-v-c970699f]:before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}
.dropdown:hover .dropdown-content[data-v-c970699f] {
  display: block;
  opacity: 1;
}
.dropdown-item[data-v-c970699f] {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  transition: all 0.2s ease;
}
.dropdown-item[data-v-c970699f]:hover {
  background-color: #f5f5f5;
  color: #0066cc;
  padding-left: 22px;
}
.language-switch .lang-btn[data-v-c970699f] {
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.language-switch .lang-btn[data-v-c970699f]:hover {
  background-color: #f5f5f5;
  color: #0066cc;
}

/* 移动端语言切换按钮 - 默认在桌面端隐藏 */
.mobile-language-switch[data-v-c970699f] {
  display: none;
}

/* 移动菜单按钮 */
.mobile-menu-toggle[data-v-c970699f] {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 18px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.mobile-menu-toggle span[data-v-c970699f] {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #555555;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active span[data-v-c970699f]:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span[data-v-c970699f]:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span[data-v-c970699f]:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 针对2K及以上分辨率的优化 */
@media (min-width: 2560px) {
.header-container[data-v-c970699f] {
    max-width: 2000px;
    padding: 0 150px;
    gap: 500px; /* 增加间距，确保居中对齐 */
    justify-content: center; /* 改为居中对齐 */
}
.logo[data-v-c970699f] {
    margin-right: 0; /* 重置margin */
}
.main-nav[data-v-c970699f] {
    flex: none; /* 取消flex伸展 */
}
.main-nav ul[data-v-c970699f] {
    justify-content: center; /* 导航项居中 */
}
.nav-item[data-v-c970699f] {
    margin: 0 40px; /* 增加导航项间距 */
}
.language-switch[data-v-c970699f] {
    margin-left: auto; /* 语言切换按钮靠右 */
}
}
@media (min-width: 1920px) and (max-width: 2559px) {
.header-container[data-v-c970699f] {
    max-width: 1800px;
    padding: 0 120px;
    gap: 400px;
    justify-content: space-between;
}
.nav-item[data-v-c970699f] {
    margin: 0 35px;
}
}
@media (max-width: 992px) {
.header-container[data-v-c970699f] {
    padding: 0 10px;
    justify-content: flex-start;
    gap: 0;
    max-width: 100%;
}
.logo[data-v-c970699f] {
    margin-right: auto;
    flex-shrink: 0;
}
.logo-image[data-v-c970699f] {
    height: 45px;
    max-width: 160px;
}
.language-switch[data-v-c970699f] {
    display: none;
}
.main-nav[data-v-c970699f] {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.main-nav.mobile-open[data-v-c970699f] {
    display: block;
}
.main-nav ul[data-v-c970699f] {
    flex-direction: column;
    align-items: flex-start;
}
.nav-item[data-v-c970699f] {
    margin: 12px 0;
    width: 100%;
}
.nav-link[data-v-c970699f] {
    display: block;
    padding: 12px 0;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}
  
  /* 在移动菜单中添加语言切换 */
.main-nav .mobile-language-switch[data-v-c970699f] {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: block;
}
.main-nav .mobile-lang-btn[data-v-c970699f] {
    display: block;
    padding: 12px 0;
    color: #0066cc;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.main-nav .mobile-lang-btn[data-v-c970699f]:hover {
    color: #004e9e;
}
  
  /* 确保移动菜单不会被其他内容覆盖 */
.main-nav.mobile-open[data-v-c970699f] {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 9999;
    border-top: 1px solid #e0e0e0;
}
.dropdown-content[data-v-c970699f] {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 8px 0 8px 16px;
    margin-top: 0;
    display: none;
}
.dropdown:hover .dropdown-content[data-v-c970699f] {
    display: block;
}
.mobile-menu-toggle[data-v-c970699f] {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
}
}

/* === Style Block 3 === */
.footer[data-v-4896eafd] {
  background-color: #222832;
  color: #fff;
  font-size: 15px;
}
.footer-top[data-v-4896eafd] {
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;
}
.footer-top[data-v-4896eafd]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0.05;
  z-index: 1;
}
.container[data-v-4896eafd] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.footer-grid[data-v-4896eafd] {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 40px;
}
.footer-col[data-v-4896eafd] {
  display: flex;
  flex-direction: column;
}
.footer-about[data-v-4896eafd] {
  max-width: 320px;
}
.footer-logo[data-v-4896eafd] {
  margin-bottom: 20px;
  width: 160px;
}
.footer-logo img[data-v-4896eafd] {
  width: 100%;
  height: auto;
  display: block;
}
.company-desc[data-v-4896eafd] {
  color: #bbc0c7;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  padding-right: 20px;
}
.footer-title[data-v-4896eafd] {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title[data-v-4896eafd]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;

  width: 80px;
  height: 3px;
  background-color: #0066cc;
}
/*footer-title2是为了控制蓝线而改了名字，原本只有title同时控制联系我们和微信二维码*/
.footer-title2[data-v-4896eafd] {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title2[data-v-4896eafd]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0066cc;
}
.contact-info[data-v-4896eafd] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-item[data-v-4896eafd] {
  display: flex;
  margin-bottom: 15px;
  color: #bbc0c7;
}
.icon[data-v-4896eafd] {
  margin-right: 10px;
  font-size: 0;
  width: 20px;
  height: 20px;
  background-color: #0066cc;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
  top: 3px;
}
.contact-item span[data-v-4896eafd] {
  line-height: 1.6;
}
.contact-text[data-v-4896eafd] {
  display: flex;
  flex-direction: column;
}
.contact-label[data-v-4896eafd] {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  font-size: 16px;
}
.wechat-col[data-v-4896eafd] {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qrcode-container[data-v-4896eafd] {
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 5px;
  margin-top: 10px;
}
.qrcode-img[data-v-4896eafd] {
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.footer-bottom[data-v-4896eafd] {
  background-color: #1a1f27;
  padding: 20px 0;
  text-align: center;
}
.copyright[data-v-4896eafd] {
  color: #bbc0c7;
  margin: 0;
  font-size: 14px;
  text-align: center;
}
.footer-bottom .container[data-v-4896eafd] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-info[data-v-4896eafd] {
  color: #bbc0c7;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
.footer-grid[data-v-4896eafd] {
    grid-template-columns: 2fr 2fr;
}
.footer-about[data-v-4896eafd], .contact-col[data-v-4896eafd], .wechat-col[data-v-4896eafd] {
    max-width: 100%;
}
.wechat-col[data-v-4896eafd] {
    grid-column: span 2;
    align-items: flex-start;
}
}
@media (max-width: 768px) {
.footer-grid[data-v-4896eafd] {
    grid-template-columns: 1fr;
    gap: 30px;
}
.footer-top[data-v-4896eafd] {
    padding: 50px 0 30px;
}
.wechat-col[data-v-4896eafd] {
    grid-column: span 1;
}
}
@media (max-width: 576px) {
.footer-grid[data-v-4896eafd] {
    grid-template-columns: 1fr;
}
}

/* === Style Block 4 === */
/* 全局样式 */
:root {
  --primary-color: #0066cc;
  --primary-dark: #004e9e;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --border-color: #e5e5e5;
  --footer-bg: #333;
  --footer-text: #fff;
  --footer-light: #ccc;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --header-height: 53px; /* 添加页眉高度变量 */
}
/* 调整所有带有padding-top: 80px的页面组件 */
.contact-page,
.solutions-page,
.news-page,
.digital-tech-page,
.applications-page,
.about-page,
[class$="-page"] {  /* 选择所有以'-page'结尾的类名 */
  padding-top: var(--header-height);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}
.btn-small {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-small:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}
.text-center {
  text-align: center;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid {
  display: grid;
}
/* 动画效果 */
@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}
@keyframes slideIn {
from {
    transform: translateX(-50px);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
.slide-in {
  animation: slideIn 0.5s ease forwards;
}
#app {
  font-family: 'PingFang SC', 'Microsoft YaHei', '微软雅黑', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
}
/* 按钮样式 */
.btn {
  display: inline-block;
  background-color: #0066cc;
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #0066cc;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.btn:hover {
  background-color: transparent;
  color: #0066cc;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}
.btn-small {
  display: inline-block;
  background-color: #0066cc;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #0066cc;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.btn-small:hover {
  background-color: transparent;
  color: #0066cc;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
}
.btn-outline {
  background-color: transparent;
  color: #0066cc;
  border: 2px solid #0066cc;
}
.btn-outline:hover {
  background-color: #0066cc;
  color: white;
}
.hero-section[data-v-42781596] {
  width: 100%;
  height: 850px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.hero-slider[data-v-42781596] {
  width: 100%;
  height: 100%;
  position: relative;
}
.slides-container[data-v-42781596] {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide[data-v-42781596] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active[data-v-42781596] {
  opacity: 1;
  z-index: 2;
}
.hero-background[data-v-42781596] {
  width: 100%;
  height: 100%;
  background-size: 90%; /* 缩小图片尺寸 */
  background-position: center center; /* 调整背景图位置居中 */
  background-repeat: no-repeat; /* 确保图片不重复 */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top:-40px;
}

/* 第4和第5个轮播图特殊样式 */
.slide.slide-small .hero-background[data-v-42781596] {
  background-size: 85.5% !important; /* 90% * 95% = 85.5% */
  margin-top: -20px !important; /* 向下移动20px (原-40px + 20px = -20px) */
}

/* 第2个轮播图特殊样式 */
.slide.slide-up .hero-background[data-v-42781596] {
  margin-top: -45px !important; /* 向上移动5px (原-40px - 5px = -45px) */
}

/* 移除背景变暗效果 */
.hero-background[data-v-42781596]::before {
  display: none;
}

/* 移除文字内容样式 */
.hero-content[data-v-42781596] {
  display: none;
}

/* 轮播图控制 */
.slider-controls[data-v-42781596] {
  position: absolute;
  bottom: 220px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}
.slider-dots[data-v-42781596] {
  display: flex;
  gap: 30px;
}
.dot[data-v-42781596] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(92, 84, 84, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active[data-v-42781596] {
  background-color: white;
  transform: scale(1.2);
}

/* 轮播图左右箭头导航 */
.slider-arrows[data-v-42781596] {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.arrow[data-v-42781596] {
  width: 40px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(38, 135, 200, 0.7);
  font-size: 40px;
  background: transparent;
}
.arrow[data-v-42781596]:hover {
  color: rgb(62, 93, 172);
  transform: scale(1.1);
}
.arrow span[data-v-42781596] {
  font-weight: bold;
  line-height: 1;
}
.arrow-left[data-v-42781596] {
  text-align: left;
}
.arrow-right[data-v-42781596] {
  text-align: right;
}

/* 产品展示 */
.products-section[data-v-42781596] {
  background-color: #fff;
  margin-top: -120px; /* 向上移动120px */
  position: relative; /* 确保定位正确 */
  z-index: 2; /* 提高层级，确保覆盖在其他元素上方 */
}
.container[data-v-42781596] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding[data-v-42781596] {
  padding: 80px 0;
}
.product-title[data-v-42781596] {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  color: #222;
}
.product-title[data-v-42781596]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0066cc;
}
.product-grid[data-v-42781596] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card[data-v-42781596] {
  width: calc((100% - 60px) / 3);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0), box-shadow 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
}
.product-card.animate[data-v-42781596] {
  animation: fadeInUp-42781596 0.8s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
}
.product-card[data-v-42781596]:hover {
  transform: translateY(-15px) scale(1.03);
}
.product-image[data-v-42781596] {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.product-image img[data-v-42781596] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img[data-v-42781596] {
  transform: scale(1.05);
}
.product-content[data-v-42781596] {
  padding: 25px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-content h3[data-v-42781596] {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}
.product-content p[data-v-42781596] {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  flex: 1;
}
.product-content .btn-small[data-v-42781596] {
  align-self: flex-start;
  margin-top: auto;
}
.view-more[data-v-42781596] {
  text-align: center;
  margin-top: 50px;
}

/* 技术部分 */
.tech-section[data-v-42781596] {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  padding-bottom: 0; /* 移除底部内边距，让底部图片紧贴 */
}
.tech-section[data-v-42781596]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0.05;
  z-index: 1;
}
.tech-container[data-v-42781596] {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.tech-flex[data-v-42781596] {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.tech-content[data-v-42781596] {
  flex: 1;
  max-width: 780px;
}
.tech-title[data-v-42781596] {
  font-size: 36px;
  margin-bottom: 32px;
  position: relative;
  color: #222;
  padding-bottom: 15px;
}
.tech-title[data-v-42781596]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3.5px;
  background-color: #0066cc;
}
.tech-item[data-v-42781596] {
  margin-bottom: 22px;
  padding: 26px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateX(-20px);
  opacity: 0;
  will-change: transform, opacity;
}
.tech-item.animate[data-v-42781596] {
  animation: fadeInRight-42781596 0.7s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
}
.tech-item[data-v-42781596]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.tech-item h3[data-v-42781596] {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0066cc;
}
.tech-item p[data-v-42781596] {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
.tech-image[data-v-42781596] {
  flex: 1.38;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-top: 115px;
  margin-bottom: 47px;
 /* 图片右移 */
 /* margin-right: -40px; */
}
.tech-image img[data-v-42781596] {
  width: 120%;
  height: 120%;
  object-fit: cover;
  position: relative;
  transform-origin: center;
  transition: all 0.5s ease;
}
.tech-image:hover img[data-v-42781596] {
  transform: scale(1.02);
}
@media (min-width: 1600px) {
.tech-container[data-v-42781596] {
    max-width: 1600px;
}
.tech-image[data-v-42781596] {
    margin-right: -80px;
}
}
@media (max-width: 1400px) {
.tech-container[data-v-42781596] {
    max-width: 1300px;
}
.tech-image[data-v-42781596] {
    margin-right: -30px;
}
}

/* 添加底部大图样式 */
.tech-bottom-image[data-v-42781596] {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 90px;
  overflow: hidden;
}
.tech-bottom-img[data-v-42781596] {
  width: 100%;
  display: block;
  max-height: none; /* 确保图片不受高度限制 */
}

/* 解决方案部分 */
.solutions-section[data-v-42781596] {
  background-color: #fff;
}
.solution-title[data-v-42781596] {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  color: #222;
}
.solution-title[data-v-42781596]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3.5px;
  background-color: #0066cc;
}
.solution-subtitle[data-v-42781596] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}
.solutions-grid[data-v-42781596] {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 30px;
  width: calc(100% + 40px);
  max-width: 1240px;
  margin: 0 auto;
  margin-left: -20px;
}
.solution-card[data-v-42781596] {
  width: calc((100% - 90px) / 4);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0), box-shadow 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
}
.solution-card.animate[data-v-42781596] {
  animation: fadeInUp-42781596 0.8s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
}
.solution-card[data-v-42781596]:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.solution-image[data-v-42781596] {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.solution-image img[data-v-42781596] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solution-card:hover .solution-image img[data-v-42781596] {
  transform: scale(1.05);
}
.solution-content[data-v-42781596] {
  padding: 25px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.solution-content h3[data-v-42781596] {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}
.solution-content p[data-v-42781596] {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  flex: 1;
}
.solution-content .btn-small[data-v-42781596] {
  align-self: flex-start;
  margin-top: auto;
}
.solution-content[data-v-42781596]:after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 102, 204, 0.1);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.solution-card:hover .solution-content[data-v-42781596]:after {
  transform: scale(12);
}
.solution-card .solution-content[data-v-42781596] * {
  position: relative;
  z-index: 1;
}

/* 新闻部分 */
.news-section[data-v-42781596] {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news-title[data-v-42781596] {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  color: #222;
}
.news-title[data-v-42781596]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0066cc;
}
.news-grid[data-v-42781596] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.news-card[data-v-42781596] {
  display: flex;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  will-change: transform, opacity;
  position: relative;
  z-index: auto;
}
.news-card.animate[data-v-42781596] {
  animation: fadeInUp-42781596 0.7s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
}
.news-card[data-v-42781596]:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.news-image[data-v-42781596] {
  width: 250px;
  min-height: 100%;
  overflow: hidden;
}
.news-image img[data-v-42781596] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-image img[data-v-42781596] {
  transform: scale(1.05);
}
.news-content[data-v-42781596] {
  padding: 30px;
  flex: 1;
}
.news-content h3[data-v-42781596] {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #222;
  transition: color 0.3s ease;
}
.news-content p[data-v-42781596] {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.read-more[data-v-42781596] {
  color: #0066cc;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.read-more[data-v-42781596]:hover {
  color: #004e9e;
  padding-left: 5px;
}
.arrow-right[data-v-42781596] {
  font-style: normal;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.read-more:hover .arrow-right[data-v-42781596] {
  transform: translateX(8px);
}
@keyframes fadeInUp-42781596 {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeInRight-42781596 {
from {
    opacity: 0;
    transform: translateX(-20px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes fadeIn-42781596 {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
.fade-in[data-v-42781596] {
  opacity: 0;
  animation: fadeInUp-42781596 0.8s ease forwards;
}
.slide-in-right[data-v-42781596] {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}
.news-card[data-v-42781596]:before {
  content: '';
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background-color: #fff;
  border-radius: 10px;
  top: 3px;
  left: 3px;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.news-card[data-v-42781596]:hover:before {
  opacity: 1;
}
.news-card:hover .news-content h3[data-v-42781596] {
  color: #0066cc;
}
@media (max-width: 1400px) {
.tech-container[data-v-42781596] {
    max-width: 1200px;
}
.tech-flex[data-v-42781596] {
    gap: 60px;
}
}
@media (max-width: 992px) {
.tech-flex[data-v-42781596] {
    flex-direction: column;
    gap: 50px;
}
.tech-container[data-v-42781596] {
    padding: 0 30px;
}
.tech-content[data-v-42781596] {
    max-width: 100%;
}
.tech-image[data-v-42781596] {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 20px;
}
.news-grid[data-v-42781596] {
    grid-template-columns: 1fr;
}
.hero-content h2[data-v-42781596] {
    font-size: 42px;
}
}
@media (max-width: 768px) {
.hero-section[data-v-42781596] {
    height: 600px;
}
.hero-content h2[data-v-42781596] {
    font-size: 34px;
}
.hero-content p[data-v-42781596] {
    font-size: 18px;
}
.news-card[data-v-42781596] {
    flex-direction: column;
    overflow: visible;
    position: static;
    margin-bottom: 40px;
    height: auto;
    min-height: auto;
    isolation: isolate;
    transform: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}
.news-card.animate[data-v-42781596] {
    transform: none !important;
    opacity: 1 !important;
}
.news-image[data-v-42781596] {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    order: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.news-content[data-v-42781596] {
    padding: 20px;
    position: static;
    z-index: auto;
    background: white;
    order: 2;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    border-radius: 0 0 10px 10px;
}
.section-padding[data-v-42781596] {
    padding: 60px 0;
}
.tech-img[data-v-42781596] {
    height: 250px;
}
  
  /* 强制移动端新闻卡片不重叠 */
.news-card[data-v-42781596]:hover {
    transform: translateY(-3px) !important;
}
.news-card[data-v-42781596] * {
    position: static !important;
}
.news-image[data-v-42781596],
  .news-content[data-v-42781596] {
    position: relative !important;
}
}
@media (max-width: 576px) {
.hero-section[data-v-42781596] {
    height: 500px;
}
.hero-content h2[data-v-42781596] {
    font-size: 28px;
}
.section-title[data-v-42781596] {
    font-size: 28px;
}
.tech-title[data-v-42781596] {
    font-size: 28px;
}
.news-grid[data-v-42781596] {
    gap: 0;
    display: block;
}
.news-card[data-v-42781596] {
    margin-bottom: 50px;
    display: flex;
    width: 100%;
    clear: both;
    float: none;
}
.news-content[data-v-42781596] {
    padding: 15px;
}
.news-content h3[data-v-42781596] {
    font-size: 16px;
    margin-bottom: 10px;
}
.news-content p[data-v-42781596] {
    font-size: 14px;
    margin-bottom: 15px;
}
.news-section[data-v-42781596] {
    padding: 60px 0;
    overflow: visible;
}
.news-section .container[data-v-42781596] {
    padding: 0 15px;
    overflow: visible;
}
.news-grid[data-v-42781596] {
    overflow: visible;
}
.news-card[data-v-42781596]:hover {
    transform: translateY(-3px);
}
.news-card[data-v-42781596]:before {
    display: none;
}
.news-card[data-v-42781596]:hover {
    transform: none !important;
}
  
  /* 强制重置任何可能的绝对定位 */
.news-card[data-v-42781596] * {
    position: static !important;
}
.news-image[data-v-42781596],
  .news-content[data-v-42781596] {
    position: relative !important;
}
}

/* 鼠标悬停效果 */
.solution-card:hover .solution-image[data-v-42781596],
.product-card:hover .product-image[data-v-42781596] {
  background: linear-gradient(135deg, #0066cc, #004e9e);
}

/* 技术项悬停效果 */
.tech-item:hover h3[data-v-42781596] {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* 其他改进 */
.hero-content[data-v-42781596]:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  right: -100px;
  top: -50px;
  z-index: -1;
}
.hero-content[data-v-42781596]:before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  left: -75px;
  bottom: -30px;
  z-index: -1;
}

/* 针对2K及以上分辨率的轮播图优化 */
@media (min-width: 2560px) {
.hero-section[data-v-42781596] {
    height: 950px; /* 增加轮播图高度 */
    margin-top: 55px; /* 为header留出空间 */
}
.hero-background[data-v-42781596] {
    background-size: 80%; /* 调整背景图片大小 */
    margin-top: 60px; /* 向下调整轮播图位置 */
}
.slider-controls[data-v-42781596] {
    bottom: 180px; /* 调整控制点位置 */
}
.slider-arrows[data-v-42781596] {
    top: 50%; /* 调整箭头位置 */
}
}
@media (min-width: 1920px) and (max-width: 2559px) {
.hero-section[data-v-42781596] {
    height: 900px;
    margin-top: 55px;
}
.hero-background[data-v-42781596] {
    background-size: 85%;
    margin-top: 40px;
}
.slider-controls[data-v-42781596] {
    bottom: 200px;
}
}

/* 产品卡片效果增强 */
.product-card .product-content[data-v-42781596]:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #0066cc, transparent);
  transition: width 0.3s ease;
  z-index: -1;
}
.product-card:hover .product-content[data-v-42781596]:before {
  width: 100%;
}

/* 解决方案卡片效果 */
.solution-card .solution-content[data-v-42781596]:after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 102, 204, 0.1);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.solution-card:hover .solution-content[data-v-42781596]:after {
  transform: scale(12);
}

/* 新闻区块效果增强 - 样式已在上方定义 */

/* 加载状态样式 */
.loading-container[data-v-42781596] {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0066cc;
  font-size: 18px;
}
.loading-spinner[data-v-42781596] {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 102, 204, 0.2);
  border-top: 5px solid #0066cc;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: spin-42781596 1s linear infinite;
}
@keyframes spin-42781596 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* 备用内容样式 */
.fallback-content[data-v-42781596] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 240, 240, 0.8);
}
.fallback-icon[data-v-42781596] {
  font-size: 50px;
  margin-bottom: 20px;
}
.fallback-text[data-v-42781596] {
  font-size: 18px;
  color: #666;
}

/* === Style Block 5 === */
.digital-tech-page[data-v-3dc3730d] {
  padding-top: 30px;
}
.page-hero[data-v-3dc3730d] {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/ai2.png') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 115px 20px;
}
.page-title[data-v-3dc3730d] {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.page-subtitle[data-v-3dc3730d] {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}
.container[data-v-3dc3730d] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 特别为概述部分设置更宽的容器 */
.overview-container[data-v-3dc3730d] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 70px;
}
section[data-v-3dc3730d] {
  padding: 80px 0;
}
.bg-light[data-v-3dc3730d] {
  background-color: #f8f9fa;
}
.section-header[data-v-3dc3730d] {
  text-align: center;
  margin-bottom: 50px;
}
.section-title[data-v-3dc3730d] {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-title[data-v-3dc3730d]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0066cc;
}
.section-divider[data-v-3dc3730d] {
  display: none;
}
.flex-container[data-v-3dc3730d] {
  display: flex;
  align-items: center;
  gap: 20px;
}
.text-content[data-v-3dc3730d] {
  font-size: 1.15rem;
  flex: 1.1;
  padding-right: 20px;
  margin-left: -20px;
}
.text-content p[data-v-3dc3730d] {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}
.image-content[data-v-3dc3730d] {
  flex: 0.95;
  display: flex;
  justify-content: flex-end;
  margin-right: -70px;
  margin-top: -20px;
}
.section-image[data-v-3dc3730d] {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-list[data-v-3dc3730d] {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}
.feature-list li[data-v-3dc3730d] {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.icon[data-v-3dc3730d] {
  font-size: 24px;
  margin-right: 15px;
}
.feature-content h4[data-v-3dc3730d] {
  margin: 0 0 5px 0;
  color: #0066cc;
}
.tech-cards[data-v-3dc3730d] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.tech-card[data-v-3dc3730d] {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.tech-card[data-v-3dc3730d]:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card-icon[data-v-3dc3730d] {
  font-size: 40px;
  margin-bottom: 20px;
}
.tech-card h3[data-v-3dc3730d] {
  margin-bottom: 15px;
  color: #0066cc;
}

/* 荣誉部分 */
.awards-grid[data-v-3dc3730d] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* 企业资质部分 */
.qualifications-section[data-v-3dc3730d] {
  background-color: #fff;
  padding: 10px 0 100px 0; /* 减少顶部间距，让它与企业荣誉更近 */
}
.qualifications-grid[data-v-3dc3730d] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.award-item[data-v-3dc3730d] {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.award-item[data-v-3dc3730d]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.award-icon[data-v-3dc3730d] {
  font-size: 40px;
  margin-right: 20px;
  flex-shrink: 0;
  color: gold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: float-3dc3730d 3s ease-in-out infinite;
}
@keyframes float-3dc3730d {
0% {
    transform: translateY(0px);
}
50% {
    transform: translateY(-8px);
}
100% {
    transform: translateY(0px);
}
}
.award-item:hover .award-icon[data-v-3dc3730d] {
  transform: scale(1.2) rotate(10deg);
  animation-play-state: paused;
}
.award-content[data-v-3dc3730d] {
  flex: 1;
}
.award-title[data-v-3dc3730d] {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}
.qualification-item[data-v-3dc3730d] {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.qualification-item[data-v-3dc3730d]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.qualification-icon[data-v-3dc3730d] {
  font-size: 40px;
  margin-right: 20px;
  flex-shrink: 0;
  color: #0066cc;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.qualification-item:hover .qualification-icon[data-v-3dc3730d] {
  transform: scale(1.1) rotate(5deg);
}
.qualification-content[data-v-3dc3730d] {
  flex: 1;
}
.qualification-title[data-v-3dc3730d] {
  font-size: 1.1rem;
  color: #333;
  text-align: left;
}
.section-description[data-v-3dc3730d] {
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.text-center[data-v-3dc3730d] {
  text-align: center;
}

/* 时间线样式（可以保留，但不再使用） */
.timeline[data-v-3dc3730d] {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.contact-container[data-v-3dc3730d] {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-info[data-v-3dc3730d] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.contact-item[data-v-3dc3730d] {
  background: white;
  border-radius: 8px;
  padding: 30px 25px;/*为了让公司地址的文字在一行展示*/
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}
.contact-item[data-v-3dc3730d]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.contact-icon[data-v-3dc3730d] {
  font-size: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-icon[data-v-3dc3730d]::before {
  content: "📍";
  font-size: 32px;
  font-style: normal;
}
.phone-icon[data-v-3dc3730d]::before {
  content: "📞";
  font-size: 32px;
  font-style: normal;
}
.email-icon[data-v-3dc3730d]::before {
  content: "✉️";
  font-size: 32px;
  font-style: normal;
}
.wechat-icon[data-v-3dc3730d]::before {
  content: "";
  background-image: url('./青成数字科技关于我们_files/wechat.png');
  background-size: 48px 48px;
  background-position: center;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  margin-top: 15px; /*为了配合图标对其*/
  margin-bottom: -15px;/*为了配合图标对其*/
  display: inline-block;
  font-style: normal;
}
.contact-item h3[data-v-3dc3730d] {
  margin-bottom: 8px;
  color: #0066cc;
  font-size: 1.2rem;
}
.contact-item p[data-v-3dc3730d] {
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.loading-info[data-v-3dc3730d] {
  padding: 30px 0;
  text-align: center;
  color: #888;
  font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 1600px) {
.contact-info[data-v-3dc3730d] {
    grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 1200px) {
.contact-info[data-v-3dc3730d] {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 992px) {
.flex-container[data-v-3dc3730d] {
    flex-direction: column;
}
.awards-grid[data-v-3dc3730d] {
    grid-template-columns: repeat(2, 1fr);
}
.qualifications-grid[data-v-3dc3730d] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.award-item[data-v-3dc3730d] {
    flex-direction: column;
    text-align: center;
}
.award-icon[data-v-3dc3730d] {
    margin-right: 0;
    margin-bottom: 15px;
}
.awards-grid[data-v-3dc3730d] {
    grid-template-columns: 1fr;
}
.qualifications-grid[data-v-3dc3730d] {
    grid-template-columns: 1fr;
}
.qualification-item[data-v-3dc3730d] {
    flex-direction: column;
    text-align: center;
}
.qualification-icon[data-v-3dc3730d] {
    margin-right: 0;
    margin-bottom: 15px;
}
.qualification-title[data-v-3dc3730d] {
    text-align: center;
}
.contact-info[data-v-3dc3730d] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 576px) {
.page-title[data-v-3dc3730d] {
    font-size: 2.2rem;
}
.page-subtitle[data-v-3dc3730d] {
    font-size: 1.2rem;
}
}

/* === Style Block 6 === */
.solutions-page[data-v-19018603] {
  padding-top: 65px;
}
.page-hero[data-v-19018603] {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/ai.png') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 115px 20px;
}
.page-title[data-v-19018603] {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.page-subtitle[data-v-19018603] {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}
.container[data-v-19018603] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section[data-v-19018603] {
  padding: 80px 0;
}
.bg-light[data-v-19018603] {
  background-color: #f8f9fa;
}
.section-header[data-v-19018603] {
  text-align: center;
  margin-bottom: 50px;
}
.section-title[data-v-19018603] {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-title[data-v-19018603]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0066cc;
}
.section-divider[data-v-19018603] {
  display: none;
}
.text-center[data-v-19018603] {
  text-align: center;
}
.larger-text[data-v-19018603] {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px;
}
.solution-stats[data-v-19018603] {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}
.stat-item[data-v-19018603] {
  text-align: center;
}
.stat-number[data-v-19018603] {
  font-size: 3rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 10px;
}
.stat-text[data-v-19018603] {
  font-size: 1.1rem;
  color: #555;
}
.solutions-grid[data-v-19018603] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.solution-card[data-v-19018603] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
  height: 100%;
}
.solution-card.animate[data-v-19018603] {
  transform: translateY(0);
  opacity: 1;
}
.solution-image[data-v-19018603] {
  height: 250px;
  overflow: hidden;
}
.solution-image img[data-v-19018603] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solution-card:hover .solution-image img[data-v-19018603] {
  transform: scale(1.05);
}
.solution-content[data-v-19018603] {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.solution-title[data-v-19018603] {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #0066cc;
}
.solution-desc[data-v-19018603] {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
  flex: 1;
}
.solution-features[data-v-19018603] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}
.feature[data-v-19018603] {
  background-color: #f0f5ff;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 0.9rem;
  color: #0066cc;
  text-align: center;
}
.process-steps[data-v-19018603] {
  max-width: 900px;
  margin: 0 auto;
}
.process-step[data-v-19018603] {
  display: flex;
  margin-bottom: 40px;
  align-items: flex-start;
}
.step-number[data-v-19018603] {
  width: 60px;
  height: 60px;
  background-color: #0066cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
}
.step-content[data-v-19018603] {
  border-left: 2px solid #e0e0e0;
  padding-left: 25px;
  padding-bottom: 20px;
}
.step-content h3[data-v-19018603] {
  margin-top: 0;
  margin-bottom: 10px;
  color: #0066cc;
}
.step-content p[data-v-19018603] {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
.contact-text[data-v-19018603] {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}
.contact-actions[data-v-19018603] {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
.solution-card[data-v-19018603] {
    flex-direction: row;
    height: auto;
}
.solution-image[data-v-19018603] {
    width: 40%;
    height: auto;
}
.solution-content[data-v-19018603] {
    width: 60%;
}
}
@media (max-width: 768px) {
.process-step[data-v-19018603] {
    flex-direction: column;
}
.step-number[data-v-19018603] {
    margin-bottom: 15px;
}
.step-content[data-v-19018603] {
    border-left: none;
    padding-left: 0;
}
}

/* 联系我们样式 */
.contact-section[data-v-19018603] {
  padding: 80px 0;
  background-color: #f0f7ff;
}
.contact-wrapper[data-v-19018603] {
  text-align: center;
}
.contact-content h2[data-v-19018603] {
  font-size: 32px;
  color:#333;
  margin-bottom: 20px;
}
.contact-content p[data-v-19018603] {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.contact-btn[data-v-19018603] {
  display: inline-block;
  background-color: white;
  color: #3461FF;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-btn[data-v-19018603]:hover {
  background-color: #f5f5f5;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* === Style Block 7 === */
.news-page[data-v-9e1de1d0] {
  padding-top: 65px;
}
.page-hero[data-v-9e1de1d0] {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/news.png') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 115px 20px;
}
.page-title[data-v-9e1de1d0] {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.page-subtitle[data-v-9e1de1d0] {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}
.container[data-v-9e1de1d0] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section[data-v-9e1de1d0] {
  padding: 60px 0;
}
.news-content-section[data-v-9e1de1d0] {
  padding-top: 50px;
}
.bg-light[data-v-9e1de1d0] {
  background-color: #f8f9fa;
}
.news-grid[data-v-9e1de1d0] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* 左侧主内容区域 */
.news-main[data-v-9e1de1d0] {
  width: 100%;
}

/* 置顶新闻 */
.featured-news[data-v-9e1de1d0] {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}
.featured-news .news-image[data-v-9e1de1d0] {
  height: 400px;
  overflow: hidden;
}
.featured-news .news-image img[data-v-9e1de1d0] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-news:hover .news-image img[data-v-9e1de1d0] {
  transform: scale(1.05);
}
.featured-news .news-content[data-v-9e1de1d0] {
  padding: 30px;
}
.news-meta[data-v-9e1de1d0] {
  display: flex;
  margin-bottom: 15px;
}
.news-category[data-v-9e1de1d0] {
  background-color: #f0f5ff;
  color: #0066cc;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 15px;
}
.news-date[data-v-9e1de1d0] {
  color: #777;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.featured-news .news-title[data-v-9e1de1d0] {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}
.news-excerpt[data-v-9e1de1d0] {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.read-more[data-v-9e1de1d0] {
  color: #0066cc;
  font-weight: 500;
  transition: all 0.3s ease;
}
.read-more[data-v-9e1de1d0]:hover {
  text-decoration: underline;
}

/* 新闻列表 */
.news-list[data-v-9e1de1d0] {
  display: grid;
  gap: 30px;
}
.news-item[data-v-9e1de1d0] {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.news-item[data-v-9e1de1d0]:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.news-item .news-image[data-v-9e1de1d0] {
  height: 250px;
  overflow: hidden;
}
.news-item .news-image img[data-v-9e1de1d0] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-item:hover .news-image img[data-v-9e1de1d0] {
  transform: scale(1.05);
}
.news-item .news-content[data-v-9e1de1d0] {
  padding: 25px;
  flex: 1;
}
.news-item .news-title[data-v-9e1de1d0] {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}

/* 分页 */
.pagination[data-v-9e1de1d0] {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}
.page-item[data-v-9e1de1d0] {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  border-radius: 50%;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #555;
}
.page-item.active[data-v-9e1de1d0] {
  background-color: #0066cc;
  color: white;
}
.page-item[data-v-9e1de1d0]:not(.active):not(.dots):hover {
  background-color: #f0f5ff;
  color: #0066cc;
}
.page-item.next[data-v-9e1de1d0] {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

/* 右侧边栏 */
.sidebar-widget[data-v-9e1de1d0] {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.widget-title[data-v-9e1de1d0] {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}
.widget-title[data-v-9e1de1d0]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #0066cc;
}
.section-title[data-v-9e1de1d0] {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-title[data-v-9e1de1d0]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: #0066cc;
}
.section-divider[data-v-9e1de1d0] {
  display: none;
}

/* 搜索小工具 */
.search-form[data-v-9e1de1d0] {
  display: flex;
}
.search-form input[data-v-9e1de1d0] {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}
.search-form button[data-v-9e1de1d0] {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-form button[data-v-9e1de1d0]:hover {
  background-color: #005bb9;
}

/* 分类小工具 */
.category-list[data-v-9e1de1d0] {
  list-style: none;
  padding: 0;
}
.category-list li[data-v-9e1de1d0] {
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}
.category-list a[data-v-9e1de1d0] {
  display: flex;
  justify-content: space-between;
  color: #555;
  transition: all 0.3s ease;
}
.category-list a[data-v-9e1de1d0]:hover {
  color: #0066cc;
}
.category-list span[data-v-9e1de1d0] {
  color: #999;
  font-size: 0.8rem;
}

/* 标签小工具 */
.tags-cloud[data-v-9e1de1d0] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag[data-v-9e1de1d0] {
  background-color: #f5f5f5;
  color: #555;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.tag[data-v-9e1de1d0]:hover {
  background-color: #0066cc;
  color: white;
}

/* 热门文章小工具 */
.popular-posts[data-v-9e1de1d0] {
  display: grid;
  gap: 15px;
}
.popular-post[data-v-9e1de1d0] {
  display: flex;
  align-items: center;
}
.post-image[data-v-9e1de1d0] {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
.post-image img[data-v-9e1de1d0] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-info[data-v-9e1de1d0] {
  padding-left: 15px;
}
.post-info h4[data-v-9e1de1d0] {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
}
.post-info h4 a[data-v-9e1de1d0] {
  color: #333;
  transition: all 0.3s ease;
}
.post-info h4 a[data-v-9e1de1d0]:hover {
  color: #0066cc;
}
.post-date[data-v-9e1de1d0] {
  font-size: 0.8rem;
  color: #999;
}

/* 订阅区域 */
.subscribe-section[data-v-9e1de1d0] {
  background-color: #f8f9fa;
}
.subscribe-box[data-v-9e1de1d0] {
  background-color: white;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.subscribe-content h2[data-v-9e1de1d0] {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}
.subscribe-content p[data-v-9e1de1d0] {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-form[data-v-9e1de1d0] {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}
.subscribe-form input[data-v-9e1de1d0] {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}
.subscribe-form .btn[data-v-9e1de1d0] {
  padding: 0 30px;
  border-radius: 0 4px 4px 0;
  background-color: #0066cc;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.subscribe-form .btn[data-v-9e1de1d0]:hover {
  background-color: #005bb9;
}

/* 响应式样式 */
@media (min-width: 992px) {
.news-grid[data-v-9e1de1d0] {
    grid-template-columns: 2fr 1fr;
}
.news-item[data-v-9e1de1d0] {
    flex-direction: row;
}
.news-item .news-image[data-v-9e1de1d0] {
    width: 35%;
    height: auto;
}
.news-item .news-content[data-v-9e1de1d0] {
    width: 65%;
}
}
@media (max-width: 768px) {
.featured-news .news-image[data-v-9e1de1d0] {
    height: 250px;
}
.subscribe-form[data-v-9e1de1d0] {
    flex-direction: column;
}
.subscribe-form input[data-v-9e1de1d0] {
    border-radius: 4px;
    margin-bottom: 15px;
}
.subscribe-form .btn[data-v-9e1de1d0] {
    border-radius: 4px;
    padding: 12px;
}
}

/* === Style Block 8 === */
.page-hero[data-v-fca6c24c] {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/contact.png') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 115px 20px;/*为了适应高度，实际代码和其他页面不一致*/
}
.page-title[data-v-fca6c24c] {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  padding-top: 12px;/* 为了配合其他页面，实际代码结构和其他页面不一致 */
}
.page-subtitle[data-v-fca6c24c] {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}
.container[data-v-fca6c24c] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section[data-v-fca6c24c] {
  padding: 60px 0;
}
.contact-content-section[data-v-fca6c24c] {
  padding: 80px 0;
}
.contact-grid[data-v-fca6c24c] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

/* 表单样式 */
.contact-form-container[data-v-fca6c24c] {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form-title[data-v-fca6c24c] {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}
.form-message[data-v-fca6c24c] {
  margin-bottom: 20px;
  padding: 12px 15px;
  border-radius: 5px;
  font-weight: 500;
}
.form-message.success[data-v-fca6c24c] {
  background-color: #e6f7e6;
  color: #0a5d0a;
  border: 1px solid #a3e4a3;
}
.form-message.error[data-v-fca6c24c] {
  background-color: #feeaea;
  color: #b51a1a;
  border: 1px solid #f5c2c2;
}
.contact-form[data-v-fca6c24c] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.form-group[data-v-fca6c24c] {
  position: relative;
}
.form-group.full-width[data-v-fca6c24c] {
  grid-column: span 2;
}
.form-group label[data-v-fca6c24c] {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}
.form-control[data-v-fca6c24c] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control[data-v-fca6c24c]:focus {
  border-color: #0066cc;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}
textarea.form-control[data-v-fca6c24c] {
  resize: vertical;
  min-height: 150px;
}
.submit-btn[data-v-fca6c24c] {
  grid-column: span 2;
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.submit-btn[data-v-fca6c24c]:hover:not(:disabled) {
  background-color: #0055aa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}
.submit-btn[data-v-fca6c24c]:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

/* 联系信息样式 */
.contact-info-container[data-v-fca6c24c] {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.loading-info[data-v-fca6c24c] {
  padding: 20px 0;
  text-align: center;
  color: #888;
}
.info-title[data-v-fca6c24c] {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}
.info-item[data-v-fca6c24c] {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.info-icon[data-v-fca6c24c] {
  width: 50px;
  height: 50px;
  background-color: #f0f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.location-icon[data-v-fca6c24c]::before {
  content: "📍";
  font-size: 24px;
  font-style: normal;
}
.phone-icon[data-v-fca6c24c]::before {
  content: "📞";
  font-size: 24px;
  font-style: normal;
}
.email-icon[data-v-fca6c24c]::before {
  content: "✉️";
  font-size: 24px;
  font-style: normal;
}
.wechat-icon[data-v-fca6c24c]::before {
  content: "";
  background-image: url('./青成数字科技联系我们_files/wechat.png');
  background-size: 48px 48px;
  background-position: center;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  display: inline-block;
  font-style: normal;
}
.info-content h3[data-v-fca6c24c] {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #333;
}
.info-content p[data-v-fca6c24c] {
  margin: 0;
  color: #555;
  line-height: 1.5;
}
.wechat-section[data-v-fca6c24c] {
  margin-top: 40px;
  text-align: center;
}
.wechat-section h3[data-v-fca6c24c] {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
}
.qrcode-container[data-v-fca6c24c] {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.qrcode-img[data-v-fca6c24c] {
  max-width: 180px;
  border: 1px solid #eaeaea;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* 联系方式模块样式 */
.contact-section[data-v-fca6c24c] {
  padding: 80px 0;
}
.bg-light[data-v-fca6c24c] {
  background-color: #f8f9fa;
}
.contact-container[data-v-fca6c24c] {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header[data-v-fca6c24c] {
  text-align: center;
  margin-bottom: 50px;
}
.section-title[data-v-fca6c24c] {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-title[data-v-fca6c24c]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0066cc;
}
.section-divider[data-v-fca6c24c] {
  display: none;
}
.contact-info[data-v-fca6c24c] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.contact-item[data-v-fca6c24c] {
  background: white;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}
.contact-item[data-v-fca6c24c]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.contact-icon[data-v-fca6c24c] {
  font-size: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-icon[data-v-fca6c24c]::before {
  content: "📍";
  font-size: 32px;
  font-style: normal;
}
.phone-icon[data-v-fca6c24c]::before {
  content: "📞";
  font-size: 32px;
  font-style: normal;
}
.email-icon[data-v-fca6c24c]::before {
  content: "✉️";
  font-size: 32px;
  font-style: normal;
}
.wechat-icon[data-v-fca6c24c]::before {
  content: "";
  background-image: url('./青成数字科技关于我们_files/wechat.png');
  background-size: 48px 48px;
  background-position: center;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  margin-top: 15px;
  margin-bottom: -15px;
  display: inline-block;
  font-style: normal;
}
.contact-item h3[data-v-fca6c24c] {
  margin-bottom: 8px;
  color: #0066cc;
  font-size: 1.2rem;
}
.contact-item p[data-v-fca6c24c] {
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.loading-info[data-v-fca6c24c] {
  padding: 30px 0;
  text-align: center;
  color: #888;
  font-size: 1.1rem;
}

/* 响应式设计 */
@media (min-width: 992px) {
.contact-grid[data-v-fca6c24c] {
    grid-template-columns: 3fr 2fr;
}
}
@media (max-width: 768px) {
.contact-form[data-v-fca6c24c] {
    grid-template-columns: 1fr;
}
.form-group.full-width[data-v-fca6c24c], .submit-btn[data-v-fca6c24c] {
    grid-column: span 1;
}
.page-hero[data-v-fca6c24c] {
    padding: 80px 20px;
}
.page-title[data-v-fca6c24c] {
    font-size: 2.5rem;
}
.contact-content-section[data-v-fca6c24c] {
    padding: 60px 0;
}
}

/* 联系方式模块响应式设计 */
@media (max-width: 1600px) {
.contact-info[data-v-fca6c24c] {
    grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 1200px) {
.contact-info[data-v-fca6c24c] {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.contact-info[data-v-fca6c24c] {
    grid-template-columns: 1fr;
}
}

/* === Style Block 9 === */
.industry-page[data-v-3bd96a67] {
  overflow-x: hidden;
}

/* 页面顶部横幅 */
.page-banner[data-v-3bd96a67] {
  height: 443px;/* 为了配合其他页面，实际代码结构和其他页面不一致 */
  background-image: url('/industry.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  margin-top: -80px;
  padding-top: 90px;/* 为了配合其他页面，实际代码结构和其他页面不一致 */
}
.banner-overlay[data-v-3bd96a67] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.page-banner .container[data-v-3bd96a67] {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.page-title[data-v-3bd96a67] {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}
.page-subtitle[data-v-3bd96a67] {
  font-size: 24px;
  font-weight:300;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 行业应用列表区域 */
.industry-list-section[data-v-3bd96a67] {
  padding: 80px 0;
  background-color: #fff;
}
.container[data-v-3bd96a67] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header[data-v-3bd96a67] {
  text-align: center;
  margin-bottom: 50px;
}
.section-title[data-v-3bd96a67] {
  font-size: 36px;
  margin-bottom: 15px;
  color: #222;
}
.section-divider[data-v-3bd96a67] {
  width: 80px;
  height: 3px;
  background-color: #0066cc;
  margin: 0 auto;
}

/* 行业应用卡片样式 */
.industries-grid[data-v-3bd96a67] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}
.industry-card[data-v-3bd96a67] {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(10px);
  opacity: 0;
  height: 100%;
}
.industry-card[data-v-3bd96a67]::before {
  content: '';
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0066cc;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.industry-card[data-v-3bd96a67]:hover::before {
  opacity: 1;
}
.industry-card.animate[data-v-3bd96a67] {
  transform: translateY(0);
  opacity: 1;
}
.industry-card[data-v-3bd96a67]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.industry-image[data-v-3bd96a67] {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.industry-image img[data-v-3bd96a67] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.industry-card:hover .industry-image img[data-v-3bd96a67] {
  transform: scale(1.03);
}
.industry-content[data-v-3bd96a67] {
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.industry-content h3[data-v-3bd96a67] {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}
.industry-card:hover .industry-content h3[data-v-3bd96a67] {
  color: #0066cc;
}
.industry-content p[data-v-3bd96a67] {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}
.industry-content .btn-small[data-v-3bd96a67] {
  align-self: center;
  margin-top: auto;
  display: inline-block;
  padding: 8px 20px;
  background-color: #0066cc;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.industry-content .btn-small[data-v-3bd96a67]:hover {
  background-color: #0052a3;
}

/* 联系区域 */
.contact-section[data-v-3bd96a67] {
  background-color: #f0f7ff;
  padding: 80px 0;
  margin-top: 40px;
}
.contact-wrapper[data-v-3bd96a67] {
  text-align: center;
}
.contact-content[data-v-3bd96a67] {
  max-width: 800px;
  margin: 0 auto;
}
.contact-content h2[data-v-3bd96a67] {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}
.contact-content p[data-v-3bd96a67] {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.contact-btn[data-v-3bd96a67] {
  display: inline-block;
  background-color: white;
  color: #3461FF;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-btn[data-v-3bd96a67]:hover {
  background-color: #f5f5f5;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 加载状态 */
.loading-indicator[data-v-3bd96a67] {
  text-align: center;
  padding: 40px 0;
  font-size: 18px;
  color: #666;
}
.no-data[data-v-3bd96a67] {
  text-align: center;
  padding: 40px 0;
  font-size: 18px;
  color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
.page-banner[data-v-3bd96a67] {
    height: 300px;
}
.page-title[data-v-3bd96a67] {
    font-size: 36px;
}
.page-subtitle[data-v-3bd96a67] {
    font-size: 16px;
}
.section-title[data-v-3bd96a67] {
    font-size: 28px;
}
.contact-content h2[data-v-3bd96a67] {
    font-size: 28px;
}
}
@media (max-width: 576px) {
.contact-btn[data-v-3bd96a67] {
    padding: 10px 30px;
    font-size: 16px;
}
}

/* === Style Block 10 === */
.notification-container[data-v-f55c6076] {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  min-width: 380px;
  max-width: 80%;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: white;
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
}
.notification-content[data-v-f55c6076] {
  display: flex;
  width: 100%;
  align-items: center;
}
.notification-icon[data-v-f55c6076] {
  margin-right: 12px;
  font-size: 20px;
  flex-shrink: 0;
}
.notification-message[data-v-f55c6076] {
  flex: 1;
  font-size: 14px;
  word-break: break-word;
  line-height: 1.4;
}
.notification-close[data-v-f55c6076] {
  font-size: 16px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #909399;
  margin-left: 10px;
  padding: 0;
}
.notification-close[data-v-f55c6076]:hover {
  color: #606266;
}
.notification-fade-enter-active[data-v-f55c6076],
.notification-fade-leave-active[data-v-f55c6076] {
  transition: opacity 0.3s, transform 0.3s;
}
.notification-fade-enter-from[data-v-f55c6076],
.notification-fade-leave-to[data-v-f55c6076] {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
}

/* 类型样式 */
.success[data-v-f55c6076] {
  background-color: #f0f9eb;
  border: 1px solid #e1f3d8;
}
.success .notification-icon[data-v-f55c6076] {
  color: #67c23a;
}
.warning[data-v-f55c6076] {
  background-color: #fdf6ec;
  border: 1px solid #faecd8;
}
.warning .notification-icon[data-v-f55c6076] {
  color: #e6a23c;
}
.error[data-v-f55c6076] {
  background-color: #fef0f0;
  border: 1px solid #fde2e2;
}
.error .notification-icon[data-v-f55c6076] {
  color: #f56c6c;
}
.info[data-v-f55c6076] {
  background-color: #f4f4f5;
  border: 1px solid #e9e9eb;
}
.info .notification-icon[data-v-f55c6076] {
  color: #909399;
}

/* 图标样式 */
.success-icon[data-v-f55c6076]::before {
  content: '✓';
}
.warning-icon[data-v-f55c6076]::before {
  content: '!';
}
.error-icon[data-v-f55c6076]::before {
  content: '✕';
}
.info-icon[data-v-f55c6076]::before {
  content: 'i';
}