/* ========== 重置样式 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a56db;
  --primary-dark: #1e40af;
  --text-color: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: var(--bg-white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== 布局容器 ========== */
.container {
  width:94%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== 头部样式 ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

/* 顶部信息栏 */
.top-bar {
  display: none;
  background: var(--primary-color);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 主导航栏 */
.nav-bar {
  padding: 12px 0;
}

.nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.2;
}

.logo-text .subtitle {
  font-size: 10px;
  color: var(--text-muted);
}

/* 桌面导航 */
.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

/* 导航按钮 */
.nav-buttons {
  display: none;
  gap: 12px;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 移动端菜单 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  padding: 20px;
  transition: right 0.3s;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
}

.mobile-menu-nav {
  margin-bottom: 30px;
}

.mobile-menu-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--text-muted);
}

.mobile-menu-nav a:hover {
  color: var(--primary-color);
}

.mobile-menu-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.mobile-menu-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.mobile-menu-btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* 遮罩层 */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.overlay.active {
  display: block;
}

/* ========== 按钮样式 ========== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary-color);
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ========== Hero 区域 ========== */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero h1 span {
  color: #fbbf24;
}

.hero p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ========== 统计数据 ========== */
.stats {
  background: var(--bg-light);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item .number {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
}

.stat-item .label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== 通用区块 ========== */
.section {
  padding: 60px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title .badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== 服务卡片 ========== */
.services-grid {
  display: grid;
  gap: 20px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 86, 219, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
}

.service-header h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
}

.service-features li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
}

/* ========== 优势卡片 ========== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.advantage-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 86, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.advantage-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== 案例卡片 ========== */
.cases-grid {
  display: grid;
  gap: 20px;
}

.case-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
}

.case-image {
  height: 180px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.2), rgba(26, 86, 219, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(26, 86, 219, 0.3);
}

.case-content {
  padding: 20px;
}

