@keyframes popupScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.banner {
  width: 100%;
  height: 505px;
  position: relative;
  overflow: hidden;
}
.banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageTop {
  width: 100%;
  padding: 13px 0;
  background: #fa9703;
  text-align: center;
}
.pageTop p {
  transform: translateY(-2px);
  vertical-align: top;
  display: inline-block;
  height: 48px;
  line-height: 48px;
  font-size: 32px;
  color: #fff;
  margin-right: 20px;
}
.pageTop p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}
.pageTop .serach {
  vertical-align: top;
  display: inline-block;
  height: 48px;
  width: 580px;
  background: #fff;
  border-radius: 24px;
  position: relative;
}
.pageTop .serach button {
  width: 70px;
  height: 48px;
  background: url(../images/pagePic_05.png) center center no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
.pageTop .serach input {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 16px;
}
.NavGation {
  width: 100%;
}
.NavGation ul {
  width: 1000px;
  margin: 0 auto;
  height: 64px;
}
.NavGation ul li {
  float: left;
  height: 64px;
  line-height: 64px;
  color: #999;
}
.NavGation ul li a {
  font-size: 16px;
  color: #999;
}
.pageContainer {
  width: 1024px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.pageContainer .bt {
  overflow: hidden;
  border-bottom: 1px solid #e9efef;
  padding: 20px 0;
  position: relative;
}
.pageContainer .bt .more {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 35px;
  font-size: 16px;
  color: #fa9703;
  padding-right: 22px;
}
.pageContainer .bt .more img {
  transition: 0.5s;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.pageContainer .bt .more.on img {
  transform: translateY(-50%) rotate(0);
}
.pageContainer .bt b {
  font-weight: bold;
  display: block;
  float: left;
  width: 85px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  color: #333;
}
/* 二级分类列表默认样式 */
#subCategoryList {
  display: flex;
  flex-wrap: wrap;
  /* 允许换行 */
  overflow: hidden;
  /* 隐藏超出部分 */
  height: 48px;
  /* 默认显示一行，假设一行高度为 48px */
  transition: height 0.3s ease;
  /* 添加过渡效果 */
}
#subCategoryList.on {
  height: auto;
}
.pageContainer .bt ul {
  transition: 0.5s;
  height: 48px;
  overflow: hidden;
  width: calc(100% - 85px);
  float: left;
}
.pageContainer .bt ul li {
  display: inline-block;
  margin: 0 50px 0 0;
  line-height: 48px;
  font-size: 16px;
  color: #012523;
  position: relative;
  white-space: nowrap;
  /* 防止文字换行 */
}
.pageContainer .bt ul li span {
  font-weight: normal;
  text-align: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.pageContainer .bt ul li:after {
  display: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  background: #fa9703;
}
.pageContainer .bt ul li:hover:after {
  display: block;
}
.pageContainer .bt ul li.on:after {
  display: block;
}
.pageContainer .bt:nth-child(2) {
  border-bottom: 0;
}
.pageContainer .title {
  text-align: center;
  padding: 30px 0;
  font-size: 38px;
  font-weight: bold;
  color: #012523;
  position: relative;
}
.pageContainer .title span {
  color: #fa9703;
}
.pageContainer .title .cn {
  position: absolute;
  top: 60px;
  width: 100%;
  z-index: 2;
  font-weight: 600;
  font-size: 38px;
  line-height: 38px;
}
.pageContainer .title .en {
  color: #f2f3f3;
  width: 100%;
  text-align: center;
  z-index: 1;
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
}
.pageContainer .NrBox {
  width: 100%;
}
.pageContainer .NrBox .NrLeft {
  width: 710px;
  float: left;
}
.NrLeft.fullwidth {
  width: 100% !important;
}
/* 第一个大类三列布局，只有第3个li去掉右边距，覆盖上面规则 */
.pageContainer .NrBox .NrLeft.fullwidth ul li {
  width: 32% !important;
  margin-right: 2% !important;
  margin-bottom: 24px;
  float: left !important;
  box-sizing: border-box;
}
.pageContainer .NrBox .NrLeft.fullwidth ul li:nth-child(2n) {
  margin-right: 2% !important;
  /* 恢复第二个li的右边距 */
}
.pageContainer .NrBox .NrLeft.fullwidth ul li:nth-child(3n) {
  margin-right: 0 !important;
  /* 只有第3个li去掉右边距 */
}
.pageContainer .NrBox .NrLeft ul li {
  position: relative;
  width: 336px;
  height: 183px;
  float: left;
  margin: 0 38px 24px 0;
  padding: 0 0 0 5px;
  box-sizing: border-box;
}
.pageContainer .NrBox .NrLeft ul li {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.pageContainer .NrBox .NrLeft ul li:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.03);
}
.pageContainer .NrBox .NrLeft ul li:nth-child(2n) {
  margin-right: 0;
}
.pageContainer .NrBox .NrLeft ul li .Bg {
  transition: 0.3s;
  z-index: 2;
  border-radius: 5px 0 0 5px;
  background: url(../images/pagePic_10.png);
  width: 48px;
  height: 174px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pageContainer .NrBox .NrLeft ul li .Bg p {
  width: 80%;
  /* 确保宽度占满容器 */
  text-align: center;
  font-size: 17px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  left: 40%;
  /* 水平居中 */
  transform: translate(-50%, -50%);
  /* 修正偏移 */
  writing-mode: vertical-rl;
  /* 竖排文字 */
  text-orientation: upright;
  /* 确保文字方向直立 */
  white-space: nowrap;
  /* 防止文字换行 */
  display: flex;
  /* 使用 Flexbox 布局 */
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
}
.pageContainer .NrBox .NrLeft ul li .text {
  padding: 35px 20px 0 65px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pageContainer .NrBox .NrLeft ul li .text p {
  font-size: 14px;
  line-height: 28px;
  color: #4f5b5a;
  margin-bottom: 20px;
  /* 距离底部的距离，可根据需要调整 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* 最多显示4行，可根据需要调整 */
  -webkit-box-orient: vertical;
}
.pageContainer .NrBox .NrLeft ul li .text a {
  display: block;
  width: 98px;
  height: 24px;
  border-radius: 16px;
  text-align: center;
  line-height: 22px;
  box-sizing: border-box;
  border: 1px solid #329b96;
  color: #329b96;
  position: absolute;
  right: 20px;
  bottom: 5px;
}
.pageContainer .NrBox .NrLeft ul li .text a img {
  transition: 0.5s;
  display: inline-block;
  margin-left: 5px;
}
.pageContainer .NrBox .NrRight {
  width: 275px;
  float: right;
}
.pageContainer .NrBox .NrRight .tit {
  font-size: 24px;
  color: #012523;
}
.pageContainer .NrBox .NrRight .Main {
  width: 100%;
  height: 360px;
  position: relative;
}
.pageContainer .NrBox .NrRight .Main .MainBox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pageContainer .NrBox .NrRight .Main .MainBox.on {
  transform: translateY(-50%);
}
.pageContainer .NrBox .NrRight .Main ul {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  list-style: none;
  height: 100%;
}
.pageContainer .NrBox .NrRight .Main ul li {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.pageContainer .NrBox .NrRight .Main ul li:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.pageContainer .NrBox .NrRight .Main ul.on {
  display: block;
}
.pageContainer .NrBox .NrRight .Main ul li {
  width: 100%;
  padding-top: 20px;
}
.pageContainer .NrBox .NrRight .Main ul li h2 {
  font-weight: normal;
  font-size: 16px;
  color: #333;
  height: 32px;
  line-height: 32px;
}
.pageContainer .NrBox .NrRight .Main ul li h2 span {
  display: inline-block;
  margin-right: 5px;
  color: #012523;
  font-style: italic;
  font-size: 20px;
}
.pageContainer .NrBox .NrRight .Main ul li.top2 h2 span {
  color: #329b96;
}
.pageContainer .NrBox .NrRight .Main ul li p {
  padding: 5px 0 0 15px;
  font-size: 14px;
  color: #4f5b5a;
  line-height: 20px;
}
.pageContainer .NrBox .NrRight .Main .arrow {
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s;
  background: url(../images/pagePic_18.png);
  width: 36px;
  height: 36px;
  background-size: 100% 100%;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.pageContainer .NrBox .NrRight .Main .arrow.on {
  transform: translateX(-50%) rotate(180deg);
}
.pageContainer .NrBox.cheng .NrLeft ul li .Bg {
  background: url(../images/pagePic_21.png);
}
.pageContainer .NrBox.cheng .NrLeft ul li .text a {
  border: 1px solid #fa9703;
  color: #fa9703;
}
.pageContainer .NrBox.cheng .NrRight .Main ul li.top2 h2 span {
  color: #fa9703;
}
.pageContainer .NrBox.lan .NrLeft ul li .Bg {
  background: url(../images/pagePic_25.png);
}
.pageContainer .NrBox.lan .NrLeft ul li .text a {
  border: 1px solid #2979fe;
  color: #2979fe;
}
.pageContainer .NrBox.lan .NrRight .Main ul li.top2 h2 span {
  color: #2979fe;
}
.DownLoad {
  width: 1024px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.DownLoad .conLeft {
  width: 750px;
  float: left;
}
.DownLoad .conRight {
  width: 245px;
  float: right;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 22px 8px 8px 8px;
  padding: 0 20px;
  box-sizing: border-box;
  margin-top: 170px;
  padding-bottom: 20px;
}
.DownLoad .conLeft .title {
  text-align: center;
  padding: 30px 0;
  font-size: 38px;
  font-weight: 600;
  color: #012523;
  position: relative;
}
.DownLoad .conLeft .title span {
  color: #fa9703;
}
.DownLoad .conLeft .title .cn {
  z-index: 2;
  font-size: 38px;
  font-weight: 600;
  line-height: 38px;
  position: absolute;
  top: 60px;
  width: 100%;
}
.DownLoad .conLeft .title .en {
  font-weight: 600;
  color: #f2f3f3;
  width: 100%;
  text-align: center;
  z-index: 1;
  line-height: 60px;
  font-size: 60px;
}
.DownLoad .conLeft .MainBox {
  width: 100%;
}
.DownLoad .conLeft .MainBox ul li {
  border-radius: 20px 8px 8px 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 360px;
  height: 198px;
  background: url(../images/pageBg4_03.png);
  margin: 0 30px 25px 0;
  background-size: 100% 100%;
  float: left;
}
.DownLoad .conLeft .MainBox ul li {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.DownLoad .conLeft .MainBox ul li:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.DownLoad .conLeft .MainBox ul li:nth-child(2n) {
  margin-right: 0;
}
.DownLoad .conLeft .MainBox ul li .bt {
  width: 100%;
  height: 46px;
  line-height: 46px;
  text-indent: 15px;
  font-size: 16px;
  color: #fff;
}
.DownLoad .conLeft .MainBox ul li .Nr {
  width: 100%;
  overflow: hidden;
}
.DownLoad .conLeft .MainBox ul li .Nr .icon {
  float: left;
  width: 100px;
  height: 152px;
  padding-top: 25px;
}
.DownLoad .conLeft .MainBox ul li .Nr .icon img {
  display: block;
  margin: 0 auto;
  max-width: 80px;
}
.DownLoad .conLeft .MainBox ul li .Nr .text {
  width: calc(100% - 100px);
  float: left;
  padding: 25px 0px 0 0;
  box-sizing: border-box;
}
.DownLoad .conLeft .MainBox ul li .Nr .text h2 {
  font-size: 14px;
  font-weight: normal;
  color: #4f5b5a;
}
.DownLoad .conLeft .MainBox ul li .Nr .text .bq {
  margin: 5px 0 0 0;
  height: 16px;
  line-height: 16px;
}
.DownLoad .conLeft .MainBox ul li .Nr .text .bq span {
  display: inline-block;
  padding: 0 8px;
  height: 16px;
  line-height: 16px;
  background: #deefee;
  color: #329b96;
  font-size: 12px;
  border-radius: 0 6px 0 6px;
}
.DownLoad .conLeft .MainBox ul li .Nr .text dl {
  overflow: hidden;
}
.DownLoad .conLeft .MainBox ul li .Nr .text dl dd {
  float: left;
  width: 50%;
  height: 38px;
  line-height: 38px;
  font-size: 12px;
  color: #919998;
}
.DownLoad .conLeft .MainBox ul li .Nr .text dl dd img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  color: #919998;
}
.DownLoad .conLeft .MainBox ul li .Nr .text .bottom {
  width: 100%;
  overflow: hidden;
  height: 26px;
}
.DownLoad .conLeft .MainBox ul li .Nr .text .bottom .pl {
  float: left;
  height: 26px;
  line-height: 26px;
}
.DownLoad .conLeft .MainBox ul li .Nr .text .bottom .pl span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../images/xingxing_05.png);
  background-size: 100% 100%;
  margin-right: 0px;
}
.DownLoad .conLeft .MainBox ul li .Nr .text .bottom .pl span.on {
  background: url(../images/xingxing_03.png);
  background-size: 100% 100%;
}
.DownLoad .conLeft .MainBox ul li .Nr .text .bottom a {
  display: block;
  float: right;
  width: 78px;
  height: 26px;
  border: 1px solid #329b96;
  color: #329b96;
  text-align: center;
  line-height: 24px;
  box-sizing: border-box;
  border-radius: 13px;
  font-size: 14px;
  margin-right: 20px;
}
.DownLoad .conLeft .MainBox .enter {
  display: block;
  width: 335px;
  height: 56px;
  border-radius: 28px;
  margin: 0 auto;
  text-align: center;
  line-height: 56px;
  font-size: 26px;
  color: #fff;
  background: #329b96;
}
.DownLoad .conLeft .MainBox.cheng ul li {
  background: url(../images/pageBg4_10.png);
  background-size: 100% 100%;
}
.DownLoad .conLeft .MainBox.cheng ul li .Nr .text .bottom a {
  border: 1px solid #fa9703;
  color: #fa9703;
}
.DownLoad .conLeft .MainBox.cheng .enter {
  background: #fa9703;
}
.DownLoad .conLeft .MainBox.cheng ul li .Nr .text .bq span {
  background: #feeed6;
  color: #fa9703;
}
.DownLoad .conLeft .MainBox.lan ul li {
  background: url(../images/pageBg4_12.png);
  background-size: 100% 100%;
}
.DownLoad .conLeft .MainBox.lan ul li .Nr .text .bottom a {
  border: 1px solid #2979fe;
  color: #2979fe;
}
.DownLoad .conLeft .MainBox.lan .enter {
  background: #2979fe;
}
.DownLoad .conLeft .MainBox.lan ul li .Nr .text .bq span {
  background: #dde9ff;
  color: #2979fe;
}
.DownLoad .conRight .bt {
  width: 100%;
  height: 44px;
  font-size: 18px;
  color: #4f5b5a;
  line-height: 44px;
}
.DownLoad .conRight .bt span {
  display: block;
  width: 40px;
  height: 2px;
  background: #fa9703;
}
.DownLoad .conRight .layer1 {
  width: 100%;
  height: 160px;
  margin: 15px 0;
  overflow: hidden;
}
@keyframes gd {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.DownLoad .conRight .layer1 ul {
  animation: gd linear infinite;
  /* 动画时间将通过 JavaScript 动态设置 */
  width: 100%;
  will-change: transform;
  /* 提高动画性能 */
}
.DownLoad .conRight .layer1 ul li {
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  color: #4f5b5a;
  overflow: hidden;
  text-overflow: ellipsis;
  /* 添加省略号 */
  white-space: nowrap;
  /* 强制不换行 */
}
.DownLoad .conRight .layer1 ul li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.DownLoad .conRight .layer2 {
  padding-top: 15px;
}
.DownLoad .conRight .layer2 ul {
  overflow: hidden;
}
.DownLoad .conRight .layer2 ul li {
  float: left;
  margin: 2px 8px 14px 0;
}
.DownLoad .conRight .layer2 ul li a {
  padding: 0 6px;
  height: 26px;
  height: 24px;
  line-height: 24px;
  color: #4f5b5a;
  border: 1px solid #4f5b5a;
  border-radius: 0 10px 0 10px;
}
.DownLoad .conRight .layer2 ul li a:hover {
  border: 1px solid #43a39e;
  color: #43a39e;
}
.DownLoad .conRight .layer3 ul li {
  width: 100%;
  padding-top: 15px;
}
.DownLoad .conRight .layer3 ul li {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.DownLoad .conRight .layer3 ul li:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.DownLoad .conRight .layer3 ul li .icon {
  width: 100%;
}
.DownLoad .conRight .layer3 ul li .icon img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.DownLoad .conRight .layer3 ul li .text {
  width: 100%;
  padding: 12px 0 0 0;
}
.DownLoad .conRight .layer3 ul li .text p {
  font-size: 14px;
  color: #4f5b5a;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
.DownLoad .conRight .layer3 ul li .text h2 {
  font-weight: normal;
  padding-top: 10px;
  font-size: 14px;
  color: #fa9703;
  padding-bottom: 20px;
}
.DownLoad .conRight .layer3 ul li .text span {
  display: inline-block;
  float: right;
  color: #4f5b5a;
}
.DownLoad .conRight .layer4 {
  width: 100%;
}
.DownLoad .conRight .layer4 ul {
  width: 100%;
}
.DownLoad .conRight .layer4 ul li {
  width: 100%;
  height: 44px;
  line-height: 44px;
  border-bottom: 1px solid #e5ebeb;
  overflow: hidden;
}
.DownLoad .conRight .layer4 ul li:last-child {
  border-bottom: 0;
}
.DownLoad .conRight .layer4 ul li a {
  font-size: 14px;
  color: #4f5b5a;
}
.DownLoad .conRight .layer4 ul li:hover {
  border-bottom: 1px solid #43a39e;
}
.DownLoad .conRight .layer4 ul li:hover a {
  color: #43a39e;
}
.about {
  width: 100%;
}
.about .title {
  text-align: center;
  padding: 30px 0;
  font-size: 38px;
  font-weight: bold;
  color: #012523;
  position: relative;
}
.about .title span {
  color: #fa9703;
}
.about .title .cn {
  position: relative;
  z-index: 2;
  font-size: 38px;
  font-weight: 600;
  line-height: 38px;
  position: absolute;
  top: 60px;
  width: 100%;
}
.about .title .en {
  font-size: 60px;
  font-weight: 600;
  color: #f2f3f3;
  width: 100%;
  text-align: center;
  line-height: 60px;
}
.about .layer1 {
  padding-bottom: 55px;
}
.about .layer1 .layer1Box {
  width: 1024px;
  margin: 0 auto;
}
.about .layer1 .layer1Box p {
  font-size: 18px;
  text-indent: 65px;
  line-height: 40px;
}
.about .layer1 .layer1Box p span {
  color: #fa9703;
}
.about .layer1 .layer1Box .icon {
  background: url(../images/iconBg_03.png);
  width: 357px;
  height: 543px;
  background-size: 100% 100%;
  float: right;
  display: block;
  margin: 0 0 30px 30px;
  padding: 0 0 0 17px;
  box-sizing: border-box;
}
.about .layer1 .layer1Box .icon ul {
  width: 100%;
}
.about .layer1 .layer1Box .icon ul li {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
}
.about .layer1 .layer1Box .icon ul li img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about .layer2 {
  width: 100%;
  background: url(../images/bgPp.jpg) left top repeat-x;
  background-size: auto;
  background-size: auto 100%;
  padding-bottom: 65px;
  padding-top: 10px;
}
.about .layer2Box {
  width: 1024px;
  margin: 0 auto;
}
.about .layer2Box .icon {
  float: left;
  height: 500px;
  width: 393px;
}
.about .layer2Box .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.about .layer2Box .text {
  width: calc(100% - 393px);
  padding: 0 45px;
  box-sizing: border-box;
  float: left;
}
.about .layer2 .title {
  margin: 0;
}
.about .layer2Box .text ul {
  width: 100%;
  overflow: hidden;
}
.about .layer2Box .text ul li {
  width: 50%;
  float: left;
  height: 195px;
  padding-top: 55px;
  border-bottom: 2px solid #d6dcdc;
}
.about .layer2Box .text ul li h2 {
  position: relative;
  height: 44px;
  width: 190px;
  line-height: 44px;
  padding-left: 55px;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 26px;
  color: #333;
}
.about .layer2Box .text ul li h2 img {
  position: absolute;
  left: 0;
  top: 0;
}
.about .layer2Box .text ul li p {
  padding-top: 10px;
  padding-left: 55px;
  width: 165px;
  font-size: 18px;
  line-height: 36px;
  color: #1e1e1e;
}
.about .layer2Box .text ul li:nth-child(3) {
  border-bottom: 0;
}
.about .layer2Box .text ul li:nth-child(4) {
  border-bottom: 0;
}
.process {
  width: 1024px;
  margin: 0 auto;
}
.process .swiper-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.process .swiper-container .num {
  text-align: center;
  line-height: 330px;
  font-size: 420px;
  color: #eceded;
  font-weight: bold;
  width: 100%;
  height: 330px;
}
.process .swiper-container .Nr {
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  width: 700px;
  height: 260px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0 5px 25px 5px;
}
.process .swiper-container .Nr .icon {
  width: 260px;
  height: 260px;
  overflow: hidden;
  background: #ddd;
  float: left;
}
.process .swiper-container .Nr .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process .swiper-container .Nr .text {
  width: calc(100% - 260px);
  float: left;
  padding: 0 15px 0 25px;
  box-sizing: border-box;
  overflow-y: auto;
  max-height: 260px;
  /* 保证和.Nr高度一致 */
}
.process .swiper-container .Nr .text h2 {
  height: 52px;
  line-height: 52px;
  font-size: 20px;
  color: #fa9703;
}
.process .swiper-container .Nr .text p {
  font-size: 15px;
  color: #012523;
  line-height: 24px;
}
.process ul {
  width: 100%;
  padding-bottom: 50px;
}
.process ul li {
  position: relative;
  width: 146px;
  float: left;
}
.process ul li:first-child {
  width: 147px;
}
.process ul li:last-child {
  width: 147px;
}
.process ul li:first-child .xian:after {
  display: none;
}
.process ul li:last-child .xian:before {
  display: none;
}
.process ul li .xian {
  height: 12px;
  top: -6px;
  position: absolute;
  width: 100%;
  left: 0;
}
.process ul li .xian span {
  background: #fff;
  position: relative;
  z-index: 2;
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #b4bebd;
  box-sizing: border-box;
  padding: 2px;
}
.process ul li .xian span b {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fa9703;
}
.process ul li p {
  transition: 0.5s;
  width: 100%;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.process ul li .xian:after {
  content: '';
  width: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #cbd1d1;
}
.process ul li .xian:before {
  content: '';
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #cbd1d1;
}
.process ul li.on p {
  font-weight: bold;
  transform: translateY(-100%);
}
.process ul li.on .xian span b {
  display: block;
}
.process .swiper-button-prev {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  left: 60px;
  box-sizing: border-box;
  background: url(../images/left.png);
  transition: 0.5s;
}
.process .swiper-button-prev:after {
  display: none;
}
.process .swiper-button-next {
  transition: 0.5s;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  left: auto;
  right: 60px;
  background: url(../images/right.png);
}
.process .swiper-button-next:after {
  display: none;
}
.process .swiper-button-next:hover {
  background: url(../images/rightOn.png);
}
.process .swiper-button-prev:hover {
  background: url(../images/leftOn.png);
}
.conLeft .new {
  padding-top: 65px;
  width: 100%;
}
.conLeft .new .bt {
  width: 100%;
  overflow: hidden;
}
.conLeft .new .bt ul {
  overflow: hidden;
}
.conLeft .new .bt ul li {
  float: left;
  font-size: 16px;
  color: #aab0af;
}
.conLeft .new .bt ul li a {
  color: #4f5b5a;
}
.conLeft .new .newList {
  width: 100%;
}
.conLeft .new .newList ul {
  width: 100%;
}
.conLeft .new .newList ul li {
  overflow: hidden;
  width: 100%;
  padding: 25px 0;
  border-bottom: 1px solid #e5ebeb;
}
.conLeft .new .newList ul li {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.conLeft .new .newList ul li:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.conLeft .new .newList ul li .icon {
  float: left;
  width: 200px;
  height: 125px;
  border-radius: 5px 5px 30px 5px;
  overflow: hidden;
}
.conLeft .new .newList ul li .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.conLeft .new .newList ul li .text {
  overflow: hidden;
  width: calc(100% - 200px);
  float: left;
  box-sizing: border-box;
  padding-left: 25px;
}
.conLeft .new .newList ul li .text h2 {
  height: 44px;
  line-height: 44px;
}
.conLeft .new .newList ul li .text .textLeft {
  float: left;
  width: 415px;
  padding-right: 35px;
  box-sizing: border-box;
}
.conLeft .new .newList ul li .text .textLeft h2 {
  height: 44px;
  line-height: 44px;
  font-size: 20px;
  color: #012523;
  overflow: hidden;
}
.conLeft .new .newList ul li .text .textLeft p {
  font-size: 14px;
  line-height: 24px;
  color: #4f5b5a;
}
.conLeft .new .newList ul li .text .textRight {
  float: left;
  box-sizing: border-box;
  height: 64px;
  width: calc(100% - 415px);
  border-left: 1px solid #e5ebeb;
  margin-top: 44px;
}
.conLeft .new .newList ul li .text .textRight h2 {
  height: 40px;
  text-align: center;
  color: #333;
  line-height: 40px;
  font-size: 17px;
  font-weight: normal;
}
.conLeft .new .newList ul li .text .textRight p {
  text-align: center;
  font-size: 14px;
  color: #919998;
}
.conLeft .new .newList ul li:hover .text .textLeft h2 {
  color: #329b96;
}
.conLeft .new .newList dl {
  padding: 40px 0;
  overflow: hidden;
}
.conLeft .new .newList dl dd {
  float: left;
  margin-right: 10px;
}
.conLeft .new .newList dl dd a {
  height: 30px;
  line-height: 26px;
  display: block;
  padding: 0 15px;
  border: 2px solid #f3f6f6;
  box-sizing: border-box;
  border-radius: 3px;
  color: #999;
}
.conLeft .new .newList dl dd.on a {
  background: #fa9703;
  border: 1px solid #fa9703;
  color: #fff;
}
.conLeft .new .newDetails {
  margin-top: 15px;
  width: 100%;
  border-top: 1px solid #e5ebeb;
  padding-top: 35px;
}
.conLeft .new .newDetails .tit {
  font-size: 32px;
  color: #012523;
  line-height: 48px;
}
.conLeft .new .newDetails .time {
  height: 64px;
  padding-left: 28px;
  line-height: 64px;
  font-size: 14px;
  color: #919998;
  background: url(../images/new_03_03.png) left center no-repeat;
}
.conLeft .new .newDetails .text {
  width: 100%;
}
.conLeft .new .newDetails .text p {
  text-indent: 28px;
  font-size: 14px;
  color: #012523;
  line-height: 24px;
  margin-bottom: 20px;
}
.conLeft .new .newDetails .text img {
  margin-bottom: 20px;
  height: auto;
  max-width: 100%;
}
.conLeft .new .newDetails .bottom h2 {
  font-weight: normal;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 26px;
  color: #c80002;
}
.conLeft .new .newDetails .bottom ul {
  width: 100%;
}
.conLeft .new .newDetails .bottom ul li {
  overflow: hidden;
  width: 49%;
  float: left;
  margin: 0 2% 0 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 46px;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.conLeft .new .newDetails .bottom ul li:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.conLeft .new .newDetails .bottom ul li span {
  text-align: center;
  display: block;
  float: left;
  width: 75px;
  height: 46px;
  line-height: 46px;
  font-size: 14px;
  color: #919998;
}
.conLeft .new .newDetails .bottom ul li p {
  overflow: hidden;
  font-size: 14px;
  display: block;
  width: calc(100% - 75px);
  float: left;
  height: 46px;
  line-height: 46px;
  color: #012523;
}
.conLeft .new .newDetails .bottom ul li:last-child {
  margin-right: 0;
}
