* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.clearfix:after {
  content: "";
  width: 0;
  height: 0;
  visibility: hidden;
  display: block;
  clear: both;
  overflow: hidden;
}

img {
  display: block;
}

a {
  display: block;
  text-decoration: none;
}

li {
  list-style: none;
}


/*导航*/

.navigation {
  /* position: relative;
  background: #fff; */
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  /* 距离顶部的距离为 0 */
  background-color: #fff;
  /* 设置背景色，防止内容透出 */
  z-index: 1000;
  /* 确保导航栏在其他元素之上 */
  width: 100%;
  /* 宽度占满整个屏幕 */

}
.scrolled {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  /* 新增：下阴影效果 */
}
.nav-box {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  padding: 20px 0;
}

.nav-box>a>img {
  float: left;
  padding-top: 7px;
  margin-right: 20px;
}

.nav,
.nav>li {
  float: left;
}


/* 选中状态时箭头向上 */

.nav>li:hover {
  /* background-color: #4584f5; */
  border-radius: 4px;
}

.nav>li:hover a {
  /* color: #fff; */
}


/* 添加箭头向上的图标样式 */

.nav>li>a.has-dropdown::after {
  content: "\e686";
  font-family: "iconfont" !important;
  font-size: 14px;
  font-style: normal;
  padding-left: 6px;
  /* transition: transform 0.3s ease; */
  display: inline-block;
  /* 确保旋转正常工作 */
  transform-origin: center center;
  /* 关键：设置旋转中心 */
}


/* 悬停时箭头向上 */

.nav>li:hover>a.has-dropdown::after,
.nav>li.active>a.has-dropdown::after {
  -webkit-transform: rotate(180deg);
  /* Safari/Chrome */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -ms-transform: rotate(180deg);
  /* IE */
  -o-transform: rotate(180deg);
  /* Opera */
  transform: rotate(180deg);
  position: relative;
  left: 5px;
}


/* 移除多余的transform样式 */

.nav>li>a.has-dropdown::after {
  transform: none;
}

.nav>li>a {
  line-height: 34px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 30px;
}

.nav>li>a>i {
  padding-left: 6px;
  line-height: 30px;
  font-size: 14px;
  padding-top: 5px;
}

.login-box {
  float: right;
  font-size: 16px;
}

.login-box>p {
  float: left;
  display: block;
  line-height: 34px;
  margin-right: 10px;
  font-size: 17px;
}

.login-box>p>i {
  color: #4682f4;
  padding-right: 8px;
}

.login-box>a {
  float: left;
  margin-left: 20px;
  display: none;
}

.trial {
  width: 100px;
  height: 34px;
  line-height: 32px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  border-radius: 20px;
}

.trial {
  color: #fff;
  background: linear-gradient(100deg, #5faaff 0, #434adb 100%);
}

.trial02 {
  height: 42px;
  line-height: 42px;
  width: 140px;
  font-size: 16px;
  border-radius: 30px;
}


/*导航下拉*/

.select-box {
  position: absolute;
  z-index: 999;
  border-top: solid 1px #ebebeb;
  width: 100%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .2);
  transition: all .3s;
  display: none;
  margin-bottom: 5px;
  background-color: #fff;
  min-height: 240px;
  height: 332px;
}

.select-top-left {
  width: 50%;
  background-color: #f8f9fd;
  min-height: 240px;
  height: 100%;
  /* float: left; */
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.select {
  /* float: left; */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* float: left; */
  z-index: 2;
  height: 100%;
}

.select-nr {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  /* align-items: center;
  align-content: center; */
  height: 100%;
}

.select-left {
  background-color: #f8f9fd;
  float: left;
  width: 170px;
  padding: 25px 0;
  min-height: 240px;
  height: 100%;
}

.select-left:hover {
  cursor: pointer;
}

.select-right {
  background-color: #fff;
  float: left;
  width: calc(100% - 170px);
  padding: 20px 20px;
  box-sizing: border-box;
  min-height: 240px;
  height: 100%;
  /* height: 240px;
  overflow: auto; */
}

.select-right>li {
  float: left;
  /* width: 12.5%; */
  width: 16.5%;
  box-sizing: border-box;
  padding: 10px 0;
}

.select-left>li {
  color: #1a1a1a;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
}

.select-left>li:hover {
  color: #4682f4;
}

.select-left .dq {
  color: #1a1a1a;
  background: #e6edfc;
  border-right: 3px solid #4682f4;
  box-sizing: border-box;
}

.select-right>li>a {
  color: #333;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
}

.select-right>li>a>img {
  width: 35px;
  height: 35px;
  margin: 0 auto;
  display: block;
}

.select-right>li:hover {
  background: #f8f9fd;
  border-radius: 8px;
}

.select-right>li:hover a {
  color: #4682f4;
}


/*banner*/

.banner-box {
  position: relative;
  overflow: hidden;
}

.index-box {
  /* height: 844px; */
  height: calc(100vh - 75px);
}

.index-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  /* height: 929px; */
  z-index: 1;
}

.banner-box .swiper-pagination-banner {
  position: absolute;
  left: 50%;
  z-index: 9999;
}

.banner_item_box {
  width: 100%;
  height: 100%;
}

.index-box a {
  color: #1a1a1a;
}

.index-box .item_box:hover a {
  color: #fff
}

.banner_box1 {
  background: url("../img/banner4.png") no-repeat center;
}

.banner_box2 {
  background: url("../img/banner3.jpg") no-repeat center;
}

