@charset "utf-8";

/* CSS Document */
@keyframes bellRing {

  0%,
  100% {
    transform-origin: top;
  }

  15% {
    transform: rotateZ(10deg);
  }

  30% {
    transform: rotateZ(-10deg);
  }

  45% {
    transform: rotateZ(5deg);
  }

  60% {
    transform: rotateZ(-5deg);
  }

  75% {
    transform: rotateZ(2deg);
  }
}

/*去除搜狗虚拟dom*/
input::-webkit-input-safebox-button {
  display: none !important;
}

input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
  background-color: #fff !important;
}

.hide.active {
  display: block !important;
}

/****首页*****/
/* 按钮容器 */
.button-container {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  margin: 7px 0 7px auto;
  padding-right: 0;

}

/* 公共按钮样式 */
.button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  color: white;
  min-height: 24px;
  white-space: nowrap;
  flex-shrink: 0;
  /* 使用相对单位，使按钮能够随容器缩放 */
  width: auto;
}

/* 登录按钮样式 */
.login-button {
  background: #FFF;
  color: #294BF1;
}

.login-button:hover {
  background-color: #000066;
  color: #fff;
}

/* 免费体验按钮样式 */
.free-trial-button {
  background: #294BF1;
  color: #fff;
}

.free-trial-button:hover {
  background: #008aff;
  color: white;
}

/* 移动端适配 */
/* 响应式按钮大小调整 */
/* 平板尺寸 */
@media (min-width:768px) and (max-width:991px) {

  .login-button,
  .free-trial-button {
    padding: 0.75rem 0.7rem;
  }

}

@media (max-width: 768px) {
  .free-trial-button {
    display: none;
  }

  .button-container {
    max-width: 72px;
    gap: 0.75rem;
    padding: 3px 0 4px 0;
  }

  .button {
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
    min-height: 22px;
  }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
  .button-container {
    max-width: 300px;
    gap: 0.6rem;
    padding: 6px 0 7px 0;
  }

  .button {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    min-height: 22px;
    line-height: 22px;
  }
}

/* 更小的手机屏幕 */
@media (max-width: 375px) {
  .button-container {
    max-width: 250px;
    gap: 0.5rem;
    padding: 8px 0 9px 0;
  }

  .button {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    min-height: 22px;
  }
}

/* 超小屏幕 */
@media (max-width: 320px) {
  .button-container {
    max-width: 200px;
    gap: 0.4rem;
    margin-right: 8px;
  }

  .button {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    min-height: 22px;
  }
}


/***首页轮播图***/
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 649px;
  background: #000;
}

.banner .bd {
  margin: 0 auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.banner .bd ul {
  width: 100% !important;
}

.banner .bd li {
  width: 100% !important;
  height: 649px;
  overflow: hidden;
  /*background-size: cover;*/
}

.banner .bd li>a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner .hd {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 66px;
  left: 0;
  height: 3px;
  line-height: 11px;
}

.banner .hd ul {
  text-align: center;
}

.banner .hd ul li {
  cursor: pointer;
  display: inline-block;
  zoom: 1;
  width: 30px;
  height: 3px;
  margin: 0 5px;
  background: #fff;
  opacity: 0.2;
  overflow: hidden;
  line-height: 9999px;
}

.banner .hd ul .on {
  opacity: 0.8;
}



.banner li .banner_left {
  width: 50%;
  padding-top: 150px;
  color: #fff;
}

.banner li .banner_left h1 {
  font-size: 60px;
}

.banner li .banner_left h3 {
  font-size: 24px;
  margin: 22px 0 44px;
}

.banner li .banner_left p {
  font-size: 20px;
  line-height: 34px;
  margin: 22px 0 35px;
}

.banner li .more {
  display: block;
  width: 118px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  border: rgba(255, 255, 255, .7) 1px solid;
  font-size: 18px;
  color: #fff;
}

.banner li.num1 .banner_right {
  position: absolute;
  width: 440px;
  top: 144px;
  right: 40px;
}

.banner li.num9 .banner_right {
  position: absolute;
  width: 573px;
  top: 140px;
  right: 0;
}

.banner li.num10 .banner_right {
  position: absolute;
  width: 633px;
  top: 140px;
  right: 0;
}

.banner li .banner_right img {
  max-width: 100%;
}

.banner li.num2 .banner_right {
  position: absolute;
  width: 624px;
  right: -36px;
  top: 138px;
}

.banner li .ban {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.banner li.num3 .banner_right {
  width: 497px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.banner li.num4 .ban {
  margin-top: 150px;
  text-align: center;
}

.banner li.num4 .ban2 {
  margin-top: 15px;
}

.banner li.num4 .ban4 {
  margin-top: 40px;
}

.banner li.num5 .ban {
  margin-top: 90px;
  text-align: center;
}

.banner li.num5 .ban3 {
  margin-top: 10px;
}

.banner li.num5 .ban1 {
  margin-top: 15px;
}

.banner li.num5 .ban2 {
  margin-top: 10px;
}

.banner li.num6 .ban1 {
  position: absolute;
  top: 50%;
  margin-top: -163px;
  left: 10px;
}

.banner li.num7 .ban {
  margin-top: 90px;
  text-align: center;
}

.banner li.num7 .ban3 {
  margin-top: 15px;
}

.banner li.num7 .ban4 {
  margin-top: 20px;
}

.banner li.num7 img {
  max-width: 100%;
}

.banner li.num8 .ban {
  margin-top: 130px;
  text-align: center;
}

.banner li.num8 .ban3 {
  margin-top: 15px;
}

.banner li.num8 .ban4 {
  margin-top: 20px;
}

.banner li.num8 img {
  max-width: 100%;
}

.banner li.num11 .banner_left {
  padding-top: 120px;
  width: 732px;
}

.banner li.num11 .banner_left img {
  max-width: 100%;
}

.banner li.num11 .banner_left .img11-1 {
  margin-bottom: 26px;
}

.banner li.num11 .banner_right {
  position: absolute;
  width: 588px;
  top: 123px;
  right: -145px;
}

.banner li.num12 .ban1 {
  padding-top: 158px;
}

.banner li.num12 .ban1 h1 {
  line-height: 0;
  padding: 0 0 18px;
}

.banner li.num12 .ban1 h2 {
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 38px;
  color: #3aeeff;
  font-size: 30px;
}

.banner li.num12 .ban1 p {
  letter-spacing: 2px;
  padding: 29px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 40px;
}

.banner li.num12 .ban1 .blod {
  font-weight: bold;
  font-size: 24px;
}

.banner li.num12 .ban1 .yellow {
  color: #f5cf41;
}

.banner li.num12 .more {
  margin-top: 54px;
}

.banner li.num12 .more2 {
  line-height: 1;
  margin-top: -18px;
  vertical-align: middle;
  display: inline-block;
  padding-left: 4px;
}

.banner li.num13 .banner_left {
  padding-top: 148px;
  width: 661px;
}

.banner li.num13 .banner_left img {
  max-width: 100%;
  margin-left: -33px;
}

.banner li.num13 .banner_right {
  position: absolute;
  width: 430px;
  top: 100px;
  right: -66px;
}

.banner li.num13 h1 {
  margin-bottom: 30px;
}

.banner .more-a {
  display: block;
  width: 161px;
  height: 43px;
  font-size: 26px;
  color: #fff;
  text-align: center;
  line-height: 43px;
  background: url("../images/more-bg.png") center no-repeat;
}

.banner .more-a:hover {
  color: rgba(255, 255, 255, .8);
}

.banner li.num14 .banner_left {
  padding-top: 150px;
  width: 785px;
}

.banner li.num14 .banner_left img {
  max-width: 100%;
}

.banner li.num14 .banner_right {
  position: absolute;
  width: 640px;
  top: -17px;
  right: -145px;
}

.banner li.num14 .more {
  margin-top: 40px;
}

.banner li.num15 .banner_left {
  width: 785px;
}

.banner li.num15 .banner_left img {
  max-width: 100%;
}

.banner li.num15 .more {
  margin-top: 15px;
}

@media only screen and (max-width:1600px) {
  .banner li.num11 .banner_left {
    width: 600px;
    padding-top: 110px;
  }

  .banner li.num11 .banner_right {
    width: 520px;
    right: -50px;
  }

  .banner li.num14 .banner_left {
    width: 600px;
    padding-top: 110px;
  }

  .banner li.num14 .banner_right {
    width: 520px;
    right: -50px;
  }
}

@media only screen and (max-width:1366px) {
  .banner li.num2 .banner_right {
    width: 600px;
    top: 140px;
    right: 10px;
  }

  .banner li.num11 .banner_right {
    width: 480px;
    right: 0;
  }

  .banner li.num13 .banner_left {
    padding-top: 140px;
    width: 600px;
  }

  .banner li.num13 .banner_right {
    width: 400px;
    top: 140px;
    right: 0;
  }
}

@media (min-width: 992px) and (max-width:1199px) {
  /* .banner {
    height: 406px;
  } */

  .banner .bd li {
    background-size: 1200px;
    height: 406px;
  }

  /*.banner .bd li>a{height:406px;}*/
  .banner .hd {
    bottom: 50px;
  }

  .banner li .banner_left {
    padding-top: 120px;
    padding-left: 20px;
  }

  .banner li .banner_left h1 {
    font-size: 45px;
  }

  .banner li .banner_left h3 {
    font-size: 22px;
    margin: 20px 0 30px;
  }

  .banner li .banner_left p {
    font-size: 18px;
    line-height: 30px;
    margin: 20px 0 25px;
  }

  .banner li.num1 .banner_right {
    width: 300px;
  }

  .banner li.num2 .banner_right {
    width: 500px;
    top: 100px;
    right: 10px;
  }

  .banner li.num3 .banner_right {
    width: 290px;
  }

  .banner li.num9 .banner_right {
    width: 350px;
    right: 60px;
    top: 130px;
  }

  .banner li.num10 .banner_right {
    width: 450px;
    top: 120px;
  }

  .banner li.num4 .ban {
    margin-top: 120px;
    text-align: center;
  }

  .banner li.num4 .ban1 img {
    width: 865px;
  }

  .banner li.num4 .ban2 img {
    width: 400px;
  }

  .banner li.num4 .ban3 img {
    width: 300px;
  }

  .banner li.num4 .ban4 {
    margin-top: 30px;
  }

  .banner li.num4 .ban4 img {
    width: 700px;
  }

  .banner li.num5 .ban {
    margin-top: 80px;
    text-align: center;
  }

  .banner li.num5 .ban1 img {
    width: 600px;
  }

  .banner li.num5 .ban2 img {
    width: 500px;
  }

  .banner li.num6 .ban1 {
    margin-top: -80px;
  }

  .banner li.num6 .ban1 img {
    height: 190px;
  }

  .banner li.num7 .ban4 img {
    width: 810px;
  }

  .banner li.num8 .ban {
    margin-top: 80px;
  }

  .banner li.num11 .banner_left {
    width: 500px;
    padding-top: 80px;
  }

  .banner li.num11 .banner_right {
    width: 440px;
    right: 0;
    top: 100px;
  }

  .banner li.num12 .ban1 {
    padding-top: 98px;
  }

  .banner li.num12 .more {
    margin-top: 14px;
  }

  .banner li.num12 .ban1 p {
    padding-top: 10px;
  }

  .banner li.num13 .banner_left {
    padding-top: 130px;
    width: 520px;
  }

  .banner li.num13 .banner_right {
    width: 360px;
    top: 100px;
  }

  .banner li.num14 .banner_left {
    padding-top: 130px;
    width: 520px;
  }

  .banner li.num14 .banner_right {
    width: 360px;
    top: 100px;
  }

  .banner li.num15 .banner_left {
    padding-top: 130px;
    width: 520px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  /* .banner {
    height: 335px;
  } */

  .banner .bd li {
    background-size: 992px;
    height: 335px;
  }

  /*.banner .bd li>a{height:335px;}*/
  .banner .hd {
    bottom: 30px;
  }

  .banner li .banner_left {
    padding-top: 100px;
    padding-left: 20px;
  }

  .banner li .banner_left h1 {
    font-size: 30px;
  }

  .banner li .banner_left h3 {
    font-size: 20px;
    margin: 20px 0 30px;
  }

  .banner li .banner_left p {
    font-size: 16px;
    line-height: 26px;
    margin: 20px 0 20px;
  }

  .banner li.num1 .banner_right {
    width: 200px;
  }

  .banner li .banner_left .more {
    font-size: 16px;
  }

  .banner li.num2 .banner_right {
    width: 400px;
    top: 100px;
    right: 20px;
  }

  .banner li.num3 .banner_right {
    width: 240px;
    right: 20px;
  }

  .banner li.num9 .banner_right {
    width: 250px;
    right: 20px;
    top: 130px;
  }

  .banner li.num10 .banner_right {
    width: 350px;
    top: 110px;
  }

  .banner li.num4 .ban {
    margin-top: 100px;
    text-align: center;
  }

  .banner li.num4 .ban1 img {
    width: 700px;
  }

  .banner li.num4 .ban2 img {
    width: 280px;
  }

  .banner li.num4 .ban3 img {
    width: 240px;
  }

  .banner li.num4 .ban4 {
    margin-top: 20px;
  }

  .banner li.num4 .ban4 img {
    width: 600px;
  }

  .banner li.num5 .ban {
    margin-top: 60px;
    text-align: center;
  }

  .banner li.num5 .ban3 img {
    width: 400px;
  }

  .banner li.num5 .ban1 img {
    width: 500px;
  }

  .banner li.num5 .ban2 img {
    width: 400px;
  }

  .banner li.num6 .ban1 {
    margin-top: -60px;
    left: 10px;
  }

  .banner li.num6 .ban1 img {
    height: 130px;
  }

  .banner li.num7 .ban4 {
    margin-top: 20px;
  }

  .banner li.num7 .ban1 img {
    width: 700px;
  }

  .banner li.num7 .ban4 img {
    width: 600px;
  }

  .banner li.num8 .ban {
    margin-top: 90px;
  }

  .banner li.num8 .ban4 {
    margin-top: 20px;
  }

  .banner li.num8 .ban1 img {
    width: 700px;
  }

  .banner li.num8 .ban3 img {
    width: 500px;
  }

  .banner li.num8 .ban4 img {
    width: 600px;
  }

  .banner li.num11 .banner_left {
    width: 390px;
    padding-top: 78px;
  }

  .banner li.num11 .banner_right {
    width: 330px;
    right: 10px;
    top: 78px;
  }

  .banner li.num12 .ban1 {
    padding-top: 98px;
  }

  .banner li.num12 .more {
    margin-top: 8px;
    font-size: 16px;
  }

  .banner li.num12 .ban1 h2 {
    font-size: 28px;
  }

  .banner li.num12 .ban1 p {
    padding-top: 10px;
    font-size: 16px;
    line-height: 30px;
  }

  .banner li.num12 .ban1 .blod {
    font-size: 18px;
  }

  .banner li.num12 .more2 {
    margin-top: -14px;
  }

  .banner li.num13 .banner_left {
    padding-top: 100px;
    width: 400px;
  }

  .banner li.num13 .banner_left img {
    margin-left: 0;
  }

  .banner li.num13 .banner_right {
    width: 260px;
    top: 100px;
  }

  .banner .more-a {
    font-size: 20px;
    width: auto;
    border-radius: 25px;
    display: inline-block;
    padding: 0 15px;
    height: 42px;
    line-height: 42px;
  }

  .banner li.num14 .banner_left {
    padding-top: 100px;
    width: 400px;
  }

  .banner li.num14 .banner_left img {
    margin-left: 0;
  }

  .banner li.num14 .banner_right {
    width: 420px;
    top: 20px;
  }

  .banner li.num14 .more {
    margin-top: 20px;
  }

  .banner li.num15 .banner_left {
    padding-top: 100px;
    width: 400px;
  }

  .banner li.num15 .banner_left img {
    margin-left: 0;
  }

  .banner li.num15 .more {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .banner {
    height: 260px;
  }

  .banner .bd li {
    background-size: 768px;
    height: 260px;
  }

  /*.banner .bd li>a{height:260px;}*/
  .banner .hd {
    bottom: 25px;
  }

  .banner li .banner_left {
    padding-left: 15px;
  }

  .banner li .banner_left {
    padding-top: 60px;
  }

  .banner li .banner_left h1 {
    font-size: 20px;
  }

  .banner li .banner_left h3 {
    font-size: 18px;
    margin: 15px 0 20px;
  }

  .banner li .banner_left p {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0 10px;
  }

  .banner li.num1 .banner_right {
    width: 210px;
    top: 62px;
    right: 20px;
  }

  .banner li .banner_left .more {
    font-size: 16px;
  }

  .banner li.num2 .banner_right {
    width: 300px;
    top: 60px;
    right: 30px;
  }

  .banner li.num3 .banner_right {
    width: 200px;
    right: 30px;
  }

  .banner li.num9 .banner_right {
    width: 250px;
    right: 20px;
    top: 50px;
  }

  .banner li.num10 .banner_right {
    width: 300px;
    right: 10px;
    top: 50px;
  }

  .banner li.num4 .ban {
    margin-top: 30px;
    text-align: center;
  }

  .banner li.num4 .ban1 img {
    width: 600px;
  }

  .banner li.num4 .ban2 img {
    width: 200px;
  }

  .banner li.num4 .ban3 img {
    width: 200px;
  }

  .banner li.num4 .ban4 {
    margin-top: 20px;
  }

  .banner li.num4 .ban4 img {
    width: 520px;
  }

  .banner li.num5 .ban {
    margin-top: 10px;
    text-align: center;
  }

  .banner li.num5 .ban3 img {
    width: 300px;
  }

  .banner li.num5 .ban1 img {
    width: 400px;
  }

  .banner li.num5 .ban2 img {
    width: 400px;
  }

  .banner li.num6 .ban1 {
    margin-top: -50px;
    left: 10px;
  }

  .banner li.num6 .ban1 img {
    height: 100px;
  }

  .banner li.num7 .ban {
    margin-top: 30px;
    text-align: center;
  }

  .banner li.num7 .ban1 img {
    width: 600px;
  }

  .banner li.num7 .ban3 img {
    width: 200px;
  }

  .banner li.num7 .ban4 {
    margin-top: 20px;
  }

  .banner li.num7 .ban4 img {
    width: 520px;
  }

  .banner li.num8 .ban {
    margin-top: 30px;
    text-align: center;
  }

  .banner li.num8 .ban1 img {
    width: 600px;
  }

  .banner li.num8 .ban3 img {
    width: 200px;
  }

  .banner li.num8 .ban4 {
    margin-top: 20px;
  }

  .banner li.num8 .ban4 img {
    width: 520px;
  }

  .banner li.num11 .banner_left {
    width: 52%;
    padding-top: 28px;
  }

  .banner li.num11 .banner_right {
    width: 40%;
    right: 10px;
    top: 28px;
  }

  .banner li.num12 .ban1 {
    padding: 30px 10px;
  }

  .banner li.num12 .ban1 h1 img {
    max-width: 100%;
    height: auto;
  }

  .banner li.num12 .more {
    margin-top: 8px;
    font-size: 16px;
  }

  .banner li.num12 .ban1 h2 {
    font-size: 28px;
  }

  .banner li.num12 .ban1 p {
    padding-top: 10px;
    font-size: 16px;
    line-height: 30px;
  }

  .banner li.num12 .ban1 .blod {
    font-size: 18px;
  }

  .banner li.num12 .more2 {
    margin-top: -14px;
  }

  .banner li.num13 .banner_left {
    padding-top: 50px;
    width: 360px;
  }

  .banner li.num13 .banner_right {
    width: 240px;
    top: 20px;
    right: 10px;
  }

  .banner li.num13 h1 {
    margin-bottom: 15px;
  }

  .banner .more-a {
    font-size: 18px;
    width: auto;
    border-radius: 25px;
    display: inline-block;
    padding: 0 25px;
    height: 42px;
    line-height: 42px;
  }

  .banner li.num14 .banner_left {
    padding-top: 50px;
    width: 76%;
    z-index: 99;
  }

  .banner li.num14 .banner_right {
    width: 240px;
    top: 20px;
    right: 10px;
  }

  .banner li.num14 .more {
    margin-top: 10px;
  }

  .banner li.num15 .banner_left {
    padding-top: 50px;
    width: 76%;
    z-index: 99;
  }

  .banner li.num15 .banner_left img {
    height: 120px;
    width: auto;
  }

  .banner li.num15 .more {
    margin-top: 10px;
  }
}

@media (max-width:640px) {
  .banner li .banner_left {
    width: 60%;
  }

  .banner li .banner_left .more,
  .banner li.num12 .more {
    margin: 15px 0 0;
  }

  .banner li.num1 .banner_right {
    width: 180px;
  }

  .banner li.num2 .banner_right {
    width: 210px;
    top: 70px;
    right: 10px;
  }

  .banner li.num3 .banner_right {
    width: 200px;
  }

  .banner li.num9 .banner_right {
    width: 230px;
    right: 20px;
    top: 64px;
  }

  .banner li.num10 .banner_right {
    width: 250px;
    top: 64px;
  }

  .banner li.num4 .ban {
    margin-top: 30px;
    text-align: center;
  }

  .banner li.num4 .ban1 img {
    width: 460px;
  }

  .banner li.num4 .ban2 img {
    width: 140px;
  }

  .banner li.num4 .ban3 img {
    width: 100px;
  }

  .banner li.num4 .ban4 {
    margin-top: 20px;
  }

  .banner li.num4 .ban4 img {
    width: 420px;
  }

  .banner li.num5 .ban {
    margin-top: 10px;
    text-align: center;
  }

  .banner li.num5 .ban3 img {
    width: 300px;
  }

  .banner li.num5 .ban1 img {
    width: 400px;
  }

  .banner li.num5 .ban2 img {
    width: 300px;
  }

  .banner li.num6 .ban1 {
    margin-top: -40px;
    left: 10px;
  }

  .banner li.num6 .ban1 img {
    height: 80px;
  }

  .banner li.num7 .ban {
    margin-top: 30px;
    text-align: center;
  }

  .banner li.num7 .ban1 img {
    width: 460px;
  }

  .banner li.num7 .ban3 img {
    width: 100px;
  }

  .banner li.num7 .ban4 {
    margin-top: 20px;
  }

  .banner li.num7 .ban4 img {
    width: 420px;
  }

  .banner li.num8 .ban {
    margin-top: 30px;
    text-align: center;
  }

  .banner li.num8 .ban1 img {
    width: 460px;
  }

  .banner li.num8 .ban3 img {
    width: 100px;
  }

  .banner li.num8 .ban4 {
    margin-top: 20px;
  }

  .banner li.num8 .ban4 img {
    width: 420px;
  }

  .banner li.num12 .ban1 p {
    padding-top: 0;
    line-height: 26px;
  }

  .banner li.num12 .ban1 {
    padding: 20px 10px 0;
  }

  .banner li.num13 .banner_left {
    padding-top: 30px;
    width: 320px;
  }

  .banner li.num13 .banner_right {
    width: 200px;
    top: 10px;
    right: 10px;
  }

  .banner .more-a {
    font-size: 18px;
  }

  .banner li.num14 .banner_left {
    padding-top: 30px;
  }

  .banner li.num15 .banner_left {
    padding-top: 30px;
  }
}

@media (max-width:480px) {
  .banner .hd {
    bottom: 20px;
  }

  .banner {
    height: 160px;
  }

  .banner .bd li {
    height: 160px;
  }

  /*.banner li .banner_left,.banner li .banner_right{display: none;}*/
  .banner li .banner_left p {
    display: none;
  }

  .banner li .banner_left {
    padding-top: 40px;
  }

  .banner li .banner_left h1 {
    font-size: 18px;
  }

  .banner li .banner_left h3 {
    font-size: 14px;
    margin: 10px 0 10px;
  }

  .banner li .banner_right {
    width: 140px;
  }

  .banner li .banner_left .more,
  .banner li.num12 .more {
    font-size: 14px;
    width: 80px;
    height: 30px;
    line-height: 30px;
  }

  .banner li.num1 .banner_right {
    width: 100px;
  }

  .banner li.num2 .banner_right {
    width: 180px;
    top: 40px;
    right: 10px;
  }

  .banner li.num3 .banner_right {
    width: 130px;
    right: 10px;
  }

  .banner li.num10 .banner_right {
    width: 180px;
    top: 38px;
  }

  /*.banner li.num1{background: url(../images/wap_banner01.png) center no-repeat;}
    .banner li.num2{background: url(../images/wap_banner02.png) center no-repeat;}
    .banner li.num3{background: url(../images/wap_banner03.png) center no-repeat;}*/
  .banner li.num4 .ban {
    margin-top: 20px;
    text-align: center;
  }

  .banner li.num4 .ban1 img {
    width: 300px;
  }

  .banner li.num4 .ban2 {
    margin-top: 5px;
  }

  .banner li.num4 .ban2 img {
    width: 140px;
  }

  .banner li.num4 .ban3 img {
    width: 100px;
  }

  .banner li.num4 .ban4 {
    margin-top: 10px;
  }

  .banner li.num4 .ban4 img {
    width: 300px;
  }

  .banner li.num5 .ban {
    margin-top: 0;
    text-align: center;
  }

  .banner li.num5 .ban1,
  .banner li.num5 .ban2 {
    margin-top: 5px;
  }

  .banner li.num5 .ban3 img {
    width: 180px;
  }

  .banner li.num5 .ban1 img {
    width: 200px;
  }

  .banner li.num5 .ban2 img {
    width: 300px;
  }

  .banner li.num6 .ban1 {
    margin-top: -35px;
    left: 10px;
  }

  .banner li.num6 .ban1 img {
    height: 70px;
  }

  .banner .bd li.num6 {
    background-size: 570px;
  }

  .banner li.num7 .ban {
    margin-top: 20px;
    text-align: center;
  }

  .banner li.num7 .ban1 img {
    width: 300px;
  }

  .banner li.num7 .ban3 img {
    width: 100px;
  }

  .banner li.num7 .ban4 {
    margin-top: 10px;
  }

  .banner li.num7 .ban4 img {
    width: 300px;
  }

  .banner li.num8 .ban {
    margin-top: 20px;
    text-align: center;
  }

  .banner li.num8 .ban1 img {
    width: 300px;
  }

  .banner li.num8 .ban3 img {
    width: 200px;
  }

  .banner li.num8 .ban4 {
    margin-top: 10px;
  }

  .banner li.num8 .ban4 img {
    width: 300px;
  }

  .banner li.num9 .banner_right {
    width: 140px;
    right: 10px;
    top: 30px;
  }

  .banner li.num9 .banner_left h1 img {
    height: 24px;
    width: auto;
  }

  .banner li.num11 .banner_left {
    padding-top: 10px;
  }

  .banner li.num11 .banner_left .img11-1 {
    margin-bottom: 10px;
  }

  .banner li.num12 .ban1 p {
    display: none;
  }

  .banner li.num12 .more {
    margin-top: 11px;
  }

  .banner li.num12 .ban1 h2 {
    line-height: 1;
    font-size: 22px;
  }

  .banner li.num13 .banner_left {
    padding-top: 20px;
    width: 58%;
    max-width: 200px;
  }

  .banner li.num13 .banner_right {
    width: 32%;
    max-width: 160px;
    top: 10px;
    right: 10px;
  }

  .banner .more-a {
    font-size: 14px;
    height: 36px;
    line-height: 36px;
  }

  .banner li.num14 .banner_left {
    width: 70%;
    padding-top: 20px;
  }

  .banner li.num14 .banner_right {
    width: 26%;
    top: 0;
  }

  .banner li.num15 .banner_left {
    width: 70%;
    padding-top: 20px;
  }

  .banner li.num15 .banner_left img {
    height: 70px;
  }

  .banner li.num15 .banner_left .more {
    margin-top: 5px !important;
  }
}

/* 默认显示PC端轮播图，隐藏移动端轮播图 */
.mobile-banner {
  display: none;
}

.pc-banner {
  display: block;
}

/* 当屏幕宽度小于等于768px时，显示移动端轮播图，隐藏PC端轮播图 */
@media screen and (max-width: 767px) {
  .pc-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }
}

/***首页数字滚动***/
.ind_num {
  position: absolute;
  width: 100%;
  background: url(../images/back20.png);
  left: 0;
  bottom: 0;
}

.ind_num_list li {
  width: 20%;
  padding: 25px 0;
  float: left;
  text-align: center;
  color: #fff;
  background: url(../images/white10.png) left repeat-y;
}

.ind_num_list li p {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ind_num_list li.num1 {
  background: none;
}

.ind_num_list li .text {
  font-size: 21px;
  height: 50px;
}

.ind_num_list li .text span {
  font-size: 42px;
  font-family: arial;
  position: relative;
}

.ind_num_list li sup {
  font-size: 24px;
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 1;
}

.ind_num_list li i {
  font-style: normal;
}

/****我们的产品***/
.ind_pro {
  background: #F3F6FB;
  padding-bottom: 60px;
  /* background: url(../images/ind_pro_bg.jpg) center no-repeat;*/
}

.ind_pro .ind_title {
  color: #2F2F2F;
}

.ind_title {
  font-size: 40px;
  text-align: center;
  padding: 60px 0 40px;
}

.ind_pro_tab {
  background: #fbfbfb;
  /*border: #f5f5f5 1px solid;*/
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}

.ind_pro_tab li {
  width: 12.5%;
  float: left;
  text-align: center;
}

.ind_pro_tab li a {
  display: block;
  height: 68px;
  line-height: 68px;
  font-size: 20px;
  color: #666;
  background: url("../images/ind_pro_titline.png") left center no-repeat;
}

.ind_pro_tab li.num1 a {
  background: none;
}

/*.ind_pro_tab li.num6 a{border-right: none;}*/
/*.ind_pro_tab li .ico{display:none;float: left;width:60px;height: 68px; text-align: center;background: url(../images/ind_tab_ico01.png) center no-repeat;background-size:43% !important;}*/
/*.ind_pro_tab li.num2 .ico{background: url(../images/ind_tab_ico02.png) center no-repeat;}*/
/*.ind_pro_tab li.num3 .ico{background: url(../images/ind_tab_ico03.png) center no-repeat;}*/
/*.ind_pro_tab li.num4 .ico{background: url(../images/ind_tab_ico04.png) center no-repeat;}*/
/*.ind_pro_tab li.num5 .ico{background: url(../images/ind_tab_ico05.png) center no-repeat;}*/
/*.ind_pro_tab li.num6 .ico{background: url(../images/ind_tab_ico06.png) center no-repeat;}*/
/*.ind_pro_tab li.num7 .ico{background: url(../images/ind_tab_ico07.png) center no-repeat;}*/
/*.ind_pro_tab li .ico img{opacity: 0.6;float: left; transition: all .5s;-ms-transition: all .5s;-moz-transition: all .5s;-webkit-transition: all .5s;}*/
/*.ind_pro_tab li .title{display: block;font-size: 20px;color: #666; overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}*/

.ind_pro_tab li.num1.active a,
.ind_pro_tab li.num4.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num2.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num3.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num5.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num6.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num7.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num8.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num9.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num10.active a {
  background: url(../images/ind_table_bg01.png) center;
}

.ind_pro_tab li.num11.active a {
  background: url(../images/ind_table_bg01.png) center;
}

/*.ind_pro_tab li.num1.active .ico{background: url(../images/tab_on_ico01.png) center no-repeat;}*/
/*.ind_pro_tab li.num2.active .ico{background: url(../images/tab_on_ico02.png) center no-repeat;}*/
/*.ind_pro_tab li.num3.active .ico{background: url(../images/tab_on_ico03.png) center no-repeat;}*/
/*.ind_pro_tab li.num4.active .ico{background: url(../images/tab_on_ico04.png) center no-repeat;}*/
/*.ind_pro_tab li.num5.active .ico{background: url(../images/tab_on_ico05.png) center no-repeat;}*/
/*.ind_pro_tab li.num6.active .ico{background: url(../images/tab_on_ico06.png) center no-repeat;}*/
/*.ind_pro_tab li.num7.active .ico{background: url(../images/tab_on_ico07.png) center no-repeat;}*/
/*.ind_pro_tab li.active .ico img{opacity: 1;transform:rotateY(360deg);}*/
/*.ind_pro_tab li:hover .ico img{transform:rotateY(360deg);-ms-transform:rotateY(360deg);-moz-transform:rotateY(360deg);-webkit-transform:rotateY(360deg);}*/
.ind_pro_tab li.active .title {
  color: #fff;
}

.ind_pro_con {
  background: #fff;
  padding: 40px 40px 20px;
  overflow: hidden;
}

.ind_pro_div {
  display: none;
}

.ind_pro_div.active {
  display: block;
}

/*智慧站群*/
#tab3 .ind_pro_a .ind_zq_title {
  background: url(../images/ind_pro_line03.png) left center no-repeat;
}

#tab4 .ind_pro_a .ind_zq_title {
  background: url(../images/ind_pro_line04.png) left center no-repeat;
}

#tab5 .ind_pro_a .ind_zq_title {
  background: url(../images/ind_pro_line05.png) left center no-repeat;
}

#tab6 .ind_pro_a .ind_zq_title {
  background: url(../images/ind_pro_line06.png) left center no-repeat;
}

#tab7 .ind_pro_a .ind_zq_title {
  background: url(../images/ind_pro_line07.png) left center no-repeat;
}

.ind_pro_a .ind_zq_title {
  font-size: 22px;
  height: 30px;
  line-height: 30px;
  color: #000;
  font-weight: bold;
  padding-left: 16px;
  background: url(../images/ind_pro_line.png) left center no-repeat;
}

.ind_pro_a .intro {
  line-height: 26px;
  font-size: 14px;
  color: #666;
  margin: 17px 0 13px;
  text-align: justify;
}

.ind_pro_a .more {
  display: block;
  width: 98px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 15px;
  border: #dedede 1px solid;
  font-size: 14px;
  color: #999;
}

