* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
   font-family: "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f7fa;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

a:hover {
    color: #e63946;
}

img {
    max-width: 100%;
}

ul, li {
    list-style: none;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 区块通用样式 */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.section-title .divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #0759af 100%);
  margin: 15px auto;
  border-radius: 2px;
}

/* Hero Banner */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #0759af 100%);
  padding: 100px 0 80px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #667eea;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* 快捷信息区 */
.quick-info-section {
  background: #fff;
  margin-top: 40px;
  position: relative;
  z-index: 10;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.info-card {
  padding: 20px;
  border-right: 1px solid #f0f0f0;
}

.info-card:last-child {
  border-right: none;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
}

.info-card h3 a {
  color: inherit;
  text-decoration: none;
}

.info-card h3 a:hover {
  color: #667eea;
}

.contact-info {
  font-size: 14px;
  line-height: 2;
  color: #666;
}

.contact-info a {
  color: #667eea;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.service-list {
  list-style: none;
}

.service-list li {
  margin-bottom: 12px;
}

.service-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-list li a::before {
  content: '›';
  font-size: 20px;
  color: #667eea;
  transition: transform 0.3s ease;
}

.service-list li a:hover {
  color: #667eea;
  padding-left: 5px;
}

.service-list li a:hover::before {
  transform: translateX(3px);
}

.search-box {
  margin-top: 15px;
}

.search-box p {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.search-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.search-form:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-form input[type="text"] {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-form input[type="submit"] {
  padding: 12px 20px;
  background: linear-gradient(135deg, #667eea 0%, #0759af 100%);
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #0759af 0%, #667eea 100%);
}

/* 产品展示区 */
.products-section {
  background: #f8f9fa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card .product-image:hover {
  transform: scale(1.1);
}

.product-image-wrapper {
  overflow: hidden;
  position: relative;
}

.product-title {
  padding: 20px;
  text-align: center;
}

.product-title a {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card:hover .product-title a {
  color: #667eea;
}

/* 优势展示区 */
.advantages-section {
  background: linear-gradient(135deg, #667eea 0%, #0759af 100%);
}

.advantages-section .section-title h2 {
  color: #fff;
}

.advantages-section .section-title p {
  color: rgba(255,255,255,0.9);
}

.advantages-section .section-title .divider {
  background: #fff;
}

.advantage-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.advantage-item:nth-child(even) {
  direction: rtl;
}

.advantage-item:nth-child(even) > * {
  direction: ltr;
}

.advantage-content {
  padding: 20px;
}

.advantage-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background:#fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.advantage-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.advantage-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 10px;
}

.advantage-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.advantage-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 合作伙伴区 */
.partners-section {
  background: #f8f9fa;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.partner-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.partner-card:hover  img {
  transform: scale(1.1);
}
.partner-title {
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.partner-title a {
  color: inherit;
  text-decoration: none;
}

.partner-card:hover .partner-title a {
  color: #667eea;
}

/* 新闻动态区 */
.news-section {
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.news-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  padding: 20px 20px 15px;
  border-bottom: 2px solid #667eea;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.news-item {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-thumb {
  width: 100px;
  /*height: 100px;*/
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-thumb img {
  transform: scale(1.1);
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.news-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-item:hover .news-title a {
  color: #667eea;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #667eea;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding-bottom: 5px;
}

.read-more:hover {
  color: #0759af;
  gap: 8px;
}

.about-card {
  padding: 0;
}

.about-card h3 {
  padding: 20px 20px 15px;
  margin: 0;
}

.about-image {
  width: calc(100% - 40px);
  margin: 0 20px 15px;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
}

.about-text {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
  padding: 0 20px 5px;
}

.about-text a {
  color: #667eea;
  text-decoration: none;
}

.about-text a:hover {
  text-decoration: underline;
}

.about-card .read-more-wrapper {
  padding: 0 20px 20px;
  margin-top: auto;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-card {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .products-grid,
  .partners-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantage-item {
    grid-template-columns: 1fr;
  }
  
  .advantage-item:nth-child(even) {
    direction: ltr;
  }
  
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .hero-section {
    padding: 60px 0 50px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .quick-info-section {
    margin-top: -20px;
    padding: 25px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .products-grid,
  .partners-grid {
    /*grid-template-columns: 1fr;*/
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .advantage-item {
    padding: 10px;
    margin-bottom: 15px;
  }
  
  .advantage-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
}


/* 头部基础样式 */
.modern-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* Logo样式 */
.logo-section {
  flex-shrink: 0;
}

.logo-link {
  display: block;
}

.logo-img {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* 桌面端导航 */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-link:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
}

.home-link {
  color: #667eea;
  font-weight: 600;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
  font-style: normal;
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* 下拉菜单 */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-item {
  margin: 0;
}

.submenu-link {
  display: block;
  padding: 10px 20px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.submenu-link:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.06);
  padding-left: 24px;
}

/* 当前页面高亮 */
.nav-item.current .nav-link {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 移动端导航遮罩 */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  padding: 60px 20px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: rgba(0,0,0,0.05);
}

/* 移动端菜单列表 */
.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #667eea;
}

.mobile-dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  font-style: normal;
}

.mobile-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

/* 移动端子菜单 */
.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-submenu {
  max-height: 500px;
}

.mobile-submenu-item {
  margin: 0;
}

.mobile-submenu-link {
  display: block;
  padding: 12px 0;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.mobile-submenu-link:hover {
  color: #667eea;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav-overlay {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 60px;
    padding: 0 15px;
  }
  
  .logo-img {
    max-height: 40px;
  }
  
  .mobile-nav-content {
    width: 260px;
  }
}

/* 滚动时头部效果 */
.modern-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* 底部基础样式 */
.modern-footer {
  background:linear-gradient(135deg, #656566 0%, #2a2c2e 100%);
  color: #fff;
  margin-top: 60px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 主底部区域 */
.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column {
  animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* 标题样式 */
.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 25px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  color: #fff;
}

.footer-title a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-title a:hover {
  opacity: 0.8;
}

/* 关于我们部分 */
.footer-about-content p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  text-align: justify;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  transform: translateX(5px);
}

.arrow {
  transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow {
  transform: translateX(3px);
}

/* 快速链接 */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  padding: 1px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  padding-left: 16px;
}

.link-icon {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.footer-links li a:hover .link-icon {
  transform: translateX(3px);
}

/* 联系信息 */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-all;
  padding: 9px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}
.contact-line:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(5px);
}
.contact-labelb {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-valueb {
  color: #fff;
  flex: 1;
}

.contact-valueb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-valueb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* 二维码部分 */
.qrcode-wrapper {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.qrcode-wrapper:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.qrcode-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.qrcode-tip {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* 版权信息 */
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-content {
  text-align: center;
}

.copyright-content p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.copyright-content a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.copyright-content a:hover {
  color: #fff;
  text-decoration: underline;
}


/* 响应式设计 */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-main {
    padding: 40px 0 30px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-main {
    padding: 30px 0 20px;
  }
  
  .footer-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-bottom {
    padding: 15px 0;
  }
  
  .copyright-content p {
    font-size: 12px;
  }
  
  .qrcode-img {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .contact-item {
    padding: 8px;
  }
  
  .contact-icon {
    font-size: 18px;
  }
  
  .contact-valueb {
    font-size: 13px;
  }
}
@media (max-width: 1150px) {
.nav-link {
  padding: 10px 8px;
}
}
/* 侧边栏基础样式 */
.modern-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* 标题样式 */
.widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-icon {
  font-size: 20px;
}

/* 搜索框样式 */
.search-form {
  margin: 0;
}

.search-input-wrapper {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  /*border: 2px solid #e0e0e0;*/
  transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  background: #fff;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  padding: 12px 18px;
  background: linear-gradient(135deg, #667eea 0%, #0759af 100%);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: linear-gradient(135deg, #0759af 0%, #667eea 100%);
}

.search-icon {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

/* 联系信息样式 */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  /*display: flex;
  flex-direction: column;
  gap: 5px;*/
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.contact-item:hover {
  background: #f0f2f5;
}

.contact-item.full-width {
  flex-direction: column;
}

.contact-label {
  font-size: 13px;
  color: #2c3e50;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight:bold;
}

.contact-value {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  word-break: break-all;
}

.contact-value a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: #0759af;
  text-decoration: underline;
}

.address {
  line-height: 1.6;
}

/* 新闻列表样式 */
.news-listl {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-iteml {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-iteml:hover {
  transform: translateX(5px);
}

.news-linkl {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.news-thumbl {
  position: relative;
  width: 80px;
 /* height: 80px;*/
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.news-thumbl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-iteml:hover .news-thumbl img {
  transform: scale(1.1);
}

.news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-iteml:hover .news-overlay {
  opacity: 1;
}

.news-contentl {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.news-titlel {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.news-iteml:hover .news-titlel {
  color: #667eea;
}

.news-datel {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.date-icon {
  font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .modern-sidebar {
    margin-top: 30px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .sidebar-widget {
    padding: 18px;
  }
  
  .widget-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .news-thumbl {
    width: 70px;
    height: 70px;
  }
  
  .news-titlel {
    font-size: 13px;
  }
}


.sidebar-widget {
  animation: fadeInUp 0.6s ease forwards;
}

.sidebar-widget:nth-child(1) {
  animation-delay: 0.1s;
}

.sidebar-widget:nth-child(2) {
  animation-delay: 0.2s;
}

.sidebar-widget:nth-child(3) {
  animation-delay: 0.3s;
}
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #0759af 100%);
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/skin/images/inner-bg.jpg') center/cover;
  opacity: 0.2;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-titleab {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.breadcrumb i {
  font-style: normal;
}

.main-content {
  padding: 60px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.article-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-size: 16px;
  line-height: 1.8;
  min-height:600px;
  height:auto;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  color: #2c3e50;
  margin: 30px 0 15px;
  font-weight: 600;
}

.article-content h1 {
  font-size: 28px;
}

.article-content h2 {
  font-size: 24px;
}

.article-content h3 {
  font-size: 20px;
}

.article-content p {
  margin-bottom: 16px;
  text-align: justify;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.article-content ul,
.article-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.sidebar {
  position: sticky;
  top: 20px;
}

.pagination {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.footer-spacing {
  height: 40px;
}

@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
  
  .page-titleab {
    font-size: 32px;
  }
  
  .article-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 50px 0 40px;
  }
  
  .page-titleab {
    font-size: 26px;
  }
  
  .main-content {
    padding: 30px 0;
  }
  
  .article-content {
    padding: 20px;
    font-size: 15px;
  }
}
/* 新闻列表 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
}

.news-cardm {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.news-cardm:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.news-image-wrapper {
  position: relative;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-cardm:hover .news-image {
  transform: scale(1.08);
}

.news-contentm {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-titlem {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 15px 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.news-titlem a {
  color: inherit;
  text-decoration: none;
}

.news-cardm:hover .news-titlem {
  color: #667eea;
}

.news-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-morem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-morem:hover {
  color: #0759af;
  gap: 12px;
}

.read-morem::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-morem:hover::after {
  transform: translateX(4px);
}


@media (max-width: 768px) {
 .news-list {
  padding: 10px;
}
  .news-cardm {
    grid-template-columns: 1fr;
  }
  
  .news-image-wrapper {
    height: 200px;
  }
  
  .news-contentm {
    padding: 20px;
  }
  
  .news-titlem {
    font-size: 18px;
  }
  
  .news-excerpt {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .news-image-wrapper {
    height: 180px;
  }
  
  .news-contentm {
    padding: 15px;
  }
}
/* 文章容器 */
.article-container {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* 文章标题 */
.article-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* 文章元信息 */
.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
  font-size: 14px;
  color: #999;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-divider {
  color: #ddd;
}

.meta-link {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.meta-link:hover {
  color: #0759af;
  text-decoration: underline;
}

/* 文章内容 */
.article-contentn {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.article-contentn h1,
.article-contentn h2,
.article-contentn h3,
.article-contentn h4,
.article-contentn h5,
.article-contentn h6 {
  color: #2c3e50;
  margin: 30px 0 15px;
  font-weight: 600;
  line-height: 1.4;
}

.article-contentn h1 {
  font-size: 28px;
  border-left: 4px solid #667eea;
  padding-left: 15px;
}

.article-contentn h2 {
  font-size: 24px;
  border-left: 4px solid #667eea;
  padding-left: 15px;
}

.article-contentn h3 {
  font-size: 20px;
}

.article-contentn h4 {
  font-size: 18px;
}

.article-contentn p {
  margin-bottom: 5px;
  text-align: justify;
}

.article-contentn img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-contentn a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.article-contentn a:hover {
  color: #0759af;
  border-bottom-color: #0759af;
}

.article-contentn ul,
.article-contentn ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-contentn li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.article-contentn blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  border-radius: 0 8px 8px 0;
  color: #666;
  font-style: italic;
}

.article-contentn table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.article-contentn th,
.article-contentn td {
  padding: 12px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.article-contentn th {
  background: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
}

.article-contentn code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: #e83e8c;
}

.article-contentn pre {
  background: #2c3e50;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}

.article-contentn pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}


/* 响应式设计 */
@media (max-width: 992px) {
  .article-container {
    padding: 30px;
  }
}

@media (max-width: 768px) {
 
  .article-container {
    padding: 25px;
  }
  
  .article-title {
    font-size: 24px;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .meta-divider {
    display: none;
  }
  
  .article-contentn {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .article-container {
    padding: 20px;
  }
  
  .article-title {
    font-size: 20px;
  }
}

/* 产品网格 */
.products-gridx {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
}

.product-cardx {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.product-cardx:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-imagex-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-imagex {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-cardx:hover .product-imagex {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(102, 126, 234, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cardx:hover .product-overlay {
  opacity: 1;
}

.view-detail-btn {
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid #fff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-cardx:hover .view-detail-btn {
  transform: translateY(0);
}

.view-detail-btn:hover {
  background: #fff;
  color: #667eea;
}

.product-infox {
  padding: 20px;
}

.product-titlex {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.products-sectionx{background-color:#FFF;}
.product-titlex a {
  color: inherit;
  text-decoration: none;
}

.product-cardx:hover .product-titlex {
  color: #667eea;
}


/* 响应式设计 */
@media (max-width: 992px) {
 
  .products-gridx {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
 
  .products-gridx {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
	padding:10px;
  }
  
  .product-infox {
    padding: 15px;
  }
  
  .product-titlex {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .products-gridx {
    /*grid-template-columns: 1fr;*/
  }
  .news-thumb {
  width: 100px;
  height:80px;
}
}


#tool {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	display:none;
}
#tool2 {
	height:50px;
	display:none;
}
@media (max-width:768px) {
#tool {
	display:block;
}
#tool2 {
	display:block;
}
} 
ul.toollist {
    position: fixed;
    z-index: 900;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    height: 56px;
  padding-top: 5px;
}
.toollist {
    background:#4276cd;
}

.toollist li {
    border-right: 1px solid rgba(255, 255, 255, 0.7);
}
.toollist li {
    float: left;
    width: auto;
    height: 100%;
    width: 25%;
    position: static !important;
    margin: 0;
    border-radius: 0 !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    box-flex: 1;
    -webkit-box-sizing: border-box;
    box-shadow: none !important;
    background: none;
}
li {
    list-style: none outside none;
}

.toollist li a {
    color: #fff;
}
.toollist li a {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    display: block;
    text-decoration: none;
    padding-top: 2px;
    position: relative;
}

.toollist li a img {
    width: 24px;
    height: 24px;
}

.toollist li a p {
    margin: 1px 0 1px 0;
    font-size: 14px;
    display: block !important;
    line-height: 18px;
    text-align: center;
}
.pf_new{width:166px;position: fixed;right: 20px;top: 200px;z-index: 99999;}
.pf_new .hd{width:100%;background:#4276cd url(../images/pf_tlt_bg.png) right center no-repeat;text-align:center;border-radius:8px 8px 0 0;padding:8px 0 10px;}
.pf_new .hd p{font-size:18px;font-weight:bold;color:#fff;text-align:center;}
.pf_new .hd span{display:block;font-size:14px;color:#fff;font-style:italic;margin-top:-2px;}
.pf_new .hd em{display:block;width:15px;height:15px;background:url(../images/pf_close.png) center center no-repeat;position:absolute;top:10px;right:10px;cursor:pointer;transition: 0.5s;}
.pf_new .hd em:hover{-webkit-transform: rotate(90deg); -o-transform: rotate(90deg);-moz-transform: rotate(90deg);transform: rotate(90deg);}	
.pf_new .conn{border-left:1px solid #dedede;border-right:1px solid #dedede;border-bottom:1px solid #dedede;background:#fff;padding:10px 10px;}
.pf_new .conn .lxr{border-bottom:1px dashed #dedede;padding-bottom:10px;}
.pf_new .conn .lxr p{text-align:center;font-size:14px;color:#555;margin-bottom:0;}
.pf_new .conn .lxr p img{vertical-align:middle;margin-top:-2px;margin-right:4px;}
.pf_new .conn .lxr a.qq{display:block;width:92px;height:22px;background:url(../images/pf_icon2.png) center center no-repeat;margin:5px auto 0;}
.pf_new .conn .tel{border-bottom:1px dashed #dedede;padding:10px 0;}
.pf_new .conn .tel p{text-align:center;font-size:14px;color:#555;}
.pf_new .conn .tel img{vertical-align:middle;margin-top:-2px;margin-right:4px;}
.pf_new .conn .tel span{display:block;font-size:18px;font-weight:bold;color:#4276cd;text-align:center;overflow: hidden; text-overflow: ellipsis; white-space:nowrap;padding-top:3px;}
.pf_new .conn .wx{padding:10px 0;}
.pf_new .conn .wx p{width:100%;height:auto;background:url(../images/pf_code_bg.jpg) center center no-repeat;margin:0 auto;text-align:center;}
.pf_new .conn .wx p img{width:100%;height:auto;vertical-align:middle;}
.pf_new .conn .wx p .iblock {display:inline-block;height:100%;width:0;vertical-align:middle}
.pf_new .conn .wx span{display:block;text-align:center;font-size:12px;color:#999;margin-top:5px;}
.pf_new .conn .wx span em{font-style:normal;color:#4276cd;}
.pf_new .bd{display:none;}
.pf_new .bd a{display:block;padding:10px 0;background:#fff;color:#555;font-size:14px;vertical-align:middle;text-align:center;border:1px solid #dedede;border-top:0;}
.pf_new .bd a p{height:20px;background:url(../images/pf_icon4.png) center center no-repeat;}
.pf_new .bd a span{display:block;text-align:center;padding-top:5px;}
.pf_new .bd a:hover{background:#4276cd;color:#fff;width:100%;border:0;}
.pf_new .bd a:hover span{ color:#fff;}
.pf_new .bd a:hover p{background:url(../images/pf_icon4_2.png) center center no-repeat;}
.pf_new_bx{width:40px;height:134px;background:#4276cd url(../images/pf_tlt_bg2.png) bottom center no-repeat;border-radius:4px 0 0 4px;position:fixed;right:0;top:200px;z-index:99999;padding-top:5px;cursor:pointer;display:none;-webkit-transition: all .25s;-moz-transition: all .25s;-ms-transition: all .25s;-o-transition: all .25s;transition: all .25s;}
.pf_new_bx p{height:17px;background:url(../images/pf_icon5.png) center center no-repeat;animation:pulse 2s infinite;-webkit-animation:pulse 2s infinite;}
@-webkit-keyframes pulse{0%{-webkit-transform: translate(0, 0); transform: translate(0, 0);} 50%{-webkit-transform: translate(0, 10px); transform: translate(0, 10px);} 100%{-webkit-transform:translate(0, 0); transform: translate(0, 0);} }
@keyframes pulse{0%{-webkit-transform: translate(0, 0); transform: translate(0, 0);} 50%{-webkit-transform: translate(0, 10px); transform: translate(0, 10px);} 100%{-webkit-transform: translate(0, 0); transform: translate(0, 0);} }
.pf_new_bx span{font-size:17px;color:#fff;line-height:21px;font-weight:bold;text-align:center;display:block;padding-top:10px;}
.pf_new_bx em{display:block;height:19px;background:url(../images/pf_icon6.png) center center no-repeat;}
.pf_new_bx:hover{background:#4276cd url(../images/pf_tlt_bg2.png) bottom center no-repeat;}
@media (max-width:880px) {
    .pf_new{display:none;} 
	#KFRightScreen{display:none !important;}
}

.fanye{text-align:center;clear: both;padding-top: 26px;padding-right: 0;padding-bottom: 30px;padding-left: 0; font-size:14px;}
.fanye a{display:inline-block;height:30px;color:#fff;text-align:center;margin:0 4px;line-height:30px; text-decoration:none;}
.fanye a.fpage{background-color:#999;width:30px;height:30px;color:#fff;text-align:center;margin:0 4px;line-height:30px}
.fanye a.fbtn{background-color:#333;width:60px;}
.fanye a.fpage:hover{background-color:#3d6ed1;box-shadow: 0px 0px 9px #999;}
.fanye a.fcur{background-color:#3d6ed1;width:30px; text-align:center;box-shadow: 0px 0px 9px #999;}
@media (max-width:768px) {
.fanye{}
.fanye a{}
.fanye a.fpage{}
.fanye a.fbtn{}
.fanye a.fpage:hover{}
.fanye a.fcur{}

.fanye {margin: 15px 0;width: 100%;line-height: 34px;text-align: center;color: #fff;}
.fanye a {color: #fff;padding: 0 11px;margin: 0 5px;font-weight: bold;background:#939393;margin-top:10px; font-size:12px;}
.fanye a.fcur {background:#3d6ed1;box-shadow: 0px 0px 9px #999;}
.fanye * {display: inline-block;_display: inline;vertical-align: middle;line-height: 28px;/*height: 28px;*/padding-bottom: 1px;}
.fanye a:hover {display: inline-block;color: #fff;background:#3d6ed1;box-shadow: 0px 0px 9px #999;}
.hidetxt{display:none;}
.news-thumb {

}
.product-title a {
  font-size: 14px;
}
.product-title {
  padding: 5px;
  text-align: center;
  padding-bottom:7px;
}
.advantage-content {
  padding: 4px;
}
}  