.more_box {
  position: absolute;
  top: 62.5%;
  left: 49%;
  transform: translate(-47%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.a_gomore {
  transform: translate(0, -450%);
  font-size: 15px;
}

.banner_title {
  /* width: 75rem;
  margin: 4% auto;
  text-align: center; */
  width: 75rem;
  margin: 5% auto;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.banner_title h1 {
  font-size: 4.5rem;
  margin-bottom: 0.8rem;
  margin-top: 60px;
}

.banner_title p {
  color: #515252;
}

.gradient-text {
  padding: 0 0.625rem;
  background: linear-gradient(180deg, #937ff8, #78c2f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.banner_logo {
  width: 19rem;
  height: 19rem;

  background: url("../img/logo31.png") no-repeat center;
}

.a_gomore a {
  color: #737373 !important;
}

.more_box:hover .a_gomore a {
  color: #4e64e5 !important;
}

.item_box {
  width: 120px !important;
  line-height: 1.2rem;
  border-radius: 0.25rem;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  /* 白色背景，透明度 30% */
  padding: 0.73rem 0.8rem;
  animation: moveUpAndBack 5s ease-in-out infinite;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #1a1a1a;
}

.rang_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
}

.bgcolor {
  background-color: #6872f4;
}

.rang_box {
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  text-align: center;
  line-height: 3.125rem;
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  font-size: 15px;
}

.app_class {
  --random-height: -20px;
  background-color: #6872f4;
  left: 34%;
  top: 48%;
}

.app_class_dot {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: #6872f4;
  animation: rang-box-animation 5s infinite cubic-bezier(0.65, 0, 0.34, 1);
}

.home_class {
  --random-height: -30px;
  background-color: #4079fd;
  left: 43%;
  top: 35%;
}

.home_class_dot {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: #4079fd;
  animation: rang-box-animation 5s infinite cubic-bezier(0.65, 0, 0.34, 1);
}

.bgcolor3 {
  background-color: #4079fd;
}

.home_class_dot:nth-child(2) {
  animation-delay: 1s;
}

.home_class_dot:nth-child(3) {
  animation-delay: 2s;
}

.bp_class {
  --random-height: -20px;
  background-color: #22c1fb;
  left: 35%;
  top: 65%;
}

.bp_class_dot {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: #22c1fb;
  animation: rang-box-animation 5s infinite cubic-bezier(0.65, 0, 0.34, 1);
}

.bgcolor2 {
  background-color: #22c1fb;
}

.bp_class_dot:nth-child(2) {
  animation-delay: 1s;
}

.bp_class_dot:nth-child(3) {
  animation-delay: 2s;
}

.jc_class {
  --random-height: -20px;
  background-color: #0bddc1;
  left: 58%;
  top: 45%;
}

.jc_class_dot {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: #0bddc1;
  animation: rang-box-animation 5s infinite cubic-bezier(0.65, 0, 0.34, 1);
}

.bgcolor4 {
  background-color: #0bddc1;
}

.jc_class_dot:nth-child(2) {
  animation-delay: 1s;
}

.jc_class_dot:nth-child(3) {
  animation-delay: 2s;
}

.date_class {
  --random-height: -10px;
  background-color: #ff8b06;
  left: 62%;
  top: 68%;
}

.date_class_dot {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: #ff8b06;
  animation: rang-box-animation 5s infinite cubic-bezier(0.65, 0, 0.34, 1);
}

.bgcolor5 {
  background-color: #ff8b06;
}

.date_class_dot:nth-child(2) {
  animation-delay: 1s;
}

.date_class_dot:nth-child(3) {
  animation-delay: 2s;
}

.run_class {
  --random-height: -10px;
  background-color: #34c724;
  left: 50%;
  top: 81%;
}

.run_class_dot {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: #34c724;
  animation: rang-box-animation 3s infinite cubic-bezier(0.65, 0, 0.34, 1);
}

.bgcolor6 {
  background-color: #34c724;
}

.run_class_dot:nth-child(2) {
  animation-delay: 1s;
}

.run_class_dot:nth-child(3) {
  animation-delay: 2s;
}


/* 延迟后续波纹 */

.app_class_dot:nth-child(2) {
  animation-delay: 1s;
}

.app_class_dot:nth-child(3) {
  animation-delay: 2s;
}

.item_box i {
  margin-left: 0.1875rem;
  display: none;
}

.db_class {
  --random-height: 1.25rem;
  /* 督办元素的移动高度 */
  left: calc(63%);
  top: 35%;
  width: 100px;
}

.db_class:hover {
  background-color: #FF8C00 !important;
}

.db-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #FF8C00;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.db-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #ff8b06;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.tpdc_class {
  --random-height: -2.5rem;
  /* 投票调查元素的移动高度 */
  left: calc(29%);
  top: 40%;
}

.tpdc_class:hover {
  background-color: #4079fd !important;
}

.tpdc-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #4079fd;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.tpdc-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #4079fd;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.gcgl_class {
  --random-height: 1.25rem;
  /* 公车管理元素的移动高度 */
  left: calc(22%);
  top: 55%;
}

.gcgl_class:hover {
  background-color: #FF8C00 !important;
}

.gcgl-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #FF8C00;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.gcgl-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #FF8C00;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.znhy_class {
  --random-height: -1.25rem;
  /* 智能会议元素的移动高度 */
  left: calc(13%);
  top: 68%;
}

.znhy_class:hover {
  background-color: #34c724 !important;
}

.znhy-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #34c724;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.znhy-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #34c724;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.khgl_class {
  --random-height: 1.25rem;
  /* 客户管理元素的移动高度 */
  left: calc(51%);
  top: 28%;
}

.khgl_class:hover {
  background-color: #6872f4 !important;
}

.khgl-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #6872f4;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.khgl-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #6872f4;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 3s ease-in-out infinite;
}

.gwgl_class {
  --random-height: -1.5625rem;
  /* 公文管理元素的移动高度 */
  left: calc(23%);
  top: 84%;
}

.gwgl_class:hover {
  background-color: #0bddc1 !important;
}

.gwgl-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #0bddc1;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.gwgl-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #0bddc1;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 4s ease-in-out infinite;
}

.wdcj_class {
  --random-height: 1.5625rem;
  /* 文档插件元素的移动高度 */
  left: calc(37%);
  top: 75%;
}

