﻿/* 基础样式重置和字体定义 */
@font-face { font-family: 'AkzidenzGrotesk-BoldCondAlt'; src: url('../fonts/AkzidenzGrotesk-BoldCondAlt.woff') format('woff'); font-weight: inherit; font-style: normal; }
@font-face { font-family: 'NeoTechStd-Bold'; src: url('../fonts/NeoTechStd-Bold.woff') format('woff'); font-weight: inherit; font-style: normal; }
@font-face { font-family: 'NeoTechStd-Light'; src: url('../fonts/NeoTechStd-Light.woff') format('woff'); font-weight: inherit; font-style: normal; }
@font-face { font-family: 'NeoTechStd-Light'; src: url('../fonts/NeoTechStd-Light.woff') format('woff'); font-weight: inherit; font-style: normal; }

/* 平滑滚动核心样式 - 只在html设置一次 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* 为固定头部留出空间 */
}

body {
    /* 移除可能影响滚动性能的transition */
    font-family: 'Microsoft Yahei', 'NeoTechStd-Light';
    font-size: 14px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

/* 优化滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #be0000;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #d60000;
}

/* 优化头部滚动过渡 - 保留必要的过渡效果 */
header {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
}

/* 移除重复的样式重置 */
html, body, figure, dl, dd, img, form, div, ul, ol, li, h1, h2, h3, h4, h5, h6, p, button, input, textarea, a, span, em { 
    margin: 0; 
    padding: 0; 
    border: 0; 
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

input, textarea, button { padding: 0; font-family: Verdana, Arial; }
h1, h2, h3, h4, h5, h6 { font-weight: inherit; }
ul, li, ol { list-style: none; }

/* 图片优化基础样式 */
img {
    border: 0;
    max-width: 100%;
    height: auto;
    transition: all 0.6s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* 图片容器基础样式 */
.image-wrap {
    overflow: hidden;
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.image-inner {
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* 图片加载动画 */
img[data-src] {
    opacity: 0;
    transform: scale(1.05);
}

img.loaded {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 简化动画关键帧，减少性能消耗 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0); /* 减少移动距离 */
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0); /* 减少移动距离 */
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* 为不同元素添加进入动画类 */
.fade-in-up {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
}

.fade-in-up.animated {
    animation: fadeInUp 0.6s ease forwards; /* 减少动画时间 */
}

.fade-in {
    opacity: 0;
}

.fade-in.animated {
    animation: fadeIn 0.6s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
}

.slide-in-right.animated {
    animation: slideInRight 0.6s ease forwards;
}

/* 图片列表样式优化 */
.news-list .masonry-grid .image-wrap img,
.case-list .item .image-wrap img,
.service-list .item .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

/* 优化背景图片的显示质量 */
.banner-wrap {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 增强用户交互反馈 */
button, a {
    -webkit-tap-highlight-color: transparent;
}

button:active, a:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* 优化响应式图片加载 */
@media (max-width: 768px) {
    .banner-wrap {
        background-size: cover;
    }
}
input[type=submit], input[type=text], button { appearance: none; -moz-appearance: none; -webkit-appearance: none; border-radius: 0; cursor: pointer; }
input:focus, textarea:focus, button:focus, input:active { outline-color: transparent; border: 0; }
input, select, textarea { vertical-align: middle; outline: none; -webkit-tap-highlight-color: transparent; }
a { color: #393939; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; cursor: pointer; color: #be0000; }
a:active { text-decoration: none; }
.hidden { display: none; visibility: hidden; }
.wrap { border: 0; padding: 0; margin: 0 auto; *zoom:1;
}
.wrap:after { clear: both; content: ""; display: table; }
.clear { clear: both; font-size: 0; line-height: 0; height: 0; visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
/*关键容器START*/
.wrap { padding: 0 100px; margin: 0 auto; position: relative; }
.wrap:after, .wrap:before, .container:after, .container:before { content: ""; display: table; }
.wrap:after, .container:after { clear: both; }
.container { margin: 0 auto; max-width:1600px; }


@media (max-width:767px) {
.container { width: 90%; }
}
/*关键容器END*/
.clear { clear: both; }
.fl { float: left; }
.fr { float: right; }
.case-view-inner .view-info { border-bottom: none; }
.case-view-inner .fr { line-height: 24px; width: 60%; }
.case-view-inner .fl { width: 40%; line-height: 24px; }
.case-view-inner { background: #fff; position: relative; z-index: 3; padding: 55px 30px 55px; margin: 0 0% 1.75%; margin-top: -50px; box-shadow : 0px 0px 15px rgba(0,0,0,.1); transition: all .6s; }
.case-view-inner .view-title { font: 28px/1.4'NeoTechStd-Light'; font-weight: normal; padding-bottom: 10px; text-transform: uppercase; }
.absolute { position: absolute; }
.pors { position: relative; }
.tl { text-align: left; }
.tc { text-align: center; }
.tr { text-align: right; }
.hide { opacity: 0; }
.en { font-family: 'NeoTechStd-Light'; }
nav li { list-style-type: none; }
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
color: #6f6f6f;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color: #6f6f6f;
}
/*统一全局样式*/
.main-container { background: #fff; }
.container-color { background: #F9F9F9; }
.contact-container { background-repeat: no-repeat; background-position: center bottom; background-size: cover; background-color: #F9F9F9; background-image: url(../images/contact.jpg); }

@media (max-width:767px) {
.main-container { padding-top: 90px; }
}
/* 移除现有的news-list相关样式，替换为以下瀑布流样式 */
.news-list.masonry-grid {
  padding: 30px 0;
  display: grid;
  /* 修改为固定3列布局 */
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  /* 移除grid-auto-flow: dense，使布局更统一 */
  list-style: none;
  margin: 0 auto;
  max-width: 1600px;
}

/* 移除现有的news-list相关样式，替换为以下瀑布流样式 */
.news-list.masonry-grid {
  padding: 30px 0;
  display: grid;
  /* 固定3列布局，实现响应式全屏展示 */
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  list-style: none;
  margin: 0 auto;
  /* 移除最大宽度限制，实现真正的全屏效果 */
}

.news-page {
  padding: 0;
  background: #f9f9f9;
  padding-bottom: 60px;
}

/* 添加广告语标题样式 */
.news-hero {
  background: #fff;
  padding: 30px 0;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.news-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #be0000, #ff6b6b);
}

.news-hero-inner {
	max-width:1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* 加载更多按钮样式优化 */
.showMorehandle {
  text-align: center;
  padding: 20px 0;
}

.showMorehandle a.button_link {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 100px;
  color: #000;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}



.showMorehandle a.button_link span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 确保showMoreBtn也有样式（showMore.js中使用的ID） */
#showMore {
  text-align: center;
}

#showMore a.button_link {
  display: inline-block;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 100px;
}

#showMore a.button_link:hover {
	color:#FFF;
  background: #d60000;
  border: 0px;
}

/* 响应式布局调整 */
@media (max-width: 992px) {
  .news-list.masonry-grid {
    /* 中等屏幕改为2列布局 */
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    padding: 20px;
  }
  
  .news-hero {
    padding: 40px 20px;
  }
  
  .hero-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .news-list.masonry-grid {
    /* 小屏幕改为1列布局 */
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 15px;
  }
  
  .hero-title {
    font-size: 24px;
  }
}

/* 添加广告语标题样式 */
.news-hero {
  background: #fff;
  padding: 60px 30px 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.news-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #be0000, #ff6b6b);
}


.hero-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.news-list.masonry-grid .item {
  width: 100%;
  padding: 20px;
  background: #fff;
  transition: all 0.4s ease;
  border: none;
  margin: 0;
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  height: auto; /* 让高度自适应内容 */
}

/* 移除不规则高度设置，使布局更整齐 */
.news-list.masonry-grid .item:nth-child(3n+1),
.news-list.masonry-grid .item:nth-child(3n+2),
.news-list.masonry-grid .item:nth-child(3n+3) {
  grid-row: auto;
}


/* 调整图片尺寸为更合适的大小 */
.news-list.masonry-grid .image-wrap {
  width: 100%;
  height: 350px;
  margin-right: 0;
  margin-bottom: 20px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}

.news-list.masonry-grid .image-inner {
  position: relative;
  top: 0;
  transform: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-list.masonry-grid .image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-list.masonry-grid .item:hover .image-inner img {
  transform: scale(1.08);
}

/* 添加图片悬停遮罩效果 */
.news-list.masonry-grid .image-inner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(190, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-list.masonry-grid .item:hover .image-inner:after {
  opacity: 1;
}

.news-list.masonry-grid .text-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
}

.news-list.masonry-grid .text-inner .data {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.news-list.masonry-grid .text-inner .data dd {
  font-size: 12px;
  color: #999;
  margin-right: 15px;
}

.news-list.masonry-grid .text-inner .title {
  font-size: 18px;
  margin-top: 0;
  line-height: 1.5;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-list.masonry-grid .item:hover .text-inner .title {
  color: #be0000;
}

.news-list.masonry-grid .text-inner .descrition {
  flex: 1;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 10px 0 15px;
  height: 88px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-list.masonry-grid .text-inner .more {
  margin-top: auto;
  text-align: left;
  color: #be0000;
  font-weight: 500;
  display: inline-block;
  padding: 8px 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
}

.news-list.masonry-grid .text-inner .more:hover {
  color: #333;
  padding-left: 8px;
}


.news-list.masonry-grid .text-inner .more:before {
  content: '→';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 12px;
}

.news-list.masonry-grid .text-inner .more:hover:before {
  left: 0;
  opacity: 1;
}

.page-turn-container {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .news-list.masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .news-hero {
    padding: 50px 20px;
  }
}

@media (max-width: 992px) {
  .news-list.masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .news-list.masonry-grid .image-wrap {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .news-page {
    padding: 0 15px;
  }
  
  .news-list.masonry-grid {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  
  .news-list.masonry-grid .item {
    padding: 15px;
  }
  
  .news-list.masonry-grid .image-wrap {
    height: 160px;
  }
  
  .hero-title {
    font-size: 20px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .news-hero {
    padding: 40px 15px;
  }
}

/* 平滑加载动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-list.masonry-grid .item {
  animation: fadeInUp 0.5s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* 错开动画时间，增强视觉效果 */
.news-list.masonry-grid .item:nth-child(1) { animation-delay: 0.05s; }
.news-list.masonry-grid .item:nth-child(2) { animation-delay: 0.1s; }
.news-list.masonry-grid .item:nth-child(3) { animation-delay: 0.15s; }
.news-list.masonry-grid .item:nth-child(4) { animation-delay: 0.2s; }
.news-list.masonry-grid .item:nth-child(5) { animation-delay: 0.25s; }
.news-list.masonry-grid .item:nth-child(6) { animation-delay: 0.3s; }
.news-list.masonry-grid .item:nth-child(7) { animation-delay: 0.35s; }
.news-list.masonry-grid .item:nth-child(8) { animation-delay: 0.4s; }
.news-list.masonry-grid .item:nth-child(9) { animation-delay: 0.45s; }
/*新闻资讯 END*/
.cooper-list { padding: 20px 0 50px; }
.cooper-list .item { position: relative; float: left; width: 12%; margin: 20px 1.1%; height: 60px; background: #F9F9F9; transition: all .6s; }
.cooper-list .item .image-inner { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; }
.cooper-list .item .image-inner img { width: 75%; vertical-align: middle; transition: all .6s; z-index: 1; -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;  filter:alpha(opacity:60);
opacity: 0.6; }

/*.cooper-list .item:hover .image-inner img { transform: scale(1.025); }
.cooper-list .item .image-inner:before { content: ''; position: absolute; left: 0; top: 0; display: block; width: 100%; height: 100%; transition: all .3s ease-out; opacity: 0; background: rgba(0,0,0,0.1); z-index: 2; }
.cooper-list .item:hover .image-inner:before { opacity: 1; }*/

@media (max-width:767px) {
.cooper-list { }
.cooper-list .item { width: 31%; }
}
/*合作客户 END*/
.service-list { padding: 20px 0; }
.service-list .item { position: relative; float: left; width: 23.75%; margin: 20px 0.625%; background: #fff; transition: all .6s; }
.service-list .item .image-inner { height: 170px; text-align: center; overflow: hidden; position: relative; }
.service-list .item .image-inner img { width: 100%; vertical-align: middle; transition: all .6s; z-index: 1; }
.service-list .item:hover .image-inner img { transform: scale(1.025); }
.service-list .item .image-inner:before { content: ''; position: absolute; left: 0; top: 0; display: block; width: 100%; height: 100%; transition: all .3s ease-out; opacity: 0; background: rgba(0,0,0,0.1); z-index: 2; }
.service-list .item:hover .image-inner:before { opacity: 1; }
.service-list .item .text-inner { background: #fff; padding: 20px 10px; }
.service-list .item .text-inner .title { margin-bottom: 10px; font-size: 20px; color: #393939; text-overflow: ellipsis; overflow: hidden; text-align: center; }
.service-list .item .text-inner .descrition { height: 44px; font-size: 13px; color: #888; line-height: 22px; overflow: hidden; }

@media (max-width:767px) {
.service-list { }
.service-list .item { width: 100%; margin-left: 0; margin-right: 0; border-bottom: 1px solid #e5e5e5; }
.service-list .item .image-inner { height: 200px; }
}
/*我们的服务 END*/
.colum-wrap {
  width: 100%;
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.colum-wrap .container {
  width: 100%;
  max-width: 100%;
}

.colum-wrap .coloum-inner {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.colum-wrap .coloum-inner li {
  display: inline-block;
  margin: 0 15px;
  padding: 5px 0;
  height: auto;
  position: relative;
}

.colum-wrap .coloum-inner li a {
  font-size: 16px;
  line-height: 48px;
}

.colum-wrap .coloum-inner li a:after {
  content: '';
  bottom: 0px;
  position: absolute;
  display: block;
  width: 0;
  height: 2px;
  background: #be0000;
  transition: all .4s;
}

.colum-wrap .coloum-inner li.cur a:after, 
.colum-wrap .coloum-inner li a:hover:after {
  width: 100%;
}

@media (max-width: 767px) {
  .colum-wrap .coloum-inner li {
    margin: 0 10px;
  }
  .colum-wrap .coloum-inner li a {
    font-size: 14px;
  }
}
/*子栏目 END*/
.case-list { padding: 20px 0; }
.case-list .item { float: left; width: 32.2%; margin: 20px 0.3%; transition: all .6s; }
.case-list .item .image-wrap, .case-list .item .text-inner { display: block; overflow: hidden; }
.case-list .item .image-wrap { width: 100%; height: auto; display: inline-block; overflow: hidden; vertical-align: middle; background: #000; }
.case-list .item .image-wrap img { width: 100%; vertical-align: middle; transition: all .6s; z-index: 1; }
.case-list .item:hover .image-wrap img { transform: scale(1.025); filter: alpha(opacity=60); -moz-opacity: 0.6; opacity: 0.6; }
/*.case-list .item .image-inner { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; }
.case-list .item .image-inner img { width: 100%; vertical-align: middle; transition: all .6s; z-index: 1; }
.case-list .item:hover .image-inner img { transform: scale(1.025); }*/
.case-list .item .image-inner:before { content: ''; position: absolute; left: 0; top: 0; display: block; width: 100%; height: 100%; transition: all .3s ease-out; opacity: 0; background: rgba(0,0,0,0.1); z-index: 2; }
.case-list .item:hover .image-inner:before { opacity: 1; }
.case-list .item .text-inner { position: relative; background: #fff; padding: 20px 20px; }
.case-list .item .text-inner .title { font-size: 20px; color: #393939; text-overflow: ellipsis; overflow: hidden; font-weight: normal; }
.case-list .item .text-inner .descrition { margin: 10px 0 10px; font-size: 14px; color: #888; line-height: 24px; overflow: hidden; }
.case-list .item:hover .text-inner .more { padding-left: 40px; }
.case-list .item:hover .text-inner .more:before { opacity: 1; }
.case-list .item:hover .text-inner .title { color: #be0000; }

@media (max-width:768px) {
.case-list { }
.case-list .item { width: 100%; margin-left: 0; margin-right: 0; }
.case-list .item .image-wrap, .case-list .item .text-inner { width: 100%; }
.case-list .item .image-wrap { height: auto; }
}
/* 案例内页特定样式 */
.main-container .case-page {
  padding: 20px 0;
}

/* 确保分页功能在全屏布局下正常工作 */
.showMoreNChildren {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* 案例内页的banner调整 */
.banner-wrap {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.banner-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* 响应式调整banner高度 */
@media (max-width: 767px) {
  .banner-wrap {
    height: 150px;
  }
}

/* 优化案例内页的导航栏 */
.main-container .colum-wrap {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

/* 确保showMore.js的"加载更多"按钮居中显示 */
.showMoreBtn {
  text-align: center;
  width: 100%;
  padding: 20px 0;
}

.showMoreBtn a {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #333;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.showMoreBtn a:hover {
  background-color: #333;
  color: #fff;
}
/*服务案例 END*/
/**/
/* 全屏响应式案例列表样式 */
.full-width-grid {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.full-width-grid .item {
  width: calc(32.2% - 20px);
  margin: 10px;
  float: none;
  transition: all 0.6s ease;
}

/* 大屏幕响应式 */
@media (max-width: 1200px) {
  .full-width-grid .item {
    width: calc(33.333% - 20px);
  }
}

/* 中等屏幕响应式 */
@media (max-width: 992px) {
  .full-width-grid .item {
    width: calc(50% - 20px);
  }
}

/* 小屏幕响应式 */
@media (max-width: 767px) {
  .full-width-grid .item {
    width: calc(100% - 20px);
    margin: 10px;
  }
}

/* 案例页面标题样式 */
.case-page .caption-inner {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
}

/* 移除案例区域的容器限制 */
.case-section .case-page {
  width: 100%;
  padding: 0;
}

/* 确保图片占满容器 */
.full-width-grid .item .image-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}

.full-width-grid .item .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-turn { text-align: center; padding: 30px 10px 20px; overflow: hidden; }
.page-turn a { display: inline-block; overflow: hidden; height: 36px; line-height: 36px; font-size: 32px; color: #595959; margin: 0px 15px; text-align: center; }
.page-turn a.page-num-current { text-decoration: underline; color:#D61919; }
.page-turn span { display: none; }

@media screen and (max-width: 767px) {
}
/**/

.button_link { border: 1px solid #8F8F8F; font: normal 14px/1.85 'NeoTechStd-Light'; position: relative; display: block; margin: 20px auto 50px; width: 170px; height: 52px; text-align: center; text-transform: uppercase; }
/*翻页按钮 END*/
.banner-wrap { position: relative; width: 100%; background-repeat: no-repeat; background-size: cover; background-position: center; height: 250px; z-index: 1; }
.contact-banner { height: 430px; }

@media (max-width:767px) {
.banner-wrap { height: 80px; }
.contact-banner { height: 230px; }
}
/*内页banner END*/

.about-page { padding: 20px 0; }
.about-page .about-inner { transition: all .6s; padding: 50px 0; }
.about-page .about-inner .image-inner, .about-page .about-inner .text-inner { float: left; width: 40%; overflow: hidden; }
.about-page .about-inner .image-inner { text-align: right; padding-top: 220px; }
.about-page .about-inner .text-inner { float: right; width: 57%; font: 14px/1.85'NeoTechStd-Light'; }
.about-page .about-inner .image-inner img, .about-page .about-inner .text-inner img { max-width: 100%; vertical-align: middle; }
.about-wrap { transition: all .6s; }
.about-wrap .about-banner { width: 100%; height: 800px; position: relative; overflow: hidden; background-repeat: no-repeat; background-position: center; background-size: cover; }
.about-list { padding: 20px 0; }
.about-list .item { float: left; width: 23.5%; margin: 20px 0.625%; transition: all .6s; }
.about-list .item .image-wrap, .about-list .item .text-inner { display: block; overflow: hidden; }
.about-list .item .image-wrap { height: 370px; position: relative; }
.about-list .item .image-wrap:before { content: ''; position: absolute; left: 0; bottom: 0; display: block; width: 100%; height: 80%; background: #F7F3F1; z-index: 0; }
.about-list .item .image-wrap .image-inner { position: absolute; height: 100%; bottom: 0; left: 5%; z-index: 2; width: 90%; }
.about-list .item .image-wrap .image-inner img { width: 100%; vertical-align: middle; transition: all .6s; z-index: 1; }
.about-list .item:hover .image-wrap .image-inner img { transform: scale(1.025); }
.about-list .item .text-inner { position: relative; background: #fff; padding: 20px 20px; text-align: center; }
.about-list .item .text-inner .title { font-size: 20px; color: #393939; text-overflow: ellipsis; overflow: hidden; font-weight: bold; }
.about-list .item .text-inner .descrition { margin: 10px 0 10px; font-size: 14px; color: #393939; line-height: 24px; overflow: hidden; }

@media (max-width:767px) {
.about-page .about-inner .image-inner, .about-page .about-inner .text-inner { width: 100%; }
.about-page .about-inner .image-inner { padding-top: 0; text-align: left; padding-bottom: 50px; }
.about-wrap .about-banner { height: 400px; }
.about-list .item { width: 48.5%; }
.about-list .item .image-wrap { height: 250px; position: relative; }
.about-list .item .image-wrap:before { }
.about-list .item .image-wrap .image-inner { }
}
/*关于我们 END*/

.contact-list { background: #fff; position: relative; z-index: 3; padding: 55px 30px 55px; margin: 0 0% 1.75%; margin-top: -50px; box-shadow : 0px 0px 15px rgba(0,0,0,.1); transition: all .6s; margin-bottom: 150px; }
.contact-list .text-inner, .contact-list .form-inner { float: left; width: 40%; margin: 20px 1.75%; background: #fff; transition: all .6s; }
.contact-list .form-inner { float: right; width: 50%; }
.contact-list .phone { font: 30px/1.4'NeoTechStd-Light'; font-weight: bold; color: #be0000; padding-bottom: 15px; }
.contact-list .title { font: 18px/1.4'NeoTechStd-Light'; }
.contact-list .descrition { margin-top: 15px; min-height: 60px; }
.contact-list .descrition dd { font: 14px/1.85'NeoTechStd-Light'; }
.contact-list .form-inner { }
.contact-list .form-inner .form-input, .contact-list .form-inner .form-textarea, .contact-list .form-inner .form-button { border: 2px solid #e5e5e5; border-radius: 5px; padding: 0 5px; font-size: 14px; line-height: 40px; outline: none; width: 100%; color: #999; margin-bottom: 20px; }
.contact-list .form-inner .form-textarea { height: 120px; resize: none; }
.contact-list .form-inner .form-input { }
.contact-list .form-inner .form-textarea { }
.contact-list .form-inner .form-button { width: 150px; text-align: center; font-size: 16px; background: #be0000; border-radius: 20px; border-color: #be0000; color: #fff; }

@media (max-width:767px) {
.contact-list .text-inner, .contact-list .form-inner { width: 96.5%; }
}
/*联系方式 END*/
.view-inner { background: #fff; position: relative; z-index: 3; padding: 55px 30px 55px; margin: 0 0% 1.75%; margin-top: -50px; box-shadow : 0px 0px 15px rgba(0,0,0,.1); transition: all .6s; }
.view-title { font: 28px/1.4'NeoTechStd-Light'; font-weight: bold; padding-bottom: 20px; text-transform: uppercase; }
.view-info { margin-bottom: 20px; font-size: 14px; color: #888; border-bottom: 1px solid #e5e5e5; line-height: 50px; overflow: hidden; }
.view-body { font-size: 14px; color: #393939; line-height: 1.85; margin-bottom: 30px; }
.view-body img { max-width: 100%; vertical-align: middle; margin: 20px auto; display: block; }
.view-prev { border-top: 1px dotted #e5e5e5; padding: 20px 0px; }
.view-prev li { line-height: 35px; color: #393939; }
.view-prev li a { color: #393939; }

@media (max-width:767px) {
.view-inner { padding: 70px 10px 55px; }
.case-view-inner { padding: 70px 10px 55px; }
}

.fixed-menu { position: fixed; width: 100%; height: 100vh; overflow: hidden; z-index: 99999999; right: 0; top: 0; transition: all .3s ease-out; background: rgba(19,19,19,0.9); animation: fadeInRight 1s; -moz-animation: fadeInRight 1s; -webkit-animation: fadeInRight 1s; -o-animation: fadeInRight 1s; display: none; }
.fixed-inner { position: relative; width: 100%; height: 100%; }
.fixed-inner .fixed-close { position: absolute; right: 20px; top: 10px; font: normal 42px/72px 'NeoTechStd-Light'; color: #fff; }
.fixed-inner .fixed-nav { position: absolute; left: 0; top: 50%; transform: translateY(-50%); text-align: center; width: 100%; padding: 0 20%; }
.fixed-inner .fixed-nav li { font: normal 22px/2.35 'NeoTechStd-Light'; color: #fff; border-bottom: 1px solid #888; }
.fixed-inner .fixed-nav li:last-child { border-bottom: 0; }
.fixed-inner .fixed-nav li a { color: #fff; }
.fixed-inner .fixed-number { position: absolute; bottom: 20px; width: 100%; text-align: center; left: 0; font: normal 32px/48px 'NeoTechStd-Light'; color: #fff; }

@media (max-width:767px) {
}

@media screen and (orientation: landscape) {
.fixed-inner .fixed-nav { left: 55%; top: 50%; transform: translate(-50%, -50%); padding: 8% 10%; }
.fixed-inner .fixed-nav li { width: 14.28%; writing-mode: vertical-lr;/*从左向右 从右向左是 writing-mode: vertical-rl;*/ writing-mode: tb-lr;/*IE浏览器的从左向右 从右向左是 writing-mode: tb-rl；*/ height: 100%; line-height: 0; text-align: start; float: left; letter-spacing: 5px; font-size: 28px; border-bottom: 0; }
}
/*横屏 css*/
/*Fixed-menu END*/

footer { position: relative; padding: 80px 0 30px; background-repeat: no-repeat; background-position: center; background-size: cover; background-image: url(../images/footer.jpg); overflow: hidden; }
.footer-list { }
.footer-list .text-inner, .footer-list .image-inner { float: left; transition: all .6s; }
.footer-list .text-inner .title { font: normal 22px/1.85 'NeoTechStd-Medium'; font-weight: bold; color: #FF0000; padding-bottom: 25px; }
.footer-list .text-inner .descrition { }
.footer-list .text-inner .descrition dd { font-size: 14px; line-height: 1.85; position: relative; color: #fff; }
.footer-list .image-inner { float: right; width: 135px; margin-top: 30px; }
.footer-list .image-inner img { max-width: 100%; vertical-align: middle; }
.footer-list .image-inner dd { float: right; color: #FFF; line-height: 28px; text-align: center; width: 100%; }
.footer-power { padding: 20px 0; font: normal 14px/1.85; color: #fff; text-align: center; }
.footer-power a { color: #fff; }

@media (max-width:767px) {
.footer-list .text-inner, .footer-list .image-inner { width: 100%; margin: 1.75% 0; padding: 2% 2%; }
.footer-list .image-inner { text-align: center; }
}
/*Footer END*/
#index-full { height: 680px; position: relative; z-index: 1; }
#index-full .swiper-slide { width: 100% !important; height: 100% !important; overflow: hidden; text-align: center; background-repeat: no-repeat; background-position: center; background-size: cover; }
#index-full .swiper-slide a { display: block; height: 100% !important; }
#index-full .swiper-pagination { bottom: 10px !important; }
#index-full .swiper-pagination-bullet { width: 14px !important; height: 14px !important; background-color: #fff; border-radius: 50%; opacity: 1; }
#index-full .swiper-pagination-bullet-active { background-color: #be0000; }

@media (max-width:767px) {
#index-full { height: 200px; }
}
/**/
.index-about { padding: 50px 0px; background: #be0000; }
.index-num { padding: 20px 0px; }
.index-num .item { float: left; width: 32.08%; margin: 20px 0.625%; transition: all .6s; }
.index-num .title, .index-num .descrition { text-align: center; position: relative; color: #fff; }
.index-num .title { font: normal 48px/1.85 'NeoTechStd-Medium'; font-weight: bold; }
.index-num .descrition { font-size: 14px; line-height: 1.85; }

@media (max-width:767px) {
.index-num .item { width: 100%; margin: 20px 0; }
}
/* 服务特点部分 - 简洁版式设计 */
.have-wrap {
  width: 100%;
  padding: 80px 0;
  position: relative;
  background-color: #999;
  overflow: hidden;
  background-image: url(../images/have.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
}

/* 移除复杂的背景图片，改为纯色背景 */
.have-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #be0000, #ff6b6b);
}

.have-wrap .caption-inner {
  text-align: center;
  margin-bottom: 40px;
}

.have-wrap .caption-inner .title {
  font: normal 28px/1.4 'NeoTechStd-Light';
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 0;
}

.have-wrap .caption-inner .subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* 使用grid布局替代float，更加现代简洁 */
.have-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
}

/* 特点项目样式 */
.feature-item {
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* 简化图标样式 */
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #be0000;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}

/* 为每个图标添加不同的伪元素样式以区分 */
.feature-item:nth-child(1) .feature-icon::after {
  content: '✓';
  color: white;
  font-size: 30px;
  line-height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.feature-item:nth-child(2) .feature-icon::after {
  content: '✓';
  color: white;
  font-size: 30px;
  line-height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.feature-item:nth-child(3) .feature-icon::after {
  content: '✓';
  color: white;
  font-size: 30px;
  line-height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.feature-item:nth-child(4) .feature-icon::after {
  content: '✓';
  color: white;
  font-size: 30px;
  line-height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

/* 标题和描述样式优化 */
.feature-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* 响应式设计优化 */
@media (max-width: 992px) {
  .have-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

@media (max-width: 767px) {
  .have-wrap {
    padding: 50px 20px;
  }
  
  .have-list {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .have-wrap .caption-inner .title {
    font-size: 24px;
  }
}

@media (max-width:767px) {
.have-list .item { width: 100%; margin: 20px 0; }
}
/**/
#index-news { padding: 20px 0; height: 220px; position: relative; z-index: 1; margin-bottom: 50px; margin-top: 50px; }
#index-news .swiper-slide { width: 100% !important; height: 100%; overflow: hidden; }
#index-news .swiper-slide .item { float: left; width: 46.75%; margin: 0 0.625% 0%; transition: all .6s; }
#index-news .swiper-slide .item:last-child { float: right; }
#index-news .swiper-slide .item .title, #index-news .swiper-slide .item .descrition, #index-news .swiper-slide .item .data { display: block; overflow: hidden; }
#index-news .swiper-slide .item .title { font: normal 18px/1.85 'NeoTechStd-Light'; font-weight: inherit; }
#index-news .swiper-slide .item .descrition { font-size: 14px; padding: 10px 0px; line-height: 22px; color: #888; }
#index-news .swiper-slide .item .data { font: 16px/1.85'NeoTechStd-Light'; position: relative; color: #888; padding-top: 10px; }
#index-news .swiper-slide .item .data:before { content: ''; position: absolute; left: 0; top: 0; display: block; width: 20px; height: 3px; background: #be0000; z-index: 2; }
#index-news .swiper-pagination { bottom: 10px !important; }
#index-news .swiper-pagination-bullet { width: 14px !important; height: 14px !important; position: relative; background: #7C7C7C; border-radius: 50%; opacity: 1; }
#index-news .swiper-pagination-bullet-active { background-color: #be0000; }

@media (max-width:767px) {
#index-news { height: 500px; }
#index-news .swiper-slide .item { width: 100%; padding: 0px 10px; }
#index-news .swiper-slide .item:last-child { float: left; margin-top: 30px; }
}
/**/
/*.scroll-top {
    display: none;
    position: fixed;
    right: 40px;
    bottom: 40px;
    background: url(../images/scroll-top.jpg) no-repeat;
    width: 64px;
    height: 64px;
    z-index: 999;
    cursor: pointer;
}*/

.aside-right { position: fixed; top: 75%; margin-top: -78px; right: 0; width: 50px; z-index: 1001; }
.aside-right .aside-wrap { width: 100%; }
.aside-right ul li { position: relative; width: 50px; height: 50px; margin-bottom: 2px; margin-left: 0; cursor: pointer; }
.aside-right ul li a { display: block; width: 100%; height: 100%; }
.aside-right ul li.aside-wc a { background: #393939 url(../images/aside-wc.svg) no-repeat center; }
.aside-right ul li.aside-wc .wechat-code { display: none; position: absolute; left: -130px; z-index: 1000; width: 120px; height: auto; padding: 2px; background: #FFF; }
.aside-right ul li.aside-wc .wechat-code:before { position: absolute; right: -15px; top: 50px; content: ''; border-left: 8px #fff dashed; border-top: 8px transparent dashed; border-right: 8px transparent dashed; border-bottom: 8px transparent solid; }

.aside-right ul li.aside-qq a { background: #393939 url(../images/aside-qq.svg) no-repeat center; }
.aside-right ul li.aside-top a { background: #393939 url(../images/aside-top.svg) no-repeat center; }
.aside-right ul li.aside-wc a:hover { background: #be0000 url(../images/aside-wc.svg) no-repeat center; }
.aside-right ul li.aside-qq a:hover { background: #be0000 url(../images/aside-qq.svg) no-repeat center; }
.aside-right ul li.aside-top a:hover { background: #be0000 url(../images/aside-top.svg) no-repeat center; }
/*首页 END*/
.caption-inner { transition: all .6s; }
.caption-inner .title, .caption-inner .descrition { text-align: center; position: relative; color: #fff; }
.caption-inner .title { font: normal 24px/1.85 'NeoTechStd-Light'; font-weight: bold; padding-bottom: 25px;}
.caption-inner .title:after { content: ''; bottom: 0; left: 50%; margin-left: -50px; position: absolute; display: block; width: 100px; height: 5px; background: #fff; transition: all .4s; }
.caption-inner .descrition { font-size: 14px; line-height: 1.85; padding: 25px 0px; }
.caption-inner .more { text-align: center; }
.caption-inner .more :hover {
	color:#FFF;
  background: #d60000;
  border: 1px double #FFF;
}
.caption-inner .more a { display: inline-block; padding: 10px 20px; border: 1px solid #000;border-radius: 100px; transition: all 0.3s ease;}
.index-cooper{padding:50px 0;}
.index-cooper .caption-inner .title { color: #393939; }
.index-cooper .caption-inner .title:after { background: #be0000; }
.have-wrap .caption-inner .title { font-size: 20px; font-weight: 300; padding-bottom: 0; }
.have-wrap .caption-inner .title:after { background: none; }
.have-wrap .caption-inner .descrition { font-size: 24px; padding: 0 0; }
.service-page .caption-inner .title { padding-top: 30px; color: #393939; padding-bottom: 0; }
.service-page .caption-inner .title:after { background: none; }
.service-page .caption-inner .descrition { color: #393939; padding-top: 10px; }
.cooper-page .container .title { font-size: 24px; font-weight: bold; padding-top: 30px; color: #393939; padding-bottom: 0; text-align: center; position: relative; }
.cooper-page .container .title:after { background: none; }
.cooper-page .container .descrition { color: #393939; padding-top: 10px; padding-bottom: 0; text-align: center; position: relative; padding: 25px 0px; }
.contact-list .text-inner { line-height: 24px; font-family: NeoTechStd-Light; }
/* 优化后的头部导航样式 */
header { z-index: 9999999; width: 100%; background: #fff; position: sticky; top: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; }

.header-inner {
  height: 80px;
  transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.header-inner .logo {
  float: left;
  margin-top: 25px;
  transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.header-inner .logo img {
  transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.header-inner aside {
  float: right;
  position: relative;
  margin-top: 20px;
  transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.header-inner nav, .header-inner .header-number {
  float: left;
}

.header-inner nav li {
  position: relative;
  float: left;
  margin-left: 48px;
}

.header-inner nav li a {
  font-size: 16px;
  line-height: 48px;
  transition: color 0.3s ease;
  padding: 0 5px;
}

/* 增强导航链接的动态效果 */
.header-inner nav li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #be0000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header-inner nav li.cur a:after,
.header-inner nav li a:hover:after {
  width: 80%;
}

.header-inner nav li a:hover {
  color: #be0000;
}

.header-inner .header-number {
  margin-left: 70px;
  font: normal 22px/48px 'NeoTechStd-Medium';
  color: #be0000;
  transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.header-inner .menu-button {
  float: right;
  font: normal 42px/1 'NeoTechStd-Light';
  color: #be0000;
  display: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.header-inner .menu-button:hover {
  transform: rotate(90deg);
}

/* 滚动时的头部样式 */
header.active {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header.active .header-inner {
  height: 60px;
}

header.active .header-inner .logo {
  margin-top: 15px;
}

header.active .header-inner .logo img {
  transform: scale(0.85);
}

header.active .header-inner aside {
  margin-top: 10px;
}

header.active .header-inner nav li a {
  line-height: 38px;
  font-size: 15px;
}

header.active .header-inner .header-number {
  font-size: 18px;
  line-height: 38px;
  margin-left: 50px;
}

/* 移动端样式保持不变 */
@media (max-width:767px) {
  header {
    background: #fff;
    position: fixed;
  }
  
  .header-inner {
    height: 90px;
  }
  
  .header-inner .logo {
    margin-top: 22px;
  }
  
  .header-inner nav, .header-inner .header-number {
    display: none;
  }
  
  .header-inner .menu-button {
    display: block;
  }
  
  .header-inner .logo img {
    max-width: 80%;
    vertical-align: middle;
  }
}
@media (max-width:767px) {
.index-about .caption-inner .descrition { text-align: left; }
}
/*通用快标题 END*/
@-webkit-keyframes fadeInUp {
0% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
to {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInUp {
0% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
to {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@-webkit-keyframes fadeInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
to {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
to {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@-webkit-keyframes fadeInRight {
0% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
to {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInRight {
0% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
to {
opacity:1;
-webkit-transform:none;
transform:none
}
}

/*动画效果 END*/
@media screen and (orientation: portrait) {
}

/*竖屏 css*/

@media screen and (orientation: landscape) {
}
/*横屏 css*/

/* 优化锚点链接平滑滚动 */
a[href^="#"] {
    scroll-behavior: smooth;
}
/* 侧边栏微信二维码样式 */
.aside-right {
    position: fixed;
    right: 0;
    top: 90%;
    transform: translateY(-50%);
    z-index: 999;
}

.aside-wrap ul li {
    position: relative;
    margin-bottom: 1px;
}

.aside-wrap ul li a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aside-wrap ul li a:hover {
    background-color: #be0000;
}

/* 确保微信二维码能正确显示 */
.wechat-code {
    position: absolute;
    right: 60px;
    top: 90%;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.wechat-code img {
    width: 120px;
    height: 120px;
    display: block;
}