.ind_pro_a .more:hover {
  color: #008aff;
  border-color: #008aff;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.ind_pro_a .ind_pro_zq_ul {}

.ind_pro_a ul li a {
  cursor: default;
}
.ind_pro_a ul li a .img img {
  width: 68px;
  height: 68px;
}
/*基础数据平台*/
.ind_pro_zq_ul li {
  width: 12.5%;
  float: left;
  text-align: center;
  margin: 18px 10px;
  overflow: hidden;
}

.ind_pro_zq_ul li .img {
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  margin: 0 auto;
  padding-top: 46px;
}

.ind_pro_zq_ul li img {
  transition: all .7s;
  -ms-transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
}

.ind_pro_zq_ul li a {
  display: block;
  margin: 0 auto;
  background: #F9FBFF;
}

.ind_pro_zq_ul li .img_title {
  display: block;
  font-size: 16px;
  color: #666;
  height: 26px;
  line-height: 26px;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 30px 0;
}

.ind_pro_zq_ul li a:hover img {
  transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
}

/*教务管理平台*/

.ind_pro_zq_ul02 li {
  width: 18.21%;
  float: left;
  text-align: center;
  margin: 10px 10px;
  /* background: url(../images/ind_pro_zq_line.png) right 20px no-repeat; */
  overflow: hidden;
}

.ind_pro_zq_ul02 li a {
  display: block;
  margin: 0 auto;
  color: #666;
  background: #F9FBFF;
}

.ind_pro_zq_ul02 li .img_title {
  display: block;
  font-size: 16px;
  height: 26px;
  line-height: 26px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* .ind_pro_zq_ul02 li.num6 {
  margin-left: 112px;
} */

/* .ind_pro_zq_ul02 li.num5,
.ind_pro_zq_ul02 li.num9 {
  background: none;
} */

/*.ind_pro_zq_ul02 li.num1,.ind_pro_zq_ul02 li.num5,.ind_pro_zq_ul02 li.num6,.ind_pro_zq_ul02 li.num10{width: 173px;}*/
/*.ind_pro_zq_ul02 li.num1 a,.ind_pro_zq_ul02 li.num6 a{margin: 0;}*/
/*.ind_pro_zq_ul02 li.num5 a,.ind_pro_zq_ul02 li.num10 a{margin: 0;float: right;}*/
.ind_pro_zq_ul02 li a:hover img {
  transition: all .7s;
  -ms-transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
  transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
}

.ind_pro_zq_ul02 li a:hover {
  color: #92b7df;
}

/*学生服务管理*/
.ind_pro_zq_ul03 li {
  width: 14.88%;
  float: left;
  margin: 10px 10px;
  position: relative;
  background: #F9FBFF;
}

/* .ind_pro_zq_ul03 li.num7 {
  margin-right: 0;
} */

.ind_pro_zq_ul03 li a {
  display: block;
  color: #666;
  /* border: #dcdcdc 1px solid; */
  /*   background: #fff; */
  text-align: center;
  /*  padding: 45px 0; */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  cursor: default;
}

.ind_pro_zq_ul03 li .tit {
  display: block;
  font-size: 16px;
  margin-top: 6px;
  /* padding: 20px 0 0; */
  height: 26px;
  line-height: 26px;
  /*  background: url(../images/dj_line01.png) top center no-repeat; */
}

.ind_pro_zq_ul03 li .img_title {
  display: block;
  font-size: 16px;
  height: 26px;
  line-height: 26px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ind_pro_zq_ul03 li .ico {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  /* background: url(../images/ind_zhdj_ico01.png) 0 0 no-repeat; */
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.ind_pro_zq_ul03 li.num2 .ico {
  background: url(../images/ind_zhdj_ico03.png) 0 0 no-repeat;
}

.ind_pro_zq_ul03 li.num3 .ico {
  background: url(../images/ind_zhdj_ico02.png) 0 0 no-repeat;
}

.ind_pro_zq_ul03 li.num4 .ico {
  background: url(../images/ind_zhdj_ico06.png) 0 0 no-repeat;
}

.ind_pro_zq_ul03 li.num5 .ico {
  background: url(../images/ind_zhdj_ico05.png) 0 0 no-repeat;
}

.ind_pro_zq_ul03 li.num6 .ico {
  background: url(../images/ind_zhdj_ico07.png) 0 0 no-repeat;
}

.ind_pro_zq_ul03 li.num7 .ico {
  background: url(../images/ind_zhdj_ico04.png) 0 0 no-repeat;
}

.ind_pro_zq_ul03 li a:hover {
  background: #d7000f;
  border-color: #d7000f;
  color: #fff;
}

.ind_pro_zq_ul03 li a:hover .ico {
  background-position: 0 -60px;
}

.ind_pro_zq_ul03 li a:hover .tit {
  background: url(../images/dj_line02.png) top center no-repeat;
}

/*人力资源平台*/
/* .ind_pro_zq_ul04 {
  margin-right: -17px;
} */

.ind_pro_zq_ul04 li {
  width: 31.54%;
  float: left;
  margin: 10px 10px;
  background: #F9FBFF;
}

.ind_pro_zq_ul04 li a {
  display: block;
  /*   height: 56px; */
  line-height: 56px;
  /*   padding: 21px 0; */
  font-size: 17px;
  color: #666;
  text-align: center;
  /* border: #dedede 1px solid; */
  transition: all .7s;
  -ms-transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
}

.ind_pro_zq_ul04 li .img {
  display: inline-block;
  /*  width: 56px; */
  /* margin-right: 14px; */
  vertical-align: middle;
  margin-top: 50px;
}

.ind_pro_zq_ul04 li .img_title {
  display: block;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 24px 0 50px 0;
}

.ind_pro_zq_ul04 li a:hover {
  color: #407bbc;
  /*box-shadow: #f1f1f1 0 0 14px 2px;-webkit-box-shadow: #f1f1f1 0 0 14px 2px;*/
  border-color: #ebf3fd;
  background: #ebf3fd;
}

/*移动应用平台*/
/* .ind_pro_zq_ul05 {
  margin-top: 60px;
} */

.ind_pro_zq_ul05 li {
  width: 31.54%;
  float: left;
  margin: 10px 10px;
  background: #F9FBFF;
}

/* .ind_pro_zq_ul05 li.num7 {
  margin-right: 0;
} */

.ind_pro_zq_ul05 li a {
  display: block;
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 26px;
}

.ind_pro_zq_ul05 li a img {
  margin-top: 50px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.ind_pro_zq_ul05 li .img_title {
  display: block;
  margin-top: 10px;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 24px 0 50px 0;
}

.ind_pro_zq_ul05 li a:hover {
  color: #46c1c0;
}

.ind_pro_zq_ul05 li a:hover img {
  transform: rotateZ(-15deg);
  -ms-transform: rotateZ(-15deg);
  -moz-transform: rotateZ(-15deg);
  -webkit-transform: rotateZ(-15deg);
}

/*人力资源平台*/
.ind_pro_zq_ul06 li {
  width: 12.5%;
  float: left;
  margin: 10px 10px;
  background: #F9FBFF;
}

/* .ind_pro_zq_ul06 li.num1 {
  padding-left: 112px;
} */

/* .ind_pro_zq_ul06 li.num4 {
  margin-right: 0;
} */

/* .ind_pro_zq_ul06 li img {
  width: 46px !important;
  height: 46px !important;
} */

.ind_pro_zq_ul06 li a {
  display: block;
  cursor: default;
  text-align: center;
}

.ind_pro_zq_ul06 li a img {
  margin-top: 50px;
}

.ind_pro_zq_ul06 li .img_title {
  display: block;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 24px 0 50px 0;
}

.ind_pro_zq_ul06 li.num10 a,
.ind_pro_zq_ul06 li.num5 a {
  border-right: none;
}

.ind_pro_zq_ul06 li a:hover {
  color: #82ba43;
}

.ind_pro_zq_ul06 li a:hover img {
  transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

/*智慧征迁*/
/* .ind_pro_zq_ul07 {
  margin-top: 45px;
} */

.ind_pro_zq_ul07 li {
  width: 14.88%;
  float: left;
  margin: 10px 10px;
  background: #F9FBFF;
}

.ind_pro_zq_ul07 li a {
  display: block;
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 26px;
  /* margin: 0 20px; */
  /* padding-top: 20px; */
  transition: all .7s;
  -ms-transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
}


.ind_pro_zq_ul07 li .img {
  display: inline-block;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  margin-top: 50px;
}

.ind_pro_zq_ul07 li .img_title {
  display: block;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 24px 0 50px 0;
}

.ind_pro_zq_ul07 li a:hover .img {
  box-shadow: #f1f1f1 0 0 14px 4px;
  -webkit-box-shadow: #f1f1f1 0 0 14px 4px;
}

.ind_pro_zq_ul07 li a:hover {
  padding-top: 10px;
  color: #77cdcc;
}

/***智慧征迁***/
/*.ind_pro_zq_ul5{width: 1040px;margin: 0 auto;}*/
/*.ind_pro_zq_ul5 li{width: 220px;height: 220px; float: left;text-align: center; margin: 0 20px; border-radius:5px;-webkit-border-radius: 5px;background:#F9F9F9;transition:all .5s;-webkit-transition:all .5s;}*/
/*.ind_pro_zq_ul5 li a{display: block;font-size: 16px;}*/
/*.ind_pro_zq_ul5 li .img{width:116px;height: 116px; margin: 25px auto 10px;}*/
/*.ind_pro_zq_ul5 li img{max-width: 100%;}*/
/*.ind_pro_zq_ul5 li .titl{color:#666;}*/
/*.ind_pro_zq_ul5 li .tit2{color:#298C91;}*/
/*.ind_pro_zq_ul5 li:hover{box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;-webkit-box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;}*/

/*公共服务平台*/
/* .ind_pro_zq_ul08 {
  margin-top: 22px;
} */

.ind_pro_zq_ul08 li {
  width: 31.54%;
  float: left;
  margin: 10px 10px;
  background: #F9FBFF;
}

.ind_pro_zq_ul08 li.num10,
.ind_pro_zq_ul08 li.num5 {
  margin-right: 0;
}

.ind_pro_zq_ul08 li a {
  display: block;
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 26px;
}

.ind_pro_zq_ul08 li .img_title {
  display: block;
  margin-top: 10px;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 24px 0 50px 0;
}

.ind_pro_zq_ul08 li img {
  width: 68px;
  height: auto;
  margin-top: 50px;
}

.ind_pro_zq_ul08 li a:hover {
  color: #d6010e;
}

.ind_pro_zq_ul08 li a:hover img {
  transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

/*智慧政协*/
.ind_pro_zhzx {
  margin-top: 35px;
}

.ind_pro_zhzx li {
  width: 138px;
  float: left;
  margin-right: 105px;
  margin-bottom: 36px;
}

.ind_pro_zhzx li.num10,
.ind_pro_zhzx li.num5 {
  margin-right: 0;
}

.ind_pro_zhzx li a {
  display: block;
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 26px;
}

.ind_pro_zhzx li .img_title {
  display: block;
  margin-top: 8px;
}

.ind_pro_zhzx li a:hover {
  color: #5e73ff;
}

.ind_pro_zhzx li a:hover img {
  transition: all 0.5s;
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

/*智慧纪监*/
.ind_pro_zhjj {
  margin-top: 32px;
}

.ind_pro_zhjj li {
  width: 33.33%;
  float: left;
}

.ind_pro_zhjj li a {
  display: block;
  padding: 0 0 22px 65px;
  height: 73px;
  line-height: 73px;
  font-size: 17px;
  color: #666;
  border-right: #eee 1px solid;
  border-bottom: #eee 1px solid;
}

.ind_pro_zhjj li .img {
  display: inline-block;
  margin-right: 30px;
  vertical-align: middle;
  width: 73px;
  height: 73px;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  position: relative;
  background: url("../images_new/jj_iconbg.png") center no-repeat;
  border-radius: 50%;
}

.ind_pro_zhjj li .img img {
  display: block;
  transition: all .6s;
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 2;
}

.ind_pro_zhjj li .img_title {
  display: inline-block;
  vertical-align: middle;
}

.ind_pro_zhjj li.num3 a,
.ind_pro_zhjj li.num6 a {
  border-right: none;
}

.ind_pro_zhjj li.num4 a,
.ind_pro_zhjj li.num5 a,
.ind_pro_zhjj li.num6 a {
  padding: 22px 0 0 65px;
  border-bottom: none;
}

.ind_pro_zhjj li a:hover {
  color: #3d77e0;
}

.ind_pro_zhjj li a:hover img {
  transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -webkit-transform: rotateZ(90deg);
}

.ind_pro_zhjj li .img:after {
  width: 0;
  height: 0;
  content: '';
  background: url("../images_new/jj_iconbg_hover.png") center no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  border-radius: 50%;
}

.ind_pro_zhjj li a:hover .img:after {
  width: 73px;
  height: 73px;
  top: 0;
  left: 0;
}

/***行业应用***/
/*.ind_pro_zq_ul6{padding: 0 28px;}*/
/*.ind_pro_zq_ul6 li{width: 160px;float: left;margin:0 53px;text-align: center;}*/
/*.ind_pro_zq_ul6 li img{width: 100%;transition:all .5s;-webkit-transition:all .5s;}*/
/*.ind_pro_zq_ul6 li .img_title{font-size: 16px;line-height: 20px;font-weight: bold;color: #666;text-align: center;margin-top:20px;}*/
/*.ind_pro_zq_ul6 li.num2 .img_title,.ind_pro_zq_ul6 li.num5 .img_title{margin-top:10px;}*/
/*.ind_pro_zq_ul6 li:hover img{box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;-webkit-box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;}*/

/***项目监管***/
/*.ind_pro_zq_ul7{width: 1050px;margin:0 auto;}*/
/*.ind_pro_zq_ul7 li{width: 160px;float: left;text-align: center;margin: 0 25px;}*/
/*.ind_pro_zq_ul7 li .img{width: 160px;height: 160px;background:#F5F9FC;border-radius: 3px;-webkit-border-radius: 3px;overflow: hidden;transition:all .5s;-webkit-transition:all .5s;}*/
/*.ind_pro_zq_ul7 li .img img{transition:all .7s;-webkit-transition:all .7s;}*/
/*.ind_pro_zq_ul7 li.num1 img{width: 95px;padding-top: 40px;}*/
/*.ind_pro_zq_ul7 li.num2 img{width: 101px;padding-top:34px;}*/
/*.ind_pro_zq_ul7 li.num3 img{width:99px;padding-top:38px;}*/
/*.ind_pro_zq_ul7 li.num4 img{width: 95px;padding-top:34px;}*/
/*.ind_pro_zq_ul7 li.num5 img{width: 109px;padding-top:30px;}*/
/*.ind_pro_zq_ul7 li .title{display: block;text-align: center;font-size: 20px;font-weight: bold;color: #666;line-height: 32px; margin-top: 16px;}*/
/*.ind_pro_zq_ul7 li:hover .img{box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;-webkit-box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;}*/
/*.ind_pro_zq_ul7 li:hover .img img{transform:rotateZ(-15deg);-webkit-transform:rotateZ(-15deg);}*/

/* 数字乡村 */
.ind_pro_zq_ul11 li {
  width: 165px;
  float: left;
  margin-left: 25px;
  position: relative;
  height: 213px;
}

.ind_pro_zq_ul11 li.num1 {
  margin-left: 0;
}

.ind_pro_zq_ul11 li a {
  display: block;
  color: #666;
  border: #dcdcdc 1px solid;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  cursor: default;
  height: 211px;
}

.ind_pro_zq_ul11 li .ico {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
  width: 100%;
  height: 90px;
}

.ind_pro_zq_ul11 li.num1 .ico {
  background: url("../images_new/exp-001.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num2 .ico {
  background: url("../images_new/exp-002.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num3 .ico {
  background: url("../images_new/exp-003.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num4 .ico {
  background: url("../images_new/exp-004.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num5 .ico {
  background: url("../images_new/exp-005.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num6 .ico {
  background: url("../images_new/exp-006.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num1 .tit {
  background: url("../images_new/szxc-en01.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num2 .tit {
  background: url("../images_new/szxc-en02.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num3 .tit {
  background: url("../images_new/szxc-en03.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num4 .tit {
  background: url("../images_new/szxc-en04.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num5 .tit {
  background: url("../images_new/szxc-en05.png") no-repeat center center;
}

.ind_pro_zq_ul11 li.num6 .tit {
  background: url("../images_new/szxc-en06.png") no-repeat center center;
}

.ind_pro_zq_ul11 li .tit {
  display: block;
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.ind_pro_zq_ul11 li a:hover {
  background: #74cc5c;
  border-color: #74cc5c;
  color: #fff;
}

.ind_pro_zq_ul11 li a:hover .tit {
  background: none;
}

/* 适配 */
@media only screen and (min-width: 992px) and (max-width:1199px) {

  /*项目监管*/
  .ind_pro_zq_ul04 li {
    width: 31.14%;
  }

  /*政务新媒体*/
  .ind_pro_zq_ul05 li {
    width: 30.04%;
    ;
    margin-right: 20px;
  }

  /*智慧园区*/
  .ind_pro_zq_ul06 li {
    width: 12.09%;
  }

  /*智慧人大*/
  .ind_pro_zq_ul08 li {
    margin-right: 55px;
  }

  /*智慧政协*/
  .ind_pro_zhzx li {
    margin-right: 55px;
  }

  /* 数字乡村 */
  .ind_pro_zq_ul11 li {
    width: 139px;
    margin-left: 15px;
  }

  .ind_pro_zq_ul07 li {
    width: 14.47%;
  }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
  .ind_pro_tab li a {
    line-height: 0;
  }

  .ind_pro_tab li .title {
    display: inline-block;
    width: 79px;
    line-height: 22px;
    padding: 12px 0;
    height: 44px;
    margin: 0 auto;
    font-size: 18px;
  }

  /* .ind_pro_tab li.num1 .title,
  .ind_pro_tab li.num5 .title {
    width: 54px;
  } */

  /*项目监管*/
  .ind_pro_zq_ul04 li {
    width: 30.58%;
  }

  .ind_pro_zq_ul04 li .img {
    width: 36px;
    margin-right: 5px;
  }

  .ind_pro_zq_ul04 li .img img {
    width: 36px;
  }

  /*政务新媒体*/
  .ind_pro_zq_ul05 li {
    width: 29.9%;
    ;
    margin-right: 15px;
  }

  /*智慧园区*/
  .ind_pro_zq_ul06 li {
    width: 11.54%;
  }

  /*智慧人大*/
  .ind_pro_zq_ul08 li {
    width: 132px;
    margin-right: 15px;
  }

  /*智慧政协*/
  .ind_pro_zhzx li {
    width: 132px;
    margin-right: 15px;
  }

  /*智慧纪监*/
  .ind_pro_zhjj li a {
    padding-left: 25px !important;
  }

  .ind_pro_zhjj li .img {
    margin-right: 10px;
  }

  /* 数字乡村 */
  .ind_pro_zq_ul11 li {
    width: 139px;
    margin-left: 10px;
    width: 112px;
  }

  .ind_pro_zq_ul07 li {
    width: 13.91%
  }

  .ind_pro_zq_ul08 li {
    width: 30.58%;
  }
}

@media only screen and (max-width:767px) {
  .ind_pro_zq_ul06 li {
    width: 30.11%;
  }

  .ind_pro_zq_ul03 li .tit,
  .ind_pro_zq_ul06 li .img_title {
    font-size: 14px;
  }

  .ind_pro_tab li a {
    line-height: 0;
  }

  .ind_pro_tab li .title {
    display: inline-block;
    width: 54px;
    line-height: 22px;
    padding: 12px 0;
    height: 44px;
    margin: 0 auto;
    font-size: 16px;
  }

  /* .ind_pro_tab li.num1 .title,
  .ind_pro_tab li.num5 .title {
    width: 54px;
  } */

  /*项目监管*/
  .ind_pro_zq_ul04 {
    margin-right: 0;
  }

  .ind_pro_zq_ul04 li {
    width: 31.33%;
    margin: 0 1% 15px;
  }

  .ind_pro_zq_ul04 li .img {
    width: 68px;
    /* margin-right: 5px; */
  }

  .ind_pro_zq_ul04 li .img img {
    width: 68px;
  }

  .ind_pro_zq_ul04 li a {
    font-size: 14px;
  }

  /*政务新媒体*/
  .ind_pro_zq_ul05 {
    margin-top: 20px;
  }

  .ind_pro_zq_ul05 li {
    width: 31.33%;
    margin: 0 1% 15px;
  }

  .ind_pro_zq_ul05 li a {
    font-size: 14px;
  }

  .ind_pro_zq_ul05 li .img_title {
    margin-top: 10px;
  }

  /*智慧园区*/
  /* .ind_pro_zq_ul06 li.num1 {
    padding-left: 0;
  } */

  /*智慧征迁*/
  .ind_pro_zq_ul07 {
    margin-top: 20px;
  }

  .ind_pro_zq_ul07 li {
    width: 28.78%;
  }

  .ind_pro_zq_ul08 li {
    width: 31.33%;
    margin: 0 1% 15px;
  }

  /* .ind_pro_zq_ul07 li {
    width: 27.45%;
  /*   margin: 0 0 15px; */
}

.ind_pro_zq_ul07 li a {
  font-size: 14px;
}

.ind_pro_zq_ul07 li .img_title {
  margin-top: 10px;
}

/* .ind_pro_zq_ul07 li a,
  .ind_pro_zq_ul07 li a:hover {
    padding-top: 0;
  } */

/*公共服务平台*/
.ind_pro_zq_ul08 li {
  /* width: 20%; */
  /* margin: 0 0 15px;  */
}

.ind_pro_zq_ul08 li a {
  font-size: 14px;
}

.ind_pro_zq_ul08 li img {
  width: 68px;
}

/*智慧政协*/
.ind_pro_zhzx li {
  width: 20%;
  margin: 0 0 15px;
}

.ind_pro_zhzx li a {
  font-size: 14px;
}

/*智慧纪监*/
.ind_pro_zhjj li a {
  padding-left: 0 !important;
  text-align: center;
  height: auto;
  line-height: 0;
  font-size: 14px;
}

.ind_pro_zhjj li .img {
  margin-right: 0;
}

.ind_pro_zhjj li .img_title {
  display: block;
  margin-top: 10px;
  line-height: 22px;
}

/* 数字乡村 */
.ind_pro_zq_ul11 li,
.ind_pro_zq_ul11 li.num1 {
  width: 31.333%;
  margin: 0 1% 10px;
}

.ind_pro_zq_ul11 li .tit {
  font-size: 14px;
}

@media only screen and (max-width:590px) {
  .ind_pro_tab li {
    width: 25%;
  }

  .ind_pro_tab li.num5 a {
    background: none;
  }

  .ind_pro_tab {
    border-radius: 0px 0px 0px 0px;
  }
}

@media only screen and (max-width:479px) {

  /* 基础数据平台 */
  /* .ind_pro_zq_ul1 li {
    width: 48%;
  } */
  .ind_pro_zq_ul02 li {}

  /*项目监管*/
  .ind_pro_zq_ul04 li {
    width: 100%;
  }

  /*政务新媒体*/
  .ind_pro_zq_ul05 li {
    width: 100%;
  }

  .ind_pro_zq_ul05 li a img {
    width: 56px;
    height: auto;
  }

  /*智慧征迁*/
  .ind_pro_zq_ul07 li {
    width: 100%;
  }

  .ind_pro_zq_ul07 li a {
    margin: 0;
  }

  /* .ind_pro_zq_ul07 li .img img {
    width: 60px;
  } */

  /*公共服务平台*/
  .ind_pro_zq_ul08 li {
    width: 100%;
  }

  .ind_pro_zq_ul08 li img {
    width: 56px;
  }

  /*智慧政协*/
  .ind_pro_zhzx li {
    width: 33.33%;
  }

  .ind_pro_zhzx li img {
    width: 46px;
  }
}

/* AIOT服务平台经典案例 */
.aizwwd-case {
  padding: 60px 0;
  background: url(/images/ai-zwwd-dxalbg.png) no-repeat center;
  background-size: cover;
}

/***经典案例***/
/*.ind_case .ind_title{color: #fff;}*/
.ind_case {
  width: 100%;
  padding-bottom: 60px;
  /*height:691px;*/
  /* background: url(../images/ind_case_bg.jpg) center no-repeat;*/
}

.ind_case_list {
  padding: 0 0;
  position: relative;
}

.ind_case_list li {
  width: 270px;
  height: 378px;
  padding: 4px;
  border: #f5f5f5 1px solid;
  margin-right: 33px;
  float: left;
  overflow: hidden;
}

.ind_case_list li a {
  display: block;
  width: 100%;
  height: 378px;
  background: #f5f5f5;
}

.ind_case_list li.even a {
  position: relative;
}

.ind_case_list li .img {
  overflow: hidden;
  width: 270px;
  height: 230px;
  position: relative;
}

.ind_case_list li .img img {
  width: 100%;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.ind_case_list li.even .img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.ind_case_text {
  padding: 20px 18px;
}

.ind_case_text h4 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ind_case_text .info {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  height: 72px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ind_case_list li:hover .img img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.ind_case_list li .img i {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: -15px;
  background: url(../images/ind_case_ico01.png) center no-repeat;
  z-index: 1;
}

.ind_case_list li.odd .img i {
  top: auto;
  bottom: -15px;
}

.ind_case_list li:hover a {
  background: #008aff;
  color: #fff;
}

.ind_case_list li:hover .img i {
  background: url(../images/ind_case_ico02.png) center no-repeat;
}

.ind_case_list li:hover .ind_case_text h4 {
  color: #fff;
  opacity: 0.9;
}

.ind_case_list li:hover .ind_case_text .info {
  color: #fff;
  opacity: 0.7;
}

.ind_case .more {
  display: block;
  width: 158px;
  height: 38px;
  font-size: 18px;
  color: #666;
  text-align: center;
  line-height: 38px;
  margin: 40px auto 0;
  border: #eaeaea 1px solid;
  background: #f9f9f9;
}

.ind_case .more:hover {
  color: #008aff;
  border-color: #008aff;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

/*.ind_case_list .j-scroll{width: 100%;}*/
.ind_case_list .scroll-wrap {
  overflow: hidden;
  height: 388px;
}

.ind_case_list .next,
.ind_case_list .prev {
  width: 36px;
  height: 70px;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  z-index: 9;
  cursor: pointer;
}

.ind_case_list .prev {
  left: -40px;
  background: url(../images/ind_case_prev2.png) center no-repeat;
}

.ind_case_list .next {
  right: -40px;
  background: url(../images/ind_case_next2.png) center no-repeat;
}

.ind_case_list .next:hover,
.ind_case_list .prev:hover {
  opacity: 0.6;
}

/****龙讯动态****/
.ind_news {
  padding-bottom: 60px;
  background: #fff;
}

s .ind_news_list {
  position: relative;
}

.ind_news_list .scroll-wrap {
  height: 276px;
  overflow: hidden;
}

.ind_news_list li {
  width: 373px;
  float: left;
  margin-right: 40px;
}

.ind_news_list li.num3 {
  margin-right: 0;
}

.ind_news_list li a {
  display: block;
  padding: 23px 19px 14px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  border: #ededed 1px solid;
}

.ind_news_list li .img {
  overflow: hidden;
  text-align: center;
}

.ind_news_list li .img img {
  max-width: 100%;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

/*.ind_news_list li:hover .img img{transform: scale(1.1);-ms-transform: scale(1.1);-moz-transform: scale(1.1);-webkit-transform: scale(1.1);}*/
.ind_news_list li a:hover {
  background: #f9f9f9;
}

.ind_news_list li .info {
  line-height: 26px;
  font-size: 15px;
  margin-top: 15px;
  /* height: 52px; */
  overflow: hidden;
}

.ind_news_list li .info .title {
  display: -webkit-box;
    -webkit-line-clamp: 2;        /* 限制显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ind_news_list li .info .date {
  float: none !important;
  color: #999;
  padding-left: 2px;
}

.ind_news_list .next,
.ind_news_list .prev {
  display: block;
  width: 36px;
  height: 70px;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  z-index: 9;
  cursor: pointer;
}

.ind_news_list .prev {
  left: -40px;
  background: url(../images/ind_arrow_left.svg) center no-repeat;
}

.ind_news_list .next {
  right: -40px;
  background: url(../images/ind_arrow_right.svg) center no-repeat;
}

.ind_news_list .next:hover,
.ind_news_list .prev:hover {
  opacity: 0.6;
}

.ind_news .more {
  display: block;
  width: 158px;
  height: 38px;
  font-size: 18px;
  color: #666;
  text-align: center;
  line-height: 38px;
  margin: 30px auto 0;
  border: #eaeaea 1px solid;
  background: #fff;
}

.ind_news .more:hover {
  color: #008aff;
  border-color: #008aff;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.ind_intro {
  background: #20b09f url(../images/ind_bg03.png) bottom center no-repeat;
  padding: 18px 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 32px;
  color: #fff;
}

.ind_intro .text2 {
  display: none;
}

/****就近找到我们****/
.ind_about {
  width: 100%;
  height: 694px;
  background: url(../images/ind_about_bg.jpg) center no-repeat;
}

.ind_about .ind_title {
  color: #fff;
  padding: 56px 0 36px;
}

.ind_about_text {
  width: 570px;
  float: right;
  font-size: 16px;
  line-height: 34px;
  color: #fff;
  padding-top: 108px;
  text-align: justify;
}

.ind_about_text a {
  display: none;
}

.ind_map {
  width: 601px;
  height: 495px;
  float: left;
  position: relative;
}

.ind_map img {
  max-width: 100%;
}

.ind_map .map1 {
  width: 581px;
}

.ind_map .map2 {
  display: none;
}

.map_con li {
  position: absolute;
  z-index: 0;
}

.map_con li span {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #fff;
  line-height: 22px;
  padding-top: 10px;
  background: url(../images/ind_map_ico01.png) top center no-repeat;
  cursor: pointer;
}

.map_con li:hover span {
  background: url(../images/ind_map_ico02.png) top center no-repeat;
}

.map_con li .ind_map_info {
  display: none;
  position: absolute;
  width: 262px;
  height: 66px;
  right: -12px;
  top: -100px;
  padding: 18px 20px 9px;
  font-size: 13px;
  line-height: 24px;
  color: #fff;
  background: url(../images/ind_map_bg01.png) 0 0 no-repeat;
  z-index: 999;
}

/*.map_con li:hover .ind_map_info{display: block;}*/
.map_con li.m .ind_map_info {
  height: 72px;
  padding: 6px 15px 15px;
}

.map_con li.m1 span {
  background: url(../images/ind_map_ico03.png) top center no-repeat;
}

.map_con li.m1 {
  top: 280px;
  right: 144px;
}

.map_con li.m2 {
  bottom: 71px;
  right: 183px;
}

.map_con li.m3 {
  top: 244px;
  right: 268px;
}

.map_con li.m4 {
  top: 230px;
  right: 117px;
}

.map_con li.m5 {
  bottom: 158px;
  right: 174px;
}

.map_con li.m6 {
  bottom: 135px;
  right: 152px;
}

.map_con li.m7 {
  bottom: 158px;
  right: 290px;
}

.map_con li.m8 {
  top: 209px;
  right: 199px;
}

.map_con li.m9 {
  top: 210px;
  right: 143px;
}

.map_con li.m10 {
  bottom: 52px;
  right: 242px;
}

.map_con li.m11 {
  bottom: 68px;
  right: 285px;
}

.map_con li.m12 {
  bottom: 125px;
  right: 195px;
}

.map_con li.m13 {
  bottom: 13px;
  right: 223px;
}

/*.map_con li.m13 .ind_map_info{padding: 8px 20px 9px;}*/
.map_con li.m14 {
  top: 221px;
  left: 247px;
}

.map_con li.m15 {
  top: 114px;
  left: 130px;
}

.map_con li.m16 {
  bottom: 145px;
  right: 253px;
}

.map_con li.m17 {
  bottom: 88px;
  right: 238px;
}

.map_con li.m18 {
  bottom: 81px;
  right: 311px;
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
  .ind_about {
    height: auto;
  }

  .ind_about_con {
    padding-bottom: 50px;
  }

  .ind_map {
    width: 496px;
    height: 409px;
  }

  .ind_about_text {
    width: 476px;
    padding-top: 28px;
  }

  .map_con li.m1 {
    top: 240px;
    right: 105px;
  }

  .map_con li.m2 {
    bottom: 40px;
    right: 136px;
  }

  .map_con li.m3 {
    top: 205px;
    right: 222px;
  }

  .map_con li.m4 {
    top: 191px;
    right: 96px;
  }

  .map_con li.m5 {
    bottom: 118px;
    right: 132px;
  }

  .map_con li.m6 {
    bottom: 97px;
    right: 110px;
  }

  .map_con li.m7 {
    bottom: 118px;
    right: 229px;
  }

  .map_con li.m8 {
    top: 177px;
    right: 154px;
  }

  .map_con li.m9 {
    top: 170px;
    right: 113px;
  }

  .map_con li.m10 {
    bottom: 29px;
    right: 187px;
  }

  .map_con li.m11 {
    bottom: 49px;
    right: 235px;
  }

  .map_con li.m12 {
    bottom: 89px;
    right: 149px;
  }

  .map_con li.m13 {
    bottom: -6px;
    right: 172px;
  }

  .map_con li.m14 {
    top: 189px;
    left: 210px;
  }

  .map_con li.m15 {
    top: 105px;
    left: 108px;
  }

  .map_con li.m16 {
    bottom: 106px;
    right: 198px;
  }

  .map_con li.m17 {
    bottom: 69px;
    right: 194px;
  }

  .map_con li.m18 {
    bottom: 53px;
    right: 246px;
  }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
  .p10 {
    padding: 0 10px;
  }

  /*.logo{padding-left: 10px;}*/
  .top_right {
    padding-right: 0;
  }

  .ind_about_con {
    padding-left: 10px;
    padding-right: 10px;
  }

  .foot_left {
    padding-left: 10px;
  }

  .foot_right {
    padding-right: 10px;
  }

  .ny_banbox .container {
    /*width: auto;*/
    padding: 0 10px;
  }

  .ind_about {
    height: auto;
    background-size: cover;
  }

  .ind_about_con {
    padding-bottom: 50px;
  }

  .ind_map {
    float: none;
    margin: 0 auto;
    text-align: center;
  }

  .ind_about_text {
    width: 100%;
    float: none;
    padding-top: 40px;
  }
}

@media only screen and (max-width:767px) {
  .ind_about {
    height: auto;
    background-size: cover;
  }

  .ind_about_con {
    padding-bottom: 30px;
  }

  .ind_map {
    float: none;
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto;
  }

  .ind_about_text {
    width: 100%;
    float: none;
    padding-top: 30px;
  }

  .ind_map .map1,
  .map_con {
    display: none;
  }

  .ind_map .map2 {
    display: inline-block;
  }
}

@media only screen and (max-width:480px) {
  .ind_about_text {
    line-height: 24px;
    font-size: 14px;
  }

  .logo {
    width: 145px;
  }

  .logo img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width:1921px) {

  .ind_about,
  .ind_case {
    background-size: 100%;
  }
}

@media (min-width: 992px) and (max-width:1199px) {
  .ind_pro_zq_ul ul li {
    width: 12.09%;
    ;
  }

  .ind_title {
    font-size: 34px;
    padding: 50px 0 35px;
  }

  .ind_num {
    position: static;
    background: #09146d;
  }

  .ind_news_list li {
    width: 310.66px;
    margin-right: 30px;
  }

  .ind_case {
    height: auto;
    padding-bottom: 60px;
  }

  .ind_case_list .scroll-wrap {
    height: 352px;
  }

  .ind_case_list li {
    width: 223px;
    height: 342px;
    margin-right: 20px;
  }

  .ind_case_list li a {
    height: 342px;
  }

  .ind_case_list li .img {
    width: 223px;
    height: 190px;
  }

  .ind_case_list .prev,
  .ind_news_list .prev {
    left: 0;
  }

  .ind_case_list .next,
  .ind_news_list .next {
    right: 0;
  }

  .ind_pro_tab li .ico {
    width: 45px;
    background-size: 53% !important;
  }

  .ind_pro_tab li .title {
    font-size: 18px;
  }

  /*.ind_pro_zq_ul li{width: 204px;}*/
  /*.ind_pro_zq_ul li.num1, .ind_pro_zq_ul li.num5, .ind_pro_zq_ul li.num6, .ind_pro_zq_ul li.num10{width: 150px;}*/
  .ind_pro_zq_ul02 li {
    width: 17.8%;
  }

  /*.ind_pro_zq_ul02 li.num1, .ind_pro_zq_ul02 li.num5, .ind_pro_zq_ul02 li.num6, .ind_pro_zq_ul02 li.num10{width: 150px;}*/
  /* .ind_pro_zq_ul02 li.num6 {
    margin-left: 91px;
  } */

  .ind_pro_zq_ul03 li {
    width: 14.47%;
    /* margin-right: 20px; */
  }

  .ind_pro_zq_ul5 {
    width: 100%;
  }

  .ind_pro_zq_ul5 li {
    width: 188px;
  }

  .ind_pro_zq_ul6 li {
    width: 135px;
    margin: 0 39px;
  }

  .ind_news,
  .ind_pro {
    padding-bottom: 40px;
  }

  .ind_pro_zq_ul7 {
    width: auto;
  }

  .ind_pro_zq_ul7 li {
    width: 132px;
  }

  .ind_pro_zq_ul7 li .img {
    width: 132px;
    height: 132px;
  }

  .ind_pro_zq_ul7 li.num1 img {
    width: 80px;
    padding-top: 32px;
  }

  .ind_pro_zq_ul7 li.num2 img {
    width: 95px;
    padding-top: 26px;
  }

  .ind_pro_zq_ul7 li.num3 img {
    width: 85px;
    padding-top: 30px;
  }

  .ind_pro_zq_ul7 li.num4 img {
    width: 80px;
    padding-top: 28px;
  }

  .ind_pro_zq_ul7 li.num5 img {
    width: 95px;
    padding-top: 24px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .ind_pro_zq_ul ul li {
    width: 11.54%;
  }

  .ind_about .ind_title,
  .ind_title {
    font-size: 30px;
    padding: 40px 0 30px;
  }

  .ind_num {
    position: static;
    background: #09146d;
  }

  .ind_num_list li {
    padding: 20px 0;
  }

  .ind_num_list li .text span {
    font-size: 38px;
  }

  .ind_news_list {
    padding: 0 20px;
  }

  .ind_news_list .scroll-wrap {
    height: 269px;
  }

  /*.ind_news_list li{width: 351px;height: auto; margin-right: 20px;}*/
  .ind_news_list li {
    width: 230px;
    height: auto;
    margin-right: 15px;
    margin-bottom: 20px;
  }

  .ind_news_list li .info {
    height: auto;
  }

  .ind_news_list li a {
    padding: 10px;
  }

  .ind_news_list li .img img {
    height: 116px;
  }

  .ind_case {
    height: auto;
    padding-bottom: 40px;
  }

  .ind_case_text {
    padding: 20px 10px;
  }

  .ind_case_list {
    padding: 0 20px;
  }

  .ind_case_list .scroll-wrap {
    height: 352px;
  }

  .ind_case_list li {
    width: 223px;
    height: 342px;
    margin-right: 20px;
  }

  .ind_case_list li a {
    height: 342px;
  }

  .ind_case_list li .img {
    width: 223px;
    height: 190px;
  }

  .ind_case_list .prev,
  .ind_news_list .prev {
    left: 0;
  }

  .ind_case_list .next,
  .ind_news_list .next {
    right: 0;
  }

  .ind_case .more,
  .ind_news .more {
    margin: 20px auto 0;
  }

  .ind_news,
  .ind_pro {
    padding-bottom: 40px;
  }

  .ind_pro_con {
    padding: 30px 20px 10px;
  }

  /*.ind_pro_tab li a{height: auto;text-align: center;}*/
  .ind_pro_tab li .ico {
    display: none;
  }

  /*.ind_pro_tab li .title{display: block;float: none; line-height: 58px;height: 58px;font-size: 18px;}*/
  /*.ind_pro_zq_ul li{width:148px;}*/
  /*.ind_pro_zq_ul li.num1, .ind_pro_zq_ul li.num5, .ind_pro_zq_ul li.num6, .ind_pro_zq_ul li.num10{width: 139px;}*/
  .ind_pro_zq_ul02 li {
    width: 17.25%;
  }

  /*.ind_pro_zq_ul02 li.num1, .ind_pro_zq_ul02 li.num5, .ind_pro_zq_ul02 li.num6, .ind_pro_zq_ul02 li.num10{width: 119px;}*/
  /* .ind_pro_zq_ul02 li.num6 {
    margin-left: 72px;
  } */
  /* 
  .ind_pro_zq_ul03 li a {
    padding: 30px 0;
  } */

  .ind_pro_zq_ul03 li {
    width: 13.91%;
  }

  .ind_pro_zq_ul5 {
    width: 100%;
  }

  .ind_pro_zq_ul5 li {
    width: 150px;
  }

  .ind_pro_zq_ul5 li .img {
    width: 96px;
    height: 96px;
  }

  .ind_pro_zq_ul6 {
    padding: 0 15px;
  }

  .ind_pro_zq_ul6 li {
    width: 103px;
    margin: 0 35px;
  }

  .ind_pro_zq_ul7 {
    width: 100%;
  }

  .ind_pro_zq_ul7 li {
    width: 114px;
    margin: 0 15px;
  }

  .ind_pro_zq_ul7 li .img {
    width: 114px;
    height: 114px;
  }

  .ind_pro_zq_ul7 li.num1 img {
    width: 70px;
    padding-top: 32px;
  }

  .ind_pro_zq_ul7 li.num2 img {
    width: 85px;
    padding-top: 26px;
  }

  .ind_pro_zq_ul7 li.num3 img {
    width: 75px;
    padding-top: 30px;
  }

  .ind_pro_zq_ul7 li.num4 img {
    width: 70px;
    padding-top: 28px;
  }

  .ind_pro_zq_ul7 li.num5 img {
    width: 85px;
    padding-top: 24px;
  }

  .ind_pro_zq_ul7 li .title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .ind_num {
    display: none;
    position: static;
    background: #09146d;
  }

  .ind_num_list li {
    padding: 20px 0;
  }

  .ind_num_list li .text {
    font-size: 18px;
  }

  .ind_num_list li .text span {
    font-size: 30px;
  }

  .ind_num_list li sup {
    font-size: 20px;
  }

  .ind_news {
    padding: 0 10px 40px;
  }

  .ind_news_list {
    overflow: hidden;
  }

  /*.ind_news_list .scroll-wrap{width: 100%;height: auto; position: absolute; left: 0px; top: 0px; z-index: 1; overflow: hidden;}
    .ind_news_list .scroll-wrap ul{width: 100% !important;}
    .ind_news_list li{width:49%;height: auto;  margin-right:2%;}*/
  .ind_news_list li a {
    padding: 15px 15px;
  }

  /*.ind_news_list li:nth-child(2n){margin-right: 0;}*/
  .ind_news_list .scroll-wrap {
    height: 243px;
  }

  .ind_news_list li {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .ind_news_list li .img img {
    width: 100%;
    height: auto;
  }

  .ind_news_list li .info {
    height: auto;
  }

  /*.ind_news_list li .info{height: 26px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}*/
  .ind_case {
    height: auto;
    padding-bottom: 50px;
  }

  .ind_case_text {
    padding: 20px 10px;
  }

  .ind_case_list {
    padding: 0 30px;
  }

  .ind_case_list .scroll-wrap {
    height: 352px;
  }

  .ind_case_list li {
    width: 223px;
    height: 342px;
    margin-right: 20px;
  }

  .ind_case_list li a {
    height: 342px;
  }

  .ind_case_list li .img {
    width: 223px;
    height: 190px;
  }

  .ind_case_list .prev {
    left: 10px;
  }

  .ind_case_list .next {
    right: 10px;
  }

  .ind_news_list .prev {
    left: 0;
  }

  .ind_news_list .next {
    right: 0;
  }

  .ind_intro .text {
    padding: 0 10px;
    display: block;
  }

  .ind_about {
    height: auto;
    padding-bottom: 50px;
  }

  .ind_about_con {
    padding: 0 10px;
  }

  .ind_about_text {
    width: 100%;
  }

  .ind_pro {
    padding: 0 10px 40px;
    background: none;
  }

  .ind_pro .ind_title {
    color: #333;
  }

  .ind_pro_con {
    padding: 20px 10px;
    height: auto;
  }

  .ind_pro_tab li .ico {
    display: none;
  }

  /*.ind_pro_tab li a{height: auto;text-align: center;}*/
  .ind_pro_tab li .ico {
    display: none;
  }

  /*.ind_pro_tab li .title{display: block;float: none; line-height: 58px;height: 58px;font-size: 16px;}*/
  .ind_pro_zq_ul li {
    width: 30% !important;
    background: none !important;
  }

  /*.ind_pro_zq_ul li.num1 a, .ind_pro_zq_ul li.num6 a{margin: 0 auto;}
    .ind_pro_zq_ul li.num5 a, .ind_pro_zq_ul li.num10 a{margin: 0 auto;float: none;}*/
  .ind_pro_zq_ul02 li {
    width: 46.6% !important;
    text-align: center;
  }

  .ind_pro_zq_ul02 li a {
    width: 100%;
    padding: 50px 0;
  }


  .ind_pro_zq_ul02 li.num10 a,
  .ind_pro_zq_ul02 li.num5 a {
    margin: 0 auto;
    float: none;
  }

  /* .ind_pro_zq_ul02 li.num6 {
    margin-left: 0;
  } */

  .ind_pro_zq_ul03 li a {
    padding: 20px 0;
  }

  .ind_pro_zq_ul03 li {
    width: 22%;
    margin: 0 1.5% 10px !important;
  }

  .ind_pro_zq_ul5 {
    width: 100%;
  }

  .ind_pro_zq_ul5 li {
    width: 22%;
    margin: 0 1.5% !important;
    height: auto;
    padding: 10px 0 30px;
  }

  .ind_pro_zq_ul5 li .img {
    width: 40%;
    height: auto;
  }

  .ind_pro_zq_ul6 {
    padding: 0;
  }

  .ind_pro_zq_ul6 li {
    width: 21%;
    margin: 0 2% 0 !important;
  }

  .ind_pro_zq_ul6 li .img_title {
    margin-top: 10px !important;
    height: auto;
    font-size: 14px;
  }

  .ind_pro_zq_ul li .img_title,
  .ind_pro_zq_ul02 li .img_title,
  .ind_pro_zq_ul02 li .img_title,
  .ind_pro_zq_ul02 li .img_title {
    font-size: 14px;
  }

  .ind_pro_zq_ul7 {
    width: 100%;
  }

  .ind_pro_zq_ul7 li {
    width: 16%;
    margin: 0 2%;
  }

  .ind_pro_zq_ul7 li .img {
    width: 100px;
    height: 100px;
  }

  .ind_pro_zq_ul7 li.num1 img {
    width: 60px;
    padding-top: 28px;
  }

  .ind_pro_zq_ul7 li.num2 img {
    width: 75px;
    padding-top: 22px;
  }

  .ind_pro_zq_ul7 li.num3 img {
    width: 65px;
    padding-top: 26px;
  }

  .ind_pro_zq_ul7 li.num4 img {
    width: 60px;
    padding-top: 16px;
  }

  .ind_pro_zq_ul7 li.num5 img {
    width: 75px;
    padding-top: 20px;
  }

  .ind_pro_zq_ul7 li .title {
    font-size: 16px;
    margin-top: 5px;
  }
}

@media (max-width:640px) {
  .ind_case {
    background-size: cover;
  }

  .ind_pro {
    padding: 0 10px 10px;
  }

  .ind_pro_zq_ul li {
    width: 28.78% !important;
    background: none !important;
  }

  /*.ind_pro_zq_ul li:nth-child(4n){background: none;}
    .ind_pro_zq_ul li.num5{background:url(../images/ind_pro_zq_line.png) right center no-repeat;}*/
  /*.ind_pro_tab li{width: 33.333%;}*/
  .ind_pro_zq_ul02 li {
    width: 100% !important;
    background: none !important;
  }

  .ind_pro_zq_ul02 li:nth-child(4n) {
    background: none;
  }

  .ind_pro_zq_ul02 li.num5 {
    background: url(../images/ind_pro_zq_line.png) right center no-repeat;
  }

  .ind_pro_zq_ul06 li {
    width: 45.64%;
  }

  .ind_pro_zq_ul7 li .img {
    width: 80px;
    height: 80px;
  }

  .ind_pro_zq_ul7 li.num1 img {
    width: 55px;
    padding-top: 20px;
  }

  .ind_pro_zq_ul7 li.num2 img {
    width: 60px;
    padding-top: 18px;
  }

  .ind_pro_zq_ul7 li.num3 img {
    width: 55px;
    padding-top: 18px;
  }

  .ind_pro_zq_ul7 li.num4 img {
    width: 50px;
    padding-top: 10px;
  }

  .ind_pro_zq_ul7 li.num5 img {
    width: 60px;
    padding-top: 16px;
  }

  .ind_pro_zq_ul7 li .title {
    line-height: 24px;
  }

  .ind_intro .text {
    display: none;
  }

  .ind_intro .text2 {
    display: block;
  }
}


@media (max-width:479px) {

  .ind_about .ind_title,
  .ind_title {
    font-size: 24px;
    padding: 25px 0 20px;
  }

  .ind_pro_zq_ul03 li {
    width: 100%;
    margin: 0 1.5% 10px !important;
  }

  .ind_num_list li {
    width: 33.333%;
    border-bottom: rgba(255, 255, 255, .1) 1px solid;
  }

  .ind_num_list li.num4,
  .ind_num_list li.num5 {
    width: 50%;
  }

  .ind_num_list li .text {
    height: 40px;
    font-size: 16px;
  }

  .ind_num_list li .text span {
    font-size: 24px;
  }

  /* .ind_pro_zq_ul02 li img {
    width: 56px;
    height: auto;
  } */

  .ind_pro {
    padding-bottom: 0;
  }

  .ind_pro_con {
    padding: 20px 0;
  }

  /* .ind_pro_zq_ul li.num1 {
    width: 100% !important;
  } */

  .ind_pro_zq_ul li {
    width: 100% !important;
    background: none !important;
    margin: 10px 10px;
  }

  .ind_pro_zq_ul li a {
    width: auto;
  }

  .ind_pro_zq_ul li:nth-child(3n) {
    background: none !important;
  }

  .ind_pro_zq_ul02 li {
    width: 100% !important;
    background: none !important;
  }

  .ind_pro_zq_ul02 li:nth-child(3n) {
    background: none !important;
  }

  .ind_pro_zq_ul06 li {
    width: 100%;
  }

  .ind_pro_zq_ul5 li {
    width: 46%;
    margin: 0 2% 10px !important;
    height: auto;
    padding: 10px 0 20px;
  }

  .ind_pro_zq_ul6 li {
    width: 46%;
    margin: 0 2% 10px !important;
  }

  .ind_pro_zq_ul6 li img {
    width: 60%;
  }

  .ind_pro_zq_ul6 li .img_title {
    height: 40px;
  }

  .ind_pro_zq_ul7 li {
    width: 31.333%;
    margin: 0 1% 20px !important;
  }

  .ind_pro_zq_ul7 li .img {
    width: 100%;
    height: 100px;
  }

  .ind_pro_zq_ul7 li .img img {
    width: 60% !important;
    vertical-align: middle;
    padding: 20px 0 0 !important;
  }

  .ind_case_list,
  .ind_news_list {
    padding: 0 20px;
  }

  .ind_news_list .scroll-wrap {
    height: 243px;
  }

  /*.ind_news_list li{width:300px;margin-right:15px;}*/
  .ind_case .more,
  .ind_news .more {
    width: 130px;
    font-size: 16px;
    margin: 20px auto 0;
  }

  .ind_news {
    padding: 0 10px 20px;
  }

  .ind_case {
    padding-bottom: 20px;
  }

  .ind_about {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width:360px) {
  /*.ind_news_list li{width:280px;margin-right:15px;}*/
}

@media only screen and (max-width:348px) {
  .ind_pro_zq_ul7 li .img {
    width: 100%;
    height: 80px;
  }
}

@media only screen and (max-width:320px) {
  .top_right {
    padding-right: 0;
  }
}

/**首页结束**/

/****内页banner图*****/
.inside_banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.inside_banner img {
  position: absolute;
  width: 1920px;
  height: 420px;
  top: 0;
  left: 50%;
  margin-left: -960px;
  z-index: 1;
}

.inside_banner .img_title {
  display: none;
}

.ny_banbox {
  position: absolute;
  width: 100%;
  left: 0;
  top: 157px;
  z-index: 2;
}

.ny_banbox .nyban_tit {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.ny_banbox .nyban_text {
  padding-top: 16px;
  width: 50%;
  font-size: 16px;
  color: #fff;
}

.ny_banbox .more {
  display: block;
  width: 140px;
  height: 42px;
  margin-top: 22px;
  background: url(../images/back20.png);
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 42px;
}

@media (max-width:1199px) {
  .inside_banner {
    height: 263px;
  }

  .inside_banner img {
    width: 1200px;
    height: 263px;
    margin-left: -600px;
  }

  .ny_banbox {
    top: 92px;
  }

  .ny_banbox .nyban_tit {
    font-size: 40px;
  }

  .ny_banbox .nyban_text {
    font-size: 16px;
  }

  .ny_banbox .more {
    margin-top: 10px;
  }
}

@media (max-width:767px) {
  .ny_header {
    position: static !important;
    background: #151a33;
  }

  .inside_banner {
    height: 168px;
  }

  .inside_banner img {
    width: 768px;
    height: 168px;
    margin-left: -384px;
  }

  .ny_banbox {
    top: 47px;
    left: 10px;
  }

  .ny_banbox .container {
    width: auto;
    padding: 0 10px;
  }

  .ny_banbox .nyban_tit {
    font-size: 30px;
  }

  .ny_banbox .nyban_text {
    font-size: 12px;
  }

  .ny_banbox .more {
    width: 120px;
    margin-top: 10px;
    font-size: 16px;
  }
}

@media (max-width:480px) {
  .ny_banbox {
    width: 90%;
  }

  .ny_banbox .nyban_tit {
    font-size: 22px;
  }

  .ny_banbox .nyban_text {
    font-size: 10px;
  }

  .ny_banbox .more {
    width: 100px;
    margin-top: 10px;
    font-size: 14px;
  }
}

/****产品中心-EX8*****/
.pro_gs {
  padding: 36px 0 80px;
  background: #fff url(../images/pro_gs_bg.png) 20px 140px no-repeat;
}

.pro_ny_title {
  font-size: 40px;
  text-align: center;
}

.pro_gs_con {
  font-size: 16px;
  color: #666;
  line-height: 32px;
  margin-top: 25px;
  text-align: justify;
  text-indent: 2em;
}

.pro_yyxt {
  background: #f9f9f9;
  padding: 35px 0 50px;
}

.pro_yyxt_list {
  padding-top: 16px;
}

.pro_yyxt_list li {
  float: left;
  background: url(../images/pro_line01.png) right center no-repeat;
}

.pro_yyxt_list li a {
  display: block;
  padding: 24px 48px;
  cursor: default;
}

.pro_yyxt_list li img {
  width: 88px;
  vertical-align: middle;
}

.pro_yyxt_list li .img_title {
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
  width: 110px;
  padding-left: 25px;
  font-size: 18px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pro_yyxt_list li.num1 a,
.pro_yyxt_list li.num5 a {
  padding-left: 0;
}

.pro_yyxt_list li.num4 a {
  padding-right: 0;
}

.pro_yyxt_list li.num4 a,
.pro_yyxt_list li.num8 a {
  padding-right: 0;
}

.pro_yyxt_list li.num4,
.pro_yyxt_list li.num8 {
  background: none;
}

.pro_yyxt_list li.num4 .img_title,
.pro_yyxt_list li.num8 .img_title {
  padding-right: 0;
}

.pro_yyxt_list li:hover img {
  transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.pro_jyh_list {
  padding-top: 16px;
}

.pro_jyh_list li {
  float: left;
  width: 292px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pro_jyh_list li.num4,
.pro_jyh_list li.num8 {
  margin-right: 0;
}

.pro_jyh_list li a {
  display: block;
  padding-top: 26px;
  height: 174px;
  font-size: 24px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  background: #9abde9;
}

.pro_jyh_list li.num1 a,
.pro_jyh_list li.num5 a {
  font-size: 30px;
  background: #82d5d2;
}

.pro_jyh_list li .img_title {
  display: block;
}

.pro_jyh_list li:hover img {
  transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

/*应用系统-new*/
.pro_yyxt_links {
  padding-top: 35px;
}

.pro_yyxt_links li {
  float: left;
  margin-bottom: 6px;
}

.pro_yyxt_links li a {
  display: block;
  padding-top: 35px;
  height: 135px;
  font-size: 22px;
  line-height: 40px;
  color: #fff;
  text-align: center;
}

/*.pro_yyxt_links li img{margin:0 auto 15px;}*/
.pro_yyxt_links li .img_title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro_yyxt_links li:hover img {
  transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.pro_yyxt_links_l {
  width: 220px;
}

.pro_yyxt_links_l li {
  width: 220px;
  height: 170px;
}

.pro_yyxt_links_l li a {
  background: #82d5d2;
}

.pro_yyxt_links_r {
  width: 980px;
}

.pro_yyxt_links_r li {
  width: 190px;
  height: 170px;
  margin-left: 6px;
}

.pro_yyxt_links_r li.num1 {
  height: 346px;
}

.pro_yyxt_links_r li.num1 a {
  padding-top: 105px;
  height: 241px;
}

.pro_yyxt_links_r li.num1 img {
  margin-bottom: 30px;
}

.pro_yyxt_links_r li a {
  background: #9abde9;
}

/*2021-8-19*/
.pro_jyh_xt {
  padding-top: 35px;
}

.pro_jyh_xt ul {
  margin-right: -10px;
}

.pro_jyh_xt li {
  width: 162px;
  float: left;
  text-align: center;
  margin: 0 10px 10px 0;
  overflow: hidden;
}

.pro_jyh_xt li .img {
  display: block;
  width: 68px;
  height: 68px;
  text-align: center;
  overflow: hidden;
  margin: 0 auto;
}

.pro_jyh_xt li img {
  display: inline-block;
  /* margin-top: -50px; */
  transition: all .7s;
  -ms-transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
}

.pro_jyh_xt li a {
  display: block;
  margin: 0 auto;
  /* height: 94px; */
  padding: 30px 0 0;
  line-height: 26px;
  background: #FFFFFF;
  color: #555555;
  font-size: 16px;
}

/* .pro_jyh_xt li.num1 a {
  background: #8ed6d2;
} */

.pro_jyh_xt li .img_title {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 30px 0;
}

.pro_jyh_xt li a:hover img {
  transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
}

@media (min-width: 992px) and (max-width:1199px) {
  .pro_jyh_xt li {
    width: 133px;
  }
}

@media (max-width:991px) {
  .pro_jyh_xt li {
    width: 178px;
  }
}

@media (max-width:767px) {
  .pro_jyh_xt {
    padding-top: 20px;
  }

  .pro_jyh_xt ul {
    margin-right: 0;
  }

  .pro_jyh_xt li {
    width: 31.33%;
    margin: 0 1% 10px !important;
  }

  .pro_jyh_xt li a {
    /* height: 84px; */
    font-size: 14px;
    /* padding: 10px 0 0; */
  }

  .pro_jyh_xt li .img {
    height: 46px;
  }

  .pro_jyh_xt li .img img {
    /*  margin-top: -41px; */
    width: 46px;
  }
}
@media (max-width:640px) {
  .pro_jyh_xt li {
    width: 100%;
  }
}

.pro_gntx {
  padding: 42px 0 67px;
}

.pro_gntx_list {
  margin-top: 34px;
}

.pro_gntx_list li {
  width: 216px;
  float: left;
  margin-right: 30px;
}

.pro_gntx_list li.num5 {
  margin-right: 0;
}

.pro_gntx_list li a {
  display: block;
  height: 346px;
  padding: 0 20px;
  border: #eaeaea 1px solid;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: default;
}

.pro_gntx_list li .img {
  width: 76px;
  height: 76px;
  overflow: hidden;
  margin: 33px auto 16px;
}

.pro_gntx_list li .title {
  display: block;
  text-align: center;
  font-size: 20px;
}

.pro_gntx_list li .intro {
  font-size: 14px;
  color: #999;
  line-height: 24px;
  margin-top: 20px;
  text-align: justify;
}

.pro_gntx_list li a:hover {
  background: #5294c8;
  border-color: #5294c8;
  color: #fff;
}

.pro_gntx_list li a:hover img {
  margin-top: -76px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.pro_gntx_list li a:hover .intro {
  color: #fff;
}

/*功能特性-new*/
.pro_gntx_links {
  margin-top: 5px;
}

.pro_gntx_links li {
  width: 378px;
  float: left;
  margin: 32px 32px 0 0;
}

.pro_gntx_links li.num3,
.pro_gntx_links li.num6 {
  margin-right: 0;
}

.pro_gntx_links li a {
  display: block;
  height: 156px;
  padding: 0 20px 0 15px;
  border: #eaeaea 1px solid;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: default;
}

.pro_gntx_links li .img {
  float: left;
  width: 76px;
  height: 76px;
  overflow: hidden;
  margin: 40px 20px 0 0;
}

.pro_gntx_links li .title {
  margin-left: 90px;
  display: block;
  padding-top: 20px;
  font-size: 22px;
}

.pro_gntx_links li .intro {
  margin-left: 90px;
  font-size: 15px;
  color: #999;
  line-height: 26px;
  margin-top: 10px;
  text-align: justify;
  max-height: 78px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.pro_gntx_links li a:hover {
  background: #5294c8;
  border-color: #5294c8;
  color: #fff;
}

.pro_gntx_links li a:hover img {
  margin-top: -76px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.pro_gntx_links li a:hover .intro {
  color: #fff;
}

/*信创互认*/
.pro_xchr {
  padding: 40px 0;
  background: #f9f9f9;
}

.pro_xchr_intro {
  line-height: 33px;
  font-size: 16px;
  color: #676767;
  text-indent: 2em;
  padding: 20px 0 10px;
}

.pro_xchr_links {}

.pro_xchr_links li {
  float: left;
  text-align: center;
  width: 280px;
  margin-top: 15px;
}

.pro_xchr_links li.num1 {
  width: 410px;
}

.pro_xchr_links li.num2 {
  width: 310px;
}

.pro_xchr_links li.num3 {
  width: 480px;
}

.pro_xchr_links li.num4 {
  width: 360px;
}

.pro_xchr_links li a {
  display: block;
  padding: 0 10px;
  position: relative;
  height: 286px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: default;
}

.pro_xchr_links li img {
  height: 246px;
  max-width: 100%;
  margin: 0 auto 5px;
}

.pro_xchr_links li .img_title {
  display: block;
  text-align: center;
  font-size: 16px;
}

.pro_xchr_links li a:hover {}

@media (min-width: 992px) and (max-width:1199px) {
  .pro_ny_title {
    font-size: 34px;
  }

  /*.pro_yyxt_list li{margin-right:60px;}*/
  /*.pro_yyxt_list li .img_title{padding-right: 80px;padding-left: 30px;}*/
  .pro_yyxt_list li a {
    padding: 24px 20px;
  }

  .pro_yyxt_list li .img_title {
    padding-left: 15px;
  }

  .pro_gntx_list li {
    width: 182px;
    margin-right: 20px;
  }

  .pro_gntx_list li a {
    padding: 0 15px;
  }

  .pro_gntx_list li .img {
    margin: 20px auto 15px;
  }

  .pro_gntx_list li .intro {
    margin-top: 10px;
  }

  .pro_jyh_list li {
    width: 240px;
  }

  /*应用系统-new*/
  .pro_yyxt_links_l {
    width: 160px;
  }

  .pro_yyxt_links_l li {
    width: 160px;
  }

  .pro_yyxt_links_r {
    width: 832px;
  }

  .pro_yyxt_links_r li {
    width: 160px;
  }

  /*.pro_yyxt_links li a{font-size:20px;}*/
  /*功能特性-new*/
  .pro_gntx_links li {
    width: 316px;
    margin: 22px 22px 0 0;
  }

  /*信创互认*/
  .pro_xchr_links li {
    width: 330px;
  }

  .pro_xchr_links li.num1,
  .pro_xchr_links li.num3 {
    width: 540px;
  }

  .pro_xchr_links li.num2,
  .pro_xchr_links li.num4 {
    width: 452px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .pro_ny_title {
    font-size: 30px;
  }

  .pro_yyxt_list li {
    width: 50%;
  }

  .pro_yyxt_list li a {
    padding: 20px 0 !important;
    text-align: center;
  }

  .pro_yyxt_list li:nth-child(2n) {
    background: none;
  }

  .pro_yyxt_list li .img_title {
    padding-left: 10px;
  }

  .pro_gntx_list li {
    width: 234px;
    margin-bottom: 20px;
  }

  .pro_gntx_list li.num3,
  .pro_gntx_list li.num6 {
    margin-right: 0;
  }

  .pro_jyh_list li {
    width: 178px;
  }

  .pro_jyh_list li a {
    font-size: 20px;
    height: 150px;
  }

  .pro_jyh_list li.num1 a,
  .pro_jyh_list li.num5 a {
    font-size: 24px;
  }

  .pro_jyh_list li img {
    width: 80px;
  }

  /*信创互认*/
  .pro_xchr_links li {
    width: 254px;
  }

  .pro_xchr_links li.num1,
  .pro_xchr_links li.num3 {
    width: 460px;
  }

  .pro_xchr_links li.num2,
  .pro_xchr_links li.num4 {
    width: 302px;
  }
}

@media (max-width:991px) {

  /*应用系统-new*/
  .pro_yyxt_links_l {
    float: none;
    width: 100%;
  }

  .pro_yyxt_links_l li {
    width: 368px;
  }

  .pro_yyxt_links_l li.num2 {
    float: right;
  }

  .pro_yyxt_links_r {
    float: none;
    width: 100%;
  }

  .pro_yyxt_links_r li {
    width: 143px;
  }

  .pro_yyxt_links_r li.num1 {
    margin-left: 0;
  }

  /*.pro_yyxt_links li a{font-size:18px;}*/
  /*功能特性-new*/
  .pro_gntx_links li {
    width: 48%;
    margin-right: 0 !important;
  }

  .pro_gntx_links li.num2,
  .pro_gntx_links li.num4,
  .pro_gntx_links li.num6 {
    float: right;
  }
}

@media (max-width:767px) {
  .p10 {
    padding: 0 10px;
  }

  .pro_ny_title {
    font-size: 26px;
  }

  .pro_gs {
    padding: 30px 0 40px;
  }

  .pro_yyxt_list li {
    width: 50%;
  }

  .pro_yyxt_list li a {
    padding: 20px 0 !important;
    text-align: center;
  }

  .pro_yyxt_list li img {
    width: 76px;
    height: 76px;
  }

  .pro_yyxt_list li .img_title {
    padding-right: 0;
    font-size: 16px;
    padding-left: 10px;
  }

  .pro_yyxt_list li:nth-child(2n) {
    background: none;
  }

  .pro_gntx {
    padding: 30px 10px 40px;
  }

  .pro_gntx_list li {
    width: 30%;
    margin: 0 1.5% 15px;
  }

  .pro_jyh_list li {
    width: 48%;
    margin: 0 1% 10px !important;
  }

  .pro_jyh_list li a {
    font-size: 20px;
    height: 150px;
  }

  .pro_jyh_list li.num1 a,
  .pro_jyh_list li.num5 a {
    font-size: 24px;
  }

  .pro_jyh_list li img {
    width: 80px;
  }

  /*应用系统-new*/
  .pro_yyxt_links li {
    height: 120px;
  }

  /*.pro_yyxt_links li a{margin:0 3px;padding-top:20px;height:100px;font-size:16px;}*/
  /*.pro_yyxt_links li img{height:48px;margin-bottom:5px;}*/
  .pro_yyxt_links_l li {
    width: 50%;
  }

  .pro_yyxt_links_r li {
    width: 25%;
    margin-left: 0;
  }

  .pro_yyxt_links_r li.num1 {
    height: 120px;
    width: 100%;
  }

  .pro_yyxt_links_r li.num1 a {
    padding-top: 20px;
    height: 100px;
  }

  .pro_yyxt_links_r li.num1 img {
    margin-bottom: 5px;
  }

  /*功能特性-new*/
  .pro_gntx_links li {
    float: none !important;
    width: 100%;
    margin-top: 15px;
  }

  .pro_gntx_links li a {
    height: auto;
    padding-bottom: 20px;
  }

  /*信创互认*/
  .pro_xchr {
    padding: 30px 10px;
  }

  .pro_xchr_links li {
    float: none;
    width: 100% !important;
  }

  .pro_xchr_links li a {
    height: auto;
  }

  .pro_xchr_links li img {
    height: auto;
  }

  .pro_xchr_links li.num1,
  .pro_xchr_links li.num3 {
    width: 460px;
  }

  .pro_xchr_links li.num2,
  .pro_xchr_links li.num4 {
    width: 302px;
  }
}

@media (max-width:480px) {
  .pro_yyxt_list li {
    text-align: center;
  }

  .pro_yyxt_list li a {
    padding: 10px 0;
  }

  .pro_yyxt_list li .img_title {
    width: 100%;
    padding: 0;
    display: block;
    overflow: hidden;
    margin-top: 10px;
  }

  .pro_yyxt_list li:nth-child(3n) {
    background: url(../images/pro_line01.png) right no-repeat;
  }

  .pro_yyxt_list li:nth-child(2n) {
    background: none;
  }

  .pro_gntx_list li {
    width: 100%;
    margin: 0 0 15px;
  }

  .pro_gntx_list li a {
    height: auto;
    padding: 0 20px 10px;
  }

  .pro_gntx_list li .intro {
    margin-top: 10px;
  }

  .pro_gntx_list li .title {
    font-size: 16px;
  }

  .pro_gs,
  .pro_yyxt {
    padding: 20px 0;
  }

  .pro_gntx {
    padding: 20px 10px;
  }

  .pro_gs_con {
    line-height: 30px;
    margin-top: 15px;
  }

  .pro_gntx_list {
    margin-top: 15px;
  }

  .pro_jyh_list li a {
    height: 120px;
  }

  .pro_jyh_list li img {
    width: 60px;
  }

  /*应用系统-new*/
  .pro_yyxt_links_r li {
    width: 50%;
  }

  /*功能特性*/
  .pro_gntx_links li .title {
    font-size: 16px;
  }

  .pro_gntx_links li .intro {
    font-size: 14px;
    max-height: none;
    line-height: 24px;
    display: block;
  }
}

/***产品中心-EX8***/
.pro_yyxt_list2 {}

.pro_yyxt_list2 li {
  float: left;
  margin-right: 180px;
}

.pro_yyxt_list2 li.num3,
.pro_yyxt_list2 li.num6,
.pro_yyxt_list2 li.num9 {
  margin-right: 0;
}

.pro_yyxt_list2 li a {
  display: block;
  padding: 38px 0;
  cursor: default;
}

.pro_yyxt_list2 li img {
  width: 54px;
  vertical-align: middle;
}

.pro_yyxt_list2 li .img_title {
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
  width: 170px;
  padding-left: 26px;
  margin-left: 26px;
  font-size: 18px;
  line-height: 24px;
  background: url(../images/pro_line02.png) left center no-repeat;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pro_yyxt_list2 li:hover img {
  transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.pro_xtts2 {
  padding: 42px 0 70px;
}

.pro_xtts_list {
  margin-top: 80px;
}

.pro_xtts_list li {
  width: 380px;
  float: left;
  margin-right: 30px;
}

.pro_xtts_list li.num3 {
  margin-right: 0;
}

.pro_xtts_list li a {
  display: block;
  position: relative;
  height: 300px;
  padding: 0 20px;
  border: #eaeaea 1px solid;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: default;
}

.pro_xtts_list li .img {
  width: 90px;
  height: 90px;
  position: absolute;
  left: 50%;
  margin-left: -45px;
  top: -45px;
  z-index: 1;
  overflow: hidden;
}

.pro_xtts_list li .title {
  display: block;
  text-align: center;
  font-size: 20px;
  padding-top: 68px;
  color: #333;
}

.pro_xtts_list li .intro {
  font-size: 14px;
  color: #999;
  line-height: 24px;
  margin-top: 20px;
  text-align: justify;
}

.pro_xtts_list li a:hover {
  background: #f9f9f9;
}

.pro_xtts_list li a:hover img {
  transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.zhbg_xtts_list {
  margin-top: 0;
}

.zhbg_xtts_list li {
  margin-top: 80px;
}

.zhbg_xtts_list li.num4 {
  margin-left: 204px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pro_yyxt_list2 li {
    margin-right: 76px;
  }

  .pro_xtts_list li {
    width: 317px;
    margin-right: 20px;
  }

  .pro_xtts_list li a {
    padding-bottom: 10px;
    height: 340px;
  }

  .zhbg_xtts_list li.num4 {
    margin-left: 163px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .pro_yyxt_list2 li {
    margin-right: 14px;
  }

  .pro_yyxt_list2 li .img_title {
    width: 150px;
    margin-left: 15px;
    padding-left: 15px;
  }

  .pro_xtts_list li {
    width: 240px;
    margin-right: 20px;
  }

  .pro_xtts_list li a {
    height: 352px;
    padding-bottom: 20px;
  }

  .pro_xtts_list li .intro {}

  .zhbg_xtts_list li.num4 {
    margin-left: 91px;
  }

  .zhbg_xtts_list li.num4,
  .zhbg_xtts_list li.num5 {
    width: 280px;
  }
}

@media (max-width:767px) {
  .pro_xtts2 {
    padding: 30px 10px 50px;
  }

  .pro_yyxt_list2 li {
    width: 46%;
    margin: 0 2% !important;
  }

  .pro_yyxt_list2 li:nth-child(3n) {
    margin: 0 2%;
  }

  .pro_xtts_list li {
    width: 100%;
    margin: 0 0 60px;
  }

  .pro_xtts_list li.num3 {
    margin: 0;
  }

  .pro_xtts_list li a {
    height: auto;
    padding-bottom: 20px;
  }

  .zhbg_xtts_list {
    margin-top: 80px;
  }

  .zhbg_xtts_list li.num3 {
    margin-bottom: 60px;
  }

  .zhbg_xtts_list li.num4 {
    margin-left: 0;
  }

  .zhbg_xtts_list li.num5 {
    margin: 0;
  }

  .pro_xtts_list li a {
    height: auto;
  }

  .pro_yyxt_list2 li .img_title {
    width: 130px;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 16px;
  }
}

@media (max-width:480px) {
  .pro_yyxt_list2 li {
    text-align: center;
  }

  .pro_yyxt_list2 li a {
    padding: 15px 0;
  }

  .pro_yyxt_list2 li .img_title {
    background: none;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 15px 0 0;
  }

  .pro_xtts_list li .title {
    font-size: 18px;
  }
}

/***产品中心-党建平台***/
.dj_one {
  padding: 58px 0 48px;
  background: #f9f9f9;
}

.djxz_con {
  margin: 20px 0;
  line-height: 32px;
  font-size: 16px;
  color: #666;
}

.djxz_list li {
  float: left;
  width: 292px;
  margin: 0 10px 10px 0;
  background: #ff5252;
}

.djxz_list li.num1,
.djxz_list li.num2,
.djxz_list li.num3 {
  width: 393px;
}

.djxz_list li a {
  display: block;
  width: 100%;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: default;
}

.djxz_list li.num3,
.djxz_list li.num7 {
  margin-right: 0;
}

.djxz_list li.num2 {
  background: #ff8a65;
}

.djxz_list li.num3 {
  background: #f8b551;
}

.djxz_list li.num4 {
  background: #f8b551;
}

.djxz_list li.num5 {
  background: #ff9800;
}

.djxz_list li.num6 {
  background: #ff5252;
}

.djxz_list li.num7 {
  background: #ff8a65;
}

.dj_two {
  padding: 54px 0 30px;
}

.di_two_img1 {
  margin: 30px 0 20px;
}

.di_two_img1 img {
  width: 100%;
}

.djyjsj {
  padding: 15px 0;
  background: #eabb75;
  color: #fff;
  text-align: center;
}

.djyjsj h1 {
  font-size: 24px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
}

.djyjsj p {
  font-size: 16px;
  height: 22px;
  line-height: 22px;
  margin-top: 8px;
}

.dj_yw {
  padding: 65px 0 48px;
  background: #f6f6f6;
}

.dj_yw_list {
  padding-top: 36px;
}

.dj_yw_list li {
  width: 154px;
  float: left;
  margin-right: 20px;
}

.dj_yw_list li.num7 {
  margin-right: 0;
}

.dj_yw_list li a {
  display: block;
  color: #666;
  border: #dcdcdc 1px solid;
  background: #fff;
  text-align: center;
  padding: 45px 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  cursor: default;
}

.dj_yw_list li .tit {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 0;
  padding: 20px 0 0;
  height: 26px;
  line-height: 26px;
  background: url(../images/dj_line01.png) top center no-repeat;
}

.dj_yw_list li .ico {
  display: block;
  width: 64px;
  height: 60px;
  margin: 0 auto;
  background: url(../images/dj_ico01.png) 0 0 no-repeat;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.dj_yw_list li.num2 .ico {
  background: url(../images/dj_ico03.png) 0 0 no-repeat;
}

.dj_yw_list li.num3 .ico {
  background: url(../images/dj_ico02.png) 0 0 no-repeat;
}

.dj_yw_list li.num4 .ico {
  background: url(../images/dj_ico06.png) 0 0 no-repeat;
}

.dj_yw_list li.num5 .ico {
  background: url(../images/dj_ico05.png) 0 0 no-repeat;
}

.dj_yw_list li.num6 .ico {
  background: url(../images/dj_ico07.png) 0 0 no-repeat;
}

.dj_yw_list li.num7 .ico {
  background: url(../images/dj_ico04.png) 0 0 no-repeat;
}

.dj_yw_list li a:hover {
  background: #d7000f;
  color: #fff;
}

.dj_yw_list li a:hover .ico {
  background-position: 0 -60px;
}

.dj_yw_list li a:hover .tit {
  background: url(../images/dj_line02.png) top center no-repeat;
}

.dj_online {
  padding: 65px 0 55px;
}

.dj_online_con {
  margin: 20px 0;
  line-height: 32px;
  font-size: 16px;
  color: #666;
}

.dj_online_list li {
  width: 400px;
  float: left;
  margin-right: 80px;
  text-align: center;
}

.dj_online_list li.num3 {
  margin-right: 0;
}

.dj_online_list li.num1 {
  width: 240px;
}

.dj_online_list li a {
  display: block;
  cursor: default;
}

.dj_online_list img {
  max-width: 100%;
}

.dj_online_list li .img_title {
  display: block;
  font-size: 28px;
  color: #434343;
  overflow: hidden;
  margin-top: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .djxz_list li {
    width: 240px;
  }

  .djxz_list li.num1,
  .djxz_list li.num2,
  .djxz_list li.num3 {
    width: 324px;
  }

  .dj_yw_list li {
    width: 124px;
  }

  .dj_yw_list li .tit {
    font-size: 18px;
  }

  .dj_online_list li {
    width: 350px;
    margin-right: 30px;
  }

  .dj_online_list li.num1 {
    width: 232px;
  }

  .dj_online_list li .img_title {
    font-size: 20px;
  }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
  .djxz_list li {
    width: 183px;
  }

  .djxz_list li.num1,
  .djxz_list li.num2,
  .djxz_list li.num3 {
    width: 247px;
  }

  .dj_yw_list li {
    width: 22%;
    margin: 0 1.5%;
    margin-bottom: 20px;
  }

  .dj_yw_list li .tit {
    font-size: 18px;
  }

  .dj_online_list li {
    width: 290px;
    margin-right: 30px;
  }

  .dj_online_list li.num1 {
    width: 122px;
  }

  .dj_online_list li .img_title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .dj_two {
    padding: 30px 0 20px;
  }

  .djxz_list li {
    width: 49% !important;
    margin: 0 2% 10px 0;
  }

  .djxz_list li.num2,
  .djxz_list li.num4,
  .djxz_list li.num6 {
    width: 49%;
    margin: 0 0 10px 0;
  }

  .djxz_list li.num3 {
    margin: 0 2% 10px 0;
  }

  .djxz_list li.num7 {
    width: 100% !important;
    margin: 0;
  }

  .djxz_list li a {
    font-size: 16px;
  }

  .djyjsj h1 {
    font-size: 20px;
  }

  .dj_yw {
    padding: 30px 0;
  }

  .dj_yw_list li {
    width: 30.33%;
    margin: 0 1.5% 20px;
  }

  .dj_yw_list li .tit {
    font-size: 18px;
  }

  .dj_yw_list li a {
    padding: 30px 0;
  }

  .dj_online_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .dj_online_list li.num1 {
    width: 100%;
  }

  .dj_online_list li .img_title {
    font-size: 18px;
  }
}

@media only screen and (max-width:480px) {
  .dj_yw_list li {
    width: 48%;
    margin: 0 1% 10px;
  }

  .dj_yw_list li {
    width: 30.33%;
  }

  .dj_yw_list li .tit {
    font-size: 16px;
    padding: 10px 0 0;
    margin: 10px 0 0;
  }

  .dj_one {
    padding: 20px 0;
  }

  .djxz_con {
    margin: 15px 0;
  }

  .djxz_list li {
    margin-bottom: 5px !important;
  }

  .dj_yw_list {
    padding-top: 15px;
  }

  .dj_yw {
    padding: 20px 0 10px;
  }

  .dj_online {
    padding: 20px 0;
  }

  .pro_ny_title img {
    width: 60%;
  }

  .dj_online_con {
    margin: 0 auto 20px;
  }
}

/***产品中心-园区平台***/
.yq_list1 {
  margin-top: 36px;
}

.yq_list1 li {
  width: 285px;
  margin-right: 20px;
  float: left;
}

.yq_list1 li.num4 {
  margin-right: 0;
}

.yq_list1 li a {
  display: block;
  cursor: default;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  text-align: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  overflow: hidden;
  background: #f5f5f5;
}

.yq_list1 li .ico {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
}

.yq_list1 li .tit {
  padding-left: 12px;
  color: #666;
}

.yq_list1 li.num1 .ico {
  background: url(../images/yqpt_gs1_ico01.png) center no-repeat;
}

.yq_list1 li.num2 .ico {
  background: url(../images/yqpt_gs1_ico02.png) center no-repeat;
}

.yq_list1 li.num3 .ico {
  background: url(../images/yqpt_gs1_ico03.png) center no-repeat;
}

.yq_list1 li.num4 .ico {
  background: url(../images/yqpt_gs1_ico04.png) center no-repeat;
}

.yq_list1 li:hover .tit {
  color: #7dbd4a;
}

.yq_list1 li:hover .ico {
  transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.yq_list2 {
  margin-top: 20px;
}

.yq_list2 li {
  width: 285px;
  margin-right: 20px;
  float: left;
}

.yq_list2 li.num4 {
  margin-right: 0;
}

.yq_list2 li a {
  display: block;
  cursor: default;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  overflow: hidden;
  background: #79bb44;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.yq_list2 li.num2 a {
  background: #75c688;
}

.yq_list2 li.num3 a {
  background: #5bbcb4;
}

.yq_list2 li.num4 a {
  background: #5ebfe6;
}

.yq_list2 li a:hover {
  opacity: .8;
}

.ywpt {
  padding: 58px 0;
  background: #f9f9f9;
}

.ywpt_list {
  margin-top: 20px;
}

.ywpt_list li {
  width: 180px;
  float: left;
  background: #FFF;
  margin: 10px;
}

.ywpt_list li a {
  display: block;
  cursor: default;
  text-align: center;
  padding: 30px 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.ywpt_list li .img_title {
  display: block;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* .ywpt_list li.num10 a,
.ywpt_list li.num5 a,
.ywpt_list li.num6 a,
.ywpt_list li.num7 a,
.ywpt_list li.num8 a,
.ywpt_list li.num9 a {
  padding: 50px 0 0;
  border-top: #e7e7e7 1px solid;
} */
/* 
.ywpt_list li.num4 a,
.ywpt_list li.num9 a {
  border-right: none;
} */

.ywpt_list li a:hover {
  background: #d7000f;
  border-color: #d7000f;
  color: #fff;
}

/* .ywpt_list li a:hover img {
  transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
} */

.yq_xttx {
  padding: 60px 0 48px;
}

.yq_xttx_list {
  margin-top: 30px;
}

.yq_xttx_list li {
  width: 380px;
  float: left;
  margin: 0 30px 30px 0;
}

.yq_xttx_list li.num3,
.yq_xttx_list li.num6 {
  margin-right: 0;
}

.yq_xttx_list li a {
  display: block;
  cursor: default;
  padding: 0 20px;
  height: 344px;
  border: #eaeaea 1px solid;
  overflow: hidden;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.yq_xttx_list li .img {
  width: 96px;
  height: 96px;
  overflow: hidden;
  margin: 35px auto 20px;
}

.yq_xttx_list li img {
  max-width: 100%;
}

.yq_xttx_list li .title {
  display: block;
  text-align: center;
  font-size: 20px;
  padding-top: 22px;
  border-top: #eaeaea 1px solid;
}

.yq_xttx_list li .intro {
  font-size: 14px;
  color: #999;
  line-height: 24px;
  margin-top: 16px;
  padding: 0 0 20px;
  overflow: hidden;
  text-align: justify;
}

.yq_xttx_list li a:hover {
  background: #f6f6f6;
}

.yq_xttx_list li a:hover img {
  transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .yq_list1 li,
  .yq_list2 li {
    width: 233px;
  }

  .yq_xttx_list li {
    width: 310px;
  }

  .ywpt_list li {
    width: 145px;
  }

  /* .ywpt_list li.num1 {
    padding-left: 99px;
  } */
}

@media only screen and (min-width:768px) and (max-width: 991px) {

  .yq_list1 li,
  .yq_list2 li {
    width: 170px;
  }

  .ywpt_list li {
    width: 167px;
  }

  /* .ywpt_list li a {
    padding: 0 0 30px;
  } */

  /* .ywpt_list li.num1 {
    padding-left: 74px;
  } */

  /* .ywpt_list li.num10 a,
  .ywpt_list li.num5 a,
  .ywpt_list li.num6 a,
  .ywpt_list li.num7 a,
  .ywpt_list li.num8 a,
  .ywpt_list li.num9 a {
    padding: 30px 0 0;
  } */

  .ywpt_list li .img_title {
    font-size: 18px;
  }

  .yq_xttx_list li {
    width: 240px;
    margin-right: 20px;
  }

  .yq_xttx_list li .title {
    font-size: 18px;
  }
}

@media only screen and (max-width:767px) {

  .yq_list1 li,
  .yq_list2 li {
    width: 49%;
    margin: 0 2% 10px 0;
  }

  .yq_list1 li:nth-child(2n),
  .yq_list2 li:nth-child(2n) {
    margin-right: 0;
  }

  .ywpt_list li {
    width: 100%;
  }

  /* .ywpt_list li a,
  .ywpt_list li.num4 a {
    padding: 20px 0 !important;
    height: auto;
    border-right: #e7e7e7 1px solid;
    border-top: #e7e7e7 1px solid;
    border-bottom: none;
  } */

  /* .ywpt_list li.num1 {
    padding-left: 0;
  } */

  /* .ywpt_list li.num1 a,
  .ywpt_list li.num2 a,
  .ywpt_list li.num3 a {
    border-top: none;
  } */

  /* .ywpt_list li.num3 a,
  .ywpt_list li.num6 a,
  .ywpt_list li.num9 a {
    border-right: none;
  } */

  /*.ywpt_list li.num2 a{border-right:#E7E7E7 1px solid;}*/
  /*.ywpt_list li.num5 a,.ywpt_list li.num6 a,.ywpt_list li.num7 a{padding: 30px 0 0;border-right:#E7E7E7 1px solid;border-bottom:#E7E7E7 1px solid;}*/
  /*.ywpt_list li.num8 a{padding: 30px 0 0;border-bottom:#E7E7E7 1px solid;}*/
  /*.ywpt_list li.num9 a,.ywpt_list li.num10 a{padding: 30px 0 0;}*/
  .ywpt_list li .img_title {
    font-size: 14px;
    line-height: 24px;
    height: auto;
    white-space: normal;
  }

  .yq_xttx {
    padding: 30px 10px 20px;
  }

  .yq_xttx_list li {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .yq_xttx_list li a {
    height: auto;
  }

  .yq_xttx_list li .img {
    margin: 20px auto 10px;
  }
}

@media only screen and (max-width:480px) {

  .ywpt_list li {
    width: 100%;
  }

  .ywpt {
    padding: 20px 0;
  }

  .ywpt_list li img {
    width: 68px;
    height: 68px;
  }

  /*.ywpt_list li.num5,.ywpt_list li.num6,.ywpt_list li.num7,.ywpt_list li.num8,.ywpt_list li.num9,.ywpt_list li.num10{width: 33.33%;}*/
  /*.ywpt_list li.num8 a{border-right:#E7E7E7 1px solid;border-bottom:none;}*/
  /*.ywpt_list li.num4 a,.ywpt_list li.num7 a{border-right: none;}*/
  .yq_list1 {
    margin-top: 20px;
  }

  .yq_list2 {
    margin-top: 0;
  }

  .yq_xttx {
    padding: 20px 10px 0;
  }

  .yq_xttx_list {
    margin-top: 20px;
  }

  .yq_xttx_list li .intro {
    margin-top: 10px;
  }
}

@media only screen and (max-width:360px) {
  .ywpt_list li {
    width: 100%;
  }
}

/***产品中心-行业应用**/
.hyeyy {
  padding: 48px 0 2px;
}

.hyeyy_list {}

.hyeyy_list li {
  width: 580px;
  float: left;
  margin: 0 40px 46px 0;
}

.hyeyy_list li.num2,
.hyeyy_list li.num4 {
  margin-right: 0;
}

.hyeyy_list li a {
  display: block;
  overflow: hidden;
  cursor: default;
}

.hyeyy_list li .list_tt {
  width: 530px;
  padding: 20px 25px;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}

.hyeyy_list li .list_tt .title {
  height: 98px;
  border: rgba(255, 255, 255, .15) 1px solid;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.list_tt .title h1 {
  text-align: center;
  font-size: 22px;
  color: #fff;
  padding: 22px 5px 0;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hyeyy_list li .list_info {
  background: #f9f9f9;
  height: 130px;
  padding: 50px 20px 0;
  position: relative;
}

.list_info .ico {
  width: 90px;
  height: 90px;
  position: absolute;
  top: -45px;
  left: 50%;
  margin-left: -45px;
  z-index: 9;
}

.list_info .intro {
  font-size: 16px;
  color: #666;
  line-height: 28px;
  height: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/*.hyeyy_list li.num1 .list_tt{background: #6cabf8;}*/
.hyeyy_list li.num1 .list_tt {
  background: #56b037;
}

.hyeyy_list li.num2 .list_tt {
  background: #728bd0;
}

.hyeyy_list li.num3 .list_tt {
  background: #ff9440;
}

.hyeyy_list li.num5 .list_tt {
  background: #f9775c;
}

.hyeyy_list li.num4 .list_tt {
  background: #13c2a3;
}

.hyeyy_list li .ico:hover img {
  transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hyeyy_list li {
    width: 476px;
    margin: 0 40px 30px 0;
  }

  .hyeyy_list li .list_tt {
    width: 426px;
  }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
  .hyeyy_list li {
    width: 356px;
    margin: 0 30px 30px 0;
  }

  .list_tt .title h1 {
    font-size: 20px;
    padding: 15px 5px 0;
  }

  .hyeyy_list li .list_tt {
    width: 306px;
  }

  .hyeyy_list li .list_tt .title {
    height: 86px;
  }
}

@media only screen and (max-width:767px) {
  .hyeyy_list li {
    width: 48%;
    margin: 0 1% 20px !important;
  }

  .hyeyy_list li:nth-child(2n) {
    margin-right: 0;
  }

  .hyeyy_list li .list_tt {
    width: auto;
  }

  .list_tt .title h1 {
    font-size: 20px;
  }
}

@media only screen and (max-width:480px) {
  .hyeyy_list li {
    width: 98%;
  }

  .hyeyy {
    padding: 20px 0 0;
  }

  .hyeyy_list li .list_tt {
    padding: 20px;
  }

  .list_info .intro {
    height: 96px;
  }
}

/***产品中心-智慧征迁**/
.cpjz_list {
  margin-top: 36px;
}

.cpjz_list li {
  width: 580px;
  float: left;
  background: #f9f9f9;
  margin: 0 40px 40px 0;
}

.cpjz_list li a {
  display: block;
  padding: 30px 35px;
  overflow: hidden;
  cursor: default;
  transition: all .5s;
  -webkit-transition: all .5s;
}

.cpjz_list li.num2,
.cpjz_list li.num4 {
  margin-right: 0;
}

.cpjz_list li .img {
  width: 136px;
  height: 136px;
  float: left;
  margin: 30px 0 0;
}

.cpjz_list li .img img {
  max-width: 100%;
}

.cpjz_list li .cpjz_list_r {
  width: 324px;
  float: right;
}

.cpjz_list li a:hover {
  box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;
  -webkit-box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;
}

.cpjz_list_r h2 {
  font-size: 30px;
  color: #123e40;
}

.cpjz_list_r .tt {
  display: block;
  font-size: 24px;
  color: #298c91;
}

.cpjz_list_r .intro {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  height: 108px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: justify;
}

.hxgn {
  padding: 20px 0 20px 0;
  background: #F9FBFF;
}

.hxgn_list {
  margin-top: 36px;
}

.hxgn_list li {
  background: #FFF;
  width: 220px;
  float: left;
  margin: 10px 10px;
}

/* .hxgn_list li.num3,
.hxgn_list li.num6,
.hxgn_list li.num9 {
  margin-right: 0;
} */

.hxgn_list li a {
  display: block;
  cursor: default;
  /* border: #eaeaea 1px solid; */
  padding: 30px 0;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.hxgn_list li .img {
  width: 68px;
  height: 68px;
  margin: 0 auto;
}

.hxgn_list li .title {
  display: block;
  font-size: 20px;
  color: #123e40;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 16px 0 8px;
  overflow: hidden;
}

.hxgn_list li .intro {
  font-size: 14px;
  line-height: 24px;
  color: #999;
  height: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: justify;
}

/* .hxgn_list li a:hover {
  background: #f9f9f9;
} */
.hxgn_list li a:hover .img img {
  transition: all .7s;
  -ms-transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
  transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
}

.app_online {
  padding: 35px 0 70px;
  background: #f9f9f9;
}

.app_online_img {
  text-align: center;
  margin-top: 20px;
}

.app_online_img img {
  max-width: 100%;
}

@media only screen and (min-width: 991px) and (max-width: 1199px) {

  /* 教务管理平台此处从992px 改为 991px */
  .cpjz_list li {
    width: 481px;
    margin: 0 30px 30px 0;
  }

  .cpjz_list li a {
    padding: 30px 20px;
  }

  .cpjz_list li .img {
    width: 140px;
    height: 140px;
  }

  .cpjz_list li .cpjz_list_r {
    width: 290px;
  }

  .cpjz_list_r h2 {
    font-size: 26px;
  }

  .cpjz_list_r .tt {
    font-size: 22px;
  }

  .hxgn_list li {
    width: 310px;
  }

  .hxgn_list li .title {
    font-size: 28px;
  }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
  .cpjz_list li {
    width: 361px;
    margin: 0 20px 20px 0;
  }

  .cpjz_list li a {
    padding: 25px 20px;
  }

  .cpjz_list li .img {
    width: 110px;
    height: 110px;
  }

  .cpjz_list li .cpjz_list_r {
    width: 200px;
  }

  .cpjz_list_r h2 {
    font-size: 24px;
  }

  .cpjz_list_r .tt {
    font-size: 18px;
  }

  .hxgn_list li {
    width: 167px;
    margin: 0 20px 20px 0;
  }

  .hxgn_list li .title {
    font-size: 24px;
  }
}

@media only screen and (max-width:767px) {
  .cpjz_list li {
    width: 100%;
    margin: 0 0 20px !important;
  }

  .cpjz_list li a {
    padding: 30px 20px;
  }

  .cpjz_list li .img {
    width: 24%;
    height: auto;
  }

  .cpjz_list li .cpjz_list_r {
    width: 70%;
  }

  .cpjz_list_r h2 {
    font-size: 24px;
  }

  .cpjz_list_r .tt {
    font-size: 18px;
  }

  .hxgn_list li {
    width: 46%;
    margin: 0 2% 20px !important;
  }

  .hxgn_list li a {
    padding: 25px 20px 15px;
  }

  .hxgn_list li:nth-child(2n) {
    margin-right: 0 !important;
  }

  .hxgn_list li .title {
    font-size: 20px;
  }

  .app_online {
    padding: 30px 0;
  }
}

@media only screen and (max-width:480px) {
  .cpjz_list li a {
    padding: 20px 20px;
  }

  .cpjz_list li .img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    float: none;
  }

  .cpjz_list li .cpjz_list_r {
    width: 100%;
    float: none;
  }

  .cpjz_list_r h2 {
    text-align: center;
    font-size: 20px;
  }

  .cpjz_list_r .tt {
    font-size: 16px;
  }

  .cpjz_list_r .tt {
    text-align: center;
  }

  .hxgn_list li {
    width: 100%;
    margin: 0 0 20px !important;
  }

  .cpjz_list {
    margin-top: 20px;
  }

  .cpjz_list_r .intro {
    height: auto;
  }
}

/***项目监管***/
.cpjz_list2 {
  margin-top: 36px;
}

.cpjz_list2 li {
  width: 380px;
  height: 320px;
  float: left;
  margin: 0 30px 30px 0;
  border-radius: 3px;
  background: #f5f9fc;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.cpjz_list2 li.num3 {
  margin-right: 0;
}

.cpjz_list2 li.num4 {
  margin-left: 205px;
}

.cpjz_list2 li a {
  display: block;
  padding: 30px 20px 0;
  cursor: default;
}

.cpjz_list2 li .img {
  width: 110px;
  height: 92px;
  text-align: center;
  margin: 0 auto;
}

.cpjz_list2 li .title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #999;
  height: 35px;
  line-height: 35px;
  margin: 10px 0;
}

.cpjz_list2 li .intro {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  text-align: justify;
}

.cpjz_list2 li.num1 img {
  width: 95px;
}

.cpjz_list2 li.num2 img {
  width: 101px;
}

.cpjz_list2 li.num3 img {
  width: 99px;
}

.cpjz_list2 li.num4 img {
  width: 95px;
}

.cpjz_list2 li.num5 img {
  width: 109px;
}

.cpjz_list2 li:hover {
  box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;
  -webkit-box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;
}

.hxgn2 {
  background: #F9FBFF;
  padding: 20px 0 90px;
}

.hxgn_list2 {
  margin-top: 36px;
}

.hxgn_list2 li {
  width: 380px;
  float: left;
  margin: 10px 10px;
  text-align: center;
  background: #fff;
}

.hxgn_list2 li a {
  display: block;
  cursor: default;
}

/* .hxgn_list2 li.num10,
.hxgn_list2 li.num5 {
  margin-right: 0;
} */

.hxgn_list2 li .img {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  padding-top: 69px;
}

.hxgn_list2 li img {
  width: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.hxgn_list2 li .title {
  display: block;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 24px 0 50px 0;
}

.hxgn_list2 li:hover {
  color: #407bbc;
  border-color: #ebf3fd;
  background: #ebf3fd;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cpjz_list2 li {
    width: 310px;
  }

  .cpjz_list2 li.num4 {
    margin-left: 121px;
  }

  .cpjz_list2 li.num4,
  .cpjz_list2 li.num5 {
    width: 360px;
  }

  .cpjz_list2 li .img {
    height: 82px;
  }

  .cpjz_list2 li.num1 img {
    width: 85px;
  }

  .cpjz_list2 li.num2 img {
    width: 91px;
  }

  .cpjz_list2 li.num3 img {
    width: 89px;
  }

  .cpjz_list2 li.num4 img {
    width: 85px;
  }

  .cpjz_list2 li.num5 img {
    width: 99px;
  }

  .hxgn_list2 li {
    width: 300px;
    margin-right: 20px;
  }

  .hxgn_list2 li .title {
    font-size: 22px;
  }
}

@media only screen and (min-width:768px) and (max-width:991px) {

  .cpjz_list2 li.num2,
  .cpjz_list2 li.num4 {
    margin-right: 0;
  }

  .cpjz_list2 li.num3 {
    margin-right: 30px;
  }

  .cpjz_list2 li.num4 {
    margin-left: 0;
  }

  .cpjz_list2 li.num5 {
    margin-left: 193px;
  }

  .cpjz_list2 li {
    width: 356px;
  }

  .cpjz_list2 li .img {
    height: 82px;
  }

  .cpjz_list2 li.num1 img {
    width: 85px;
  }

  .cpjz_list2 li.num2 img {
    width: 91px;
  }

  .cpjz_list2 li.num3 img {
    width: 89px;
  }

  .cpjz_list2 li.num4 img {
    width: 85px;
  }

  .cpjz_list2 li.num5 img {
    width: 99px;
  }

  .hxgn_list2 li {
    width: 229px;
    margin-right: 10px;
    margin-bottom: 20px;
  }

  /* .hxgn_list2 li.num4,
  .hxgn_list2 li.num8 {
    margin-right: 0;
  } */

  .hxgn_list2 li .title {
    font-size: 20px;
  }

  .hxgn2 {
    padding: 20px 0 60px;
  }
}

@media only screen and (max-width:767px) {
  .cpjz_list2 li {
    width: 100%;
    margin: 0 0 20px !important;
    height: auto;
  }

  .cpjz_list2 li a {
    padding: 20px;
  }

  .hxgn2 {
    padding: 20px 0 40px;
  }

  .hxgn_list2 li {
    width: 47.83%;
    margin: 0 10px 20px 0 !important;
  }

  .hxgn_list2 li .img {
    width: 100px;
    height: 100px;
  }

  .hxgn_list2 li .title {
    font-size: 18px;
  }
}

@media only screen and (max-width:480px) {
  .cpjz_list2 li .title {
    margin: 5px 0;
    font-size: 18px;
  }

  .cpjz_list2 li .intro {
    font-size: 14px;
    line-height: 24px;
  }

  .cpjz_list2 li .img {
    height: 62px;
  }

  .cpjz_list2 li.num1 img {
    width: 65px;
  }

  .cpjz_list2 li.num2 img {
    width: 71px;
  }

  .cpjz_list2 li.num3 img {
    width: 69px;
  }

  .cpjz_list2 li.num4 img {
    width: 65px;
  }

  .cpjz_list2 li.num5 img {
    width: 79px;
  }

  .hxgn2 {
    padding: 10px 0 20px;
  }

  .hxgn_list2 li {
    width: 28.98%;
  }

  .hxgn_list2 li .img {
    width: 80px;
    height: 80px;
  }

  .hxgn_list2 li .title {
    font-size: 16px;
  }

  .cpjz_list2,
  .hxgn_list2 {
    margin-top: 20px;
  }
}

@media only screen and (max-width:480px) {
  .hxgn_list2 li {
    width: 100%;
  }
}

/***服务支持**/
.fw_banner {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.fw_banner img {
  position: absolute;
  width: 1920px;
  height: 600px;
  top: 0;
  left: 50%;
  margin-left: -960px;
  z-index: 1;
}

.fw_banner .img_title {
  display: none;
}

.fw_banbox {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 40px;
  z-index: 2;
}

.fwban_tit {
  width: 100%;
  position: absolute;
  text-align: center;
  height: 60px;
  line-height: 60px;
  left: 0;
  top: 50%;
  margin-top: -30px;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.fw_list {
  margin-top: 80px;
}

.fw_list li {
  width: 25%;
  float: left;
}

.fw_list li a {
  display: block;
  padding-left: 10px;
  border-left: #fff 1px solid;
  color: #fff;
  cursor: default;
}

.fw_list li .fw_tit {
  font-size: 40px;
  font-weight: bold;
}

.fw_list li .fw_info {
  font-size: 24px;
}

.fw_list li .text {
  font-size: 16px;
  line-height: 24px;
  word-break: break-all;
}

.fw_one {
  padding: 36px 0;
}

.fw_tit {
  font-size: 30px;
  margin-top: 15px;
}

.fw_liuc {
  text-align: center;
  padding: 20px 0 20px;
}

.fw_liuc img {
  max-width: 100%;
  width: 700px;
}

.fw_bztx {
  width: 1000px;
  margin: 15px auto 0;
}

.fw_bztx li {
  width: 23%;
  height: auto;
  float: left;
  margin: 0 1%;
}

.fw_bztx li a {
  display: block;
  cursor: default;
  padding: 10px 0;
  text-align: center;
  border: #dcdcdc 1px solid;
  border-radius: 5px;
  transition: all .5s;
  -webkit-transition: all .5s;
}

.fw_bztx li img {
  width: 100px;
}

/*.fw_bztx li.num4{margin-right: 0;}*/
.fw_bztx li .img_title {
  display: block;
  height: 30px;
  color: #333;
  line-height: 30px;
  font-size: 18px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fw_bztx li a:hover {
  background: #f9f9f9;
}

.fw_two {
  width: 100%;
  padding: 30px 0 40px;
  background: url(../images/fw_bg.jpg) top center no-repeat;
}

.fw_guif {
  width: 800px;
  margin: 20px auto 0;
}

.fw_guif li {
  width: 46%;
  float: left;
  margin: 0 2%;
}

.fw_guif li a {
  display: block;
  cursor: default;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.fw_guif li img {
  max-width: 100%;
}

.fw_guif li a:hover {
  background: #f9f9f9;
}

@media only screen and (max-width: 1199px) {
  .fw_banner {
    height: 375px;
  }

  .fw_banner img {
    width: 1200px;
    height: 375px;
    margin-left: -660px;
  }

  .fw_banbox {
    bottom: 10px;
  }

  .fwban_tit {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
  }

  .fw_list {
    margin-top: 30px;
  }

  .fw_list li .fw_tit {
    font-size: 22px;
    font-weight: bold;
  }

  .fw_list li .fw_info {
    font-size: 16px;
  }

  .fw_list li .text {
    font-size: 14px;
  }

  .fw_tit {
    font-size: 26px;
  }

  .fw_bztx {
    width: 100%;
  }

  .fw_bztx li img {
    width: 90px;
  }

  .fw_guif {
    width: 80%;
  }
}

@media only screen and (max-width: 991px) {
  .fwban_tit {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  .fw_list {
    margin-top: 30px;
  }

  .fw_list li .fw_tit {
    font-size: 22px;
    font-weight: bold;
  }

  .fw_list li .fw_info {
    font-size: 16px;
  }

  .fw_tit {
    font-size: 24px;
  }

  .fw_bztx li .img_title {
    font-size: 16px;
    margin-top: 5px;
  }

  .fw_bztx li img {
    width: 80px;
  }
}

@media only screen and (max-width:767px) {
  .fwban_tit {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  .fw_banner {
    height: 240px;
  }

  .fw_banner img {
    width: 768px;
    height: 240px;
    margin-left: -384px;
  }

  .fw_banbox {
    bottom: 110px;
  }

  .fw_list {
    display: none;
  }

  .fw_tit {
    font-size: 20px;
  }

  .fw_bztx li .img_title {
    font-size: 14px;
    margin-top: 0;
  }

  .fw_guif {
    width: 100%;
  }

  .fw_guif li {
    width: 46%;
    margin: 0 2% 0;
  }
}

@media only screen and (max-width:480px) {
  .fw_one {
    padding: 20px 0;
  }

  .fw_two {
    padding: 20px 0;
  }

  .fw_banner {
    height: 150px;
  }

  .fw_banner img {
    width: 480px;
    height: 150px;
    margin-left: -240px;
  }

  .fw_banbox {
    bottom: 60px;
  }

  .fwban_tit {
    font-size: 22px;
  }

  .fw_tit {
    font-size: 18px;
  }

  .fw_bztx li {
    width: 46%;
    margin: 0 2% 10px;
  }

  .fw_bztx li img {
    width: 40%;
  }
}

/***典型案例**/

.lm_case {
  padding: 50px 0;
}

.lm_case .lm_case_list {
  margin-top: 35px;
}

.lm_case_list li {
  width: 20%;
  height: 368px;
  position: relative;
  float: left;
  background: #f5f5f5;
}

.lm_case_list li.num2,
.lm_case_list li.num4 {
  background: #008aff;
}

.lm_case_list li.num2 .img,
.lm_case_list li.num4 .img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.lm_case_list li .img {
  overflow: hidden;
}

.lm_case_list li .img img {
  max-width: 100%;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.lm_case_text {
  padding: 20px 18px;
}

.lm_case_text h4 {
  font-size: 18px;
  color: #333;
  font-weight: normal;
  text-align: center;
  padding-bottom: 6px;
  height: 30px;
  line-height: 30px;
  background: url(../images/ind_case_line01.png) bottom center no-repeat;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lm_case_text .info {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  height: 72px;
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: justify;
}

.lm_case_list li:hover .img img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.lm_case_list li.num2 .lm_case_text h4,
.lm_case_list li.num4 .lm_case_text h4 {
  color: #fff;
  opacity: 0.9;
  background: url(../images/ind_case_line02.png) bottom center no-repeat;
}

.lm_case_list li.num2 .lm_case_text .info,
.lm_case_list li.num4 .lm_case_text .info {
  color: #fff;
  opacity: 0.7;
}

.kehu_one {
  padding: 50px 0;
  background: #f7f7f7;
}

.case_title {
  font-size: 30px;
}

.case_h {
  height: 232px;
  overflow: hidden;
  transition: all .5s;
}

.case_h2 {
  height: auto;
}

.case_list_1 {
  margin-top: 20px;
}

.case_list_1 ul {
  margin-right: -25px;
}

.case_list_1 li {
  width: 220px;
  float: left;
  margin: 9px 25px 9px 0;
}

.case_list_1 li a {
  display: block;
  font-size: 16px;
  height: 38px;
  line-height: 38px;
  padding: 0 5px;
  border: #d7d7d7 1px solid;
  text-align: center;
  background: #fff;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case_list_2 li a {
  background: #f6f6f6;
}

.case_list_1 li a:hover,
.case_list_3 li a:hover {
  border-color: #0189ff;
  background: #0189ff;
  color: #fff;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.case_list_1 li a.a-disable:hover {
  border: #d7d7d7 1px solid;
  color: #333;
  background: none;
}



.kehu_two {
  padding: 36px 0 30px;
}

.kehu_three {
  padding: 36px 0 30px;
}

.case_list_3 {
  margin-top: 20px;
}

.case_list_3 ul {
  margin-right: -30px;
}

.case_list_3 li {
  width: 380px;
  float: left;
  margin: 9px 30px 9px 0;
}

.case_list_3 li a {
  display: block;
  cursor: default;
  font-size: 16px;
  height: 38px;
  line-height: 38px;
  background: #f6f6f6;
  border: #d7d7d7 1px solid;
  text-align: center;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case_con .more {
  display: block;
  width: 158px;
  height: 38px;
  font-size: 18px;
  text-align: center;
  line-height: 38px;
  margin: 20px auto 0;
  border: #eaeaea 1px solid;
  color: #666;
  cursor: pointer;
}

.case_con .more.on {
  width: 128px;
  border: #08f 1px solid;
  color: #08f;
}

.case_con .more:hover {
  border: #08f 1px solid;
  color: #08f;
}

@media only screen and (max-width: 1199px) {
  .case_list_1 ul {
    margin-right: -20px;
  }

  .case_list_1 li {
    width: 182px;
    margin: 9px 20px 9px 0;
  }

  .case_list_3 li {
    width: 310px;
  }

  .lm_case_list li {
    height: 368px;
  }
}

@media only screen and (max-width: 991px) {
  .case_title {
    font-size: 26px;
  }

  .case_list_1 ul {
    margin-right: -15px;
  }

  .case_list_1 li {
    width: 179px;
    margin: 9px 15px 9px 0;
  }

  .case_list_3 li {
    width: 234px;
  }
}

@media only screen and (max-width: 767px) {
  .case_title {
    font-size: 24px;
  }

  .lm_case_list li {
    width: 33.33%;
  }
  .lm_case_list li .img {
    width: 100%;
  }
  .lm_case_list li .img img {
    width: 100%;
  }
  .kehu_one,
  .kehu_three,
  .kehu_two {
    padding: 30px 10px;
  }

  .case_list_1 ul {
    margin-right: 0;
  }

  .case_list_1 li {
    width: 30.33%;
    margin: 9px 1.5%;
  }

  .case_list_3 ul {
    margin-right: 0;
  }

  .case_list_3 li {
    width: 30.33%;
    margin: 9px 1.5%;
  }
}

@media only screen and (max-width:480px) {
  .case_title {
    font-size: 20px;
  }

  .case_list_1 {
    margin-top: 5px;
  }

  .lm_case_list li {
    width: 50%;
  }

  .lm_case_list li.num5 {
    width: 100%;
    height: auto;
  }

  .lm_case_list li.num5 .img {
    width: 50%;
    float: left;
  }

  .lm_case_list li.num5 .lm_case_text {
    float: right;
    width: 46%;
    padding: 25px 2%;
  }

  .case_list_1 li,
  .case_list_3 li {
    width: 48%;
    margin: 4px 2% 3px 0;
  }

  .case_list_1 li:nth-child(2n),
  .case_list_3 li:nth-child(2n) {
    margin-right: 0;
  }

  .case_con .more {
    font-size: 16px;
  }
}

/***关于龙讯**/
.ls_wrap {
  padding: 55px 0 38px;
  background: url(../images/about_bg.jpg) bottom center no-repeat;
}

.ls_intro {
  margin-top: 30px;
  font-size: 18px;
  line-height: 35px;
  color: #000;
  text-align: justify;
}

.ls_intro p {
  text-indent: 2em;
}

.ls_intro a {
  color: #008aff;
}

/*龙讯之道*/
.ls_lxzd1 {
  padding: 44px 0 50px;
  border-bottom: 4px solid #fff;
}

.lxzd1-list-box {
  height: 430px !important;
  overflow: hidden;
  width: auto;
  margin-top: 48px;
}

.lxzd1-list-box .next,
.lxzd1-list-box .prev {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  z-index: 5;
  width: 40px;
  height: 50px;
  cursor: pointer;
  background: url(../images/lxzd-jt.png) no-repeat;
}

.lxzd1-list-box .prev {
  left: 0;
  background-position: 0 0;
}

.lxzd1-list-box .next {
  right: 0;
  background-position: -40px 0;
}

.lxzd1-list-box .scroll-wrap {
  height: 430px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
}

.lxzd1-list-box .lxzd1-list li {
  float: left;
  width: 268px;
  height: 428px;
  border: 1px solid #ddd;
  margin-right: 40px;
}

.lxzd1-list-box .lxzd1-list li a {
  display: block;
  padding: 39px;
}

.lxzd1-list-box .lxzd1-list li a img {
  display: block;
  width: 188px;
  height: 255px;
  border: 1px solid #eee;
}

.lxzd1-list-box .lxzd1-list li a .title {
  display: block;
  padding: 10px 0;
  line-height: 38px;
  font-size: 18px;
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lxzd1-list-box .lxzd1-list li a span.hit-btn {
  display: block;
  padding: 0;
  width: 110px;
  height: 35px;
  border-radius: 5px;
  margin: 0 auto;
  line-height: 35px;
  text-align: center;
  background: #6495cd;
  font-size: 16px;
  color: #fff;
}

.ls_lxzd {
  padding: 44px 0 80px;
}

.ls_culture {
  width: 740px;
  margin: 30px auto 0;
}

.ls_culture li {
  height: 40px;
  line-height: 40px;
  margin: 0 0 20px;
  font-size: 30px;
}

.ls_culture li span {
  display: block;
  width: 98px;
  padding-right: 22px;
  float: left;
  font-weight: bold;
  text-align-last: justify;
}

.ls_lxzd2 {
  width: 100%;
  height: 180px;
  background: #ededed;
  position: relative;
}

.ls_img {
  width: 640px;
  position: absolute;
  left: 50%;
  margin-left: -320px;
  bottom: 10px;
  z-index: 1;
  text-align: center;
}

.ls_img img {
  max-width: 100%;
}

.ls_fc {
  padding: 40px 0 30px;
}

.ls_fc_list {
  margin-top: 36px;
}

.ls_fc_list li {
  float: left;
  width: 388px;
  height: 219px;
  overflow: hidden;
  position: relative;
}

.ls_fc_list li.num1 {
  width: 800px;
  height: 450px;
  float: left;
}

.ls_fc_list li img {
  width: 388px;
  height: 219px;
}

.ls_fc_list li.num1 img {
  width: 800px;
  height: 450px;
}

.ls_fc_list li.num2 {
  margin-bottom: 12px;
  float: right;
}

.ls_fc_list li.num3 {
  float: right;
}

.ls_fc_list li a {
  display: block;
}

.ls_fc_list li .title {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: -40px;
  left: 0;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  text-indent: 16px;
  background: url(../images/back30.png);
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .5s;
  -webkit-transition: all .5s;
}

.ls_fc_list .more {
  display: block;
  width: 158px;
  height: 38px;
  font-size: 18px;
  color: #666;
  text-align: center;
  line-height: 38px;
  margin: 40px auto 0;
  border: #eaeaea 1px solid;
}

.ls_fc_list .more:hover {
  color: #008aff;
  border-color: #008aff;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.ls_fc_list li:hover .title {
  bottom: 0;
}

.history_title {
  font-size: 30px;
  margin: 25px 0 14px;
}

.history_con {
  width: 1198px;
  height: 298px;
  position: relative;
  border: #ccc 1px solid;
  background: #fff;
  overflow: hidden;
}

.history_con .hd {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fafafa;
}

.history_con .hd li {
  float: left;
  width: 5%;
  text-align: center;
}

.history_con .hd li.on {
  background: url(../images/history_on.png) center no-repeat;
}

.history_con .hd li a {
  display: block;
  line-height: 40px;
  font-size: 20px;
  color: #c6c6c6;
  font-family: arial;
}

.history_con .tit {
  width: 280px;
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
  text-align: center;
  font-size: 100px;
  color: #d1aa6f;
  text-align: center;
  font-family: arial;
}

.history_con li {
  width: 100%;
  overflow: hidden;
  float: left;
}

.history_con .bd {
  width: 100%;
}

.history_con .bd li a {
  display: block;
}

/*.history_con .bd ul{width: 100% !important;}*/
.history_con li .con {
  width: 664px;
  padding-left: 30px;
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
  font-size: 16px;
}

.history_con li .con p {
  line-height: 26px;
  background: url(../images/ico_jia.png) left 10px no-repeat;
  padding-left: 18px;
}

.history_con .foucebox {
  padding: 0 110px 0;
  margin: 65px 0 0;
  overflow: hidden;
}

.history_con .next,
.history_con .prev {
  display: block;
  width: 85px;
  height: 85px;
  position: absolute;
  top: 50%;
  margin-top: -42px;
  z-index: 99;
}

.history_con .prev {
  left: 35px;
  background: url(../images/fzlc_prev.png) center no-repeat;
}

.history_con .next {
  right: 35px;
  background: url(../images/fzlc_next.png) center no-repeat;
}

.history_con li .con:hover {
  color: #333;
}

@media only screen and (max-width:1199px) {
  .history_con {
    width: auto;
  }

  .history_con .tit {
    font-size: 90px;
  }

  .history_con li .con {
    width: 456px;
    max-height: 130px;
    overflow-y: auto;
  }

  .ls_culture li {
    font-size: 26px;
  }

  .ls_img {
    width: 600px;
    margin-left: -300px;
  }

  .ls_fc_list li.num1 {
    width: 662px;
    height: 373px;
  }

  .ls_fc_list li {
    width: 320px;
    height: 180px;
  }

  .ls_fc_list li img {
    width: 320px;
    height: 180px;
  }

  .ls_fc_list li.num1 img {
    width: 662px;
    height: 373px;
  }

  .history_title {
    font-size: 26px;
  }

  .lxzd1-list-box {
    height: 400px !important;
  }

  .lxzd1-list-box .lxzd1-list li {
    width: 231px;
    height: 398px;
    margin-right: 20px;
  }

  .lxzd1-list-box .lxzd1-list li a {
    padding: 20px;
  }
}

@media only screen and (max-width:992px) {
  .history_con {
    height: auto;
  }

  .history_con .foucebox {
    margin: 0;
    padding: 50px 80px;
  }

  .history_con .hd {
    display: none;
  }

  .history_con .tit {
    width: 200px;
    font-size: 70px;
  }

  .history_con li .con {
    padding: 0 0 0 20px;
    width: 366px;
  }

  .history_con li .con {
    max-height: none;
  }

  .ls_lxzd {
    padding: 40px 0 130px;
  }

  .ls_lxzd2 {
    height: 120px;
  }

  .ls_culture {
    width: 600px;
  }

  .ls_culture li {
    font-size: 22px;
    line-height: 36px;
  }

  .ls_img {
    width: 600px;
    margin-left: -300px;
  }

  .ls_fc_list li.num1 {
    width: 504px;
    height: 289px;
  }

  .ls_fc_list li {
    width: 250px;
    height: 140px;
  }

  .ls_fc_list li img {
    width: 250px;
    height: 140px;
  }

  .ls_fc_list li.num1 img {
    width: 504px;
    height: 289px;
  }

  .ls_fc_list li.num2 {
    margin-bottom: 9px;
  }

  .history_title {
    font-size: 24px;
  }

  .lxzd1-list-box {
    margin-top: 30px;
  }

  .lxzd1-list-box .lxzd1-list li {
    margin-right: 31px;
  }
}

@media only screen and (max-width:767px) {
  .ls_wrap {
    padding: 30px 10px;
  }

  .history_con .foucebox {
    margin: 0;
    padding: 50px 60px;
  }

  .history_con .next,
  .history_con .prev {
    width: 60px;
    height: 60px;
    margin-top: -30px;
  }

  .history_con .prev {
    left: 10px;
    background: url(../images/fzlc_prev.png) center no-repeat;
    background-size: 60px;
  }

  .history_con .next {
    right: 10px;
    background: url(../images/fzlc_next.png) center no-repeat;
    background-size: 60px;
  }

  .history_con .tit {
    width: 100%;
    font-size: 50px;
  }

  .history_con li .con {
    padding: 0;
    width: auto;
  }

  .history_title {
    font-size: 20px;
  }

  .ls_culture {
    padding: 0 20px;
    width: auto;
  }

  .ls_culture li {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 10px;
  }

  .ls_img {
    width: 100%;
    margin-left: 0;
    left: 0;
    text-align: center;
  }

  .ls_img img {
    width: 60%;
  }

  .ls_lxzd {
    padding: 40px 0 100px;
  }

  .ls_lxzd2 {
    height: 90px;
  }

  .ls_lxzd1 {
    padding: 40px 10px;
  }

  .lxzd1-list-box .lxzd1-list li {
    margin-right: 20px;
  }

  .ls_fc {
    padding: 30px 10px 20px;
  }

  .ls_fc_list li {
    width: 48%;
    height: auto !important;
    margin: 0 4% 0 0;
  }

  .ls_fc_list li.num1 {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .ls_fc_list li.num2 {
    float: left;
  }

  .ls_fc_list li.num3 {
    margin-right: 0;
  }

  .ls_fc_list li img {
    width: 100%;
  }

  .ls_fc_list li.num1 img {
    width: 100%;
    height: auto;
  }

  .ls_fc_list li .title {
    bottom: 0;
    text-indent: 10px;
  }
}

@media only screen and (max-width:480px) {
  .ls_lxzd {
    padding: 40px 0 70px;
  }

  .history_con .foucebox {
    padding: 20px 50px;
  }

  .history_con .tit {
    width: 100%;
    float: none;
    font-size: 40px;
  }

  .history_title {
    font-size: 20px;
  }

  .history_con .next,
  .history_con .prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

  .history_con .prev {
    left: 5px;
    background: url(../images/fzlc_prev.png) center no-repeat;
    background-size: 40px;
  }

  .history_con .next {
    right: 5px;
    background: url(../images/fzlc_next.png) center no-repeat;
    background-size: 40px;
  }

  .ls_fc_list li {
    width: 100%;
    height: auto !important;
    margin: 0 0 20px !important;
  }

  .ls_fc_list li img {
    width: 100%;
    height: auto;
  }

  .history_con li:nth-child(1) .con,
  .history_con li:nth-child(2) .con,
  .history_con li:nth-child(3) .con,
  .history_con li:nth-child(4) .con {
    padding-top: 33px;
  }

  .history_con li:nth-child(5) .con {
    padding-top: 20px;
  }
}

/***栏目页***/
/* .lmy_height {
  margin-top: 60px;
} */

.lmy_position {
  width: 100%;
  background: #eeeeee;
  line-height: 60px;
  font-size: 16px;
  color: #999;
}

.lmy_position a {
  color: #999;
}

.container .content {
  padding: 40px 0 80px 0;
  /* min-height: 600px; */
}

.lmy_position .lmy_p .fwzc_search {
  display: block;
  float: right;
  margin-top: 10px;
  width: 388px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  line-height: 36px;
}

.lmy_position .lmy_p .fwzc_search input {
  width: 84%;
  height: 100%;
  border: none;
  border-radius: 4px 4px 4px 4px;
  padding-left: 10px;
}

.lmy_position .lmy_p .fwzc_search button {
  Width: 11%;
  height: 100%;
  border: none;
  background: #FFFFFF;
}

.lmy_position .lmy_p .fwzc_search button img {
  width: 60%;
  height: 60%;
  margin-left: 2%;
  border: 1px dashed #858585;
  background: #FFFFFF;
}

.position .postitle {
  font-size: 40px;
}

/*典型案例*/
.typical-cases-warp {
  background: url(../images/dxal_bg.png) no-repeat center top;
  padding-top: 250px;
}

.typical-cases-warp1 {
  background-image: url(../images/dxal_bg1.png);
}

.typical-cases-warp2 {
  background-image: url(../images/dxal_bg2.png);
}

.typical-cases-warp3 {
  background-image: url(../images/dxal_bg3.png);
}

.typical-cases-warp4 {
  background-image: url(../images/dxal_bg4.png);
}

.typical-cases-warp5 {
  background-image: url(../images/dxal_bg5.png);
}

.typical-cases-warp6 {
  background-image: url(../images/dxal_bg6.png);
}

.typical-cases-warp7 {
  background-image: url(../images/dxal_bg7.png);
}

.typical-cases-warp8 {
  background-image: url(../images/dxal_bg8.png);
}

.typical-casebg-4700051 {
  background-image: url(../images/zfxxgk_top_bg_1.png);
  background-color: #eff3f6;
  background-position: center -200px;
  padding-top: 60px;
}

.typical-cases-warp .position {
  text-align: center;
}

.typical-cases-warp .listnews {
  padding: 20px;
  width: auto;
  background: #fff;
  margin-top: 40px;
}

.typical-casebg-4700051 .position .postitle {
  font-size: 60px;
  color: #2b5c9b;
  padding-bottom: 30px;
  display: block;
}

@media only screen and (max-width:767px) {
  .typical-cases-warp {
    padding-top: 30px;
  }

  .typical-cases-warp .listnews {
    width: auto;
    margin-top: 20px;
  }

  .container .content {
    padding: 40px 20px;
  }
}

.listnews {
  width: 100%;
  height: auto;
  font-size: 18px;
  line-height: 32px;
  overflow: hidden;
  color: #666;
  padding: 20px 0 0;
  font-size: 16px;
}

.listnews ul {
  clear: both;
}

.listnews table {
  max-width: 1200px !important;
}

.listnews img {
  max-width: 1200px !important;
}

.search_null {
  margin-top: 20px;
  border-top: 1px solid #ECECEC;
  text-align: center;
}

.search_null img {
  width: 43%;
}

.search_null .search_null_con {
  font-weight: 400;
  font-size: 16px;
  color: #878282;
  margin-top: 20px;
}

.picture-list {
  border-top: #ECECEC 1px solid;
}

.picture-list li {
  padding: 36px 0;
  border-bottom: #ECECEC 1px solid;
  overflow: hidden;
  vertical-align: bottom;
}
  .picture-list li {
  display: block;
  padding-right: 0;
  transition: .6s;
  position: relative;
}

.picture-list li:before {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  transition: .6s;
  top: 0;
  bottom: 0;
}
.picture-list li:hover:before {
  width: 100%;
  background: #3366cc;
  left: 0;
  z-index: -1;
}
.picture-list li:hover .newsr a,
.picture-list li:hover .newsr span {
  color: #fff !important;
}
.picture-list li a .newsr .img_content div {
  background-color: transparent !important;
}
.picture-list li .img {
  width: 360px;
  height: 220px;
  float: left;
  overflow: hidden;
  margin-left: 15px;
}

.picture-list li img {
  width: 360px;
  height: 220px;
  vertical-align: middle;
  border-radius: 15px;
}

.picture-list li .newsr {
  padding-left: 400px;
}

.picture-list li .img_title {
  display: block;
  font-size: 24px;
  line-height: 32px;
}

.picture-list li .date {
  float: none;
  display: block;
  font-size: 17px;
  color: #999;
  margin: 10px 0;
}

.picture-list li .img_content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.picture-list li .img_go {
  float: none;
  display: block;
  font-size: 20px;
  margin-top: 10px;
}

.picture-list li a:hover .newsr .img_title,
.picture-list li a:hover .newsr .img_content {
  color: #0088FF;
}

/***文章页**/
#wenzhang {
  width: 100%;
  margin: auto;
  height: auto;
  padding: 0;
  position: relative;
}

.wzy_title {
  border-bottom: 1px dashed #BDBDBD;
  text-align: center;
  padding: 30px 0;
}

.wztit {
  font-size: 40px;
  line-height: 50px;
  color: #333;
}

.fwzc_time {
  display: block;
  font-size: 18px;
  color: #838383;
  padding: 20px 0 20px 0;
}

.wzfbt {
  font-size: 30px;
  line-height: 40px;
  padding: 10px 0;
}

.wzcon {
  padding: 20px 0;
  width: 100%;
  height: auto;
  min-height: 450px;
  font-size: 18px;
  line-height: 32px;
  color: #666;
  text-align: justify;
  text-justify: inter-ideograph;
}

.wzcon img {
  max-width: 100%;
  height: auto;
}

.wzbot1 {
  width: 100%;
  height: 80px;
  background: #f9f9f9;
}

.sharebot {
  padding: 18px 0;
}

.sharebot a {
  width: 50px;
  height: 44px !important;
  margin: 0;
  padding: 0 !important;
}

.sharebot a.bds_tsina,
.sharebot a.botwb {
  background: url(../images/b_weibo.svg) center no-repeat !important;
}

.sharebot a.bds_weixin,
.sharebot a.botwx {
  background: url(../images/b_wechat.svg) center no-repeat !important;
  margin-left: 20px;
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .picture-list li a .img {
    display: grid;
    place-items: center;
    width: 360px;
    height: 260px;
  }

}

@media only screen and (max-width:991px) {
  .picture-list li {
    padding: 25px 0;
  }

  .picture-list li .img_title {
    font-size: 22px;
  }

  .picture-list li .date {
    font-size: 16px;
  }

  .picture-list li .newsr {
    padding-left: 390px;
  }

  .wztit {
    font-size: 30px;
    line-height: 40px;
  }

  .wzfbt {
    font-size: 22px;
    line-height: 30px;
    padding: 10px 0;
  }
}
@media only screen and (max-width:768px) {
  .lmy_height {
    margin-top: 0;
  }

  .content {
    padding: 30px 10px;
  }

  .lmy_position {
    line-height: 50px;
    font-size: 16px;
  }

  .lmy_position .container {
    padding: 0 20px;
    width: auto;
    font-size: 14px;
  }

  .lmy_position_tt {
    padding: 0 10px;
  }

  .position .postitle {
    font-size: 30px;
  }
    .fwzc_search {
    float: none !important;
    width: 100% !important;
    height: 40px !important;
    margin-bottom: 20px;
  }
  .picture-list li {
    margin: 10px 10px;
  }

  .picture-list li .img_title {
    font-size: 18px;
    line-height: 26px;
    height: 52px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .picture-list li .date {
    font-size: 14px;
  }

  .picture-list li .img {
    width:100%;
    margin-left: 0;
  }

  .picture-list li .img img {
    width: 100%;
  }

  .picture-list li a {
    float: none;
  }

  .picture-list li .newsr {
    padding-left: 37%;
    display: inline;
  }

  #wenzhang {
    width: auto;
    padding: 0 10px;
  }

  .wztit {
    font-size: 24px;
    line-height: 34px;
  }

  .wzfbt {
    font-size: 18px;
  }

  .fxd_xx {
    padding: 0 10px;
  }

  .content {
    height: auto;
  }
}

@media only screen and (max-width:480px) {
  .ls_intro {
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
  }

  .yq_xttx_list li .title {
    border-top: none;
    padding-top: 0;
  }

  .cpjz_list_r .intro,
  .dj_online_con,
  .list_info .intro {
    line-height: 24px;
    font-size: 14px;
  }

  .pro_yyxt_list2 li img {
    width: 40px;
    height: 39px;
  }

  /* .ind_news_list li .date {
    display: none;
  } */

  .ind_case_list .scroll-wrap {
    height: auto;
  }

  .lm_case .more {
    margin: 20px auto 0;
  }

  .ls_fc_list {
    margin-top: 20px;
  }

  .ls_fc_list .more {
    margin: 0 auto;
  }

  .ls_culture li {
    overflow: hidden;
    height: auto;
  }

  .ls_culture li span {
    width: 80px;
    display: block;
    float: none;
  }

  .lm_case .more {
    margin: 20px auto 0;
  }

  .lm_case {
    padding: 20px 0;
  }

  .wzy_title {
    padding: 20px 0 10px;
  }
}

.lm_case .more {
  display: block;
  width: 158px;
  height: 38px;
  font-size: 18px;
  color: #666;
  text-align: center;
  line-height: 38px;
  margin: 40px auto 0;
  border: #eaeaea 1px solid;
}

.lm_case .more:hover {
  color: #008aff;
  border-color: #008aff;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

/***客服中心***/
.login_body .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
}

.kfzx_banner {
  width: 100%;
  height: 460px;
  background: url(../images/login_body.png) top center no-repeat;
}

.kfzx_box {
  width: 400px;
  height: 340px;
  position: absolute;
  left: 50%;
  margin-left: -200px;
  top: 220px;
  background: rgba(255, 255, 255, .92);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  box-shadow: rgba(141, 134, 134, 0.31) 0 0 8px 0;
  -webkit-box-shadow: rgba(141, 134, 134, 0.31) 0 0 8px 0;
  z-index: 999;
}

.login_n {
  text-align: center;
  margin-bottom: 15px;
}

.login_n span {
  font-size: 32px;
  color: #4791ef;
}

.login-box {
  width: 270px;
  margin: 43px auto 0;
}

.login-box li.password,
.login-box li.username {
  border-bottom: #fff 1px solid;
  padding: 30px 0 0;
  position: relative;
}

.login-box li .tit {
  display: block;
  font-size: 12px;
  color: #6f6f6f;
}

.login-box li input {
  width: 100%;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  text-indent: 10px;
  background: none;
  border: none;
}

.login-box li.btn {
  margin-top: 30px;
}

.login-box li.btn input {
  display: block;
  width: 260px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  margin: 0 auto;
  background: url(../images/login_btn.svg) center no-repeat;
}

.login-box li i {
  display: none;
  width: 19px;
  height: 19px;
  position: absolute;
  right: 5px;
  bottom: 6px;
  background: url(../images/login_close.png) center no-repeat;
  cursor: pointer;
  z-index: 2;
}

.kfzx_box .wjmm {
  position: absolute;
  height: 20px;
  line-height: 20px;
  right: 9px;
  bottom: -20px;
  font-size: 12px;
  color: #ccc;
  text-decoration: underline;
}

.tk_bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 999;
}

.tk_box {
  width: 400px;
  height: 280px;
  position: absolute;
  left: 50%;
  margin-left: -200px;
  top: 50%;
  margin-top: -140px;
  background: rgba(255, 255, 255, .92);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  box-shadow: rgba(141, 134, 134, 0.31) 0 0 8px 0;
  -webkit-box-shadow: rgba(141, 134, 134, 0.31) 0 0 8px 0;
  z-index: 2;
}

.closetk {
  display: block;
  width: 19px;
  height: 19px;
  position: absolute;
  top: 8px;
  right: 8px;
  background: url(../images/login_close02.png) center no-repeat;
  cursor: pointer;
  z-index: 2;
}

@media only screen and (min-width: 1360px) and (max-width: 1399px) {
  .kfzx_banner {
    height: 240px;
    background: url(../images/login_body.png) center 0 no-repeat;
    background-size: 1400px;
  }

  .kfzx_box {
    top: 170px;
  }

  .login_body .footer {
    padding: 20px 0;
  }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
  .kfzx_box {
    top: 285px;
  }
}

@media only screen and (max-width:767px) {
  .kfzx_banner {
    height: 240px;
    background: url(../images/login_body.png) center -90px no-repeat;
  }

  .login_n span {
    font-size: 26px;
  }
}

@media only screen and (max-width:640px) {
  .kfzx_banner {
    background: url(../images/login_body.png) center -30px no-repeat;
    background-size: 1000px;
  }

  .kfzx_box {
    top: 160px;
    margin-top: 0;
  }
}

@media only screen and (max-width:480px) {
  .kfzx_banner {
    background: url(../images/login_body.png) center -37px no-repeat;
    background-size: 1000px;
  }

  .kfzx_box {
    width: 80%;
    height: 240px;
    left: 10%;
    margin-left: 0;
    background-size: 100%;
  }

  .kfzx_box {
    top: 150px;
  }

  .login_form li.password,
  .login_form li.username {
    padding: 10px 0;
  }

  .login_form li.btn {
    margin-top: 20px;
  }

  .login-box {
    margin: 20px auto 0;
  }

  .login_body .footer {
    position: static;
    margin-top: 140px;
  }

  .login_n img {
    width: 70px;
  }

  .tk_box {
    width: 80%;
    height: 210px;
    left: 10%;
    margin-left: 0;
    margin-top: -105px;
  }

  .login_n span {
    font-size: 20px;
  }
}

@media only screen and (max-width:320px) {}

/****2019-2-15搜索页*****/
.lmy_p {
  position: relative;
}

.lm_search {
  width: 374px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 15px;
  background: url(../images/searchbg.png) center no-repeat;
  z-index: 2;
}

.lm_search ul li {
  float: left;
}

.lm_search ul li.se_box {
  width: 100%;
  height: 30px;
  position: relative;
}

.lm_search ul li.se_box .msg-box {
  left: 0;
  top: 30px;
  position: absolute;
}

.lm_search ul li.se_box input {
  float: left;
  background: none;
  border: none;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  width: 98%;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  color: #666;
  outline: none;
  padding: 1px;
  text-indent: 20px;
}

.lm_search li.sea_an {
  width: 50px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
}

.lm_search li.sea_an input {
  float: left;
  width: 50px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  text-outline: -9999em;
  overflow: hidden;
}

input.srkcss:focus {
  outline: none;
  border-color: #9ecaed !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
}

.ssy_container {
  padding: 40px 0;
}

.wzy_position {
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  color: #999;
}

.wzy_position .search-keywords {
  color: red;
}

.ssy_leftbar {
  display: none;
}

.ssy_rightbar {
  width: 100%;
  padding: 20px 0 0;
}

.ssy_rightbar .warm-prompt {
  line-height: 30px;
  font-size: 16px;
  color: #666;
  padding: 20px 0;
}

.result_title {
  padding-right: 18px;
  font-size: 15px;
  float: right;
  text-align: right;
  width: auto;
  height: 30px;
  line-height: 30px;
  color: #8a8a8a;
}

.searchbox {
  min-height: 550px;
}

.search-list {
  border-top: #ccc 1px solid;
}

.search-list li {
  padding: 36px 0;
  border-bottom: #ccc 1px solid;
  overflow: hidden;
  vertical-align: bottom;
}

.search-list li .img {
  width: 260px;
  height: 133px;
  float: left;
  overflow: hidden;
}

.search-list li img {
  width: 260px;
  height: 133px;
  vertical-align: middle;
}

.search-list li .newsr {
  padding-left: 300px;
}

.search-list li .img_title {
  display: block;
  font-size: 26px;
  line-height: 32px;
}

.search-list li .date {
  float: none;
  display: block;
  font-size: 20px;
  color: #999;
  margin-top: 10px;
}

/*****/
@media only screen and (max-width:991px) {
  .search-list li {
    padding: 25px 0;
  }

  .search-list li .img_title {
    font-size: 22px;
  }

  .search-list li .date {
    font-size: 16px;
  }

  .search-list li .newsr {
    padding-left: 290px;
  }
}

@media only screen and (max-width:767px) {
  .lm_search {
    position: relative;
    top: auto;
    margin: 20px auto;
    width: 90%;
    right: auto;
    background: none;
  }

  .lm_search ul li.se_box {
    width: 100%;
  }

  .lm_search ul li.se_box input {
    width: 98%;
    border: #dedede 1px solid;
    padding: 0;
  }

  .lm_search li.sea_an input {
    background: url(../images/searchbtn.png) no-repeat;
  }

  .ssy_container {
    margin-top: 40px;
    padding: 30px 10px;
  }

  .search-list li {
    padding: 20px 0;
  }

  .search-list li .img_title {
    font-size: 18px;
    line-height: 26px;
    height: 52px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .search-list li .date {
    font-size: 14px;
  }

  .searchbox .search-list li .img {
    width: 35%;
    height: 100px;
  }

  .search-list li .img img {
    width: 100%;
    height: 100px;
  }

  .search-list li .newsr {
    padding-left: 37%;
  }
}

/****栏目页-统一信息资源库****/
.zyk_cpjz {
  background: #f9f9f9;
  padding: 40px 0 60px;
}

.cpjz_list3 {
  margin-top: 36px;
}

.cpjz_list3 li {
  width: 360px;
  height: 390px;
  float: left;
  margin: 0 60px 0 0;
  background: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.cpjz_list3 li.num3 {
  margin-right: 0;
}

.cpjz_list3 li a {
  display: block;
  padding: 38px 20px 0;
  cursor: default;
}

.cpjz_list3 li .img {
  width: 78px;
  height: 78px;
  text-align: center;
  margin: 0 auto;
}

.cpjz_list3 li .img img {
  max-width: 100%;
}

.cpjz_list3 li .title {
  font-size: 24px;
  color: #001585;
  height: 40px;
  line-height: 40px;
  padding: 24px 0 19px;
}

.cpjz_list3 li .intro {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  text-align: justify;
  margin-top: 22px;
}

.cpjz_list3 li:hover {
  box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;
  -webkit-box-shadow: rgba(161, 161, 161, 0.36) 1px 4px 16px 3px;
}

.cpjz_list3 li .line {
  display: block;
  width: 159px;
  height: 1px;
  background: #949494;
}

.zyk_hxgn {
  padding: 44px 0;
}

.hxgn_list3 {
  margin-top: 36px;
}

.hxgn_list3 li {
  width: 220px;
  float: left;
  margin-right: 106px;
  text-align: center;
}

.hxgn_list3 li a {
  display: block;
  cursor: default;
}

.hxgn_list3 li.num4 {
  margin-right: 0;
}

.hxgn_list3 li .img {
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.hxgn_list3 li img {
  width: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.hxgn_list3 li .title {
  display: block;
  font-size: 20px;
  height: 60px;
  line-height: 30px;
  margin-top: 17px;
  overflow: hidden;
}

.hxgn_list3 li:hover img {
  transform: rotateZ(-15deg);
  -ms-transform: rotateZ(-15deg);
  -moz-transform: rotateZ(-15deg);
  -webkit-transform: rotateZ(-15deg);
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
  .cpjz_list3 li {
    width: 310px;
    margin: 0 30px 0 0;
  }

  .cpjz_list3 li .title {
    font-size: 20px;
    padding: 20px 0 10px;
  }

  .cpjz_list3 li .intro {
    margin-top: 18px;
  }

  .hxgn_list3 li {
    margin-right: 37px;
  }
}

@media only screen and (max-width: 991px) {
  .cpjz_list3 li {
    width: 100%;
    margin: 0 0 20px;
    height: auto;
  }

  .cpjz_list3 li a {
    padding: 30px 20px;
  }

  .hxgn_list3 li {
    width: 172px;
    margin-right: 18px;
  }

  .hxgn_list3 li .img {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (max-width:768px) {
  .hxgn_list3 li {
    width: 23%;
    margin: 0 1% 0;
  }

  .hxgn_list3 li .title {
    font-size: 18px;
  }

  .hxgn_list3 li .img {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (max-width:580px) {
  .zyk_cpjz {
    padding: 20px 0 30px;
  }

  .cpjz_list3 li .title {
    font-size: 20px;
    padding: 20px 0 10px;
  }

  .zyk_hxgn {
    padding: 20px 0;
  }

  .hxgn_list3 li {
    width: 48%;
    margin: 0 1% 20px;
  }
}

/*龙讯宣传视频*/
.ls_video_bg {
  background: url(../images/video-bg.png) no-repeat center top;
}

.ls_video-warp {
  padding: 130px 0 70px;
}

.ls_video-warp .video-title {
  height: 50px;
  line-height: 50px;
  margin-bottom: 42px;
  text-align: center;
  font-size: 46px;
  color: #fff;
  font-weight: bold;
}

.ls_video-warp .video-title span {
  display: inline-block;
  vertical-align: middle;
  width: 2px;
  height: 50px;
  margin-top: -7px;
  background: url(../images/video-tit-line.png) no-repeat center;
}

.video-player-box {
  width: 870px;
  height: 470px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: url(../images/video-player-bg.png) no-repeat center;
  padding: 15px;
}

@media only screen and (max-width: 991px) {
  .ls_video-warp {
    padding: 120px 20px 70px;
  }

  .ls_video-warp .video-title {
    font-size: 36px;
    height: auto;
  }

  .video-player-box {
    width: auto;
    height: auto;
    background: #0d0d0d;
  }

  .video-player-box .j-video-player {
    width: 100% !important;
    height: auto !important;
  }

  .video-player-box .j-video-player video {
    width: 100% !important;
    height: 400px !important;
  }
}

@media only screen and (max-width: 767px) {
  .ls_video-warp {
    padding: 60px 20px;
  }

  .video-player-box .j-video-player video {
    height: 320px !important;
  }
}

@media only screen and (max-width: 580px) {
  .ls_video-warp .video-title {
    font-size: 28px;
    line-height: 40px;
  }

  .video-player-box .j-video-player video {
    height: 280px !important;
  }
}

@media only screen and (max-width: 480px) {
  .video-player-box .j-video-player video {
    height: 220px !important;
  }
}

@media only screen and (max-width: 375px) {
  .video-player-box .j-video-player video {
    height: 180px !important;
  }
}

/****新媒体****/
.media_gs {
  padding: 45px 0 65px;
}

.media_ny_title {
  font-size: 40px;
  text-align: center;
}

.media_gs_con {
  font-size: 16px;
  color: #666;
  line-height: 32px;
  margin-top: 25px;
  text-align: justify;
  text-indent: 2em;
}

.media_cpjz {
  padding-bottom: 80px;
}

.media_cpjz_list {}

.media_cpjz_list li {
  width: 358px;
  float: left;
  margin-right: 60px;
  margin-top: 50px;
  padding-top: 68px;
}

.media_cpjz_list li.num3,
.media_cpjz_list li.num6 {
  margin-right: 0;
}

.media_cpjz_list li a {
  display: block;
  height: 222px;
  padding: 76px 25px 0;
  border: #ddd 1px solid;
  border-radius: 18px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: default;
  position: relative;
}

.media_cpjz_list li .img {
  width: 136px;
  height: 136px;
  overflow: hidden;
  position: absolute;
  top: -68px;
  left: 50%;
  margin-left: -68px;
  z-index: 1;
}

.media_cpjz_list li .title {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 15px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #dbdada;
  text-align: center;
  font-size: 22px;
  color: #096e74;
}

.media_cpjz_list li .intro {
  font-size: 16px;
  color: #666;
  line-height: 28px;
  margin-top: 20px;
  text-align: justify;
  max-height: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.media_cpjz_list li a:hover {
  background: #f1f9f9;
  border-color: #c3eded;
}

.media_cpjz_list li a:hover img {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
  transform: rotateZ(360deg);
}

.media_hxgn {
  padding: 55px 0 60px;
  background: #f9f9f9;
}

.media_hxgn_list {
  height: 330px;
  margin-top: 40px;
  padding: 0 45px;
  background: url(../images/hxgc-bg.png) no-repeat center top;
  position: relative;
}

.media_hxgn_list ul li {
  width: 102px;
  text-align: center;
  position: absolute;
}

.media_hxgn_list ul li.num1 {
  top: 224px;
  left: 55px;
}

.media_hxgn_list ul li.num2 {
  top: 10px;
  left: 220px;
}

.media_hxgn_list ul li.num3 {
  top: 224px;
  left: 388px;
}

.media_hxgn_list ul li.num4 {
  top: 10px;
  left: 560px;
}

.media_hxgn_list ul li.num5 {
  top: 224px;
  left: 734px;
}

.media_hxgn_list ul li.num6 {
  top: 10px;
  left: 910px;
}

.media_hxgn_list ul li.num7 {
  top: 224px;
  left: 1076px;
}

.media_hxgn_list ul li img {
  display: block;
  width: 71px;
  height: 71px;
  margin: 0 auto;
}

.media_hxgn_list ul li .img_title {
  font-size: 20px;
  color: #333;
}

.media_hxgn_list ul li:hover .img_title {
  color: #096e74;
}

.media_hxgn_list ul li:hover img {
  -moz-transition: all .6s;
  -o-transition: all .6s;
  -webkit-transition: all .6s;
  transition: all .6s;
  -o-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

@media (min-width: 992px) and (max-width:1199px) {
  .media_ny_title {
    font-size: 34px;
  }

  .media_cpjz_list li {
    width: 304px;
    margin-right: 40px;
  }

  .media_hxgn_list {
    background: url(../images/hxgc-bg-md.png) no-repeat center top;
  }

  .media_hxgn_list ul li.num1 {
    left: 0;
  }

  .media_hxgn_list ul li.num2 {
    left: 140px;
  }

  .media_hxgn_list ul li.num3 {
    left: 288px;
  }

  .media_hxgn_list ul li.num4 {
    left: 442px;
  }

  .media_hxgn_list ul li.num5 {
    left: 594px;
  }

  .media_hxgn_list ul li.num6 {
    left: 750px;
  }

  .media_hxgn_list ul li.num7 {
    left: 890px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .media_ny_title {
    font-size: 30px;
  }
}

@media (max-width:991px) {
  .media_cpjz_list li {
    width: 234px;
    margin-right: 20px;
  }

  .media_cpjz_list li a {
    padding: 76px 15px 0;
    height: 212px;
  }

  .media_cpjz_list li .title {
    padding: 10px 0;
    font-size: 18px;
  }

  .media_cpjz_list li .intro {
    font-size: 15px;
  }

  .media_hxgn_list {
    background: none;
    height: auto;
    padding: 0;
    margin-top: 0;
  }

  .media_hxgn_list ul li {
    position: static;
    float: left;
    width: 25%;
    margin-top: 30px;
  }

  .media_hxgn_list ul li.num1,
  .media_hxgn_list ul li.num2,
  .media_hxgn_list ul li.num3 {
    width: 33.3%;
  }

  .media_hxgn_list ul li .img_title {
    font-size: 18px;
  }
}

@media (max-width:767px) {
  .p10 {
    padding: 0 10px;
  }

  .media_ny_title {
    font-size: 26px;
  }

  .media_gs {
    padding: 30px 0;
  }

  .media_gs_con {
    margin-top: 15px;
  }

  .media_cpjz {
    padding-bottom: 30px;
  }

  .media_cpjz_list ul {
    width: 100%;
  }

  .media_cpjz_list li {
    width: 48%;
    margin: 20px 1% 0 !important;
  }
}

@media (max-width:480px) {
  .media_gs_con {
    font-size: 15px;
    line-height: 30px;
  }

  .media_cpjz_list li {
    float: none;
    width: 100%;
    margin: 20px 0 0 !important;
  }

  .media_cpjz_list li a {
    height: auto;
    padding-bottom: 15px;
  }

  .media_cpjz_list li .intro {
    font-size: 14px;
    margin-top: 15px;
  }

  .media_hxgn {
    padding: 30px 0 40px;
  }

  .media_hxgn_list ul li .img_title {
    font-size: 16px;
  }
}

@media (max-width:374px) {
  .media_hxgn_list ul li {
    width: 50% !important;
  }

  .media_hxgn_list ul li.num1 {
    width: 100% !important;
  }
}

/*新媒体改版*/
.media-cptz {
  padding: 60px 0;
  background: #f2f2f2;
}

.media-cptz-box ul {
  padding: 2px;
}

.media-cptz-box li {
  width: 358px;
  float: left;
  margin-right: 60px;
  margin-top: 60px;
}

.media-cptz-box li.num3,
.media-cptz-box li.num6 {
  margin-right: 0;
}

.media-cptz-box li a {
  display: block;
  height: 300px;
  padding: 38px 26px 35px;
  background: #fff;
  border: #c7c9d4 1px solid;
  border-radius: 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: default;
  position: relative;
}

.media-cptz-box li .img {
  display: block;
  height: 80px;
  text-align: center;
  overflow: hidden;
}

.media-cptz-box li .img img {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.media-cptz-box li .title {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 25px 0 15px;
  background: url(../images/media-tit-line.png) no-repeat center bottom;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 24px;
}

.media-cptz-box li .intro {
  font-size: 16px;
  color: #666;
  line-height: 28px;
  margin-top: 25px;
  text-align: justify;
  max-height: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.media-cptz-box li a:hover {
  color: #545e96;
  border-color: #a9aeca;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 8px 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 8px 2px;
}

.media-cptz-box li a:hover img {
  margin-top: -80px;
}

.media-cpgn {
  padding: 60px 0;
  background: #F9FBFF;
}

.media-cpgn-box {
  overflow: hidden;
}

.media-cpgn-box ul {
  margin-right: -26px;
}

.media-cpgn-box li {
  width: 380px;
  float: left;
  margin: 10px 10px;
  text-align: center;
  background: #fff;
}

.media-cpgn-box li a {
  display: block;
  cursor: default;
}

.media-cpgn-box li .img {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  padding-top: 69px;
}

.media-cpgn-box li .title {
  display: block;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 24px 0 50px 0;
}

.media-cpgn-box li .num {
  font-size: 24px;
  color: #1c2974;
}

.media-cpgn-box li a:hover {
  color: #1c2974;
  background: #eef1ff;
}

.media-cpgn-box li a:hover img {
  right: 30px;
}

@media (min-width: 992px) and (max-width:1199px) {
  .media-cptz-box li {
    width: 302px;
    margin: 40px 40px 0 0;
  }

  .media-cptz-box li a {
    padding: 38px 20px 35px;
  }

  .media-cpgn-box li {
    width: 319px;
  }

  .media-cpgn-box li a {
    padding-left: 20px;
  }
}

@media (max-width:991px) {
  .media-cptz {
    padding: 30px 0;
  }

  .media-cptz-box li {
    width: 46%;
    margin: 30px 2% 0 !important;
  }

  .media-cpgn {
    padding: 30px 0;
  }

  .media-cpgn-box ul {
    margin: 15px -1% 0;
  }

  .media-cpgn-box li {
    width: 31.3%;
    margin: 15px 1% 0;
  }

  /* .media-cpgn-box li a {
    padding-left: 20px;
    padding-top: 20px;
    height: 100px;
  } */
}

@media (max-width:767px) {
  .media-cptz {
    padding: 20px 0;
  }

  .media-cptz-box li {
    width: 100%;
    margin: 15px 0 0 !important;
  }

  .media-cptz-box li a {
    height: auto;
    padding: 25px 15px;
  }

  .media-cptz-box li .title {
    font-size: 22px;
    padding: 15px 0 10px;
  }

  .media-cptz-box li .intro {
    display: block;
    max-height: none;
    margin-top: 20px;
  }

  .media-cpgn {
    padding: 20px 0;
  }

  .media-cpgn-box ul {
    margin-top: 5px;
  }

  .media-cpgn-box li {
    width: 48%;
    margin-top: 10px;
  }

  .media-cpgn-box li a {
    padding-left: 20px;
  }

  .media-cpgn-box li img {
    height: 50px;
  }
}
@media (max-width:480px) { 
  .media-cpgn-box li {
    width: 100%;
  }
}

@media (max-width:413px) {
  .media-cpgn-box ul {
    margin: 5px 0 0;
  }

  .media-cpgn-box li {
    width: 100%;
    margin: 10px 0 0;
  }
}

/****智慧人大****/
.zhrd_cpjz {
  padding: 55px 0;
  background: #f6f6f6;
}

.zhrd_cpjz_list {
  margin-top: 60px;
}

.zhrd_cpjz_list li {
  width: 300px;
  padding: 10px 49px;
  float: left;
}

.zhrd_cpjz_list li.num2 {
  border-left: 1px solid #e6eaf3;
  border-right: 1px solid #e6eaf3;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.zhrd_cpjz_list li a {
  display: block;
  cursor: default;
}

.zhrd_cpjz_list li .img {
  width: 138px;
  height: 138px;
  margin: 0 auto;
}

.zhrd_cpjz_list li .title {
  display: block;
  font-size: 24px;
  color: #20253d;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 25px 0;
  overflow: hidden;
}

.zhrd_cpjz_list li .intro {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  height: 168px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-align: justify;
}

.zhrd_cpjz_list li:hover {
  transition: all 0.5s;
  background: #fdfdfd;
}

.zhrd_cpjz_list li:hover img {
  transition: all 0.5s;
  transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .zhrd_cpjz_list li {
    width: 280px;
    padding: 10px 25px;
  }

  .zhrd_cpjz_list li .intro {
    font-size: 15px;
  }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
  .zhrd_cpjz_list li {
    width: 206px;
    padding: 10px 20px;
  }

  .zhrd_cpjz_list li .title {
    margin: 15px 0;
  }

  .zhrd_cpjz_list li .intro {
    font-size: 15px;
  }
}

@media only screen and (max-width:767px) {
  .zhrd_cpjz {
    padding: 20px 0;
  }

  .zhrd_cpjz_list {
    margin-top: 20px;
  }

  .zhrd_cpjz_list li {
    width: 100%;
    margin: 0 0 20px !important;
    padding: 0;
  }

  .zhrd_cpjz_list li.num2 {
    border: 0;
    padding: 15px 0;
    border-top: 1px solid #e6eaf3;
    border-bottom: 1px solid #e6eaf3;
  }

  .zhrd_cpjz_list li .intro {
    height: auto;
    display: block;
    font-size: 14px;
    line-height: 24px;
  }

  .zhrd_cpjz_list li .title {
    font-size: 20px;
    margin: 10px 0;
  }

  .zhrd_cpjz_list li:hover {
    background: none;
  }
}

.zhrd_hxgn {
  background: #F9FBFF;
  padding: 60px 0;
}

.zhrd_hxgn_list li {
  width: 580px;
  float: left;
  margin: 10px 10px;
}


.zhrd_hxgn_list li a {
  display: block;
  font-size: 20px;
  color: #333;
  background: #fff;
  text-align: center;
  overflow: hidden;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  cursor: default;
  box-shadow: rgba(234, 234, 234, 0.3) 0 0 5px 2px;
  -webkit-box-shadow: rgba(234, 234, 234, 0.3) 0 0 5px 2px;
}

.zhrd_hxgn_list li img {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  padding-top: 69px;

}

.zhrd_hxgn_list li .img_title {
  display: block;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 24px 0 50px 0;
}

.zhrd_hxgn_list li:hover a {
  box-shadow: rgba(161, 161, 161, 0.3) 0 0 10px 3px;
  -webkit-box-shadow: rgba(161, 161, 161, 0.3) 0 0 10px 3px;
}

.zhrd_hxgn_list li:hover img {
  transition: all 0.5s;
  transform: rotateZ(-15deg);
  -ms-transform: rotateZ(-15deg);
  -moz-transform: rotateZ(-15deg);
  -webkit-transform: rotateZ(-15deg);
}

.zhrd_hxgn_list li:hover .img_title {
  color: #e1130f;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .zhrd_hxgn_list li {
    width: 461px;
    margin: 35px 35px 0 0;
  }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
  .zhrd_hxgn_list {
    margin-top: 20px;
  }

  .zhrd_hxgn_list li {
    width: 47%;
    margin: 0 1.5% 20px !important;
  }

  /* .zhrd_hxgn_list li a {
    height: 126px;
    padding-top: 25px;
  } */

  .zhrd_hxgn_list li .img_title {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .zhrd_hxgn {
    padding: 30px 0;
  }

  .zhrd_hxgn_list {
    margin-top: 20px;
  }

  .zhrd_hxgn_list li {
    width: 100%;
    margin: 0 1.5% 20px !important;
  }

  /* .zhrd_hxgn_list li a {
    height: 126px;
    padding-top: 25px;
  } */

  .zhrd_hxgn_list li .img_title {
    font-size: 16px;
  }
}

@media only screen and (max-width:480px) {
  .zhrd_hxgn_list li {
    width: 100%;
    margin: 0 1.5% 15px !important;
  }
}

@media only screen and (max-width:374px) {
  .zhrd_hxgn_list li {
    width: 100%;
    margin: 0 1.5% 10px !important;
  }
}

/****智慧政协****/
.zhzx_hxgn {
  padding: 35px 0 50px;
  background: #F9FBFF;
}

.zhzx_hxgn_list {
  margin-top: 60px;
}

.zhzx_hxgn_list li {
  background: #fff;
  width: 180px;
  height: 180px;
  float: left;
  margin: 10px 10px;
}

.zhzx_hxgn_list li a {
  display: block;
  font-size: 20px;
  padding: 30px 0 0;
  color: #20253d;
  text-align: center;
  overflow: hidden;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  cursor: default;
}

.zhzx_hxgn_list li img {
  display: block;
  /* height: 128px; */
  margin: 0 auto;
}

.zhzx_hxgn_list li .img_title {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/dj_line01.png) top center no-repeat;
  padding: 30px 0;
}

.zhzx_hxgn_list li:hover a {
    padding-top: 10px;
    color: #77cdcc;
}

.zhzx_hxgn_list li:hover .img_title {
  color: #6f82ff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .zhzx_hxgn_list li {
    width: 145px;
    /* margin: 0 20px 60px 0; */
  }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
  .zhzx_hxgn {
    padding: 50px 0 30px;
  }

  .zhzx_hxgn_list {
    margin-top: 40px;
  }

  .zhzx_hxgn_list li {
    width: 22.32%;
    /* margin: 0 1.5% 25px !important; */
  }

  .zhzx_hxgn_list li .img_title {
    font-size: 16px;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .zhzx_hxgn {
    padding: 30px 0;
  }

  .zhzx_hxgn_list {
    margin-top: 20px;
  }

  .zhzx_hxgn_list li {
    width: 30.33%;
    margin: 0 1.5% 20px !important;
  }

  .zhzx_hxgn_list li .img_title {
    font-size: 16px;
    margin-top: 10px;
  }

  /* .zhzx_hxgn_list li img {
    height: 98px;
  } */
}

@media only screen and (max-width:480px) {
  .zhzx_hxgn_list li {
    width: 100%;
    margin: 0 1.5% 15px !important;
  }
}

@media only screen and (max-width:374px) {
  .zhzx_hxgn_list li {
    width: 100%;
    margin: 0 1.5% 10px !important;
  }
}

/****应用价值****/
.zhzx_yyjz {
  padding: 60px 0;
}

.zhzx_yyjz_list {
  height: 560px;
  padding: 60px 10px;
  overflow: hidden;
}

.zhzx_yyjz_list li {
  width: 24%;
  margin: 38px 0;
  float: left;
  background: #fff;
  box-shadow: rgba(161, 161, 161, 0.2) 0 0 8px 2px;
  -webkit-box-shadow: rgba(161, 161, 161, 0.2) 0 0 8px 2px;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

.zhzx_yyjz_list li a {
  display: block;
  height: 453px;
  padding: 0 35px 30px;
  text-align: center;
  overflow: hidden;
}

.zhzx_yyjz_list li .img {
  width: 141px;
  height: 141px;
  margin: 0 auto;
  overflow: hidden;
}

.zhzx_yyjz_list li img {
  display: block;
  height: 282px;
  /*transition: all .5s;-ms-transition: all .5s;-moz-transition: all .5s;-webkit-transition: all .5s;*/
}

.zhzx_yyjz_list li .img_title {
  display: block;
  font-size: 24px;
  color: #20253d;
  margin: 15px 0 0;
  height: 26px;
  line-height: 26px;
}

.zhzx_yyjz_list li .title {
  display: block;
  font-size: 24px;
  color: #20253d;
  height: 68px;
  line-height: 34px;
  text-align: center;
  overflow: hidden;
}

.zhzx_yyjz_list li .intro {
  margin-top: 20px;
  font-size: 15px;
  line-height: 28px;
  color: #666;
  height: 224px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  text-align: justify;
}

.zhzx_yyjz_list li.active {
  width: 28%;
  position: relative;
  z-index: 1;
  margin: 0;
  box-shadow: rgba(161, 161, 161, 0.3) 0 0 10px 3px;
  -webkit-box-shadow: rgba(161, 161, 161, 0.3) 0 0 10px 3px;
}

.zhzx_yyjz_list li.active a {
  padding-top: 30px;
  height: 490px;
}

.zhzx_yyjz_list li.active img {
  margin-top: -141px;
}

.zhzx_yyjz_list li.active .title {
  font-size: 28px;
  margin-top: 10px;
}

.zhzx_yyjz_list li.active .intro {
  font-size: 17px;
  height: 256px;
  line-height: 32px;
}

@media only screen and (max-width: 991px) {
  .zhzx_yyjz_list {
    height: auto;
    padding: 30px 10px 0;
  }

  .zhzx_yyjz_list li {
    width: 46% !important;
    margin: 20px 2% !important;
  }

  .zhzx_yyjz_list li a {
    height: 453px !important;
  }

  .zhzx_yyjz_list li.active a {
    padding-top: 30px !important;
    height: 423px !important;
  }

  .zhzx_yyjz_list li .title {
    font-size: 24px !important;
    transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
  }

  .zhzx_yyjz_list li img {
    transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
  }

  .zhzx_yyjz_list li .intro {
    font-size: 15px !important;
    height: 224px !important;
    line-height: 28px !important;
    transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
  }
}

@media only screen and (max-width: 767px) {
  .zhzx_yyjz {
    padding: 30px 0;
  }

  .zhzx_yyjz_list {
    padding-top: 20px;
  }

  .zhzx_yyjz_list li {
    width: 100% !important;
    margin: 10px 0 !important;
  }

  .zhzx_yyjz_list li a,
  .zhzx_yyjz_list li.active a {
    height: auto !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .zhzx_yyjz_list li .title {
    font-size: 20px !important;
    line-height: 28px;
    height: auto;
  }

  .zhzx_yyjz_list li .intro {
    margin-top: 10px;
    height: auto !important;
    line-height: 24px !important;
    font-size: 14px !important;
  }
}

/*2021-5-12*/
.bg {
  background: #f9f9f9;
}

.pro-success-case {
  padding: 42px 0;
}

.success-case-list {
  margin: 30px 0 0;
}

.success-case-list ul {
  margin-right: -25px;
}

.success-case-list li {
  width: 220px;
  float: left;
  margin: 9px 20px 9px 0;
}

.success-case-list li a {
  display: block;
  font-size: 16px;
  height: 46px;
  line-height: 46px;
  padding: 0 5px;
  text-align: center;
  border: #ddd 1px solid;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: default;
}

.success-case-list li a {
  background: #fff;
}

.case_list_3 li a:hover,
.success-case-list li a:hover {
  border-color: #0189ff;
  background: #0189ff;
  box-shadow: #e4e2e2 0 0 6px 3px;
  -webkit-box-shadow: #e4e2e2 0 0 6px 3px;
  color: #fff;
  transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}

@media only screen and (max-width: 1199px) {
  .success-case-list ul {
    margin-right: -20px;
  }

  .success-case-list li {
    width: 182px;
    margin: 9px 16px 9px 0;
  }
}

@media only screen and (max-width: 991px) {
  .pro-success-case {
    padding: 25px 0;
  }

  .success-case-list ul {
    margin-right: -15px;
  }

  .success-case-list li {
    width: 177px;
    margin: 9px 15px 9px 0;
  }
}

@media only screen and (max-width: 767px) {
  .pro-success-case {
    padding: 15px 0;
  }

  .success-case-list {
    margin-top: 15px;
  }

  .success-case-list ul {
    margin-right: 0;
  }

  .success-case-list li {
    width: 47%;
    margin: 9px 1.5%;
  }
}

/* 智慧纪监 */
.zhjj-cpjz {
  padding: 55px 0;
  background: #f8fbff;
}

.zhjj-cpjz-box {
  padding: 10px;
  height: auto;
  overflow: hidden;
}

.zhjj-cpjz-box ul {
  width: 110%;
  height: auto;
}

.zhjj-cpjz-box ul li {
  width: 365px;
  height: 75px;
  background: #fff;
  box-shadow: rgba(237, 244, 255, 0.3) 0 0 8px 2px;
  -webkit-box-shadow: rgba(237, 244, 255, 0.3) 0 0 8px 2px;
  border-radius: 6px;
  margin-right: 42px;
  margin-top: 50px;
  padding: 25px 0 20px;
  float: left;
}

.zhjj-cpjz-box ul li:hover {
  box-shadow: rgba(4, 100, 246, 0.3) 0 0 8px 2px;
  -webkit-box-shadow: rgba(4, 100, 246, 0.3) 0 0 8px 2px;
}

.zhjj-cpjz-box ul li a {
  display: block;
}

.zhjj-cpjz-box ul li .img {
  float: left;
  width: 106px;
  text-align: center;
  line-height: 75px;
}

.zhjj-cpjz-box ul li .zhjj-cpjz-li {
  margin-left: 106px;
  padding-right: 10px;
}

.zhjj-cpjz-box ul li .zhjj-cpjz-li p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zhjj-cpjz-box ul li .zhjj-cpjz-li .title {
  font-size: 22px;
  color: #3d446d;
  height: 40px;
  line-height: 40px;
}

.zhjj-cpjz-box ul li .zhjj-cpjz-li .remarks {
  line-height: 35px;
  height: 35px;
  color: #999;
  font-size: 16px;
}

.bg-ffffff {
  background: #fff;
}

.zhjj-hxgn-box {
  width: 100%;
  height: auto;
  overflow: hidden;
  height: 220px;
  margin-top: 50px;
}

.zhjj-hxgn-box ul {
  width: 110%;
}

.zhjj-hxgn-box ul li {
  width: 175px;
  height: 220px;
  border-radius: 6px;
  float: left;
  margin-right: 28px;
  background: #fff url("./../images/zhjj-hxgn-bg.png") no-repeat center 127px;
}

.zhjj-hxgn-box ul li a {
  display: block;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding-top: 38px;
  height: 180px;
}

.zhjj-hxgn-box ul li a .ico {
  display: block;
  height: 88px;
  width: 100%;
}

.zhjj-hxgn-box ul li.num1 a .ico {
  background: url("./../images/zhjj-hxgn-icon01.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num2 a .ico {
  background: url("./../images/zhjj-hxgn-icon02.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num3 a .ico {
  background: url("./../images/zhjj-hxgn-icon03.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num4 a .ico {
  background: url("./../images/zhjj-hxgn-icon04.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num5 a .ico {
  background: url("./../images/zhjj-hxgn-icon05.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num6 a .ico {
  background: url("./../images/zhjj-hxgn-icon06.png") no-repeat center top;
}

.zhjj-hxgn-box ul li a .tit {
  padding-top: 31px;
  height: 20px;
  line-height: 20px;
  color: #333;
  font-size: 20px;
  display: block;
  text-align: center;
}

.zhjj-hxgn-box ul li:hover {
  background: #155ddd url("./../images/zhjj-hxgn-bg-h.png") no-repeat center 127px;
}

.zhjj-hxgn-box ul li.num1:hover a .ico {
  background: url("./../images/zhjj-hxgn-icon01-h.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num2:hover a .ico {
  background: url("./../images/zhjj-hxgn-icon02-h.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num3:hover a .ico {
  background: url("./../images/zhjj-hxgn-icon03-h.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num4:hover a .ico {
  background: url("./../images/zhjj-hxgn-icon04-h.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num5:hover a .ico {
  background: url("./../images/zhjj-hxgn-icon05-h.png") no-repeat center top;
}

.zhjj-hxgn-box ul li.num6:hover a .ico {
  background: url("./../images/zhjj-hxgn-icon06-h.png") no-repeat center top;
}

.zhjj-hxgn-box ul li:hover a .tit {
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  .zhjj-cpjz-box ul li {
    width: 310px;
    margin-right: 20px;
  }

  .zhjj-cpjz-box ul li .img {
    width: 70px;
  }

  .zhjj-cpjz-box ul li .zhjj-cpjz-li {
    margin-left: 70px;
  }

  .zhjj-hxgn-box ul li {
    margin-right: 20px;
  }

  .zhjj-hxgn-box ul li {
    width: 157px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .zhjj-cpjz {
    padding: 20px 0;
  }

  .zhjj-cpjz-box ul,
  .zhjj-hxgn-box ul {
    width: 100%;
  }

  .zhjj-hxgn-box {
    height: auto;
    margin-top: 0;
    padding-top: 10px;
  }

  .zhjj-cpjz-box ul li {
    box-shadow: none;
    -webkit-box-shadow: none;
    width: 49%;
    margin: 10px .5% 0;
  }

  .zhjj-hxgn-box ul li {
    width: 31.333%;
    margin: 10px 1% 0;
  }
}

@media only screen and (max-width: 600px) {
  .zhjj-cpjz-box ul li {
    width: 100%;
    margin: 10px 0 0;
  }

  .zhjj-hxgn-box ul li {
    width: 48%;
  }
}

/*数字乡村云平台*/
.pro_szxc {
  background: #f2f8f4 url("../images/szxc-gs-bg.png") bottom center no-repeat;
}

.pro_szxc_info {
  font-size: 18px;
  text-align: center;
  line-height: 32px;
  margin-top: 7px;
  color: #999;
}

/*政策助推*/
.pro-szxc_zczt {
  padding: 50px 0 76px;
}

.event_box {
  margin-top: 40px;
}

.parHd ul {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background: url("../images/szxc-line.png") 0 62px repeat-x;
}

.parHd li {
  float: left;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 42px;
  color: #000;
  width: 209px;
  position: relative;
}

.parHd li i {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/history-btn.png") center no-repeat;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 0;
}

.parHd li.active i {
  background-image: url("../images/history-btnhover.png");
}

.parHd li.active {
  color: #3dba63;
}

.slideBox {
  margin-top: 103px;
  position: relative;
}

.leftimg {
  position: absolute;
  top: -61px;
  left: -69px;
  width: 711px;
  height: 404px;
  background: url("../images/szxc-history-bg.png") 0 0 no-repeat;
}

.leftimg img {
  float: right;
  padding: 43px 42px 0 0;
}

.right-info {
  width: 499px;
  height: 262px;
  padding-left: 245px;
  padding-top: 58px;
  float: right;
  background: #f3f4f7;
}

.right-info h4 {
  line-height: 80px;
  background: url("../images/point of time.png") 80px 3px no-repeat;
}

.right-info h4 span {
  display: block;
  font-size: 36px;
  font-weight: bold;
  padding-left: 81px;
  background: url("../images/time-btn.png") left 0 no-repeat;
}

.right-info p {
  width: 392px;
  margin-left: 25px;
  text-indent: 2em;
  font-size: 18px;
  line-height: 30px;
  margin-top: 10px;
  color: #999;
  text-align: justify;
  text-justify: inter-ideograph;
  word-wrap: break-word;
}

/*场景应用*/
.pro-szxc_cj {
  height: 618px;
  padding: 56px 0 0;
  margin-bottom: 40px;
  background: url("../images/szxc-cj-bg.png") bottom center no-repeat;
}

.szxc_cj_tab {
  margin-top: 44px;
}

.szxc_cj_tab li {
  float: left;
  margin-left: 105px;
}

.szxc_cj_tab li:first-child {
  margin-left: 0;
}

.szxc_cj_tab li a {
  display: block;
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  font-size: 18px;
  color: #666;
  border-left: #999 1px solid;
}

.szxc_cj_tab li.active a {
  color: #3dba63;
  border-color: #3dba63;
}

.szxc_cj_box {
  height: 385px;
  padding: 48px 0 0 40px;
  background: #fff;
  box-shadow: #d8d8d8 0 0 10px 1px;
  margin-top: 30px;
}

.szxc_cj_left {
  width: 390px;
  float: left;
}

.szxc_cj_top {
  background: url("../images/Digital Governance.png") 82px 0 no-repeat;
  position: relative;
  padding-left: 80px;
  padding-top: 10px;
}

.szxc_cj_szhm .szxc_cj_top {
  background-image: url("../images/Digital Benefiting.png");
}

.szxc_cj_szny .szxc_cj_top {
  background-image: url("../images/Digital Agriculture.png");
}

.szxc_cj_lsxc .szxc_cj_top {
  background-image: url("../images/Green countryside.png");
}

.szxc_cj_szjj .szxc_cj_top {
  background-image: url("../images/Digital Economy.png");
}

.szxc_cj_ddlj .szxc_cj_top {
  background-image: url("../images/Multi-terminal Connection.png");
  padding-top: 5px;
}

.szxc_cj_top img {
  position: absolute;
  top: 0;
  left: -5px;
}

.szxc_cj_szzl .szxc_cj_top img {
  left: 15px;
  top: 10px;
}

.szxc_cj_top h2 {
  font-size: 36px;
  font-weight: bold;
}

.szxc_cj_top p {
  font-size: 20px;
  line-height: 28px;
}

.szxc_cj_info {
  margin-left: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #999;
  text-indent: 2em;
  margin-top: 25px;
  text-align: justify;
  text-justify: inter-ideograph;
  word-wrap: break-word;
}

.szxc_cj_ddlj .szxc_cj_info {
  margin-left: 70px;
  margin-top: 40px;
}

.szxc_cj_ddlj .szxc_cj_info p {
  padding-left: 14px;
  font-size: 16px;
  line-height: 30px;
  margin-top: 25px;
  text-align: left;
  text-indent: 0;
  background: url(../images/cj_szjj_line.png) 0 8px no-repeat;
}

/*右侧*/
.szxc_cj_right {
  width: 661px;
  margin-right: 40px;
}

.cj_szhm_list {
  margin-top: 10px;
}

.cj_szhm_list li {
  width: 305px;
  float: left;
  margin: 0 0 25px 25px;
}

/*.cj_szhm_list li.num1,.cj_szhm_list li.num3{margin-left: 0;}*/
.cj_szhm_list li a {
  display: block;
  height: 123px;
  border: #ddd 1px solid;
  padding: 25px 20px 0 80px;
  position: relative;
}

.cj_szhm_list li img {
  position: absolute;
  top: 28px;
  left: 22px;
}

.cj_szhm_list li .img_title {
  display: block;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
}

.cj_szhm_list li p {
  font-size: 16px;
  line-height: 26px;
  color: #999;
}

.cj_szhm_list li a:hover {
  transition: all .6s;
  color: #3dba63;
  box-shadow: #d8d8d8 0 0 10px 1px;
}

/*切换-数字农业*/
.cj_szny_list li {
  width: 195px;
  float: left;
  margin: 0 0 25px 25px;
}

/*.cj_szny_list li.num1,.cj_szny_list li.num4{margin-left: 0;}*/
.cj_szny_list li a {
  display: block;
  height: 123px;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  border: #ddd 1px solid;
  padding: 25px 0 0 0;
  position: relative;
}

.cj_szny_list li .img_title {
  display: block;
  margin-top: 10px;
}

.cj_szny_list li a:hover img {
  transition: all .6s;
  -webkit-transition: all .6s;
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
}

.cj_szny_list li a:hover {
  color: #3dba63;
  border-color: #3dba63;
}

.cj_szny_list li.num6 .img_title {
  width: 120px;
  text-align: justify;
  text-justify: inter-ideograph;
  word-wrap: break-word;
  margin: 10px auto 0;
}

/*切换-数字经济*/
.cj_szjj_list li {
  width: 195px;
  float: left;
  margin-left: 25px;
}

/*.cj_szjj_list li.num1{margin-left: 0;}*/
.cj_szjj_list li a {
  display: block;
  height: 270px;
  font-size: 20px;
  line-height: 30px;
  padding: 35px 20px 0;
  text-align: center;
  border: #ddd 1px solid;
}

.cj_szjj_list li h4 {
  display: block;
  margin-top: 10px;
}

.cj_szjj_list li p {
  padding-left: 14px;
  font-size: 16px;
  line-height: 26px;
  color: #999;
  margin-top: 20px;
  text-align: left;
  background: url("../images/cj_szjj_line.png") 0 8px no-repeat;
}

.cj_szjj_list li a:hover {
  color: #3dba63;
  border-color: #3dba63;
}

.cj_szjj_list li a:hover img {
  transition: all .6s;
  -webkit-transition: all .6s;
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
}

/*多端应用连接*/
.cj_ddlj_img {
  text-align: center;
}

.cj_ddlj_img img {
  max-width: 100%;
}

.pro-szxc-success-case li a:hover {
  border-color: #3dba63;
  background: #3dba63;
}

@media only screen and (max-width: 1199px) {

  /*政策助推*/
  .parHd li {
    margin: 0;
    width: 160px;
  }

  .leftimg {
    width: 600px;
    background-size: 100% 100%;
  }

  .right-info {
    padding-left: 158px;
    width: 460px;
  }

  /*场景应用*/
  .szxc_cj_box {
    padding: 48px 0 0 20px;
  }

  .szxc_cj_tab li {
    margin-left: 65px;
  }

  .szxc_cj_right {
    width: 562px;
    margin-right: 20px;
  }

  .cj_szhm_list li {
    width: 256px;
  }

  .cj_szhm_list li a {
    padding-left: 60px;
  }

  .cj_szhm_list li img {
    left: 15px;
  }

  .cj_szny_list li {
    width: 162px;
  }

  .cj_szjj_list li {
    width: 162px;
  }
}

@media only screen and (max-width: 991px) {

  /*政策助推*/
  .pro-szxc_zczt {
    padding: 50px 0;
  }

  .parHd li {
    width: 128px;
  }

  .leftimg {
    display: none;
  }

  .right-info {
    width: auto;
    float: none;
    padding-left: 158px;
  }

  .slideBox {
    margin-top: 40px;
  }

  /*场景应用*/
  .pro-szxc_cj {
    height: auto;
    padding: 40px 0;
    margin-bottom: 0;
    background-color: #f0f1f6;
  }

  .szxc_cj_tab li {
    margin-left: 18px;
  }

  .szxc_cj_box {
    height: auto;
    padding: 20px;
  }

  .szxc_cj_left {
    width: auto;
    float: none;
  }

  .szxc_cj_right {
    width: auto;
    float: none;
    margin-right: 0;
    margin-top: 20px;
  }

  .cj_szhm_list li {
    width: 337px;
    margin: 0 12px 25px;
  }

  .cj_szny_list li {
    width: 216px;
    margin: 0 12px 25px;
  }

  .cj_szjj_list li {
    width: 206px;
  }
}

@media only screen and (max-width: 767px) {
  .pro_szxc_info {
    padding: 0 10px;
  }

  /*政策助推*/
  .parHd {
    position: relative;
    padding: 0 40px;
  }

  .parHd .sNext,
  .parHd .sPrev {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 5;
    width: 40px;
    height: 50px;
    cursor: pointer;
    background: url(../images/lxzd-jt.png) no-repeat;
  }

  .parHd .sPrev {
    left: 0;
    background-position: 0 0;
  }

  .parHd .sNext {
    right: 0;
    background-position: -40px 0;
  }

  .parHd li {
    width: 25%;
    margin: 0;
  }

  .pro-szxc_zczt {
    padding: 35px 0;
  }

  .right-info {
    width: auto;
    float: none;
    height: auto;
    padding: 30px 20px 40px;
  }

  .right-info p {
    width: auto;
  }

  .right-info h4 span {
    font-size: 30px;
  }

  /*场景应用*/
  .szxc_cj_box {
    padding: 15px;
  }

  .szxc_cj_tab {
    margin: 30px 10px 0;
  }

  .szxc_cj_tab li {
    margin: 0 10px 10px !important;
  }

  .szxc_cj_top h2 {
    font-size: 30px;
  }

  .szxc_cj_info {
    margin-left: 0;
  }

  .cj_szhm_list li {
    width: 48%;
    margin: 0 1% 15px;
  }

  .cj_szny_list li {
    width: 31.33%;
    margin: 0 1% 15px;
  }

  .cj_szjj_list li {
    width: 31.33%;
    margin: 0 1%;
  }
}

@media only screen and (max-width: 479px) {

  /*政策助推*/
  .parHd li {
    width: 33.33%;
    font-size: 16px;
  }

  .right-info {
    padding: 20px 10px 30px;
  }

  .right-info h4 {
    background-size: 200px;
  }

  .right-info p {
    margin: 10px 15px 0;
  }

  /*场景应用*/
  .cj_szhm_list li {
    width: 100%;
    margin: 0 0 15px;
  }

  .cj_szhm_list li a {
    height: auto;
    padding: 25px 20px 20px 80px;
  }

  .cj_szny_list li {
    width: 48%;
  }

  .cj_szny_list li a {
    height: 100px;
  }

  .cj_szjj_list li {
    width: 48%;
    margin: 0 1% 15px;
  }

  .szxc_cj_ddlj .szxc_cj_info {
    margin: 20px 20px 0;
  }
}

.ls_lxwm {
  padding: 44px 0;
  background: #f9f9f9;
}

.ls_lxwm_info {
  font-size: 26px;
  line-height: 2;
  text-align: center;
  margin-top: 30px;
  color: #999;
}

.ls_lxwm_wrap {
  padding: 48px 0 352px;
  background: #f9f9f9 url("../images/lxwm-bg.png") bottom center no-repeat;
}

.ls_lxwm_con {
  padding-left: 196px;
  padding-top: 46px;
}

.ls_lxwm_li {
  line-height: 50px;
  font-size: 24px;
}

.ls_lxwm_li span {
  font-weight: bold;
  padding-right: 24px;
  letter-spacing: 2px;
  text-align: left;
}

@media only screen and (max-width: 1199px) {
  .ls_lxwm_con {
    padding-left: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .ls_lxwm_con {
    padding: 30px 20px 20px;
  }

  .ls_lxwm_li {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .ls_lxwm_wrap {
    background-size: auto 300px;
    padding: 20px 0 200px;
  }

  .ls_lxwm_con {
    padding: 20px 10px 10px;
  }

  .ls_lxwm_li {
    font-size: 18px;
    line-height: 32px;
    padding: 5px 0;
  }
}

/*人才招聘列表*/
* {
  outline: none;
}

.red {
  color: red;
}

.ls_job {
  padding: 50px 0;
}

.job-title {
  font-size: 40px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 10px;
}

.job-info {
  text-align: center;
  font-size: 16px;
  color: #08f;
  font-weight: bold;
  margin-bottom: 20px;
}

.job-list li,
.job-tit li {
  position: relative;
  text-align: center;
  font-size: 16px;
  height: 70px;
  line-height: 70px;
  border-bottom: 1px solid #ededed;
}

.job-tit li {
  height: 60px;
  line-height: 60px;
  background: #f9f9f9;
  border: none;
}

.job-list li:hover,
.job-list li:hover a {
  color: #08f;
}

.job-list li p,
.job-tit li p {
  position: absolute;
  top: 0;
  display: block;
}

.job-list li .li5,
.job-tit li .li5 {
  right: 0;
  width: 150px;
}

.job-list li .li4,
.job-tit li .li4 {
  right: 150px;
  width: 230px;
}

.job-list li .li3,
.job-tit li .li3 {
  right: 380px;
  width: 260px;
}

.job-list li .li2,
.job-tit li .li2 {
  right: 640px;
  width: 240px;
}

.job-list li .li1,
.job-tit li .li1 {
  left: 0;
  position: static;
  margin-right: 880px;
}

.ls_job .pagination {
  text-align: center;
}

@media only screen and (max-width: 1199px) {

  .job-list li .li5,
  .job-tit li .li5 {
    width: 130px;
  }

  .job-list li .li4,
  .job-tit li .li4 {
    right: 130px;
    width: 210px;
  }

  .job-list li .li3,
  .job-tit li .li3 {
    right: 340px;
    width: 240px;
  }

  .job-list li .li2,
  .job-tit li .li2 {
    right: 580px;
    width: 220px;
  }

  .job-list li .li1,
  .job-tit li .li1 {
    margin-right: 700px;
  }
}

@media only screen and (max-width: 991px) {
  .ls_job {
    padding: 30px 10px;
  }

  .job-title {
    font-size: 34px;
    line-height: 2;
    margin-bottom: 20px;
  }

  .job-list li .li5,
  .job-tit li .li5 {
    width: 80px;
  }

  .job-list li .li4,
  .job-tit li .li4 {
    right: 80px;
    width: 120px;
  }

  .job-list li .li3,
  .job-tit li .li3 {
    right: 200px;
    width: 150px;
  }

  .job-list li .li2,
  .job-tit li .li2 {
    right: 350px;
    width: 100px;
  }

  .job-list li .li1,
  .job-tit li .li1 {
    margin-right: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .ls_job {
    padding: 10px 10px 20px 10px;
  }

  .job-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .job-list li,
  .job-tit li {
    height: auto;
    min-height: 35px;
    line-height: 35px;
  }

  .job-list li p,
  .job-tit li p {
    padding: 5px 0;
  }

  .job-list li .li4,
  .job-list li .li5,
  .job-tit li .li4,
  .job-tit li .li5 {
    display: none;
  }

  .job-list li .li3,
  .job-tit li .li3 {
    right: 0;
    top: 50%;
    margin-top: -22px;
    width: 150px;
  }

  .job-list li .li2,
  .job-tit li .li2 {
    right: 150px;
    top: 50%;
    margin-top: -22px;
    width: 100px;
  }

  .job-list li .li1,
  .job-tit li .li1 {
    margin-right: 250px;
    min-height: 35px;
  }
}

/*人才招聘详细*/
.ls-jobbg {
  margin-top: 60px;
  background: linear-gradient(111deg, #ebf1fe 32%, #e6f2fe 61%);
}

.jobs-info {
  position: relative;
}

.jobs-info-left {
  display: inline-block;
  padding-right: 250px;
  min-height: 160px;
  background: url("../images/job-infoico.png") right bottom no-repeat;
  font-size: 16px;
}

.jobs-info-title {
  font-size: 32px;
  line-height: 46px;
  font-weight: bold;
  padding: 30px 0 5px 0;
}

.jobs-info-num {
  line-height: 30px;
}

.jobs-info-num .sp {
  color: #666;
  display: inline-block;
  padding-right: 12px;
  margin-right: 12px;
  background: url("../images/job-line.png") right center no-repeat;
}

.jobs-info-num .sp:last-child {
  background-image: none;
  padding-right: 0;
}

.jobs-info-date {
  line-height: 30px;
  color: #999;
}

.jobs-share {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -30px;
}

.jobs-share .share-bar a.share-qzone,
.jobs-share .share-bar a.share-tsina {
  display: none;
}

.share-bar,
.share-box {
  width: auto;
}

.jobs-share .share-weixin {
  background: url("../images/share-ico.png") left bottom no-repeat;
  width: 59px;
  height: 23px;
}

.jobs-share .weixin-share-open {
  bottom: auto;
  top: 30px;
  left: -32px;
  padding: 10px;
  height: auto;
  width: 120px;
  border: 1px #ddd solid;
  background: #fff !important;
}

.jobs-share .weixin-share-open .weixin-wrap {
  height: auto;
}

.jobs-share .weixin-share-open .weixin-wrap .weixin-qrcode {
  float: none;
  margin: 10px auto 0 auto;
}

.jobs-share .weixin-share-open .weixin-wrap p {
  float: none;
  text-align: center;
  padding: 10px 0 0 !important;
  width: auto;
}

.jobs-share .weixin-share-open .weixin-close:before {
  display: block;
  font-size: 14px;
  content: "x";
  text-align: center;
  color: #999;
  font-family: arial;
}

.jobs-article {
  padding: 30px 0;
}

.jobs-article .jobs-article-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 2;
}

.jobs-article-info {
  font-size: 16px;
  line-height: 2;
  color: #555;
  padding: 0 0 20px 0;
}

.jobs-article-contact {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}

.jobs-article-contact .jobs-tel {
  position: relative;
  padding-left: 90px;
}

.jobs-article-contact .jobs-tel .tit {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
}

.jobs-link {
  margin-top: 30px;
}

.jobs-link a {
  display: inline-block;
  background: #08f;
  font-size: 18px;
  color: #fff;
  height: 44px;
  line-height: 44px;
  width: 140px;
  text-align: center;
  border-radius: 22px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.jobs-link a:hover {
  background: #f60;
}

@media only screen and (max-width: 767px) {
  .ls-jobbg {
    margin-top: 0;
  }

  .jobs-info-left {
    padding-right: 0;
    display: block;
    background-image: none;
    text-align: center;
  }

  .jobs-share {
    display: none;
  }

  .jobs-article {
    padding: 10px 10px 20px 10px;
  }

  .jobs-link {
    margin-top: 10px;
  }

  .jobs-article-info {
    font-size: 14px;
  }

  .jobs-article-contact {
    font-size: 16px;
  }

  .jobs-article-contact .jobs-tel {
    padding-left: 0;
  }

  .jobs-article-contact .jobs-tel .tit {
    display: block;
    position: static;
  }

  .jobs-article .jobs-article-title {
    font-size: 20px;
  }
}

/*人才招聘写信*/
.jobs-body {
  background: #f3f4f7;
}

.jobs-form {
  background: #fff;
  margin: 180px 0 80px 0;
  padding: 40px;
}

.jobs-form-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

.jobs-form-list {
  margin: 0 230px;
}

.jobs-form-list li {
  min-height: 48px;
  line-height: 48px;
  font-size: 16px;
  margin-top: 15px;
}

.jobs-form-list li .tit {
  width: 100px;
  white-space: nowrap;
  height: 48px;
  float: left;
  display: block;
}

.jobs-form-list li .tit .font2 {
  display: inline-block;
  padding: 0 15px;
}

.jobs-form-list li .tit .font1 {
  display: inline-block;
  padding: 0 4px 0 5px;
}

.jobs-form-list li .type {
  margin-left: 100px;
}

.jobs-form-list li .type select {
  width: 100%;
  box-sizing: border-box;
  border: #ddd 1px solid;
  padding: 0 5px;
  height: 44px;
  border-radius: 4px;
}

.jobs-form-list li .type input {
  width: 274px;
  box-sizing: border-box;
  padding: 0 5px;
  border: 1px solid #ddd;
  height: 44px;
  line-height: 44px;
  border-radius: 4px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.jobs-form-list li .type .btn-upload {
  width: 140px;
  text-align: left;
  background: url("../images/btn-upload.png") 102px center no-repeat #eee;
  border: none;
  color: #666;
  height: 46px;
  line-height: 46px;
  text-indent: 20px;
}

.jobs-form-list li .type .btn-upload:hover {
  background: url("../images/btn-upload-h.png") 102px center no-repeat #08f;
  color: #fff;
}

.jobs-form-list li .type.input-phone input {
  width: 100%;
}

.jobs-form-list li.input-submit {
  margin-top: 40px;
}

.jobs-form-list li.input-submit .btn-submit {
  background: #08f;
  border: none;
  line-height: 44px;
  color: #fff;
  width: 130px;
  height: 44px;
  border-radius: 22px;
}

.jobs-form-list li.input-submit .btn-submit:hover {
  background: #f60;
}

.jobs-form-list li input:focus::-webkit-input-placeholder {
  color: transparent;
}

.jobs-form-list li input::-webkit-input-placeholder {
  color: #999;
}

.jobs-form-list li input:-moz-placeholder {
  color: #999;
}

.jobs-form-list li input:-ms-input-placeholder {
  color: #999;
}

.jobs-form-list li .type select:focus,
.jobs-form-list li input:focus {
  border-color: #08f;
  box-shadow: 0 0 4px 0 rgba(90, 157, 226, 0.8);
}

@media only screen and (max-width: 1199px) {
  .jobs-form {
    margin: 150px 0 80px 0;
  }

  .jobs-form-list {
    margin: 0 130px;
  }
}

@media only screen and (max-width: 991px) {
  .jobs-form {
    margin: 40px 0;
    padding: 20px;
  }

  .jobs-form-list {
    margin: 0 80px;
  }
}

@media only screen and (max-width: 767px) {
  .jobs-form {
    margin: 10px;
    padding: 10px;
  }

  .jobs-form-list {
    margin: 0 10px;
  }

  .jobs-form-list li .type input {
    width: 100%;
  }

  .jobs-form-list li .input-yzm input {
    width: 150px;
  }

  .jobs-form-list li.input-submit {
    margin: 10px 0;
    text-align: center;
  }
}

@media only screen and (max-width: 410px) {
  .jobs-form-list li .input-yzm input {
    width: 100%;
  }
}

@media only screen and (max-width: 350px) {
  .jobs-form-list li {
    margin-top: 0;
  }

  .jobs-form-list li .tit {
    width: auto;
    float: none;
  }

  .jobs-form-list li.li-upload {
    margin-top: 10px;
  }

  .jobs-form-list li.li-upload .tit {
    display: none;
  }

  .jobs-form-list li .type {
    margin-left: 0;
  }
}

/*20240426数字乡村*/
@keyframes shake {

  0%,
  100% {
    transform-origin: top;
  }

  15% {
    transform: rotateZ(10deg);
  }

  30% {
    transform: rotateZ(-10deg);
  }

  45% {
    transform: rotateZ(5deg);
  }

  60% {
    transform: rotateZ(-5deg);
  }

  75% {
    transform: rotateZ(2deg);
  }
}

@-webkit-keyframes shake {

  0%,
  100% {
    transform-origin: top;
  }

  15% {
    transform: rotateZ(10deg);
  }

  30% {
    transform: rotateZ(-10deg);
  }

  45% {
    transform: rotateZ(5deg);
  }

  60% {
    transform: rotateZ(-5deg);
  }

  75% {
    transform: rotateZ(2deg);
  }
}

/*价值特性*/
.pro_jztx_con ul {
  margin-right: -37px;
}

.pro_jztx_con li {
  width: 375px;
  float: left;
  margin: 40px 37px 0 0;
}

.pro_jztx_con li .pro_jztx_item {
  position: relative;
  padding-left: 65px;
}

.pro_jztx_con li .ico {
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  left: -12px;
  top: -8px;
}

.pro_jztx_con li h2 {
  font-size: 20px;
  line-height: 32px;
}

.pro_jztx_con li p {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca7a6;
  margin-top: 6px;
}

.pro_jztx_con li:hover .ico {
  animation: shake 0.9s both;
  -webkit-animation: shake 0.9s both;
}

/*应用场景*/
.pro-szxc_cjtabs {
  padding: 60px 0 30px;
  margin-top: 60px;
  background: #f8f9fb url("../images/szxc-cj-topbg.png") bottom center no-repeat;
}

.szxc_cj_tab li {
  margin-left: 166px;
}

.pro-szxc-cj-wrap {
  padding: 34px 0 50px;
  background: #f1f3f7;
  position: relative;
}

.pro-szxc-cj-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 440px;
  background: linear-gradient(180deg, #dee4ee 0, rgba(241, 243, 247, 0) 26%);
}

.pro-szxc-text {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca7a6;
  position: relative;
  z-index: 1;
}

.pro-szxc-cj-list {
  position: relative;
  z-index: 1;
}

.pro-szxc-cj-list ul {
  margin-right: -24px;
}

.pro-szxc-cj-list li {
  width: 384px;
  float: left;
  margin: 39px 24px 0 0;
}

.pro-szxc-cj-list li .pro_cj_item {
  position: relative;
  padding: 24px 22px 10px;
  border: 2px solid #fff;
  background: linear-gradient(176deg, #f3f5f8 4%, #fefefe 91%);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.01), 6px 6px 10px 0 rgba(39, 74, 144, 0.09), inset 2px 2px 2px 0 #fff;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.01), 6px 6px 10px 0 rgba(39, 74, 144, 0.09), inset 2px 2px 2px 0 #fff;
}

.pro-szxc-cj-list li .ico {
  display: block;
  position: absolute;
  top: -16px;
  right: 20px;
}

.pro-szxc-cj-list li h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

.pro-szxc-cj-list li .pro_szxc_cj_info {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca7a6;
  margin: 12px 0 8px;
  min-height: 142px;
}

.cj-label span {
  display: inline-block;
  font-size: 14px;
  color: #85b092;
  height: 23px;
  line-height: 23px;
  margin: 4px 8px 0 0;
  padding: 0 6px;
  background: #f3f5f8;
}

.szxc-cj-whxs .pro-szxc-cj-list li .pro_szxc_cj_info {
  min-height: 105px;
}

.szxc-cj-zlyx .pro-szxc-cj-list li .pro_cj_item {
  height: 244px;
}

.pro-szxc-cj-list li:hover {
  -webkit-animation: scroll 1s 2 alternate;
  animation: scroll 1s 2 alternate;
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
}

@keyframes scroll {
  100% {
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
}

@media only screen and (max-width: 1199px) {

  .pro_jztx_con li {
    width: 310px;
    margin-right: 30px;
  }

  .szxc_cj_tab li {
    margin-left: 112px;
  }
}

@media only screen and (max-width: 991px) {
  .pro_jztx_con ul {
    margin-right: -20px;
  }

  .pro_jztx_con li {
    width: 371px;
    margin-right: 20px;
    margin-top: 25px;
  }

  .pro-szxc_cjtabs {
    padding: 40px 0 20px;
  }

  .szxc_cj_tab li {
    margin-left: 58px;
  }

  .pro-szxc-cj-list ul {
    margin-right: -20px;
  }

  .pro-szxc-cj-list li {
    width: 371px;
    margin: 30px 20px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .parHd li {
    margin: 0;
  }

  .pro_jztx_con {
    padding: 0 10px;
  }

  .pro_jztx_con ul {
    margin-right: 0;
  }

  .pro_jztx_con li {
    width: auto;
    float: none;
    margin: 15px 0 0;
  }

  .pro-szxc_cjtabs {
    padding: 20px 0 10px;
  }

  .pro-szxc-cj-wrap {
    padding: 20px 0;
  }

  .pro-szxc-cj-wrap .container>div {
    padding: 0 10px;
  }

  .pro-szxc-cj-list ul {
    margin-right: 0;
  }

  .pro-szxc-cj-list li {
    width: auto;
    float: none;
    margin: 20px 0 0 0;
  }

  .pro-szxc-cj-list li .pro_cj_item {
    height: auto !important;
  }

  .pro-szxc-cj-list li .pro_szxc_cj_info {
    min-height: auto !important;
    height: auto !important;
  }
}

/* 20240914 AI+政务问答*/
.ai-zwwd .inside_banner {
  background: url(../images/ai-zwwd-ban.png)no-repeat center;
}

.ai-zwwd .inside_banner a {
  cursor: auto;
}

.ai-zwwd .bg {
  background: #f4f7fb;
}

.ai-zwwd .nyban_tit img {
  width: auto;
  height: 126px;
  margin-left: -500px;
}

/*产品概述*/
.aizwwd_gs {
  padding: 45px 0 52px;
  background: url(../images/ai-zwwd-cpgsbg.png) no-repeat center;
  background-size: cover;
}

.aizwwd_gs .container {
  width: 1000px;
}

.ai-zwwd .pro_ny_title {
  font-size: 32px;
  position: relative;
}

.ai-zwwd .pro_ny_title span {
  width: 152px;
  height: 12px;
  background: rgb(218, 230, 250, 0.68);
  transform: skew(-20deg);
  border-radius: 5px 0 5px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -77px;
  z-index: -1;
}

/*产品架构*/
.aizwwd-cpjg-box01 {
  padding: 60px 0 0;
  background: rgb(241 246 251) url(../images/ai-zwwd-cpjgbg.png) no-repeat center bottom;
  background-size: cover;
  height: 600px;
  position: relative;
  z-index: 1;
}

.aizwwd-cpjg-box01-con {
  padding-top: 15px;
}

.aizwwd-cpjg-box01 a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: auto;
}

.aizwwd-cpjg-box01 img {
  position: relative;
  height: 626px;
}

.aizwwd-cpjg-box01 .img-title {
  display: none;
}

.aizwwd-cpjg-box02 {
  background: url(../images/ai-zwwd-cpjgbg02.png) no-repeat center;
  background-size: cover;
  padding: 80px 0 35px;
}

.aizwwd-cpjg-box02 li {
  float: left;
  width: 260px;
  margin-right: 50px;
}

.aizwwd-cpjg-box02 li a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: auto;
}

.aizwwd-cpjg-box02 li.num4 {
  margin-right: 0;
}

.aizwwd-cpjg-box02 li .img {
  float: left;
  width: 30px;
  height: 30px;
  padding-right: 10px;
  overflow: hidden;
}

.aizwwd-cpjg-box02 li .img img {
  height: 60px;
  width: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  margin-top: -30px;
}

.aizwwd-cpjg-box02 li a:hover img {
  margin-top: 0;
}

.aizwwd-cpjg-box02 li .title {
  font-size: 20px;
  color: #fff;
}

.aizwwd-cpjg-box02 li .intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 28px;
  padding-top: 12px;
  text-align: justify;
  max-height: 136px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-indent: 2em;
}

/*产品特征*/
.aizwwd-cptz {
  padding: 60px 0;
}

.aizwwd-cptz-box li {
  border-radius: 8px;
  width: 374px;
  float: left;
  margin-top: 32px;
  margin-right: 39px;
  background: #e8f3ff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.aizwwd-cptz-box li:hover {
  box-shadow: rgba(76, 140, 197, 0.27) 1px 4px 16px 2px;
  -webkit-box-shadow: rgb(76, 140, 197, 0.27) 1px 4px 16px 2px;
}

.aizwwd-cptz-box li:nth-last-of-type(1) {
  margin-right: 0;
}

.aizwwd-cptz-box li a {
  border-radius: 8px;
  display: block;
  background: url(../images/ai-zwwd-cptzbg.png) no-repeat center;
  background-size: cover;
  border: 0;
  padding: 0 40px 35px;
  height: 394px;
  -webkit-transition: all 0.5s;
  cursor: default;
  position: relative;
  box-sizing: border-box;
}

.aizwwd-cptz-box li .img {
  height: auto;
  text-align: center;
}

.aizwwd-cptz-box li .img img {
  height: 180px;
  width: auto;
}

.aizwwd-cptz-box li a:hover img {
  margin-top: 0;
}

.aizwwd-cptz-box li .title {
  display: block;
  height: 32px;
  line-height: 32px;
  padding: 0 0 10px;
  background: url(../images/ai-zwwd-cptzbtng.png) no-repeat center bottom;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.aizwwd-cptz-box li .intro {
  font-size: 14px;
  color: #666;
  line-height: 28px;
  margin-top: 20px;
  text-align: justify;
  max-height: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-indent: 2em;
}

/*多端支持*/
.aizwwd-ddzc {
  padding: 60px 0;
  height: 706px;
  box-sizing: border-box;
  background: #f4f7fb url(../images/ai-zwwd-ddzcbg.png) no-repeat center;
}

.aizwwd-ddzc-box {
  text-align: center;
  position: relative;
}

.aizwwd-ddzc-box a {
  cursor: auto;
}

.aizwwd-ddzc-box .infobox {}

.aizwwd-ddzc-box .infocon {
  width: 342px;
  height: 100px;
  background: url(../images/ai-zwwd-ddzctxt-d.png) no-repeat center;
  background-size: auto 100%;
  padding: 40px 40px 58px 48px;
  text-align: left;
  text-indent: 2em;
  position: absolute;
  top: 114px;
  right: 58px;
}

.aizwwd-ddzc-box .infocon span {
  font-size: 14px;
  color: #667283;
  line-height: 1.8;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: justify;
}

.aizwwd-ddzc-box .info {
  font-size: 18px;
  width: 594px;
  display: inline-block;
  padding: 20px 0;
}

.aizwwd-ddzc-box li .img-title {
  display: none;
}

.aizwwd-ddzc-box li img {
  height: 438px;
  width: auto;
}

/*典型案例*/
.ai-zwwd .aizwwd-case {
  padding: 60px 0;
  background: url(../images/ai-zwwd-dxalbg.png) no-repeat center;
  background-size: cover;
}

.ls-poster-flash {
  margin-top: 22px;
  width: 100%;
  height: 460px;
  position: relative;
}

.ls-poster-main {
  position: relative;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.ls-poster-main img {
  width: 100%;
  height: auto;
}

.ls-poster-main li.roundabout-in-focus img {
  height: 358px;
}

.ls-poster-main .ls-poster-list {
  width: 100%;
  height: 100%;
}

.ls-poster-main .ls-poster-list li {
  width: 1048px;
  height: 460px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.ls-poster-main .ls-poster-list li a {
  cursor: auto;
  text-align: center;
  display: block;
  opacity: 0.3;
  background: #fff;
  padding: 72px 22px 22px;
  position: relative;
  border-radius: 12px;
}

.ls-poster-main .ls-poster-list li.roundabout-in-focus a {
  padding: 80px 22px 22px;
  opacity: 1;
}

.ls-poster-main li .img-title {
  font-size: 28px;
  position: absolute;
  width: auto;
  min-width: 196px;
  box-sizing: border-box;
  padding: 0 45px;
  height: 40px;
  line-height: 40px;
  top: 22px;
  left: 50%;
  margin-left: -98px;
  background: url(../images/ai-zwwd-titbg.png) no-repeat center;
  background-size: cover;
  color: #fff;
}

.ls-poster-flash .ls-poster-btn {
  position: absolute;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  top: 50%;
  margin-top: -25px;
  font-size: 0;
  z-index: 299;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 14px 0 rgba(75, 94, 121, 0.2);
}

.ls-poster-flash .ls-poster-prev-btn {
  left: -25px;
  background: rgba(255, 255, 255, 0.8) url(../images/ai-zwwd-rounprev.png) no-repeat center;
}

.ls-poster-flash .ls-poster-next-btn {
  right: -25px;
  background: rgba(255, 255, 255, 0.8) url(../images/ai-zwwd-rounnext.png) no-repeat center;
}

.ls-poster-flash .ls-poster-next-btn:hover,
.ls-poster-flash .ls-poster-prev-btn:hover {
  box-shadow: 0 4px 14px 2px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}

@media only screen and (max-width: 1199px) {
  .ai-zwwd .nyban_tit img {
    width: 285px;
    height: auto;
    left: 10px;
    margin-left: 0;
  }

  /*产品概述*/
  .aizwwd_gs {
    padding: 20px 0 20px;
  }

  .aizwwd_gs .container {
    width: 992px;
  }

  /*产品架构*/
  .aizwwd-cpjg-box01 {
    height: 534px;
    padding: 40px 0 0;
  }

  .aizwwd-cpjg-box01 img {
    width: 100%;
    height: auto;
  }

  .aizwwd-cpjg-box02 {
    padding: 60px 0 30px;
  }

  .aizwwd-cpjg-box02 li {
    margin-right: 30px;
    width: 225px;
  }

  /*产品特征*/
  .aizwwd-cptz {
    padding: 40px 0;
  }

  .aizwwd-cptz-box li {
    width: 314px;
    margin-right: 25px;
    margin-top: 20px;
  }

  /*多端支持*/
  .aizwwd-ddzc {
    padding: 40px 0;
    height: 626px;
    background-size: auto 650px;
  }

  .aizwwd-ddzc-box li img {
    width: 100%;
    height: auto;
  }

  .aizwwd-ddzc-box .infocon {
    right: 0;
  }

  /*典型案例*/
  .ai-zwwd .aizwwd-case {
    padding: 40px 0;
  }

  .ls-poster-flash {
    height: 355px;
  }

  .ls-poster-main li.roundabout-in-focus img {
    height: 272px;
  }

  .ls-poster-main .ls-poster-list li {
    width: 800px;
    height: 372px;
  }

  .ls-poster-main .ls-poster-list li a {
    padding: 72px 20px 20px;
  }

  .ls-poster-main .ls-poster-list li.roundabout-in-focus a {
    padding: 80px 20px 20px;
  }

  .ls-poster-flash .ls-poster-prev-btn {
    left: 0;
  }

  .ls-poster-flash .ls-poster-next-btn {
    right: 0;
  }

  .ai-zwwd-new .aizwwd-case {
    display: none;
  }

  .ai-zwwd-new .pro-success-case {
    display: block !important;
  }
}

@media only screen and (max-width: 991px) {

  /*产品概述*/
  .ai-zwwd .pro_gs_con {
    margin-top: 15px;
  }

  .aizwwd_gs .container {
    width: 768px;
  }

  /*产品架构*/
  .aizwwd-cpjg-box01 {
    padding: 20px 0 0;
    height: 420px;
  }

  .aizwwd-cpjg-box02 {
    padding: 45px 0 20px;
  }

  .aizwwd-cpjg-box02 ul {
    margin-right: -2%;
  }

  .aizwwd-cpjg-box02 li {
    width: 48%;
    height: 126px;
    margin-right: 2%;
    margin-top: 15px;
  }

  .aizwwd-cpjg-box02 li .intro {
    -webkit-line-clamp: 3;
    max-height: 124px;
  }

  /*产品特征*/
  .aizwwd-cptz {
    padding: 20px 0;
  }

  .aizwwd-cptz-box li {
    width: 240px;
    margin-right: 14px;
    margin-top: 15px;
  }

  .aizwwd-cptz-box li a {
    padding: 0 10px 20px;
    height: 375px;
  }

  /*多端支持*/
  .aizwwd-ddzc {
    padding: 20px 0;
    background: #f0f4fd;
    height: auto;
  }

  .aizwwd-ddzc-box .infocon {
    background: #fff;
    padding: 20px;
    position: static;
    width: auto;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
  }

  .aizwwd-ddzc-box .appimg {
    display: block !important;
  }

  .aizwwd-ddzc-box .infocon span {
    max-height: none;
    display: block;
  }

  /*典型案例*/
  .ai-zwwd .aizwwd-case {
    padding: 20px 0;
  }

  .ls-poster-flash {
    margin-top: 15px;
    height: 270px;
  }

  .ls-poster-main li.roundabout-in-focus img {
    height: 189px;
  }

  .ls-poster-main .ls-poster-list li {
    width: 560px;
    height: 270px;
  }

  .ls-poster-main .ls-poster-list li a {
    padding: 60px 15px 15px;
  }

  .ls-poster-main .ls-poster-list li.roundabout-in-focus a {
    padding: 66px 15px 15px;
  }

  .ls-poster-main li .img-title {
    top: 15px;
    font-size: 26px;
    width: 186px;
    height: 38px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) {

  /*产品概述*/
  .ai-zwwd .pro_gs_con {
    margin-top: 10px;
  }

  .aizwwd_gs .container {
    width: auto;
  }

  .aizwwd_gs {
    padding: 10px 0 10px;
  }

  .ai-zwwd .pro_ny_title {
    font-size: 24px;
  }

  /*产品架构*/
  .aizwwd-cpjg-box01 {
    padding: 10px 0;
    height: auto;
  }

  .aizwwd-cpjg-box01-con {
    padding-top: 10px;
  }

  .aizwwd-cpjg-box02 {
    padding: 10px 0 10px;
  }

  .aizwwd-cpjg-box02 ul {
    margin-right: 0;
  }

  .aizwwd-cpjg-box02 li {
    margin-top: 10px;
    height: auto;
    margin-right: 0;
    width: 100%;
  }

  /*产品特征*/
  .aizwwd-cptz {
    padding: 10px 0;
  }

  .aizwwd-cptz-box li {
    width: 100%;
    margin-right: 0;
    height: auto;
  }

  .aizwwd-cptz-box li a {
    padding: 0 10px 10px;
    height: auto;
  }

  .aizwwd-cptz-box li .intro {
    margin-top: 10px;
    display: block;
    max-height: none;
  }

  /*多端支持*/
  .aizwwd-ddzc {
    padding: 10px 0;
  }

  .aizwwd-ddzc-box .info {
    padding: 10px 0;
    width: auto;
  }

  .aizwwd-ddzc-box .infocon {
    margin-top: 10px;
    padding: 10px;
  }

  /*典型案例*/
  .ai-zwwd .aizwwd-case {
    padding: 10px 0;
  }

  .ls-poster-flash {
    margin-top: 10px;
    height: 201px;
  }

  .ls-poster-main li.roundabout-in-focus img {
    height: 136px;
  }

  .ls-poster-main .ls-poster-list li {
    width: 400px;
    height: 201px;
  }

  .ls-poster-main .ls-poster-list li a {
    padding: 50px 10px 10px;
  }

  .ls-poster-main .ls-poster-list li.roundabout-in-focus a {
    padding: 55px 10px 10px;
  }

  .ls-poster-main li .img-title {
    top: 10px;
    font-size: 24px;
    width: 180px;
    height: 36px;
    line-height: 36px;
  }

}

@media only screen and (max-width: 580px) {
  .ai-zwwd .nyban_tit img {
    width: 200px;
  }
}

@media only screen and (max-width: 530px) {

  /*典型案例*/
  .ls-poster-flash {
    margin-top: 8px;
    height: 165px;
  }

  .ls-poster-main li.roundabout-in-focus img {
    height: 100px;
  }

  .ls-poster-main .ls-poster-list li {
    width: 300px;
    height: 165px;
  }
}

@media only screen and (max-width: 360px) {
  .ai-zwwd .top_right .kfzx a {
    padding-left: 10px;
    background: none;
  }
}

/*新版AI问答页面*/
/*.ai-zwwd-new .header{ background: #fff; }
.ai-zwwd-new .logo-index{  display: none !important;}
.ai-zwwd-new .logo-ai{  display: block !important;}
.ai-zwwd-new .menubox>ul>li>a{color:rgba(0, 0, 0, 0.6);}
.ai-zwwd-new .menubox>ul>li>a:hover,.ai-zwwd-new .menubox li.on>a{color:#3776FF;}
.ai-zwwd-new .menubox>ul>li>a span{  background: #3776FF;}
.ai-zwwd-new .menu .icon-bar{ background:rgba(0, 0, 0, 0.6);}
.ai-zwwd-new .top_right li a{ color:rgba(0, 0, 0, 0.6);}
.ai-zwwd-new .top_right .top_tel a {background: url(../images/top_icon01-new.png) left center no-repeat;}
.ai-zwwd-new .top_right .kfzx a {background: url(../images/top_icon02-new.png) left center no-repeat;}*/
/* .ai-zwwd-new .ny_banbox {
  top: 115px;
} */

.ai-zwwd-new .ny_banbox .container {
  position: relative;
}

.ai-zwwd-new .nyban_tit img {
  width: auto;
  height: 252px;
  left: 0;
  margin-left: 0;
}

.ai-zwwd-new .pro_ai_title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  position: relative;
  background: url(../images/ai-title-line.png) bottom center no-repeat;
  line-height: 1.2;
  padding-bottom: 30px;
}

.pro_gs_info {
  font-size: 20px;
  color: #666;
  line-height: 36px;
  margin-top: 25px;
  text-align: justify;
  text-indent: 2em;
}

.aizwwd-js-box {
  padding: 50px 0;
}

.aizwwd-js-list {
  margin-top: 102px;
}

.aizwwd-js-list ul {
  margin-right: -38px;
}

.aizwwd-js-list li {
  float: left;
  margin-right: 38px;
  width: 374px;
  height: 197px;
  border-radius: 12px;
  background: linear-gradient(180.00deg, rgba(239, 245, 254, 1), rgba(241, 253, 255, 1) 100%);
  text-align: center;
}

.aizwwd-js-list li a {
  display: block;
}

.aizwwd-js-list li a:hover .img {
  animation: bellRing 0.9s both;
}

.aizwwd-js-list li .img {
  margin-top: -70px;
}

.aizwwd-js-list li .title {
  display: block;
  background: linear-gradient(203.32deg, rgba(55, 118, 255, 1), rgba(26, 187, 244, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  font-size: 30px;
  height: 74px;
  line-height: 74px;
}

.aizwwd-js-list li .intro {
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
  font-size: 24px;
  line-height: 32px;
  background: url(../images/js-line-bg.png) bottom center no-repeat;
}

.aizwwd-sys-tab {
  text-align: center;
  margin-top: 10px;
}

.aizwwd-sys-tab li {
  float: left;
  width: 16.6%;
  height: 68px;
  line-height: 68px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 24px;
}

.aizwwd-sys-tab li a,
.aizwwd-sys-tab li .tit {
  position: relative;
  display: block;
}

.aizwwd-sys-tab li.active a,
.aizwwd-sys-tab li.active .tit {
  color: #3482EE;
}

.aizwwd-sys-tab li i {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  z-index: 0;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background: #3482EE;
}

.aizwwd-sys-tab li.active i {
  width: 100%;
  left: 0;
}

.aizwwd-sys-bg {
  box-shadow: inset 0 9px 10px 0 rgba(230, 239, 248, 1);
  background: #EFF7FF;
  height: 490px;
  box-sizing: border-box;
  padding: 40px 0 0 0;
}

.aizwwd-sys-item .sys-img {
  float: left;
  width: 374px;
  height: 380px;
}

.aizwwd-sys-item .sys-img .img-title {
  display: none;
}

.aizwwd-sys-item .sys-info {
  float: none;
  margin-left: 414px;
}

.aizwwd-sys-item .sys-info-text {
  font-size: 20px;
  text-align: justify;
  line-height: 36px;
  color: #667283;
  min-height: 108px;
  text-indent: 2em;
}

.aizwwd-sys-item .sys-info-list ul {
  margin-right: -38px;
}

.aizwwd-sys-item .sys-info-list li {
  float: left;
  margin: 24px 38px 0 0;
  width: 374px;
  height: 64px;
  border-radius: 12px;
  box-shadow: 13px 10px 32px 0 rgba(198, 206, 221, 0.3);
  background: rgba(255, 255, 255, 1);
  line-height: 64px;
}

.aizwwd-sys-item .sys-info-list li a {
  display: block;
  padding: 0 0 0 68px;
  font-size: 20px;
}

.aizwwd-sys-item .sys-info-list li img {
  margin-right: 2px;
}

.aizwwd-sys-item .sys-info-list li a:hover img {
  animation: bellRing 0.9s both;
}

.aizwwd-sys-item .sys-info-adlist {
  width: 826px;
}

.aizwwd-sys-item .sys-info-adlist .bd,
.aizwwd-sys-item .sys-info-adlist .bd li {
  height: 300px !important;
  overflow: hidden;
}


.aizwwd-sys-item .sys-info-adlist .libox {
  margin-right: -38px;
}

.aizwwd-sys-item .sys-info-adlist li a {
  float: left;
  margin: 24px 38px 0 0;
  display: block;
  width: 374px;
  height: 64px;
  border-radius: 12px;
  box-shadow: 13px 10px 32px 0 rgba(198, 206, 221, 0.3);
  background: rgba(255, 255, 255, 1);
  line-height: 64px;
  padding: 0 0 0 68px;
  font-size: 20px;
  box-sizing: border-box;
}

.aizwwd-sys-item .sys-info-adlist li img {
  margin-right: 2px;
}

.aizwwd-sys-item .sys-info-adlist li a:hover img {
  animation: bellRing 0.9s both;
}

.aizwwd-sys-item .hd {
  font-size: 0;
  text-align: center;
  height: 8px;
}

.aizwwd-sys-item .hd ul {
  margin-right: 30px;
}

.aizwwd-sys-item .hd li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 0;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  background: rgba(52, 130, 238, 0.4);
  border-radius: 50%;
  -moz-border-radius: 50%;
  cursor: pointer;
}

.aizwwd-sys-item .hd li.on {
  width: 14px;
  background: #3482EE;
  border-radius: 10px;
  -moz-border-radius: 10px;
}


.aizwwd-case-bg {
  background: url(../images/case-bg.png) bottom center no-repeat;
  padding: 48px 0 0 0;
}

.ls-case-slide {
  position: relative;
}

.ls-case-slide .ls-prev,
.ls-case-slide .ls-next {
  position: absolute;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  top: 50%;
  margin-top: -25px;
  font-size: 0;
  z-index: 299;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 14px 0 rgba(75, 94, 121, 0.2);
}

.ls-case-slide .ls-prev {
  left: -42px;
  background: rgba(255, 255, 255, 0.8) url(../images/ai-zwwd-rounprev.png) no-repeat center;
}

.ls-case-slide .ls-next {
  right: -42px;
  background: rgba(255, 255, 255, 0.8) url(../images/ai-zwwd-rounnext.png) no-repeat center;
}

.ls-case-slide .ls-prev:hover,
.ls-case-slide .ls-next:hover {
  box-shadow: 0 4px 14px 2px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}

.ls-case-list {
  height: 794px;
  width: 1130px;
  margin: 0 auto;
  overflow: hidden;
}

.ls-case-list li {
  text-align: center;
  width: 100%;
}

.ls-case-list li a {
  display: block;
  padding-top: 70px;
  position: relative;
}

.ls-case-list li img {
  width: 100%;
  height: 724px;
}

.ls-case-list li .img-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 24px;
  line-height: 70px;
  height: 70px;
}

@media only screen and (max-width: 1199px) {
  .ai-zwwd-new .ny_banbox {
    top: 90px;
  }

  .ai-zwwd-new .nyban_tit img {
    height: 140px;
  }

  .aizwwd-js-list ul {
    margin-right: -20px;
  }

  .aizwwd-js-list li {
    margin-right: 20px;
    width: 317px;
  }

  .aizwwd-sys-item .sys-info-list ul {
    margin-right: -20px;
  }

  .aizwwd-sys-item .sys-info-list li {
    margin: 18px 20px 0 0;
    width: 279px;
  }

  .aizwwd-sys-item .sys-info-list li a {
    padding-left: 58px;
  }

  .aizwwd-sys-item .sys-info-text {
    font-size: 18px;
    line-height: 34px;
  }

  .aizwwd-sys-item .sys-info-adlist {
    width: 618px;
  }

  .aizwwd-sys-item .sys-info-adlist .bd,
  .aizwwd-sys-item .sys-info-adlist .bd li {
    height: 280px !important;
  }

  .aizwwd-sys-item .sys-info-adlist .libox {
    margin-right: -20px;
  }

  .aizwwd-sys-item .sys-info-adlist li a {
    margin: 18px 20px 0 0;
    width: 279px;
    padding-left: 58px;
  }


  .ls-case-list {
    height: 706px;
    width: 100%;
  }

  .ls-case-list li img {
    height: 636px;
  }

}

@media only screen and (max-width: 991px) {

  /* .ai-zwwd-new .top_right .kfzx a{ background: none;}*/
  .ai-zwwd-new .ny_banbox {
    top: 90px;
  }

  .ai-zwwd-new .nyban_tit img {
    height: 140px;
  }

  .aizwwd-js-box {
    padding: 30px 0;
  }

  .aizwwd-js-list ul {
    margin-right: -20px;
  }

  .aizwwd-js-list li {
    margin-right: 20px;
    width: 236px;
  }

  .aizwwd-sys-bg {
    height: auto;
    padding: 30px 0;
  }

  .aizwwd-sys-item {
    padding: 0 10px;
  }

  .aizwwd-sys-item .sys-img {
    float: none;
    width: auto;
    height: auto;
    text-align: center;
  }

  .aizwwd-sys-item .sys-info {
    margin: 10px 0 0 0;
  }

  .aizwwd-sys-item .sys-info-list li {
    width: 364px;
  }

  .aizwwd-sys-item .sys-info-text {
    font-size: 18px;
    line-height: 34px;
    min-height: auto;
  }

  .aizwwd-sys-item .sys-info-adlist {
    width: auto;
  }

  .aizwwd-sys-item .sys-info-adlist .tempWrap,
  .aizwwd-sys-item .sys-info-adlist .tempWrap ul {
    position: static !important;
    width: auto !important;
    overflow: inherit !important;
  }

  .aizwwd-sys-item .sys-info-adlist .bd,
  .aizwwd-sys-item .sys-info-adlist .bd li {
    height: auto !important;
    overflow: inherit !important;
    float: none !important;
    width: auto !important;
  }

  .aizwwd-sys-item .sys-info-adlist .bd ul .num1 {
    position: static !important;
  }

  .aizwwd-sys-item .sys-info-adlist .bd ul .num7 {
    position: static !important;
    display: block !important;
  }



  .aizwwd-sys-item .sys-info-adlist li a {
    width: 364px;
    padding-left: 28px;
  }

  .aizwwd-sys-item .hd {
    display: none;
  }

  .aizwwd-case-bg {
    padding-top: 30px;
  }

  .ls-case-list {
    height: 550px;
    width: 100%;
  }

  .ls-case-list li img {
    height: 480px;
  }

  .ls-case-slide .ls-prev {
    left: 0;
  }

  .ls-case-slide .ls-next {
    right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .ai-zwwd-new .ny_banbox {
    top: 20px;
  }

  .ai-zwwd-new .nyban_tit img {
    height: 120px;
  }

  .pro_gs_info {
    font-size: 18px;
    line-height: 1.6;
  }

  .aizwwd-js-box {
    padding: 20px 0;
  }

  .aizwwd-js-list {
    margin-top: 0;
  }

  .aizwwd-js-list ul {
    margin-right: 0;
  }

  .aizwwd-js-list li {
    margin: 20px 0 0 0;
    height: auto;
    width: auto;
    float: none;
  }

  .aizwwd-js-list li a {
    padding: 20px 0;
  }

  .aizwwd-js-list li .title {
    height: 60px;
    line-height: 60px;
  }

  .aizwwd-js-list li .img {
    margin-top: 0;
  }

  .aizwwd-sys-bg {
    padding: 20px 0;
  }

  .aizwwd-sys-tab li {
    font-size: 20px;
  }

  .aizwwd-sys-item .sys-img img {
    max-width: 100%;
    height: auto;
  }

  .aizwwd-sys-item .sys-info-list ul {
    margin-right: 0;
  }

  .aizwwd-sys-item .sys-info-list li {
    margin: 15px 0 0 0;
    width: auto;
    float: none;
  }

  .aizwwd-sys-item .sys-info-list li a {
    padding-left: 48px;
  }

  .aizwwd-sys-item .sys-info-adlist .libox {
    margin-right: 0;
  }

  .aizwwd-sys-item .sys-info-adlist li a {
    margin: 15px 0 0 0;
    width: auto;
    float: none;
    padding-left: 48px;
  }

  .aizwwd-sys-item .sys-info-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .aizwwd-case-bg {
    padding-top: 20px;
  }

  .ls-case-list {
    height: auto;
    width: 100%;
  }

  .ls-case-list li img {
    height: auto;
  }

  .ls-case-list li .img-title {
    font-size: 20px;
  }

}

/* 尾部开始 */
.footer {
  background-color: #1a202c;
  color: #ffffff;
  padding: 30px 0;
  font-family: 'Microsoft YaHei', sans-serif;
}

.footer_box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
}

/* PC端样式 - 桌面设备 */
@media (min-width: 769px) {
  .footer_box {
    flex-direction: row;
    align-items: center;
  }

  .footer_logo {
    flex: 1;
    min-width: 245px;
  }

  .footer_num {
    flex: 2;
    text-align: left;
    line-height: 1.8;
    font-size: 14px;
  }

  .footer_img {
    flex: 1;
    text-align: center;
  }

  .footer_img img {
    width: 88px;
    height: 88px;
    /* border-radius: 50%; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .footer_img p {
    margin-top: 10px;
    font-size: 14px;
    color: #bdc3c7;
  }

  .footer_border {
    width: 1px;
    height: 80px;
    background-color: #4a5568;
    margin: 0 20px;
  }
}

/* 移动端样式 - 手机和平板设备 */
@media (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }

  .footer_box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer_logo {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer_logo img {
    width: 200px;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer_border {
    display: none;
  }

  .footer_num {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer_img {
    width: 100%;
    margin-top: 20px;
  }

  .footer_img img {
    width: 60px;
    height: 60px;
    /* border-radius: 50%; */
  }

  .footer_img p {
    margin-top: 10px;
    font-size: 12px;
    color: #bdc3c7;
  }
}

/* 找到我们 */
/* 定义全局容器，最大宽度 1200px，居中 */
.find_container .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* .find 样式：整体布局 */
.find {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
  background: url(../images/find.png) center no-repeat;
  background-size: cover;
}

.find_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 地图区域 */
.map {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}

.find_con_container {
  margin-left: 70px;
}

/* 标题 */
.find_title h4 {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: left;
}

/* 内容区域 */
.find_con {
  flex: 2;
  margin-top: 80px;
  min-width: 300px;
  max-width: 700px;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: left;
}



/* 响应式字体大小调整 */
@media (max-width: 480px) {
  .footer_num {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer_img img {
    width: 50px;
    height: 50px;
  }

  .footer_img p {
    font-size: 11px;
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .find_con_container {
    margin-left: 0;
    padding: 0 20px;
  }

  .find_box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .map {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .map-image {
    max-width: 100%;
    height: auto;
  }

  .find_con {
    max-width: 100%;
    font-size: 16px;
  }
}

/* 马上体验 */
.user {
  background: url(../images/user.png) no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

/* .user::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
} */

.user-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.user h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: normal;
}

.experience-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.experience-btn {
  display: inline-block;
  padding: 10px 50px;
  /* background: linear-gradient(90deg, #ff8a00, #e52e71); */
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.experience-buttons .rt {
  background: #F29111;
}

.experience-btn:hover {
  /* background: linear-gradient(90deg, #e52e71, #ff8a00); */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .user {
    padding: 50px 15px;
  }

  .user h1 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .experience-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .experience-btn {
    padding: 12px 30px;
    font-size: 16px;
    width: 80%;
    max-width: 200px;
  }

  .experience-buttons .lf {
    display: none;
  }
}

@media (max-width: 480px) {
  .user h1 {
    font-size: 20px;
  }

  .experience-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 90%;
  }
}

.gs {
  text-align: center;
  background: #070D1D;
  color: #fff;
}

/* 申请体验页面样式及移动端适配 */
/* 申请体验 */
.form_container {
  margin-top: 72px;
  width: 100%;
  background-color: #F9FBFF;
  padding: 40px 0 100px 0;
}

.form_container .form_banxin {
  width: 1200px;
  margin: 0 auto;
}

.form_container .form_banxin .title {
  background-color: #fff;
}

.form_container .form_banxin .title h1 {
  font-weight: 550;
  font-size: 18px;
  color: #2F2F2F;
  line-height: 68px;
  border-bottom: 1px solid #E4E7ED;
  padding-left: 16px;
}

.form_container .form_banxin .form_content {
  padding: 60px 0 130px 0;
  background-color: #fff;
}

.form_container .form_banxin .form_content .form-group {
  margin: 30px 300px;
}

.form_container .form_banxin .form_content .form-group input,
.form_container .form_banxin .form_content .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background: #F5F5F5;
}

.form_container .form_banxin .form_content .form-group button {
  width: 220px;
  background-color: #EDF4FF;
  color: #0A59DA;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form_container .form_banxin .form_content .form-group button:hover {
  background-color: #0056b3;
  color: white;
}

.form_container .form_banxin .form_content .verification-code {
  display: flex;
  gap: 10px;
}

.form_container .form_banxin .form_content .submit {
  margin: 60px 300px 0 300px;
  width: 600px;
  height: 56px;
  background: #0A59DA;
  border-radius: 6px 6px 6px 6px;
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  border: none;
}

.form_container .form_banxin .form_content .submit:hover {
  background: #001585;
}

.form_container .form_banxin .form_content .form-group input::placeholder,
.form_container .form_banxin .form_content .form-group select:first-child {
  color: #6E6E6E;
  opacity: 0.7;
}

.form_container .form_banxin .form_content .form-group select option {
  background: #FFFFFF;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 4px 4px;
}

/* 申请体验 - 移动端适配 */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .form_container {
    margin-top: 60px;
    padding: 35px 0 90px 0;
  }

  .form_container .form_banxin {
    width: 960px;
    margin: 0 auto;
  }

  .form_container .form_banxin .title h1 {
    font-size: 17px;
    line-height: 62px;
    padding-left: 15px;
  }

  .form_container .form_banxin .form_content {
    padding: 45px 0 85px 0;
  }

  .form_container .form_banxin .form_content .form-group {
    margin: 28px 80px;
  }

  .form_container .form_banxin .form_content .verification-code {
    flex-direction: row;
  }

  .form_container .form_banxin .form_content .verification-code input {
    flex: 1;
  }

  .form_container .form_banxin .form_content .verification-code button {
    width: 200px;
  }

  .form_container .form_banxin .form_content .submit {
    margin: 55px 80px 0 80px;
    width: calc(100% - 160px);
    height: 52px;
    font-size: 19px;
  }

  .form_container .form_banxin .form_content .form-group input,
  .form_container .form_banxin .form_content .form-group select {
    padding: 10px;
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .form_container {
    margin-top: 50px;
    padding: 30px 0 80px 0;
  }

  .form_container .form_banxin {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
  }

  .form_container .form_banxin .title h1 {
    font-size: 17px;
    line-height: 60px;
    padding-left: 15px;
  }

  .form_container .form_banxin .form_content {
    padding: 40px 0 80px 0;
  }

  .form_container .form_banxin .form_content .form-group {
    margin: 25px 50px;
  }

  .form_container .form_banxin .form_content .verification-code {
    flex-direction: row;
  }

  .form_container .form_banxin .form_content .verification-code input {
    flex: 1;
  }

  .form_container .form_banxin .form_content .verification-code button {
    width: 180px;
  }

  .form_container .form_banxin .form_content .submit {
    margin: 50px 50px 0 50px;
    width: calc(100% - 100px);
    height: 50px;
    font-size: 19px;
  }

  .form_container .form_banxin .form_content .form-group input,
  .form_container .form_banxin .form_content .form-group select {
    padding: 9px;
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .form_container {
    margin-top: 0;
    padding: 20px 0 50px 0;
  }

  .form_container .form_banxin {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .form_container .form_banxin .title h1 {
    font-size: 16px;
    line-height: 50px;
    padding-left: 12px;
  }

  .form_container .form_banxin .form_content {
    padding: 30px 0 60px 0;
  }

  .form_container .form_banxin .form_content .form-group {
    margin: 20px 15px;
  }

  .form_container .form_banxin .form_content .verification-code {
    flex-direction: column;
    gap: 10px;
  }

  .form_container .form_banxin .form_content .verification-code input {
    width: 100%;
  }

  .form_container .form_banxin .form_content .verification-code button {
    width: 100%;
    height: 45px;
  }

  .form_container .form_banxin .form_content .submit {
    margin: 40px 15px 0 15px;
    width: calc(100% - 30px);
    height: 48px;
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .form_container {
    margin-top: 20px;
    padding: 15px 0 40px 0;
  }

  .form_container .form_banxin .title h1 {
    font-size: 15px;
    line-height: 45px;
  }

  .form_container .form_banxin .form_content {
    padding: 20px 0 40px 0;
  }

  .form_container .form_banxin .form_content .form-group {
    margin: 15px 10px;
  }

  .form_container .form_banxin .form_content .form-group input,
  .form_container .form_banxin .form_content .form-group select {
    padding: 8px;
    font-size: 14px;
  }

  .form_container .form_banxin .form_content .submit {
    margin: 30px 10px 0 10px;
    width: calc(100% - 20px);
    height: 45px;
    font-size: 16px;
  }
}
/* 移动端轮播图文字*/
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 16px;
  max-width: 80%;
  z-index: 10;
}

.banner-text h3 {
  margin-top: 0;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.banner-text p {
  margin-top: 10px;
  font-size: 14px;
  color: white;
}
.banner-text .now {
  display: inline-block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
  border: 1px solid white;
  margin-top: 20px;
  font-size: 14px;
  color: white;
}
@media (max-width: 480px) {
  .banner-text {
    top: 40%;
  }
.banner-text h3 {
  font-size: 18px;
}
.banner-text p {
    font-size: 12px;
}
.banner-text .now {
    width: 80px;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    margin-top: 10px;
    font-size: 12px;
}
}
/* 移动端马上体验轮播图 */
.mobile-ban {
  position: relative;
  height: 100%;
}
.mobile_banner_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 16px;
  max-width: 80%;
  z-index: 10;
}

.mobile_banner_text h3 {
  margin-top: 0;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.mobile_banner_text p {
  margin-top: 10px;
  font-size: 20px;
  color: white;
}
@media screen and (max-width: 768px) {
  .mobile-ban {
    display: block !important;
  }
}
@media screen and (max-width: 640px) {
  .mobile_banner_text h3 {
    font-size: 20px;
  }
  .mobile_banner_text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1600px) { 
  .pc-banner .bd li {
    width: 100% !important;
    height: 100%;
  }
  .pc-banner .bd li .ban img {
    width: 100%;
    height: 100%;
  }
  .ind_one {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1500px) { 
  .pc-banner {
    height: 600px;
  }
  .pc-banner .bd li {
    height: 600px;
  }
  .pc-banner .bd li .ban img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1400px) { 
  .pc-banner {
    height: 550px;
  }
  .pc-banner .bd li {
    height: 550px;
  }
  .pc-banner .bd li .ban img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1300px) { 
  .pc-banner {
    height: 500px;
  }
  .pc-banner .bd li {
    height: 500px;
  }
  .pc-banner .bd li .ban img {
    width: 100%;
    height: 100%;
  }
}
@media screen and  (max-width: 1200px) { 
  .pc-banner {
    height: 450px;
  }
  .pc-banner .bd li {
    height: 450px;
  }
  .pc-banner .bd li .ban img {
    width: 100%;
    height: 100%;
  }
}
@media screen and  (max-width: 1100px) { 
  .pc-banner {
    height: 400px;
  }
  .pc-banner .bd li {
    height: 400px;
  }
  .pc-banner .bd li .ban img {
    width: 100%;
    height: 100%;
  }
}
@media screen and  (max-width: 1000px) { 
  .pc-banner {
    height: 300px;
  }
  .pc-banner .bd li {
    height: 300px;
  }
  .pc-banner .bd li .ban img {
    width: 100%;
    height: 100%;
  }
}；
/* 基础重置 */
  .school-col .container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .sec-school {
    background: white;
  }

  /* 标题区域 */
  .school-col {
    padding: 80px 0;
    text-align: center;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 400px;
    position: relative;
  }

  .flex-center {
    display: flex;
    align-items: center;
  }

  .school-tt {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
  }

  .school-line {
    width: 148px;
    height: 8px;
    background-color: #2386ee;
    position: relative;
    margin: 20px 0 30px;
  }

  .school-line:before {
    content: '';
    width: 50px;
    height: 8px;
    background-color: #23c1ee;
    position: absolute;
    top: 0;
    left: 0;
  }

  .school-col .w640 {
    width: 640px;
  }

  .school-text {
    text-align: left;
    color: #666;
    margin: 20px 0 50px;
    font-size: 18px;
    line-height: 40px;
  }

  /* 卡片布局：左文右图 */
  .school-info {
    height: auto;
    padding: 90px 0 110px;
  }

  .school-info:nth-child(even) {
    background: #f9f9f9;
  }

  .school-bgd .container {
    flex-direction: row-reverse;
  }

  .school-bgd .school-l {
    margin-right: 0;
    margin-left: 40px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }

  .school-l {
    flex: 1;
  }

  .school-r img {
    width: 100%;
    max-width: 450px;
  }

  .school-btn {
    background-color: #1e73ec;
    font-size: 16px;
    border-radius: 3px;
    display: inline-block;
  }

  .school-btn a {
    color: #ffffff;
    display: block;
    padding: 17.5px 56px;
  }

  .btn-x {
    transition: .4s all;
  }

  .school-btn a:hover {
    opacity: 0.8;
  }

  .btn-x:hover {
    transform: translateX(5px);
  }
   /* 响应式设计 */
  @media (max-width: 992px) {
    .section {
      padding: 60px 0;
    }
    
    .school-col {
      padding: 60px 30px;
      background-size: 300px;
    }
    
    .school-tt {
      font-size: 28px;
    }
    
    .school-text {
      font-size: 16px;
      line-height: 32px;
    }
    
    .school-info {
      padding: 70px 0 90px;
    }
    

    
    .school-r img {
      max-width: 400px;
    }
  }

  @media (max-width: 768px) {
   
    .section {
      padding: 40px 0;
    }
    
    .school-col {
      padding: 40px 20px 30px;
      background-position: right 20%;
      background-size: 250px;
    }
    
    .school-tt {
      font-size: 28px;
      text-align: center;
    }
    
    .school-line {
      margin: 20px auto 30px;
    }
    .school-col {
      background: none !important;
      background: #FFFFFF !important;
  }
    .school-col .w640 {
      width: 100%;
      max-width: 640px;
      margin: 0 auto;
    }
    .school-info .school-text {
      margin: 20px 0;
      font-size: 16px;
      line-height: 26px;
    }

    .school-info {
      padding: 50px 0 70px;
    }
    
    .flex-center {
      flex-direction: column;
    }
    
    .school-bgd .container {
      flex-direction: column;
    }
    
    .school-l {
      padding: 0 20px 30px;
      text-align: center;
    }
    
    .school-bgd .school-l {
      margin: 0 0;
      align-items: center;
      flex-direction: column;
    }
    
    .school-r {
      padding: 0 20px;
    }
    
    .school-r img {
      max-width: 100%;
    }
    
    .school-btn {
      margin: 0 auto;
    }
  }

  @media (max-width: 576px) {
    .section {
      padding: 30px 0;
    }
    
    .school-col {
      padding: 0 15px 20px;
      background: #ffffff;
    }
    
    .school-tt {
      font-size: 24px;
    }
    
    .school-text {
      font-size: 14px;
      line-height: 24px;
      margin: 15px auto 30px;
    }
    
    .school-info {
      padding: 40px 0 50px;
    }
    
    .school-l {
      padding: 0 15px 20px;
    }
    
    .school-btn a {
      padding: 12px 30px;
      font-size: 14px;
    }
  }
   .lmy_position a:hover {
    color: #032F97;
  }
  .lmy_position .location {
    color: #032F97;
  }
    .lmy_position .lmy_p form {
    display: inline;
  }
/* 企业文化容器 */
.culture {
  margin-top: 30px;
  padding: 60px 0;
  background: url(../images/qywh_bgc.png) no-repeat center;
  background-size: cover;
  /* background-color: rgba(0, 0, 0, 0.1); */
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.culture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  /* 半透明黑色遮罩 */
  z-index: 1;
}

.culture .container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding-left: 0;
  width: 100%;
  margin: 60px auto;
}

.item {
  flex: 1;
  text-align: left;
  padding: 20px;
  background: transparent;
  border: none;
  min-width: 300px;
}

.item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #fff;
}

.item p {
  font-size: 16px;
  line-height: 35px;
  color: #eee;
}

.icon img {
  border: 1px dashed #ccc;
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-top: 80px;
}

/* 平板端适配 */
@media (max-width: 1024px) {
  .culture .container {
    width: 95%;
  }

  .content-wrapper {
    gap: 20px;
  }

  .item {
    min-width: 250px;
    padding: 15px;
  }

  .item h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .item p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .icon img {
    width: 36px;
    height: 36px;
  }
}

/* 移动端适配 */
@media (max-width: 768px) {
  .culture {
    padding: 40px 0;
    min-height: auto;
  }

  .culture .container {
    width: 90%;
    padding: 0 15px;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }

  .item {
    text-align: center;
    min-width: auto;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
  }

  .item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .icon img {
    width: 40px;
    height: 40px;
  }
}

/* 小屏手机适配 */
@media (max-width: 480px) {
  .culture {
    padding: 30px 0;
  }

  .culture .container {
    width: 95%;
    padding: 0 10px;
  }

  .content-wrapper {
    gap: 20px;
  }

  .item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .item p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .icon img {
    width: 35px;
    height: 35px;
  }
}

/* 超小屏适配 */
@media (max-width: 375px) {
  .item {
    padding: 12px;
  }

  .item h3 {
    font-size: 1.1rem;
  }

  .item p {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) {
#mobileMenu {
  display: none !important;
}
}