.wdcj_class:hover {
  background-color: #ff8b06 !important;
}

.wdcj-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #ff8b06;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.wdcj-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #ff8b06;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.webhook_class {
  /* webhook配置元素的移动高度 */
  --random-height: -1.5625rem;
  left: 39%;
  top: 92%;
  justify-content: space-between;
}

.webhook_class:hover {
  background-color: #34c724 !important;
}

.webhook-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #34c724;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.webhook-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #34c724;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.zsk_class {
  /* 知识库元素的移动高度 */
  --random-height: 2.1875rem;
  left: calc(58%);
  top: 82%;
  width: 100px;
  justify-content: space-between;
}

.zsk_class:hover {
  background-color: #6872f4 !important;
}

.zsk-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #6872f4;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.zsk-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #6872f4;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.hys_class {
  /* 会议室元素的移动高度 */
  --random-height: -1.5625rem;
  left: calc(69%);
  top: 76%;
  width: 100px;
  justify-content: space-between;
}

.hys_class:hover {
  background-color: #12dec3 !important;
}

.hys-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #12dec3;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.hys-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #12dec3;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.rz_class {
  /* 日志元素的移动高度 */
  --random-height: 1.26rem;
  left: calc(80%);
  top: 62%;
  width: 100px;
  justify-content: space-between;
}

.rz_class:hover {
  background-color: #ff8b06 !important;
}

.rz-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #ff8b06;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.rz-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #ff8b06;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.rc_class {
  /* 日程元素的移动高度 */
  --random-height: -0.9375rem;
  left: calc(66%);
  top: 58%;
  width: 100px;
  justify-content: space-between;
}

.rc_class:hover {
  background-color: #4079fd !important;
}

.rc-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #4079fd;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.rc-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #4079fd;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.yx_class {
  /* 邮箱元素的移动高度 */
  --random-height: 0.625rem;
  left: calc(85%);
  top: 37%;
  width: 100px;
  justify-content: space-between;
  /*	background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));*/
}

.yx_class:hover {
  background-color: #0bddc1 !important;
}

.yx-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #0bddc1;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.yx-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #0bddc1;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.jstx_class {
  /* 即使通讯的移动高度 */
  --random-height: -1.875rem;
  left: calc(72%);
  top: 28%;
  width: 120px;
  justify-content: space-between;
}

.jstx_class:hover {
  background-color: #6872f4 !important;
}

.jstx-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #6872f4;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.jstx-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #6872f4;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.hy_class {
  /* 即使通讯的移动高度 */
  --random-height: -1.875rem;
  left: calc(20%);
  top: 30%;
  width: 120px;
  justify-content: space-between;
}

.hy_class:hover {
  background-color: #0bddc1 !important;
}

.hy-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #0bddc1;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.hy-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #0bddc1;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.zxks_class {
  /* 即使通讯的移动高度 */
  --random-height: -1.875rem;
  left: calc(74%);
  top: 49%;
  width: 120px;
  justify-content: space-between;
}

.zxks_class:hover {
  background-color: #ff8b06 !important;
}

.zxks-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #ff8b06;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.zxks-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #ff8b06;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.xmgl_class {
  /* 即使通讯的移动高度 */
  --random-height: -1.875rem;
  left: calc(10% + 0.8125rem);
  top: 48%;
  width: 120px;
  justify-content: space-between;
}

.xmgl_class:hover {
  background-color: #ff8b06 !important;
}

.xmgl-dot-box {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #ff8b06;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 140, 0, 0.3);
}

.xmgl-dot-box::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #ff8b06;
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  animation: border-ripple-animation 2s ease-in-out infinite;
}

.item_box:hover {
  color: #fff;
  cursor: pointer;
  animation-play-state: paused;
}

.item_box:hover i {
  display: block;
}

@keyframes rang-box-animation {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes border-ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}


/* 添加淡入淡出效果 */