.case-tag {
  display: inline-block;
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.case-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.case-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.case-result {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}

/* ========== 评价卡片 ========== */
.testimonials-grid {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 16px;
}

.testimonial-content {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 15px;
}

.testimonial-company {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== CTA 区域 ========== */
.cta-section {
  /*background: var(--primary-color);*/
  background:url(../images/feedback_bg.jpg);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ========== 页脚 ========== */
.footer {
  background: var(--primary-color);
  color: white;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-info .logo {
  margin-bottom: 16px;
}

.footer-info .logo-icon {
  background: white;
  color: var(--primary-color);
}

.footer-info .logo-text .title {
  color: white;
}

.footer-info .logo-text .subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.footer-info > p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-links h4 {
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.7;
}

/* ========== 页面标题区 ========== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.9;
}

/* ========== 套餐卡片 ========== */
.packages-grid {
  display: grid;
  gap: 20px;
}

.package-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
}

.package-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
  transform: scale(1.02);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
}

.package-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.package-card .desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.package-price {
  margin-bottom: 24px;
}

.package-price .amount {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
}

.package-price .period {
  font-size: 14px;
  color: var(--text-muted);
}

.package-features {
  text-align: left;
  margin-bottom: 24px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: '✓';
  color: var(--primary-color);
}

/* ========== 特性列表 ========== */
.features-grid {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 86, 219, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== 流程步骤 ========== */
.process-grid {
  display: grid;
  gap: 16px;
}

.process-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.process-number {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto 16px;
}

.process-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== 表单样式 ========== */
.form-grid {
  display: grid;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========== 联系卡片 ========== */
.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 86, 219, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-card .content {
  font-size: 15px;
  font-weight: 500;
}

.contact-card .desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== 时间线 ========== */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
}

.timeline-year {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.timeline-content {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== 团队卡片 ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: rgba(26, 86, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: var(--primary-color);
}

.team-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.team-card .position {
  font-size: 13px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.team-card p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== 文章卡片 ========== */
.articles-grid {
  display: grid;
  gap: 20px;
}

.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.article-card:hover {
  box-shadow: var(--shadow);
}

.article-image {
  height: 160px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.2), rgba(26, 86, 219, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  color: rgba(26, 86, 219, 0.3);
}

.article-content {
  padding: 20px;
}

.article-tag {
  display: inline-block;
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.article-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.article-content h3:hover {
  color: var(--primary-color);
}

.article-summary {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.article-tags span {
  padding: 3px 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

/* ========== 分类筛选 ========== */
.filter-bar {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: var(--bg-white);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* ========== FAQ ========== */
.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
}
#fenye{margin:3em auto;font-size:14px;text-align:center;}
#fenye from{font-size:14px;}
#fenye .a{font-size:14px;}
#fenye .szinput{width:50px;height:28px;border:1px #999999 solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */text-align:center}
#fenye #nowpage{background:#cc0000;width:28px;line-height:28px;text-align:center;color:#ffffff;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;display: inline-table}
#fenye .fypage{background:#ffffff;width:28px;line-height:28px;text-align:center;color:#cc0000;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */border:1px #999999 solid;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;display: inline-table}
#fenye .fypage a{font-size:14px;}

.currentLocation{width:94%;max-width:1560px;height:auto;line-height:2rem;margin:1rem auto;vertical-align:middle;overflow:hidden}
.currentLocation img{width:auto;height:1.2rem;vertical-align:middle;margin-right:0.5rem;display:inline;overflow:hidden}

#banner{background:#ffffff;width:100%;height:auto;overflow:hidden;position:relative;margin:0 auto;}
#banner img{width:100%;height:auto;border:0;}
#banner h2{width:auto;height:4rem;line-height:4rem;font-size:2.5rem;font-weight:bold;color:#ffffff;display:block;overflow:hidden;position:absolute;z-index:9;left:5%;top:4rem;}
#banner span{width:auto;height:auto;line-height:2rem;display:block;overflow:hidden;position:absolute;z-index:9;color:#ffffff;font-size:1.6rem;left:5%;top:9rem;}

#contentbody{width:94%;max-width:1560px;height:auto;margin:2rem auto;display:flex;overflow:hidden}
#contentbody > #left{width:auto;height:auto;float:left;flex:1;margin-right:3%;overflow:hidden}
#contentbody > #right{width:250px;height:auto;float:right;flex:none;/*position:absolute;left:240px;*/overflow:hidden}

#contentbody > #left #AboutTitle{width:100%;height:2rem;line-height:2rem;font-size:14px;border-bottom:1px #dcdcdc solid;margin-bottom:1rem;overflow:hidden}
#contentbody > #left #AboutTitle img{width:13px;height:13px;border:0;margin-right:0.5rem;}

#contentbody > #left #ViewNews{width:100%;height:auto;margin:0 auto;line-height:160%;font-size:14px;overflow:hidden}
#contentbody > #left #ViewNews img{max-width:100%;height:auto;overflow:hidden}
#contentbody > #left #ViewNews #ViewNewsTitle{width:100%;height:auto;line-height:1.5rem;text-align:center;font-size:18px;color:#004D89;margin:1.5rem auto;overflow:hidden}
#contentbody > #left #ViewNews #ViewNewsTitle h1{font-size:18px;color:#004D89;}
#contentbody > #left #ViewNews #ViewNewsTitle h1 a{font-size:18px;color:#004D89;}
#contentbody > #left #ViewNews #newsContent{width:100%;HEIGHT:auto;margin:0 auto;LINE-HEIGHT:160%;font-size:1rem;}

#contentbody > #left #ViewNews #newsContent h2{width:100%;height:auto;line-height:1.6rem;margin:0 auto;padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1.2rem;font-size:1.2rem;font-weight:bold;background:url(/images/newscontenttitle.png) center left no-repeat;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */display:block;margin:0.5rem auto;overflow:hidden}
#contentbody > #left #ViewNews #newsContent h2 a{font-size:1.2rem;font-weight:bold;}
#contentbody > #left #ViewNews #newsContent h3{width:100%;height:auto;line-height:1.6rem;margin:0 auto;padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1.1rem;font-size:1.1rem;font-weight:bold;background:url(/images/newscontenttitle.png) center left no-repeat;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */display:block;margin:0.5rem auto;overflow:hidden}
#contentbody > #left #ViewNews #newsContent h3 a{font-size:1.1rem;font-weight:bold;}

#contentbody > #left #ViewNews #newsContent img{max-width:100%;height:auto;overflow:hidden}

#contentbody > #left #ViewNews #articleStatement{margin:1rem auto;background:#ececec;padding:1rem;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:hidden}
#contentbody > #left #ViewNews #articleStatement img{width:120px;height:auto;float:left;margin-right:1rem;display:block;overflow:hidden}

#contentbody > #left #ViewNews #nynewsshare{background:#ececec;width:100%;height:35px;line-height:35px;font-size:14px;text-align:center;margin:0 auto;margin-top:30px;margin-bottom:20px;border:1px #dcdcdc solid;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */overflow:hidden}
#contentbody > #left #ViewNews #nynewsfb{background:#ececec;width:100%;height:35px;line-height:35px;font-size:14px;text-align:center;margin:1rem auto;border:1px #dcdcdc solid;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */overflow:hidden}

#contentbody > #left #tlnews{width:100%;height:auto;border:1px #ececec solid;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */margin:2rem auto;overflow:hidden;}
#contentbody > #left #tlnews > #tl_newstitle{background:#F4F5F6;width:100%;height:40px;line-height:40px;font-size:16px;color:#004D89;padding-left:10px;margin:0 auto;border-bottom:1px #ececec solid;overflow:hidden;}
#contentbody > #left #tlnews > #tl_newscon{width:100%;height:auto;margin:0 auto;overflow:hidden}
#contentbody > #left #tlnews > #tl_newscon ul{width:100%;height:auto;margin:10px auto;padding:0;overflow:hidden}
#contentbody > #left #tlnews > #tl_newscon ul li{width:44%;height:28px;line-height:28px;margin:auto 3%;font-size:14px;color:#999999;padding-left:1.5%;display:list-item;list-style-type:disc;list-style-position:inside;float:left;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */overflow:hidden}
#contentbody > #left #tlnews > #tl_newscon ul li a{font-size:14px;}

#contentbody > #left #AboutCon{width:100%;height:auto;margin-top:15px;font-size:14px;line-height:25px;text-align:left;overflow:hidden}
#contentbody > #left #AboutCon a{font-size:14px;}
#contentbody > #left #AboutCon table,#contentbody > #left #AboutCon th,#contentbody > #left #AboutCon td {font-size:14px;line-height:180%}
#contentbody > #left #AboutCon img{max-width:900px;border:0px;}

#contentbody > #left #AboutCon #nynewstitle{width:100%;height:3rem;line-height:3rem;color:#cc0000;font-size:1.5rem;text-align:center;margin:0 auto;overflow:hidden}
#contentbody > #left #AboutCon #nynewscon{width:100%;height:auto;line-height:30px;font-size:14px;text-align:left;margin:0 auto;padding-top:1rem;padding-bottom:1rem;overflow:hidden}
#contentbody > #left #AboutCon #nynewscon img{max-width:100%;height:auto;overflow:hidden}
#contentbody > #left #AboutCon #nynewsshare{background:#ececec;width:898px !important;width:900px;height:33px !important;height:35px;line-height:35px;font-size:14px;text-align:center;margin:0 auto;margin-bottom:10px;border:1px #dcdcdc solid;overflow:hidden}
#contentbody > #left #AboutCon #nynewsfb{background:#ececec;width:100%;height:2rem;line-height:2rem;font-size:14px;text-align:center;margin:1rem auto;border:1px #dcdcdc solid;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */overflow:hidden}

#contentbody > #left > #news{width:100%;height:auto;margin-top:0px;overflow:hidden}
#contentbody > #left > #news dl{width:100%;height:215px;border-bottom:1px #dcdcdc solid;margin:0;padding:0;margin-bottom:30px;display:block;overflow:hidden}
#contentbody > #left > #news dl > span{width:245px;height:180px;margin-right:20px;float:left;overflow:hidden}
#contentbody > #left > #news dl > span img{width:245px;height:180px;border:0;transition:all 0.3s linear;overflow:hidden}
#contentbody > #left > #news dl > span img:hover{width:245px;height:180px;border:0;transform:scale(1.1);overflow:hidden}
#contentbody > #left > #news dl .newscon2{width:585px;height:180px;overflow:hidden}
#contentbody > #left > #news dl .newscon2 a{font-size:18px;}
#contentbody > #left > #news dl dt{width:585px;height:25px;line-height:25px;font-size:18px;margin-bottom:10px;overflow:hidden}
#contentbody > #left > #news dl dt a{font-size:18px;color:#222222;}
#contentbody > #left > #news dl dt a:hover{color:#003399;text-decoration:underline}
#contentbody > #left > #news dl dd{width:585px;height:auto;line-height:22px;font-size:14px;color: #999999;overflow:hidden}
#contentbody > #left > #news dl .source{background:url(../images/icon/news.png) no-repeat left center;background-size:20px 20px;width:540px !important;width:585px;height:30px;line-height:30px;margin-bottom:10px;padding-left:25px;overflow:hidden}

#contentbody > #right .Catalog{width:100%;height:auto;margin-bottom:20px;border-radius:15px;overflow:hidden}
#contentbody > #right .Catalog .CataTitle{background:#0167B7;width:100%;height:3rem;line-height:3rem;font-size:1.2rem;color:#ffffff;text-align:center;overflow:hidden}
#contentbody > #right .Catalog .CataCon{width:100%;height:auto;overflow:hidden}
#contentbody > #right .Catalog .CataCon ul{width:100%;height:auto;margin:0;padding:0;overflow:hidden}
#contentbody > #right .Catalog .CataCon ul li{background:#ececec;width:100%;height:3rem;line-height:3rem;border-bottom:1px #ffffff solid;text-align:left;display:block;overflow:hidden}
#contentbody > #right .Catalog .CataCon ul li a{width:100%;height:3rem;line-height:3rem;text-align:left;font-size:14px;padding-left:30px;display:block;overflow:hidden}
#contentbody > #right .Catalog .CataCon ul li a:hover{width:100%;background: #0167B7;color:#ffffff}

#contentbody > #right #wechat{background:#0167B7;width:100%;height:auto;padding:25px;border-radius:15px;text-align:center;color:#fff;overflow:hidden}
#contentbody > #right #wechat img{width:100%;height:auto}

/* ========== 响应式设计 ========== */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .top-bar {
    display: block;
  }

  .nav-menu {
    display: flex;
  }

  .nav-buttons {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero h1 {
    font-size: 36px;
  }
}

#chatonline{width:3.6rem;height:auto;position:fixed;z-index:99;right:1rem;top:10rem;}
#chatonline ul{width:100%;height:auto;}
#chatonline ul li{background:#0084D6;width:3.2rem;height:3.2rem;border-radius:1.8rem;margin:0.3rem auto;display:block;position:relative}
#chatonline ul li a > img,#chatonline ul li > img{width:auto;height:1.6rem;margin-left:0.8rem;margin-top:0.8rem;vertical-align:middle}
#chatonline ul li a{color:#fff;}
#chatonline span{display:none}
#chatonline ul li:hover span,#chatonline span:hover{position:absolute;z-index:100;top:0;right:3.2rem;width:auto;height:auto;min-height:3.2rem;line-HEIGHT:3.2rem;display:block;white-space:pre;}
#chatonline ul li span > img{width:20px;height:auto;display:inline-block;margin:0;vertical-align:top;top:0;}
#chatonline ul li span > font{background:#0084D6;padding-left:1rem;padding-right:1rem;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */color:#fff;display:inline-block;margin:0;border-radius:5px;}
#chatonline ul li.silverli{background:#666;}
#chatonline ul li span > font.silverli{background:#666}
#chatonline ul li.orangeli{background:#ff6600;}
#chatonline ul li span > font.orangeli{background:#ff6600}
#chatonline ul li.greenli{background:#31A918;}
#chatonline ul li span > font.greenli{background:#31A918}
#chatonline ul li.lightgreenli{background:#28D368;}
#chatonline ul li span > font.lightgreenli{background:#28D368}