@keyframes moveUpAndBack {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(var(--random-height, -30px));
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/*低应用*/

.application-box {
  width: 1200px;
  margin: 0 auto;
}

.big-title {
  font-size: 40px;
  color: #272c33;
  margin-top: 120px;
  margin-bottom: 20px;
  text-align: center;
}

.switch {
  margin-bottom: 40px;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #fff, #e5e5e5, #fff) 1;
}

.switch>ul {
  width: 700px;
  margin: 0 auto;
}

.switch>ul>li {
  float: left;
  color: #9ba7ba;
  font-size: 18px;
  line-height: 80px;
  width: 100px;
  margin: 0 20px;
  text-align: center;
}

.switch>ul>li:hover {
  color: #4584f5;
  cursor: pointer;
}

.switch>ul .switch-dq {
  color: #4584f5;
  border-bottom: solid 4px #4584f5;
}

.switch-nr1>p {
  font-size: 20px;
  color: #262626;
  margin-bottom: 30px;
  text-align: center;
  line-height: 40px;
}

.switch-nr1>img {
  width: 1100px;
  margin: 0 auto;
}


/*一站式整合*/

.one-stop-box .big-title {
  margin-top: 90px;
}

.one-stop-bj {
  background: url(../img/one-stop-bj.png) no-repeat;
  padding: 80px 0;
  margin-top: 60px;
  background-size: 100% 100%;
}

.one-stop-nr {
  width: 1200px;
  margin: 0 auto;
}

.work {
  float: left;
  width: 32.5%;
}

.work,
.tool1,
.tool2 {
  border: solid 2px #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  background: rgb(255, 255, 255, 0.5);
}

.jg {
  height: 30px;
}

.work>h3,
.tool1>h3,
.tool2>h3 {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 26px;
  margin-bottom: 20px;
}

.work>h3>span,
.tool1>h3>span,
.tool2>h3>span {
  font-size: 12px;
  background: #000000;
  padding: 3px 6px;
  border-radius: 4px;
  line-height: 12px;
  color: #fff;
  margin-right: 10px;
}

.work>ul>li {
  width: 33.33%;
}

.tool {
  float: right;
  width: 65%;
}

.tool1,
.tool2 {
  height: 227px;
}

.tool1-nr>li,
.tool2-nr>li {
  float: left;
  width: 14.28%;
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 28px;
  margin: 20px 0;
}

.work>ul>li,
.tool1-nr>li,
.tool2-nr>li {
  float: left;
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 28px;
  margin: 20px 0;
}

.work>ul>li>img,
.tool1-nr>li>img,
.tool2-nr>li>img {
  width: 45px;
  margin: 0 auto;
  display: block;
  margin-bottom: 5px;
}


/*与我们一起，激发企业数智化创新*/

.innovation-box {
  width: 1200px;
  margin: 0 auto;
}

.innovation-box .big-title {
  margin-top: 120px;
}

.innovation-nr {
  margin-top: 50px;
}

.innovation-nr>li {
  width: 33.33%;
  float: left;
  padding: 15px;
  box-sizing: border-box;
}

.jszc,
.qyxngw,
.wyfw,
.gpzasjf,
.sgfwzd {
  background-size: 100% 100%;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 15px;
}

.innovation-nr .jszc-box {
  width: 66.66%;
}

.jszc {
  background: url(../img/innovation1.jpg) no-repeat;
}

.qyxngw {
  background: url(../img/innovation2.jpg) no-repeat;
}

.wyfw {
  background: linear-gradient(100deg, #f9f3ff, #f9f8ff 100%);
}

.gpzasjf {
  background: linear-gradient(100deg, #e2eefd, #f7fbff 100%);
}

.sgfwzd {
  background: linear-gradient(100deg, #fff6ec, #fffaf7 100%);
}

.jszc>h1,
.qyxngw>h1,
.wyfw>h1,
.gpzasjf>h1,
.sgfwzd>h1 {
  color: #1a1a1a;
  font-size: 30px;
  margin-top: 20px;
}

.jszc>p,
.qyxngw>p,
.wyfw>p,
.gpzasjf>p,
.sgfwzd>p {
  color: #666666;
  font-size: 14px;
  margin-top: 10px;
  line-height: 22px;
}


/*资讯*/

.one-stop-box .big-title3 {
  margin-top: 110px;
  margin-bottom: 0px;
}

.one-stop-bj2 {
  background: url(../img/one-stop-bj2.png) no-repeat;
  background-size: 100% 100%;
  margin-top: 0px;
  padding-top: 50px;
}

.consulting {
  width: 1200px;
  margin: 0 auto;
}

.mySwiper {
  width: 30%;
  overflow: hidden;
  float: left;
  padding-top: 0.625rem;
  position: relative;
}

.mySwiper .swiper-pagination {
  text-align: left;
  margin-left: 1rem;
  bottom: var(--swiper-pagination-bottom, 21px) !important;
}

.consulting1 {
  width: 100%;
  box-sizing: border-box;
}

.consulting1>a {
  border: solid 1px #d9f0ff;
  border-radius: 10px;
  overflow: hidden;
}

.consulting2 {
  width: 70%;
  float: left;
  padding-left: 10px;
  box-sizing: border-box;
}

.consulting-tp {
  /* height: 170px; */
  height: 186px;
}

.consulting-tp>img {
  width: 100%;
  height: 100%;
}

.consulting-nr {
  background: #fff;
  box-sizing: border-box;
  padding: 20px;
  height: 216px;
}

.consulting-nr>h1 {
  color: #272c33;
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.consulting-nr>p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 15px;
}

.consulting-nr>span {
  color: #808080;
  font-size: 14px;
  line-height: 26px;
  display: block;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.consulting-nr>span>i{
	margin-right: 20px;
	display: inline-block;
	font-style: normal;
	 line-height: 26px;
	background: #e5eeff;
	/*border: solid 1px  #407ef4;*/
	color: #407ef4;
	border-radius: 4px;
  padding:0 5px;
}
.consulting2>li {
  float: left;
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.consulting2>li>a {
  background: #fff;
  border: solid 1px #d9f0ff;
  box-sizing: border-box;
  padding: 17px 20px;
  position: relative;
  padding-left: 95px;
}

.consulting-rq {
  border-bottom: solid 2px #e5e5e5;
  padding-bottom: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.consulting-rq>b {
  color: #333333;
  font-size: 20px;
}

.consulting-rq>span {
  color: #808080;
  font-size: 14px;
  display: block;
  padding-top: 10px;
}

.consulting2>li>a>h1 {
  color: #272c33;
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

.consulting2>li>a>p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 48px;
}


/*行业*/

.industry-box {
  padding: 30px 0;
  position: relative;
}

.industry-box:hover .prev-btn,
.industry-box:hover .next-btn {
  display: block;
}
.industry-box02 {
  padding-top: 30px;
  padding-bottom: 80px;
}
.prev-btn,
.next-btn {
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  line-height: 3.125rem;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: none;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  top: 37%;
  left: 10%;
  z-index: 999;
}

.next-btn {
  top: 37%;
  right: 10%;
  z-index: 999
}

.industry-hy>li {
  float: left;
  padding: 10px;
  box-sizing: border-box;
}

.industry-hy>li>img {
  width: 160px;
  height: 160px;
}

.industry-al {
  color: #4c4c4c;
  font-size: 16px;
  line-height: 44px;
  border: solid 1px #cccccc;
  border-radius: 40px;
  width: 160px;
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
}

.industry-al:hover {
  background: #4682f4;
  border: solid 1px #4682f4;
  color: #fff;
}


/*版权*/

.copyright-box {
  width: 100%;
  background: #2a2d35;
}

.copyright-xx {
  width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.copyright-dz {
  position: relative;
  height: 113px;
  padding-left: 124px;
  padding-top: 14px;
  float: left;
}

.copyright-dz>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 95px;
}

.copyright-dz>p {
  width: 100%;
  color: #ffffff;
  font-size: 15px;
  line-height: 35px;
  opacity: .9;
}

.copyright-dz>p>a {
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  margin: 0 8px;
  text-decoration: underline;
  display: inline;
}

.copyright-dh {
  float: right;
}

.copyright-dh>span {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
}

.copyright-dh>b {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.copyright-dh>a {
  width: 100px;
  height: 34px;
  line-height: 32px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(100deg, #5faaff 0, #434adb 100%);
  display: none;
}

.gzh {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
}

.gzh>img {
  width: 100%;
}

.gzh>p {
  text-align: center;
  font-size: 14px;
  color: #979899;
  margin-top: 10px;
}


/*一键返回*/

.fanhui-an {
  position: fixed;
  right: 20px;
  bottom: 60px;
  background: #fff;
  box-shadow: 0 0px 8px 0 rgba(146, 187, 252, .3);
  padding: 10px;
  box-sizing: border-box;
  border-radius: 30px;
  z-index: 99;
}

.return>li {
  border-bottom: solid 1px #e5e5e5;
  padding: 12px 0;
  position: relative;
}

.return>li>i {
  color: #b2b2b2;
  font-size: 30px;
  display: block;
}

.return>li:last-child {
  border-bottom: 0;
}

.return>li:hover i {
  background: -webkit-linear-gradient(#5faaff, #434adb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mfzxdh {
  font-size: 14px;
  color: #333333;
  text-align: center;
  position: absolute;
  top: 0px;
  right: 55px;
  background: #fff;
  box-shadow: 0 0px 8px 0 rgba(146, 187, 252, .3);
  padding: 20px 15px;
  border-radius: 8px;
  width: 200px;
  box-sizing: border-box;
  display: none;
}

.mfzxdh>b {
  background: -webkit-linear-gradient(#5faaff, #434adb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 22px;
  margin-top: 6px;
}

.return1:hover .mfzxdh {
  display: block;
}

.return2 {
  position: absolute;
  top: 0px;
  right: 55px;
  background: #fff;
  box-shadow: 0 0px 8px 0 rgba(146, 187, 252, .3);
  padding: 15px;
  border-radius: 8px;
  width: 270px;
  box-sizing: border-box;
  display: none;
}

.return2>li {
  width: 108px;
  float: left;
  font-size: 14px;
  color: #333333;
  text-align: center;
  margin: 0 6px;
}

.return2>li>img {
  width: 108px;
  margin-top: 5px;
}

.return3:hover .return2 {
  display: block;
}


/*即时通讯*/

.banner-jstx {
  background: url(../img/jstx02.png) no-repeat;
  background-size: cover;
}

.jstx-nr {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 110px 0;
}

.jstx-wa {
  position: relative;
  padding-top: 50px;
}

.jstx-wa>b {
  font-size: 40px;
  color: #1f2329;
  line-height: 60px;
  margin-bottom: 15px;
  display: block;
}

.jstx-wa>b>span {
  color: #4584f5;
  margin: 0 6px;
}

.jstx-wa>b>i {
  color: #444edd;
  margin: 0 6px;
  font-style: normal;
}

.jstx-wa>p {
  font-size: 17px;
  color: #404040;
  margin-top: 10px;
  line-height: 32px;
}

.jstx-lj>a {
  float: left;
  margin-right: 30px;
}

.jstx-wa {
  width: 440px;
  float: left;
}

.jstx-nr>img {
  width: 634px;
  float: right;
  display: block;
}

.jstx-lj {
  margin-top: 40px;
}

.jstx-ty {
  position: absolute;
  top: 15px;
  left: -30px;
  width: 120px !important;
}

.communication01 {
  width: 1200px;
  margin: 0 auto;
  padding: 70px 0;
}

.communication01>li {
  padding: 70px 0;
}

.communication-wa<h3 {
  font-size: 38px;
  color: #1f2329;
  line-height: 40px;
}

.communication-wa<p {
  font-size: 18px;
  color: #51565d;
  line-height: 26px;
}

.communication-tp {
  position: relative;
  width: 535px;
}

.wa-left {
  float: left;
}

.wa-right {
  float: right;
}

.communication-tp>img {
  width: 100%;
}

.tx01 {
  position: absolute;
  top: -29px;
  right: -30px;
  z-index: -1;
  width: 100px !important;
}

.communication-wa {
  margin-top: 120px;
  width: 40%;
  padding: 0 20px;
  box-sizing: border-box;
}

.communication-wa>h3 {
  color: #1f2329;
  font-size: 38px;
  line-height: 53px;
  margin-bottom: 25px;
}

.communication-wa>p {
  color: #51565d;
  font-size: 16px;
  line-height: 30px;
}

.tx02 {
  position: absolute;
  top: -34px;
  left: -44px;
  z-index: -1;
  width: 114px !important;
}


/*邮箱*/

.email01 {
  background: url(../img/email01.jpg) no-repeat;
  background-size: cover;
}

.communication-tp02 {
  width: 599px;
}

.tx03 {
  z-index: 2;
  top: 236px;
  left: -88px;
  width: 163px !important;
}


/*日程*/

.schedule01 {
  background: url(../img/schedule01.png) no-repeat;
  background-size: cover;
}


/*日志*/

.log01 {
  background-color: #f7f9ff;
}

.log01 .jstx-nr>img {
  width: 671px;
}

.log02 {
  width: 619px;
}


/*知识库*/

.knowledge01 {
  background: url(../img/knowledge01.png) no-repeat;
  background-size: cover;
}

.knowledge02 {
  width: 600px;
}


/* 设置根字体大小，作为rem的基准 */

html {
  font-size: 16px;
  /* 可根据设计稿调整 */
}


/* 针对不同屏幕尺寸进行适配 */

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
.scroll-container {
  width: 100%;
  overflow: hidden;
  /* 隐藏溢出的内容 */
}
.industry-hy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  position: relative;

  white-space: nowrap;
  /* 避免默认滚动条出现 */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE & Edge */
}

.industry-hy-row {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  white-space: nowrap;
  flex-wrap: nowrap;

  will-change: transform;
  /* 禁用硬件加速冲突 */
  transform: translateZ(0);

}


/* 添加左边遮罩层样式 */

.industry-hy-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
  border-radius: 10px;
}


/* 添加右边遮罩层样式（可选） */

.industry-hy-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
  border-radius: 10px;
}


/* 列表项样式 */

.industry-hy-row>li {
  flex: 0 0 auto;
  /* 不伸缩 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  box-sizing: border-box;
  margin: 0 20px;
}

.industry-hy-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  /* 提高滚动性能 */
}

.select-right-more {
  /* position: absolute;
  right: 10%;
  top: 0; */
  margin-top: 20px;
}


/*督查督办*/

.banner-duban {
  background: url(../img/duban01.jpg) no-repeat;
  background-size: cover;
}

.banner-duban .jstx-wa {
  width: 400px;
}

.banner-duban .jstx-nr>img {
  width: 672px;
}

.banner-duban .jstx-nr {
  padding: 45px;
}

.duban .communication-tp {
  width: 665px;
}

.duban .communication-wa {
  margin-top: 80px;
}


/*会议管理*/

.banner-huiyi {
  background: url(../img/huiyi01.jpg) no-repeat;
  background-size: cover;
}

.huiyi .communication-tp {
  width: 600px;
}


/*信息发布*/

.banner-xinxi {
  background: url(../img/xinxi01.jpg) no-repeat;
  background-size: cover;
}

.xinxi .communication-tp {
  width: 600px;
}


/*公文管理*/

.banner-gongwen {
  background: url(../img/gongwen01.jpg) no-repeat;
  background-size: cover;
}

.banner-gongwen .jstx-nr {
  padding: 83px 0;
}

.banner-gongwen .jstx-nr>img {
  width: 682px;
}

.gongwen .communication-tp {
  width: 600px;
}


/*集成中心*/

.banner-jicheng {
  background: url(../img/jicheng01.jpg) no-repeat;
  background-size: cover;
}

.banner-jicheng .jstx-nr {
  padding: 83px 0;
}

.banner-jicheng .jstx-nr>img {
  width: 682px;
}

.jicheng .communication-tp {
  width: 600px;
}
.jicheng .communication-wa{
    margin-top: 80px;
}

/*流程中心*/

.banner-liuc {
  background: url(../img/menh01.jpg) no-repeat;
  background-size: cover;
}

.banner-liuc .jstx-nr>img {
  width: 682px;
}

.banner-liuc .jstx-nr {
  padding: 83px 0;
}

.liuc .communication-tp {
  width: 630px;
}


/*门户中心*/

.banner-menh {
  background: url(../img/menh01.jpg) no-repeat;
  background-size: cover;
}

.banner-menh .jstx-nr>img {
  width: 746px;
}

.banner-menh .jstx-nr {
  padding: 83px 0;
}

.menh .communication-tp {
  width: 600px;
}


/*数据中心*/

.banner-shuju {
  background: url(../img/shuju01.jpg) no-repeat;
  background-size: cover;
}

.banner-shuju .jstx-wa {
  width: 1200px;
  text-align: center;
}

.banner-shuju .jstx-lj {
  margin-top: 22px;
  margin-bottom: 30px;
}

.banner-shuju .jstx-lj>a {
  margin: 0 auto;
  float: none;
}

.banner-shuju .jstx-nr>img {
  width: 1100px;
  margin: 0 auto;
  margin-top: 46px;
}

.banner-shuju .jstx-nr {
  padding: 20px 0 0 0;
}

.shuju .communication-tp {
  width: 600px;
}

.shuju .communication-wa {
  margin-top: 70px;
  width: 43%;
}


/*业务编排中心*/

.banner-yewu {
  background: url(../img/jicheng01.jpg) no-repeat;
  background-size: cover;
}

.banner-yewu .jstx-nr>img {
  width: 746px;
}

.banner-yewu .jstx-nr {
  padding: 56px 0;
}

.yewu .communication-tp {
  width: 600px;
}

.jstx-nr02{
	padding: 82px 0;
}
/*智能考勤*/

.banner-kaoq {
  background: url(../img/kaoq01.jpg) no-repeat;
  background-size: cover;
}

.banner-kaoq .jstx-nr>img {
  width: 690px;
}

.banner-kaoq .jstx-nr {
  padding: 56px 0;
}

.kaoq .communication-tp {
  width: 620px;
}

.banner-kaoq .jstx-wa {
  padding-top: 66px;
}


/*无纸化会议*/

.banner-wuzhih {
  background: url(../img/wuzhih01.jpg) no-repeat;
  background-size: cover;
}

.banner-wuzhih .jstx-nr>img {
  width: 602px;
}

.banner-wuzhih .jstx-nr {
  padding: 56px 0;
}

.wuzhih .communication-tp {
  width: 600px;
}

.wuzhih06 {
  width: 600px;
}

.banner-wuzhih .jstx-wa {
  padding-top: 45px;
}
.wuzhih .communication-wa{
	margin-top: 100px;
}
/*投票调查*/
.banner-tpjc {
  background: url(../img/wuzhih01.jpg) no-repeat;
  background-size: cover;
}
.banner-tpjc .jstx-nr{
	padding: 75px 0;
}
/*安全管家*/
.banner-aqgj {
  background: url(../img/duban01.jpg) no-repeat;
  background-size: cover;
}
.banner-aqgj .jstx-nr>img{
	width: 602px;
}
/*智慧党建*/
.banner-zhdj {
  background: url(../img/zhdj.jpg) no-repeat;
  background-size: cover;
}
.banner-zhdj .jstx-nr>img{
	width: 602px;
}
.banner-zhdj .jstx-wa>b>span{
	color: #c00000;
}
.banner-zhdj .jstx-nr{
	padding: 87px 0;
}
/*数字化转型*/
.banner-szhzx{
	background: url(../img/huiyi01.jpg) no-repeat;
  background-size: cover;
}
.banner-szhzx .jstx-nr{
	padding: 87px 0;
}
.banner-szhzx .jstx-nr>img{
	width: 602px;
}
.szhzx .communication-wa>p{
	margin: 10px 0;
}
.szhzx .communication-wa {
    margin-top: 50px;
    width: 39%;}
.szhzx .communication-tp{
    	width: 650px;
    }
/*应用中心*/
.banner-yyzx {
  background: url(../img/schedule01.png) no-repeat;
  background-size: cover;
}
.banner-yyzx .jstx-nr>img {
  width: 602px;
}
.yyzx .communication-wa {
  width: 45%;
}
.yyzx .communication-tp {
  width: 560px;
}
/*关于我们*/

.banner-td {
  background: url(../img/td01.jpg) no-repeat;
  background-size: cover;
}

.banner-td .jstx-nr {
  padding: 110px 0 150px 0;
}

.td .gsjj02 {
  margin-top: 0px;
  width: 60%;
}

.td .gsjj {
  width: 410px;
}

.gsjj02>p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 10px;
}

.gsjj02>p>b {
  color: #333;
  font-size: 20px;
}

.gsjj>p {
  color: #333;
  font-size: 14px;
  line-height: 25px;
  background: #e8f2fb85;
  padding: 13px;
}

.gsjj03 {
  width: 50%;
}

.gsjj03>p {
  margin-bottom: 15px;
}


/*资源中心*/

.banner-zyzx {
  background: url(../img/zyzx01.png) no-repeat;
  background-size: cover;
}

.banner-zyzx .jstx-nr {
  padding: 60px 0 80px 0;
}

.banner-zyzx .jstx-wa>b {
  color: #407ef4;
}

.zyzx-sx {
  width: 900px;
  float: left;
}

.zyzx-sx>li {
  float: left;
  margin-right: 20px;
  color: #808080;
  line-height: 32px;
  cursor: pointer;
  font-size: 14px;
}

.zyzx-sx .zyzx-dq {
  color: #407ef4;
  background: #e5eeff;
  padding: 0px 10px;
  border-radius: 4px;
}

.zyzx-sx>li:hover {
  color: #407ef4;
}

.zyzx-box {
  width: 1160px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.zyzx-ss {
  float: right;
  width: 250px;
  position: relative;
}

.zyzx-ss input {
  background-color: #F5F6FA;
  border-radius: 32px;
  font-size: 14px;
  line-height: 40px;
  color: #575d6c;
  outline: none;
  border: none;
  box-sizing: border-box;
  padding: 0 15px;
  width: 100%;
  padding-left: 40px;
}

.zyzx-ss .icon-sousuo {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 15px;
  line-height: 40px;
  color: #666;
}

.zyzx-lb>li {
  width: 25%;
  box-sizing: border-box;
  float: left;
  padding: 20px;
}

.zyzx-lb>li .ziyuan {
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  color: #999;
  border-radius: 6px;
  border: 1px solid #E8EEF1;
  /*height: 265px;*/
}

.zyzx-lbtp {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #F5F6FA;
  border-radius: 6px 6px 0 0;
  position: relative;
}

.zyzx-lbtp>img {
  height: 100%;
  width: auto;
}

.zyzx-lbtp .tiyan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  color: #fff;
  background: rgba(0, 0, 0, .3);
  font-size: 16px;
  text-align: center;
  line-height: 180px;
  border-radius: 6px 6px 0 0;
  display: none;
}

.zyzx-lbtp .tiyan>p {
  border: solid 1px rgba(225, 225, 225, .9);
  border-radius: 50%;
  width: 85px;
  height: 85px;
  line-height: 85px;
  margin: 0 auto;
  margin-top: 38px;
  color: #fff;
  background: rgba(0, 0, 0, .4);
}

.zyzx-lbtp:hover .tiyan {
  display: block;
}

.zyzx-lbbt {
  padding: 15px;
}

.zyzx-lbbt>b {
  width: 100%;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  display: block;
}

.zyzx-lbbt>span {
  color: #999;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.zyzx-lb>li>a:hover {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .1);
}


/*案例与方案*/

.zyzx-al>li {
  float: left;
  font-size: 14px;
  color: #767676;
  line-height: 32px;
  cursor: pointer;
  margin: 5px 10px;
}

.zyzx-al {
  width: 100%;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, .1);
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  box-sizing: border-box;
}

.zyzx-al>li>p {
  color: #333;
}

.zyzx-al .zyzx-dq {
  color: #407ef4;
  background: #e5eeff;
  padding: 0px 10px;
  border-radius: 4px;
}

.anli-lbbt>span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: break-spaces;
  line-height: 22px;
  font-size: 14px;
  color: #797979;
  margin-top: 0px;
}

.anli-lbbt>i {
  color: #999;
  font-size: 12px;
  display: block;
  padding-top: 10px;
  text-align: right;
  font-style: normal;
}

/*.anli {
	padding-top: 40px;
}*/


/*资讯*/
.zyzx-box02 {
  width: 1200px;
  margin-bottom: 30px;
}
.zyzx-box02 .zyzx-sx {
  width: 100%;
}
.information-box .information-gszx>li {
  border-bottom: 1px solid #ebebeb;
  box-sizing: border-box;
  padding: 40px 0;
}

.information-gszx>li>a {
  position: relative;
  box-sizing: border-box;
  padding-left: 160px;
  padding-right: 150px;
}

.information-rq {
  position: absolute;
  top: 0;
  left: 30px;
}

.information-rq>p {
  font-size: 30px;
  color: #cccccc;
  line-height: 40px;
}

.information-rq>span {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  display: block
}

.information-gszx>li>a>h1 {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.information-gszx>li>a>p {
  font-size: 14px;
  color: #666;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 50px;
}

.information-gd {
  position: absolute;
  right: 30px;
  top: 26px;
  font-size: 14px;
  color: #666;
  line-height: 40px;
  border-bottom: solid 2px #666;
}

.information-gszx>li:hover {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
}

.information-gszx>li:hover .information-rq>p {
  color: #666666;
}

.information-gszx>li:hover a>h1 {
  color: #407ef4;
}

.information-gszx>li:hover a>p {
  color: #333;
}

.information-qyxx>li>a>h1 {
  color: #333;
  font-size: 22px;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.information-qyxx>li>a>p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 75px;
}

.information-qyxx>li>a {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
  position: relative;
  padding: 30px;
  box-sizing: border-box;
  padding-left: 350px;
}

.information-qyxx>li>a>span {
  color: #999;
  font-size: 14px;
  display: block;
  margin-top: 15px
}

.qyxx-tp {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 300px;
  height: 170px;
  border-radius: 4px;
  overflow: hidden;
}

.qyxx-tp>img {
  width: 100%;
  height: 100%;
}

.information-qyxx {
  margin-bottom: 30px;
  margin-top: 10px;
}
/*解决方案*/
.navigation02 {
  /* box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1); */
  border-bottom: 1px solid #ebeef5;
}
.plan-box {
  width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 50px 0 90px 0;
}
.plan-box>h1 {
  font-size: 40px;
  line-height: 60px;
  font-weight: 600;
  color: #1F2329;
  margin-bottom: 20px;
  text-align: center;
}
.plan-box>span {
  color: #1F2329;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
  text-indent: 40px;
  display: block;
}
.plan-box>h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 10px;
  margin-top: 30px;
}
.plan-box>h3 {
  color: #1f2329;
  font-size: 20px;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 10px;
}
.plan-box>h3>i {
  color: #4682f4;
  margin-right: 10px;
  font-size: 20px;
  line-height: 50px;
}
.plan-box>p {
  color: #1F2329;
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 15px;
}
.plan-box>img {
  width: 1000px;
  margin: 40px auto;
  display: block;
}
.plan-box>p>i {
  color: #000;
  font-style: normal;
  list-style-type: disc;
  font-weight: 600;
  font-size: 16px;
}
.jjfa-box {
  box-sizing: border-box;
  /*padding: 10px 0;*/
}
.jjfa-box>li {
  float: left;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
  border-bottom: 1px solid #ebeef5;
  padding: 20px;
  border-radius: 4px;
  width: 21.5%;
  margin: 20px 1.5%;
  min-height: 260px;
}
.jjfa-box>li>b {
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  display: block;
  font-size: 16px;
  padding-bottom: 10px;
  color: #4682f4;
  margin-bottom: 10px;
}
.jjfa-box>li>p {
  font-size: 14px;
  color: #333;
  line-height: 26px;
  margin: 10px 0;
}
.jjfa-box02>li {
  width: 30.2%;
  min-height: 220px;
}
.jjfa-box07>li {
  height: 351px;
}
.jjfa-box03>li {
  min-height: 200px;
}
.bangong-fa {
  margin-bottom: 20px;
}
.bangong-fa>li {
  float: left;
  padding: 20px;
  background: #f1f7ff;
  border-radius: 4px;
  width: 47%;
  margin: 20px 1.5%;
  min-height: 181px;
  border: solid 1px #ddebff;
}
.bangong-fa>li>b {
  width: 100%;
  display: block;
  font-size: 16px;
  padding-bottom: 15px;
  color: #4682f4;
}
.bangong-fa>li>span {
  height: 5px;
  width: 50px;
  border-radius: 40px;
  background: linear-gradient(10deg, #5faaff 0, #434adb 100%);
  display: block;
}
.bangong-fa>li>p {
  font-size: 14px;
  color: #333;
  line-height: 26px;
  margin: 10px 0;
}
.jjfa-box04>li {
  width: 17%;
  height: 160px;
}
.bangong-fa02>li {
  width: 30%;
}
.jjfa-box05>li>p {
  font-size: 16px;
  line-height: 30px;
}
.jjfa-box06>li {
  min-height: 210px;
}
.bangong-fa03>li {
  height: 223px;
}
/*资讯详情*/
.details-bj {
  background: url(../img/qyzx.jpg) no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 300px;
  box-sizing: border-box;
  padding-top: 127px;
}
.details-bt {
  background: #fff;
  width: 1200px;
  border-radius: 10px 10px 0 0;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px;
  padding-bottom: 10px;
}
.details-bt>h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}
.details-bt>p {
  font-size: 16px;
  line-height: 50px;
  color: #666;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
}
.details-bt>p>i {
  margin-right: 10px;
}
.details-box {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  padding-bottom: 100px;
}
.details-box>p {
  color: #1F2329;
  font-size: 16px;
  line-height: 34px;
  margin-bottom: 15px;
}
.details-box>h2 {
  color: #1f2329;
  font-size: 20px;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 10px;
}
.details-box>h2>i {
  color: #4682f4;
  margin-right: 10px;
  font-size: 20px;
  line-height: 50px;
}
.details-box>img {
  width: 800px;
  margin: 40px auto;
  display: block;
}
.details-box>h3 {
  color: #1f2329;
  font-size: 20px;
  font-weight: 600;
  line-height: 60px;
  /*    margin-bottom: 10px;*/
}
.details-box>p>i {
  color: #000;
  font-style: normal;
  list-style-type: disc;
  font-weight: 600;
  font-size: 16px;
}
.details-bj02 {
  background: url(../img/qyzx02.jpg) no-repeat;
}
.jjfa-box07>li {
  height: 305px;
}
.anli02>li {
  color: #1F2329;
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 15px;
  list-style-type: disclosure-closed;
  margin-left: 22px;
}


