@charset "utf-8";
html {
  scroll-behavior: smooth;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
  font-weight: normal;
}
html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}
img {
  vertical-align: top;
}
html {
  overflow-x: hidden;
}
i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}
[hidefocus],
summary {
  outline: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}
sup,
sub {
  font-size: 83%;
}
pre,
code,
kbd,
samp {
  font-family: inherit;
}
q:before,
q:after {
  content: none;
}
textarea {
  overflow: auto;
  resize: none;
}
label,
summary {
  cursor: default;
}
a,
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}
del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}
body,
textarea,
input,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}
:focus {
  outline: 0;
}
/*备用样式表*/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
  *zoom: 1;
}
.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(images/icon.png) no-repeat;
}
/*css3扩展*/
body:before {
  display: none;
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
/*滚动样式*/
.scroller {
  position: absolute;
  z-index: 1;
  width: 750px;
  height: 160px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
  width: 4px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
  background-color: #fff; /*滚动条的背景颜色*/
  -webkit-border-radius: 0; /*滚动条的圆角宽度*/
}
::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  -webkit-border-radius: 4px;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border: 1px solid #fff;
}

/**布局开始**/
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #333;
  position: relative;
}
p {
  line-height: 1.75;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: #2c73cc;
}
.flex {
  display: flex;
  display: -webkit-flex;
}
.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}
.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.text-line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.text-line5 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
}


/* header */

header {
  position: absolute;
  z-index: 2;
}

.logo{
  
}
.header-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 43px;
}
.header-nav{
  /* padding: 10px; */
  background: #467ED5;
  box-shadow: 0px 0px 35px 0px rgba(6,74,172,0.4);
  border-radius: 23px;
  height:45px;
  padding: 0 20px;
}
/* nav */
.header-nav {
  position: relative;
  display: flex;
  align-items: center;
}
.menu-toggle-icon {
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}
.nav {
  transition: all 0.4s ease;
  display: none;
  visibility: hidden;
  z-index: 1000;
}
.nav .wp-menu {
  width: auto;
  height: 45px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 45px;
  text-align: center;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  position: relative;
  transition: all 0s ease;
  padding: 0 12px;
  margin: 0 8px;
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 45px;
}
.nav .wp-menu .menu-item:hover a.menu-link {
  position: relative;
}
.nav .wp-menu .menu-item> a.menu-link{ 
  color: #ffffff;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 45px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: #fff;
  text-align: left;
  padding-top: 3px;
}

.nav .wp-menu .menu-item a.menu-link:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  height: 3px;
  width: 0px;
  background: #feffff;
  transition: all 0.3s ease;
}
.nav .wp-menu .menu-item.hover a.menu-link:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  height: 3px;
  width: 35px;
  background: #feffff;
}

.nav .sub-menu {
  background: rgba(0, 0, 0, 0.2);
}

.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}

.nav .sub-menu .sub-item a {
  display: block;
  color: #fff;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  text-align: center;
  padding: 0 8px;
}

.nav .sub-menu .sub-item.hover>a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
}

.nav .sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
  background: rgba(0, 0, 0, 0.2);
}

.cancel-icon {
  cursor: pointer;
  z-index: 1001;
  display: none;
  visibility: hidden;
  transition: all 0.3s ease;
}
/* 展开状态 */
.header-nav.active .menu-toggle-icon {
  display:none;
}
.header-nav.active .nav {
  display: flex;
  visibility: visible;
  justify-content: space-between;
  align-items: center;
}

.header-nav.active .cancel-icon {
  display: flex;
  visibility: visible;
}
/* banner */
.mySwiper1 {
  width: 100%;
  height: auto;
  position: relative;
}
.banner {
  width: 100%;
  height: auto;
  min-height: 200px;
}
.mySwiper1:before{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12.11%;
  background: url(images/banner_shadow.png) no-repeat;
  background-size: 100% 100%;
  z-index: 100;
}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.h1{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* 搜索功能样式 */
.header-search {
  position: relative;
}
.search-trigger {
  background: #467ED5;
  box-shadow: 0px 0px 35px 0px rgba(6,74,172,0.4);
  padding: 12px 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-trigger:hover {
  background: #3a6bc9;
}
.search-dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
  padding: 15px;
  width: 300px;
  transform: scale(0);
  transform-origin: top right;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 555;
}
.search-dropdown.active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.search-dropdown form {
  display: flex;
  align-items: center;
}
.search-input-field {
  flex: 1;
  padding: 14px 15px;
  border: 1px solid #ddd;
  border-radius: 20px 0 0 20px;
  outline: none;
  font-size: 14px;
  background: #fff;
}
.search-input-field input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}

.search-submit-btn {
  width: 46px;
  height: 46px;
  border: none;
  background: #467ED5;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-submit-btn img {
  width: 20px;
  height: 20px;
  object-fit: cover;  
}






/* main1 */
.main1{
  padding-top: 90px;
  min-height: 969px;
  text-align: center;
}
.tit1{
  text-align: center;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 36px;
  color: #001F3D;
  line-height: 25px;
}
.tit2{
  margin-top:40px;
  text-align: center;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 24px;
  color: #8C96A0;
  line-height: 40px;
  font-style: italic;
}
.mySwiper4{
  padding-top:48px;
  padding-bottom: 48px;
  padding-left: 10px;
  padding-right: 10px;
}
.RHbox{
  background: #FFFFFF;
  border-radius: 15px;
  border: 1px solid #D6E7FB;
  padding: 55px 0px 50px 0px;
  width: 100%;
  height: 602px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.mySwiper4  .swiper-slide[data-swiper-slide-index="1"]{
  height: 650px;
}
.mySwiper4  .swiper-slide[data-swiper-slide-index="1"] .RHbox{
  height: 650px;
}
.mySwiper4  .swiper-slide[data-swiper-slide-index="0"] ,
.mySwiper4  .swiper-slide[data-swiper-slide-index="2"] { 
  margin-top:48px;
}
.mySwiper4  .swiper-slide[data-swiper-slide-index="2"] .RHtext{
  margin-top:20px;
}
.mySwiper4  .swiper-slide[data-swiper-slide-index="2"] .RHtext li{
  line-height: 38px;
}
.mySwiper4  .swiper-slide[data-swiper-slide-index="1"] .RH{
  background: url(images/ZHYY.png);
}
.mySwiper4  .swiper-slide[data-swiper-slide-index="2"] .RH{
  background: url(images/ZHDJ.png);
}
.RH{
  display: block;
  width: 247px;
  height: 161px;
  background: url(images/RHMH.png);
  background-size: cover;
  margin: 0 auto;
}
.s1{
  margin-top:25px;
  text-align: center;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 26px;
  color: #2E2F46;
  line-height: 30px;
}
.RHtext{
  display: flex;
  gap:0px 25px;
  text-align: center;
  margin-top:28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  position: relative;
}
.RHtext:before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: rgba(128, 149, 169, 0.2);
}
.RHtext li{ 
  width: calc(100% / 2 - 25px);
  margin-right: 25px;
  text-align: right;
}
.RHtext li a{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #617689;
  line-height: 46px;
}
.RHtext li:nth-child(2n){ 
  text-align: left;
  margin-right: 0px;
}
/* .RHtext ul:first-child{ 
  width: 50%;
  padding-right: 25px;
  border-right: 1px solid rgba(128, 149, 169, 0.2);
}
.RHtext ul:nth-child(2){ 
  width: 50%;
  padding-left: 25px;
}
.RHtext ul:last-child li{ 
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #617689;
  line-height: 46px;
  text-align: left;
  white-space: nowrap;
} */
.More{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #8095A9;
  line-height: 30px;
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}
.RHbox:hover {
  background: #fcfdff;
  border: 1px solid #418EEF;
  position: relative;
}
.RHbox:hover::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 110px;
  background: linear-gradient(to bottom, #fcfdff, #d8e8fc);
  border-radius: 0 0 14px 14px;
}
.RHbox:hover .More{
  color: #2C73CC;
  z-index: 1;
}
.RHbox:hover .More:before{
  position:absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 110%;
  width: 11px;
  height: 12px;
  background: url(images/more.png) no-repeat;
}



/* main2 */
.main2{
  padding-bottom: 270px ;
  background: rgba(65, 117, 196, 0.1);
  border-radius: 15px;  
  padding-top: 80px; 
  position: relative;
}
.JJlist{
  width: calc(100% + 86px);
  display: flex;
  gap:73px;
  margin-left: -43px;
}
.JJbox{
  margin-top: 60px;
  /* width: 579px; */
  height: 465px;
  width: calc( 100% / 3 - 48.6px);
  position: relative;
  box-sizing: border-box;
}
/* .JJlist li:nth-child(2){ 
  width: 620px;
} */
.JJimg{
  width: 100%;
  height:100%;
  object-fit: cover;
}
.JJtext{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -73px;
  width: calc(100% - 105px);
  height: 205px;
  background: #ECF1F9;
  border-radius: 5px;
  padding: 0 52px;
  transition: all .5s;
}
.JJlist1{
  display: none;
}
/* .JJlist li:nth-child(1) .JJtext{
  left: 11px;
  transform: translateX(0);
}
.JJlist li:nth-child(3) .JJtext{
  left: 53px;
  transform: translateX(0);
} */
.s2{
  text-align: center;
  margin-top: 30px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 30px;
  color: #001F3D;
  line-height: 30px;
}
.s3{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #8095A9;
  line-height: 36px;
  margin-top: 20px;
}
.JJbox:hover .JJtext{
  background: #FFFFFF;
  box-shadow: 0px 15px 40px 0px rgba(56,146,232,0.25);
  border-radius: 5px;
}
.JJbox:hover .s2{
  color: #3372CE;
}
.JJbtn{
  padding: 11px 34px;
  background: linear-gradient(140deg, #FF5D00, #EC7F32, #FF9832);
  border-radius: 5px;
  opacity: 0.9;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 28px;
  position: absolute;
  left: 50%;
  bottom: 71px;
  transform: translateX(-50%);
}
.JJbtn:hover{
  color: #FFFFFF;
}
.JJbox.hovered .JJtext {
  background: #FFFFFF;
  box-shadow: 0px 15px 40px 0px rgba(56,146,232,0.25);
  border-radius: 5px;
}

.JJbox.hovered .s2 {
  color: #3372CE;
}
/* main3 */
.main3{ 
  background: url(images/background1.png) center no-repeat;
  background-size: cover;
  height: 713px;
  z-index: 2;
  position: relative;
  padding-top: 80px;
}
.main3box{
  position: relative;
  width: 100%;
  margin-top: 80px;
}
.m1{
  position: absolute;
  width: 252px;
  height: 86px;
  background: white;
  box-shadow: 0px 15px 30px 0px rgba(91,126,207,0.3);
  border-radius: 15px;
  padding: 18px 21px;
  z-index: 2;
  left: 100px;
  top: 50px;
  
}
.mi_pic1{
  background: url(images/NJSJ_hover.png) center no-repeat;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 100%;
}
.m2{
  width: 275px;
  height: 84px;
  padding: 14px 21px;
  top: 0;
  left: 405px;
}
.mi_pic2{
  background: url(images/JSKJ_hover.png) center no-repeat;
}
.m3{
  width: 210px;
  height: 90px;
  padding: 14px 21px;
  top: 160px;
  left: 10px;
}
.mi_pic3{
  background: url(images/NJYYSX_hover.png) center no-repeat;
}
.m4{
  width: 334px;
  height: 90px;
  padding: 14px 21px;
  top: 210px;
  left: 270px;
}
.mi_pic4{
  background: url(images/SHCJ_hover.png) center no-repeat;
}
.m5{
  width: 435px;
  height: 106px;
  padding: 14px 21px;
  top: 370px;
  left: 340px;
}
.mi_pic5{
  background: url(images/NJSF_hover.png) center no-repeat;
}
.m6{
  width: 287px;
  height: 103px;
  padding: 14px 21px;
  top: 230px;
  left: 645px;
}
.mi_pic6{
  background: url(images/QH_hover.png) center no-repeat;
}
.m7{
  width: 248px;
  height: 90px;
  padding: 14px 21px;
  top: 40px;
  left: 910px;
}
.mi_pic7{
  background: url(images/LZ_hover.png) center no-repeat;
}
.m8{
  width: 319px;
  height: 91px;
  padding: 14px 21px;
  top: 280px;
  left: 970px;
}
.mi_pic8{
  background: url(images/NJLG_hover.png) center no-repeat;
}
.b1{
  position: absolute;
  width: 236px;
  height: 88px;
  background: rgba(255,255,255,0.5);
  box-shadow: 0px 15px 30px 0px rgba(91,126,207,0.3);
  border-radius: 15px;
  padding: 14px 21px;
  top: 0px;
  left: 720px;
}
.bi_pic1{
  background: url(images/HXJT.png) center no-repeat;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 100%;
}
.b2{
  width: 246px;
  height: 90px;
  padding: 14px 21px;
  top: 100px;
  left: 260px;
}
.bi_pic2{
  background: url(images/NJDX.png) center no-repeat;
}
.b3{
  width: 294px;
  height: 85px;
  padding: 14px 21px;
  top: 105px;
  left: 540px;
}
.bi_pic3{
  background: url(images/ZGCM.png) center no-repeat;
}
.b4{
  width: 324px;
  height: 92px;
  padding: 14px 21px;
  top: 165px;
  left: 860px;
}
.bi_pic4{
  background: url(images/JSWSJK.png) center no-repeat;
}
.b5{
  width: 375px;
  height: 104px;
  padding: 14px 21px;
  top: 285px;
  left: 140px;
}
.bi_pic5{
  background: url(images/JSHY.png) center no-repeat;
}
.b6{
  width: 300px;
  height: 97px;
  padding: 14px 21px;
  top: 350px;
  left: 820px;
}
.bi_pic6{
  background: url(images/TJ.png) center no-repeat;
}

.main3box.active .m1{ background: rgba(255,255,255,0.5);
  box-shadow: 0px 15px 30px 0px rgba(91,126,207,0.3);z-index: 0;}
.main3box.active .mi_pic1 { background: url(images/NJSJ.png) center no-repeat; }
.main3box.active .mi_pic2 { background: url(images/JSKJ.png) center no-repeat; }
.main3box.active .mi_pic3 { background: url(images/NJYYSX.png) center no-repeat; }
.main3box.active .mi_pic4 { background: url(images/SHCJ.png) center no-repeat; }
.main3box.active .mi_pic5 { background: url(images/NJSF.png) center no-repeat;  }
.main3box.active .mi_pic6 { background: url(images/QH.png) center no-repeat; }
.main3box.active .mi_pic7 { background: url(images/LZ.png)center no-repeat; }
.main3box.active .mi_pic8 { background: url(images/NJLG.png) center no-repeat; }

.main3box.active .b1{  box-shadow: 0px 15px 30px 0px rgba(91,126,207,0.3);background: white;z-index: 2;}
.main3box.active .bi_pic1 { background: url(images/HXJT_hover.png) center no-repeat; }
.main3box.active .bi_pic2 { background: url(images/NJDX_hover.png) center no-repeat; }
.main3box.active .bi_pic3 { background: url(images/ZGCM_hover.png) center no-repeat; }
.main3box.active .bi_pic5 { background: url(images/JSHY_hover.png) center no-repeat; }
.main3box.active .bi_pic4 { background: url(images/JSWSJK_hover.png) center no-repeat; }
.main3box.active .bi_pic6 { background: url(images/TJ_hover.png) center no-repeat; }



.main3 {
  background: url(images/background1.png) center no-repeat;
  background-size: 100% 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
.main3box {
  position: relative;
  width: 100%;
  height: 520px; 
  margin-top: 40px;
}
.main3box .mobile-auto-scroll {
  display: none;
}
.m1, .b1 {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0px 15px 30px 0px rgba(91, 126, 207, 0.3);
  padding: 14px 21px;
}

.m1 a, .b1 a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* ========== PC 端：≥1024px ========== */
@media (min-width: 1024px) {
  .m1 { width: 252px; height: 86px; left: 7%; top: 10%; background: white; }
  .m2 { width: 275px; height: 84px; left: 29%; top: 0%; background: white; }
  .m3 { width: 210px; height: 90px; left: 1%; top: 32%; background: white; }
  .m4 { width: 334px; height: 90px; left: 19%; top: 42%; background: white; }
  .m5 { width: 435px; height: 106px; left: 24%; top: 74%; background: white; }
  .m6 { width: 287px; height: 103px; left: 46%; top: 46%; background: white; }
  .m7 { width: 248px; height: 90px; left: 65%; top: 8%; background: white; }
  .m8 { width: 319px; height: 91px; left: 69%; top: 56%; background: white; }

  .b1 { width: 236px; height: 88px; left: 51%; top: 0%; background: rgba(255,255,255,0.5); }
  .b2 { width: 246px; height: 90px; left: 19%; top: 20%; background: rgba(255,255,255,0.5); }
  .b3 { width: 294px; height: 85px; left: 39%; top: 21%; background: rgba(255,255,255,0.5); }
  .b4 { width: 324px; height: 92px; left: 61%; top: 33%; background: rgba(255,255,255,0.5); }
  .b5 { width: 375px; height: 104px; left: 10%; top: 57%; background: rgba(255,255,255,0.5); }
  .b6 { width: 300px; height: 97px; left: 59%; top: 70%; background: rgba(255,255,255,0.5); }

  /* 背景图 - 默认状态（A组hover图，B组normal图）*/
  .mi_pic1 { background-image: url(images/NJSJ_hover.png); }
  .mi_pic2 { background-image: url(images/JSKJ_hover.png); }
  .mi_pic3 { background-image: url(images/NJYYSX_hover.png); }
  .mi_pic4 { background-image: url(images/SHCJ_hover.png); }
  .mi_pic5 { background-image: url(images/NJSF_hover.png); }
  .mi_pic6 { background-image: url(images/QH_hover.png); }
  .mi_pic7 { background-image: url(images/LZ_hover.png); }
  .mi_pic8 { background-image: url(images/NJLG_hover.png); }

  .bi_pic1 { background-image: url(images/HXJT.png); }
  .bi_pic2 { background-image: url(images/NJDX.png); }
  .bi_pic3 { background-image: url(images/ZGCM.png); }
  .bi_pic4 { background-image: url(images/JSWSJK.png); }
  .bi_pic5 { background-image: url(images/JSHY.png); }
  .bi_pic6 { background-image: url(images/TJ.png); }

  /* active 状态：A/B 反转 */
  .main3box.active .m1,
  .main3box.active .m2,
  .main3box.active .m3,
  .main3box.active .m4,
  .main3box.active .m5,
  .main3box.active .m6,
  .main3box.active .m7,
  .main3box.active .m8 {
    background: rgba(255,255,255,0.5) !important;
    z-index: 0;
  }

  .main3box.active .b1,
  .main3box.active .b2,
  .main3box.active .b3,
  .main3box.active .b4,
  .main3box.active .b5,
  .main3box.active .b6 {
    background: white !important;
    z-index: 2;
  }

  .main3box.active .mi_pic1 { background-image: url(images/NJSJ.png); }
  .main3box.active .mi_pic2 { background-image: url(images/JSKJ.png); }
  .main3box.active .mi_pic3 { background-image: url(images/NJYYSX.png); }
  .main3box.active .mi_pic4 { background-image: url(images/SHCJ.png); }
  .main3box.active .mi_pic5 { background-image: url(images/NJSF.png); }
  .main3box.active .mi_pic6 { background-image: url(images/QH.png); }
  .main3box.active .mi_pic7 { background-image: url(images/LZ.png); }
  .main3box.active .mi_pic8 { background-image: url(images/NJLG.png); }

  .main3box.active .bi_pic1 { background-image: url(images/HXJT_hover.png); }
  .main3box.active .bi_pic2 { background-image: url(images/NJDX_hover.png); }
  .main3box.active .bi_pic3 { background-image: url(images/ZGCM_hover.png); }
  .main3box.active .bi_pic4 { background-image: url(images/JSWSJK_hover.png); }
  .main3box.active .bi_pic5 { background-image: url(images/JSHY_hover.png); }
  .main3box.active .bi_pic6 { background-image: url(images/TJ_hover.png); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .main3box { height: 480px; }
  .m1 { left: 8%; top: 12%; width: 220px; height: 75px; }
  .m2 { left: 32%; top: 2%; width: 240px; height: 73px; }
  .m3 { left: 2%; top: 35%; width: 180px; height: 78px; }
  .m4 { left: 22%; top: 45%; width: 290px; height: 78px; }
  .m5 { left: 26%; top: 75%; width: 380px; height: 92px; }
  .m6 { left: 48%; top: 48%; width: 250px; height: 90px; }
  .m7 { left: 68%; top: 10%; width: 210px; height: 78px; }
  .m8 { left: 72%; top: 58%; width: 280px; height: 80px; }

  .b1 { left: 54%; top: 2%; width: 200px; height: 76px; }
  .b2 { left: 22%; top: 22%; width: 210px; height: 78px; }
  .b3 { left: 42%; top: 23%; width: 250px; height: 74px; }
  .b4 { left: 64%; top: 35%; width: 280px; height: 80px; }
  .b5 { left: 12%; top: 60%; width: 320px; height: 90px; }
  .b6 { left: 62%; top: 72%; width: 260px; height: 85px; }
}

@media (max-width: 767px) {
  .main3box .pc-layout {
    display: none !important;
  }
  .mobile-auto-scroll {
    display: block !important;
    width: 100%;
    height: 520px; 
    overflow: hidden;
    position: relative;
    margin-top: 20px;
  }
  .scroll-content {
    display: flex;
    flex-direction: column;
    animation: scrollUp 30s linear infinite;
    width: 98%;
    margin: 0 auto;
  }
  .scroll-content:hover {
    animation-play-state: paused; 
  }
  .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(91, 126, 207, 0.25);
    margin-bottom: 10px;
    text-decoration: none;
  }
  .logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
  }

  @keyframes scrollUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%); 
    }
  }
}


/* main4 */
.main4{
  background: url(images/background2.png) center no-repeat;
  background-size: cover;
  height: auto;
  margin-top: -96px;
  z-index: 1;
  position: relative;
  padding-top: 140px;
  padding-bottom: 50px;
}



/* main5 */
.main5{
  background: #FFFFFF;
  padding-top: 80px;
  position: relative;
  padding-bottom: 180px;
}
.DTlist{
  width: 100%;
}
.DTlist li{
  width: 410px;
  height: 600px;
  background: #FFFFFF;
  box-shadow: 0px 0px 55px 0px rgba(166,174,194,0.2);
  border-radius: 13px;
  position: relative;
  overflow: hidden;
}
.DTlist li:before{
  position: absolute;
  content: "";
  width: calc(100% - 100px);
  height: 2px;
  background: #FE6C19;
  border-radius: 1px;
  bottom:0px;
  left:50px;
}
.DT_pic{
  width: 100%;
  height: 273px;
  object-fit: cover;
  border-radius: 13px;
}
.DTtext{
  width: 100%;
  padding: 0 50px;
}
.t1{
  margin-top: 50px;
  background: linear-gradient(0deg, #5991E9 0%, #3073E3 100%);
  border-radius: 3px;
  font-family: Georgia;
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 36px;
  width: 95px;
  height: 20px;
  text-align: center;
  display:flex;
  justify-content: center;
  align-items: center;
}
.s4{
  margin-top: 25px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #2E2F46;
  line-height: 32px;
}
.s5{
  margin-top: 15px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #8095A9;
  line-height: 30px;
}
.DTlist li:hover{
  box-shadow: 0px 0px 55px 0px rgba(54,111,186,0.3);
}
.DTlist li:hover .s4{
  color: #4F89E7;
}
.DTlist li:hover:before{
  position: absolute;
  content: "";
  width: 310px;
  height: 0px;
  background: #FE6C19;
  border-radius: 1px;
  bottom:0px;
  left:50px;
}
.DTlist li:after{
  position: absolute;
  content: "";
  width: 0px;
  height: 2px;
  background: #4F89E7;
  border-radius: 13px;
  bottom:0px;
  left:6px;
  transition: all 0.5s;
}
.DTlist li:hover:after{
  position: absolute;
  content: "";
  width: 97%;
  height: 2px;
  background: #4F89E7;
  border-radius: 13px;
  bottom:0px;
  left:6px;
}
.mySwiper3{
  width: 100%;
  /* padding: 25px 25px; */
  padding-bottom: 30px;
  padding-top: 60px;
}
.DTlist .swiper-slide{
  width: 100%;
  height: 600px;
  background: #FFFFFF;
  box-shadow: 0px 0px 25px 0px rgba(166,174,194,0.2);
  border-radius: 13px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(166,174,194,0.2);
}
.DTlist .swiper-slide:before{
  position: absolute;
  content: "";
  width: calc(100% - 100px);
  height: 2px;
  background: #FE6C19;
  border-radius: 1px;
  bottom:0px;
  left:50px;
}
.DTlist .swiper-slide:hover{
  box-shadow: 0px 0px 25px 0px rgba(54,111,186,0.3);
}
.DTlist .swiper-slide:hover .s4{
  color: #4F89E7;
}
.DTlist .swiper-slide:hover:before{
  position: absolute;
  content: "";
  width: 310px;
  height: 0px;
  background: #FE6C19;
  border-radius: 1px;
  bottom:0px;
  left:50px;
}
.DTlist .swiper-slide:after{
  position: absolute;
  content: "";
  width: 0px;
  height: 2px;
  background: #4F89E7;
  border-radius: 13px;
  bottom:0px;
  left:6px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.DTlist .swiper-slide:hover:after{
  position: absolute;
  content: "";
  width: 97%;
  height: 2px;
  background: #4F89E7;
  border-radius: 13px;
  bottom:0px;
  left:6px;
}


/* main6 */
.main6-1{
  width: 100%;
}
.main6-1 img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.main6{
  min-height: 230px;
  background:url(images/background3.png) center no-repeat;
  position: relative;
  background-size:cover ;
}
.mm6{
  display: flex;
  padding: 60px 50px 0px 130px;
  position: relative;
  justify-content: space-between;
  gap: 20px;
}
.mm6:before{
  position: absolute;
  content: "";
  width: 115px;
  height: 59px;
  background: url(images/call-do-shape.png) no-repeat;
  top: 80px;
  left: 0px;
}
.s6{
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 30px;
  color: #FFFFFF;
  line-height: 49px;
}
.s6 span{
  font-family: Source Han Sans CN;
  font-weight: 800;
  font-size: 46px;
  color: #FFFFFF;
  line-height: 49px;
  text-shadow: 0px 8px 5px rgba(24,86,167,0.4);
  font-style: italic;
  background: linear-gradient(180deg, #00F6FF 0%, #05D0E6 100%);
  opacity: 0.9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 20px;
}
.s7{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 49px;
}
.More1{
  width: 156px;
  height: 48px;
  border-radius: 3px;
  padding: 4px;
  border: 1px solid rgba(0, 218, 235, 0.9);
  margin-top: 30px;
}
.More1 > div{
  width: 100%;
  height: 100%;
  background: rgba(0, 218, 235, 0.9);
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}




/* 返回顶部按钮 */
#back-to-top{
  position: absolute;
  right: 150px;
  top: -50px;
}
.arrow-up{
  background: url("images/top.png") center no-repeat;
  width: 63px;
  height: 120px;
  background-size: 100% 100%;
}




/* main7 */
footer{
  position: relative;
}
.main7{
  padding-top: 50px;
  display: flex;
  justify-content: space-around;
  gap: 110px;
  align-items: flex-start;
}
.logo1{
  object-fit:  contain;
}
.main7box{
  margin-top: 15px;
  display: flex;
  gap:70px;
  align-items: flex-start;
}
.main7box ul > li{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: rgba(250, 250, 250, 0.47);
  line-height: 29px;
}
.main7box ul > li a{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: rgba(250, 250, 250, 0.47);
  line-height: 29px;
}
.main7box ul > li:nth-child(1){
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 20px;
  margin-bottom: 20px;
}
.main7box ul > li:nth-child(1) a{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF; m 
  line-height: 20px;
}
.main7box > img{
  width: 118px;
  object-fit:  contain;
}
.main8{
  min-height: 66px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.main8 > div,
.main8  a{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
}

@keyframes shake {
  0% { transform: translate(0, 0) rotate(0); }
  10% { transform: translate(-2px, -2px) rotate(-1deg); }
  20% { transform: translate(2px, 2px) rotate(1deg); }
  30% { transform: translate(-2px, 2px) rotate(0); }
  40% { transform: translate(2px, -2px) rotate(1deg); }
  50% { transform: translate(-2px, 2px) rotate(-1deg); }
  60% { transform: translate(2px, -2px) rotate(0); }
  70% { transform: translate(-2px, -2px) rotate(1deg); }
  80% { transform: translate(2px, 2px) rotate(0); }
  90% { transform: translate(-2px, 2px) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0); }
}
.main3box .m1:hover ,
.main3box .b1:hover{
  animation: shake 0.5s ease-in-out;
}








.column-banner {
  position: relative;
  width: 100%;
  height: 350px;
  background-image: url(images/main3.png);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.column-banner .inner {
  position: relative;
  z-index: 1;
  height: 100%;
}
.column-banner .tit_bt {
  position: absolute;
  left: 0px;
  bottom: 60px;
  color: #fff;
}
.column-banner .title1 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 600;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 48px;
  text-shadow: 0px 5px 5px rgba(148,7,0,0.8);
}
.column-banner .overlay {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.l-banner {
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
}

.l-banner img {
  vertical-align: top;
}

.l-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tab-menu3 {
  padding: 30px 0px;
  margin-bottom: 85px;
  background: #ECEEF1;
}

.tab-menu3 li {
  margin: 0 74px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 28px;
  color: #333333;
  line-height: 40px;
}
.tab-menu3 li.selected:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 9px;
  background: url(images/bt1.png) left center no-repeat;
}

.tab-menu3 li.selected:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 9px;
  background: url(images/bt2.png) right center no-repeat;
}

.tab-menu3 li.selected {
  padding: 0 86px;
  color: #5273a6;
  font-size: 34px;
  font-weight: bold;
  -webkit-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.dangjian .tab-menu3 li.selected {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 36px;
  color: #CD2727;
  line-height: 40px;
  background: linear-gradient(145deg, #CC2F2F 0%, #DD4830 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dangjian .tab-menu3 li.selected:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 18px;
  background: url(images/dj_btn1.png) left center no-repeat;
}

.dangjian .tab-menu3 li.selected:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 18px;
  background: url(images/dj_btn2.png) right center no-repeat;
}

/* 党建 */
.product-con{
  position: relative;
  padding-bottom: 95px;
}
.dj_pic1{
  position: absolute;
  left: 0px;
  top: 15%;
  /* transform: translateY(-50%); */
  width: 37.692%;
}
.dj_pic1 img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.dj_text1{
  width: 76.385%;
  background: #FFFFFF;
  box-shadow: 0px 10px 40px 0px rgba(206,49,47,0.15);
  padding:  80px 100px  75px  215px;
  margin-left: 23.69%;
}
.dj_title{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  line-height: 75px;
  position: relative;
  letter-spacing: 0.2px;
}
.dj_title:before{
  content: 'survey';
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-family: Microsoft YaHei;
  font-weight: 900;
  font-size: 72px;
  color: #FFFFFF;
  line-height: 75px;
  background: linear-gradient(145deg, #CC2F2F 0%, #DD4830 100%);
  opacity: 0.1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.dj_s1{
  margin-top: 60px;
}
.dj_s1 p{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 58px;
  text-indent: 3em;
}

#e-container{
  background: linear-gradient(145deg, rgba(204, 47, 47, 0.08), rgba(221, 72, 48, 0.08));
  border: 3px solid #FFFFFF;
  padding: 110px 0;
}
.product-bt{
  text-align: center;
}
.dj_title1:before{
  content: 'function';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dangjian_list {
  padding-bottom: 100px;
}
.dangjian_card01 {
  position: relative;
  padding-top: 120px;
  width: 48.85%;
}

.dangjian_cardbt {
  position: relative;
  z-index: 2;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 30px;
  color: #323333;
  line-height: 30px;
}

.dangjian_cardbteng {
  position: absolute;
  z-index: 1;
  top: 60px;
  left: 0;
  font-family: Roboto;
  font-weight: 400;
  font-size: 96px;
  color: #F0D1D2;
  text-stroke: 3px #F0D0D1;
  -webkit-text-stroke: 3px #F0D0D1;
}

.dangjian_cardwz {
  margin: 36px 0 40px;
  text-align: justify;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #323333;
  line-height: 54px;
}

.dangjian_cardwz li{
  padding-left: 40px;
  position: relative;
}
.dangjian_cardwz li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 15px;
  height: 15px;
  background: url(images/dj_icon1.png) no-repeat;
  background-size: cover;
}
.dangjian_cardli {
  display: flex;
  gap: 20px 30px;
  padding: 0px 30px ;
}

.dangjian_cardli .link {
  display: block;
  width: calc(33.3% - 20px);
  height: 37px;
  background: #C6171E;;
  border-radius: 8px;
  text-align: center;
  font-family: SimHei;
  font-weight: 400;
  font-size: 21px;
  color: #FFFFFF;
  line-height: 37px;
}

.dangjian .case_more {
  background: #c11c1c;
}
.dangjian_card02 {
  position: relative;
  width: 46.54%;
  padding-top: 80px;
}

.dangjian_card02 img {
  display: block;
  width: 100%;
}

.dangjian_list01 .dangjian_card02 {
  width: 46.54%;
  float: right;
}

.dangjian_list02 .dangjian_card02,
.dangjian_list04 .dangjian_card02,
.dangjian_list06 .dangjian_card02,
.dangjian_list08 .dangjian_card02,
.dangjian_list10 .dangjian_card02 {
  width: 46.54%;
  float: left;
}

.dangjian_list03 .dangjian_card02 ,
.dangjian_list05 .dangjian_card02 ,
.dangjian_list07 .dangjian_card02 ,
.dangjian_list09 .dangjian_card02 {
  width: 46.54%;;
  float: right;
}

.dangjian_list01 .dangjian_card01,
.dangjian_list03 .dangjian_card01,
.dangjian_list05 .dangjian_card01,
.dangjian_list07 .dangjian_card01,
.dangjian_list09 .dangjian_card01 {
  width: 48.85%;
  float: left;
}

.dangjian_list02 .dangjian_card01,
.dangjian_list04 .dangjian_card01,
.dangjian_list06 .dangjian_card01,
.dangjian_list08 .dangjian_card01,
.dangjian_list10 .dangjian_card01 {
  width: 46.54%;
  float: right;
}
.dangjian_cardwz p{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #313333;
  line-height: 44px;
}
.dangjian_list02 .dangjian_cardli{
  padding: 0px 0px ;
}
.dangjian_cardwz p span{
  font-family:  Adobe;
  font-weight: 500;
  font-size: 26px;
  color: #c6171e;
  line-height: 44px;
  letter-spacing: 2.6px;
  font-style: italic;
}
.dangjian_card03{
  margin-top: -50px;
}
.dj_t1{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 30px;
  color: #313333;
  line-height: 50px;
  padding-left: 35px;
  position: relative;
}
.dj_t1:before{
  content: "";
  position: absolute;
  width: 85px;
  height: 6px;
  background: #C6171E;
  border-radius: 3px;
  left: 35px;
  bottom: -29px;

}
.dj_t2{
  box-shadow: 0px 5px 50px 0px rgba(198,23,30,0.08);
  border-radius: 16px;
  border: 4px solid #E1B6B8;
  padding: 50px 36px 40px 36px;
  margin-top: 25px;
  background: #fbefef;
}
.dj_t2 img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.dangjian_list03 .dangjian_cardli,
.dangjian_list04 .dangjian_cardli,
.dangjian_list06 .dangjian_cardli,
.dangjian_list07 .dangjian_cardli,
.dangjian_list08 .dangjian_cardli,
.dangjian_list10 .dangjian_cardli{
  padding: 0px;
}
.dangjian_list03 .dangjian_cardli .link,
.dangjian_list04 .dangjian_cardli .link,
.dangjian_list08 .dangjian_cardli .link{
  width: calc(100% / 4 - 22.5px);
}
.dangjian_list05 .dangjian_cardli .link{
  width: 127px;
}
.dangjian_list05 .dangjian_cardli .link1{
  background: linear-gradient(0deg, #BA2025 0%, #C74730 100%);
  border-radius: 13px;
  width: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
}
.dangjian_list05 .dangjian_cardli{
  margin-top: 20px;
  padding: 0px;
}


/* 全媒体 */
#c-container{
  background: linear-gradient(0deg, rgba(89, 145, 233, 0.08) 0%, rgba(48, 115, 227, 0.08) 100%);
  /* border: 3px solid #FFFFFF; */
  padding: 110px 0;
}
.column-banner .title2{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 78px;
  text-shadow: 0px 6px 11px rgba(10,46,87,0.9);
}
.quanmt .tab-menu3 li.selected {
  color: #001F3D;
  background: linear-gradient(0deg, #5991E9 0%, #3073E3 83.7646484375%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quanmt .tab-menu3 li.selected:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 18px;
  background: url(images/qmt_btn1.png) left center no-repeat;
}
.quanmt .tab-menu3 li.selected:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 18px;
  background: url(images/qmt_btn2.png) right center no-repeat;
}
.quanmt_pic1{
  width: 33.41%;
  bottom: 95px;
  top: auto;
}
.quanmt_title:before{
  background: linear-gradient(0deg, #5991E9 0%, #3073E3 83.7646484375%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quanmt_title1:before{
  background: linear-gradient(0deg, #5991E9 0%, #3073E3 83.7646484375%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quanmt_list {
  padding-bottom: 60px;
}
.quanmt_card01 {
  position: relative;
  padding-top: 120px;
  width: 48.85%;
}

.quanmt_cardbt {
  position: relative;
  z-index: 2;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  color: #1F2020;
}

.quanmt_cardbteng {
  position: absolute;
  z-index: 1;
  top: 60px;
  left: 0;
  font-size: 96px;
  font-family: Roboto;
  font-weight: 400;
  color: #13598D;
  text-stroke: 3px #13588C;
  opacity: 0.2;
  -webkit-text-stroke: 3px #13588C;
}

.quanmt_cardwz {
  margin: 36px 0 40px;
  text-align: justify;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #323333;
  line-height: 44px;
}

ul.quanmt_cardwz {
  display: flex;
  flex-wrap: wrap;
}
ul.quanmt_cardwz li{
  width: 60%;
  padding-left: 40px;
  position: relative;
}
ul.quanmt_cardwz li:nth-child(2n){
  width: 40%;
}
ul.quanmt_cardwz li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 15px;
  height: 15px;
  background: url(images/quanmt_icon1.png) no-repeat;
  background-size: cover;
}
.quanmt_cardli {
  display: flex;
  gap: 20px 30px;
  padding: 0px 30px ;
}

.quanmt_cardli .link {
  display: block;
  width: calc(33.3% - 20px);
  height: 37px;
  background: #C6171E;;
  border-radius: 8px;
  text-align: center;
  font-family: SimHei;
  font-weight: 400;
  font-size: 21px;
  color: #FFFFFF;
  line-height: 37px;
}

.quanmt .case_more {
  background: #c11c1c;
}
.quanmt_card02 {
  position: relative;
  width: 46.54%;
  padding-top: 40px;
}

.quanmt_card02 img {
  display: block;
  width: 100%;
}

.quanmt_list01 .quanmt_card02 {
  width: 46.54%;
  float: right;
}

.quanmt_list02 .quanmt_card02,
.quanmt_list04 .quanmt_card02,
.quanmt_list06 .quanmt_card02,
.quanmt_list08 .quanmt_card02,
.quanmt_list10 .quanmt_card02 {
  width: 46.54%;
  float: left;
}

.quanmt_list03 .quanmt_card02 ,
.quanmt_list05 .quanmt_card02 ,
.quanmt_list07 .quanmt_card02 ,
.quanmt_list09 .quanmt_card02 {
  width: 46.54%;;
  float: right;
}

.quanmt_list01 .quanmt_card01,
.quanmt_list03 .quanmt_card01,
.quanmt_list05 .quanmt_card01,
.quanmt_list07 .quanmt_card01,
.quanmt_list09 .quanmt_card01 {
  width: 48.85%;
  float: left;
}

.quanmt_list02 .quanmt_card01,
.quanmt_list04 .quanmt_card01,
.quanmt_list06 .quanmt_card01,
.quanmt_list08 .quanmt_card01,
.quanmt_list10 .quanmt_card01 {
  width: 46.54%;
  float: right;
}
.quanmt_cardwz p{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #313333;
  line-height: 44px;
}
.quanmt_list02 .quanmt_cardli{
  padding: 0px 0px ;
}
.quanmt_cardwz p span{
  font-family:  Adobe;
  font-weight: 500;
  font-size: 26px;
  color: #c6171e;
  line-height: 44px;
  letter-spacing: 2.6px;
  font-style: italic;
}

/* yingyong */
.product-con1 {
  position: relative;
}

.product-bt1 {
  padding-top: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.product-eng {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
  font-weight: bold;
  text-transform: uppercase;
  background-image: linear-gradient(rgba(73, 103, 154, 0.6), rgba(255, 255, 255, 0.5));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.product-name {
  line-height: 84px;
  font-size: 28px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.product-name:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 42px;
  height: 4px;
  background: #49679a;
  border-radius: 2px;
}

.cp_tu {
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  width: 53%;
}

.cp_tu img {
  display: block;
  width: 100%;
}

.cp_wz {
  float: left;
  width: 71%;
  padding-top: 110px;
}

.cp_wz_js {
  position: relative;
  background: #fff;
  padding: 67px 80px 30px;
}
#f-container {
  background: #fff;
  padding: 70px 0;
  padding-top: 0px;
}
#g-container {
  background: #f6f9ff;
  padding: 90px 0;

}

#g-container .product-bt1 {
  position: relative;
}

.scene-listcon {
  margin-top: 100px;
  overflow: hidden;
}

.scene-listcon ul {
  position: relative;
  margin: 0 -22px;
}

.scene-listcon li {
  width: 33.3%;
}

.scene-listcon li a {
  display: block;
  padding: 0 22px;
  margin-bottom: 60px;
}

.scene-listcon li .card {
  display: block;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .16);
  position: relative;
  padding-bottom: 72px;
  overflow: hidden;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li .card_pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 65.2%;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li .card_pic .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li .card_bt {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: #fff;
  text-align: center;
  line-height: 72px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li .card_wz {
  position: absolute;
  z-index: 4;
  top: 60px;
  bottom: 50px;
  left: 60px;
  right: 60px;
  font-size: 18px;
  color: #fff;
  line-height: 40px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  opacity: 0;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li a:hover .card {
  padding-bottom: 0;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li a:hover .card_pic {
  padding-top: calc(65.2% + 72px);
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li a:hover .card:before {
  position: absolute;
  z-index: 3;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 59, 146, 0.76);
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li a:hover .card_bt {
  color: #333;
  bottom: -72px;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.scene-listcon li a:hover .card_wz {
  opacity: 1;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

/**关于我们**/
.about_wz {
  line-height: 48px;
  font-size: 20px;
  color: #333;
  text-align: justify;
}

.about_wz p {
  line-height: 48px;
  text-indent: 2em;
}
.case_more {
  margin: 0 auto;
  width: 318px;
  height: 52px;
  border-radius: 52px;
  background: #49679a;
}

.case_more span {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  color: #fff;
  margin-right: 18px;
  padding-right: 32px;
  background: url(images/more-case.png) right center no-repeat
}



/* case */
/**案例**/
.tab-menu3-1 {
  padding: 20px 0px;
  margin-bottom: 40px;
  background: none;
}
#d-container {
  background: #fff;
  padding: 70px 0;
}
#b-container {
  background: #fff;
  padding: 0;
}

.column-toptu {
  position: relative;
  margin-top: -150px;
  height: 786px;
  margin-bottom: 120px;
}

.column-01 {
  width: 33%;
  height: 100%;
}

.column-02 {
  width: 36%;
}

.column-03 {
  width: 31%;
}

.column-01 .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.column-02 .pic,
.column-03 .pic {
  width: 100%;
  height: 50%;
  overflow: hidden;
  position: relative;
}

.column-toptu .pic .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.column-toptu .pic:hover .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#b-container .tab-menu3 {
  padding: 0;
  margin-bottom: 0;
}

#b-container .tab-menu3 li {
  height: 80px;
  line-height: 80px;
}

.list-navwz {
  padding: 12px;
  line-height: 32px;
  font-size: 24px;
  color: #414141;
  text-align: center;
  margin-bottom: 60px;
}

.column-listcon {
  overflow: hidden;
}

.column-listcon ul {
  position: relative;
  margin: 0 -22px;
}

.column-listcon li {
  width: 33.3%;
}

.column-listcon li a {
  display: block;
  padding: 0 22px;
  margin-bottom: 50px;
}

.column-listcon li .card {
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  position: relative;
}

.column-listcon li .card .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.column-listcon li a:hover .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.column-listcon li .card .bt {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.76))
}

.column-listcon li .card .btwz {
  position: absolute;
  z-index: 3;
  bottom: 17px;
  left: 30px;
  right: 30px;
  font-size: 18px;
  color: #fff;
  line-height: 32px;
}
.column-listcons {
  overflow: hidden;
}

.column-listcons ul {
  position: relative;
  margin: 0 -22px;
}

.column-listcons li {
  width: 33.3%;
}

.column-listcons li a {
  display: block;
  padding: 0 22px;
  margin-bottom: 50px;
}

.column-listcons li .card {
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  position: relative;
}

.column-listcons li .card .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.column-listcons li a:hover .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.column-listcons li .card .bt {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.76))
}

.column-listcons li .card .btwz {
  position: absolute;
  z-index: 3;
  bottom: 17px;
  left: 30px;
  right: 30px;
  font-size: 18px;
  color: #fff;
  line-height: 32px;
}
.case_mores {
  margin: 0 auto;
  width: 318px;
  height: 52px;
  border-radius: 52px;
  background: #49679a;
}

.case_mores span {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  color: #fff;
  margin-right: 18px;
  padding-right: 32px;
  background: url(images/more-case.png) right center no-repeat
}

/**资讯列表**/
.column-newslist {
  margin: 0 auto;
  width: 100%;
}

.column-item {
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}

.column-item .news-img {
  float: left;
  width: 380px;
  height: 214px;
  overflow: hidden;
  position: relative;
}

.column-item:hover .news-img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, .16);
}

.column-item .news-img img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.column-item:hover .news-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.column-item .news-cont {
  float: right;
  width: calc(100% - 460px);
}

.column-item .news-cont .news_bt {
  line-height: 38px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  -webkit-transition: .3s all ease;
  -ms-transition: .3s all ease;
  transition: .3s all ease;
}

.column-item .news-cont .news_bt:hover {
  color: #5273a6;
}

.column-item .news-cont .news_text {
  margin-top: 14px;
  line-height: 40px;
  color: #999;
  font-size: 20px;
}

.column-item .news-cont .news_date {
  margin-top: 14px;
  line-height: 20px;
  color: #999;
  font-size: 16px;
}







/* 不知名 */
.tab-list .list_box {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tab-list .list_box ul {
  position: relative;
  margin: 0 -15px;
}

.tab-list .list_box li {
  width: 33.3%;
  padding: 0 15px;
  margin-top: 28px;
}

.tab-list .list_box li a {
  border: 1px solid #bfbfbf;
  height: 90px;
  text-align: center;.tab-list .list_box li a span

  font-size: 24px;
  color: #000;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.tab-list .list_box li a span {
  position: relative;
  z-index: 3;
  font-size: 20px;
  line-height: 30px;
}

.tab-list .list_box li a:before {
  position: absolute;
  z-index: 1;
  content: '';
  background: linear-gradient(#59d6e8, #3063e2);
  padding: 5px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.tab-list .list_box li a:after {
  position: absolute;
  z-index: 2;
  content: '';
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
  background: #fff;
}

.tab-list .list_box li a:hover {
  color: #4079d2;
  border: 0;
}

.tab-list .list_box li a:hover:before {
  opacity: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}

.col_news .col_news_box {
  margin-left: 290px;
}

.col_news_head {
  border-bottom: 1px solid #DBDBDB;
}

.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 48px;
  line-height: 48px;
}

/**当前栏目**/

.col_metas .col_title h2 {
  display: inline-block;
  font-size: 18px;
  font-family: "Microsoft yahei";
  font-weight: normal;
  color: #bb200d;
  border-bottom: 3px solid #CBCBCB;
}

.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 46px;
  color: #666;
}

/**当前位置**/

.col_metas .col_path a {
  color: #2F2F2F;
}

.col_news_con {
  padding: 5px 0px 10px 0px;
  margin: 0 0px;
}

.col_news_list {
  margin-top: 7px;
}

.col_news_list .wp_article_list .list_item {}

/**栏目新闻列表**/

.col_news_list .wp_article_list .list_item .Article_Index {}

/**栏目新闻图标序号**/

.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}

.col_news_list .wp_entry p {
  margin-bottom: 10px;
}

.col_news_list .wp_entry table {
  margin-bottom: 4px;
}

.col_news_list .wp_entry img {
  max-width: 800px;
  _width: expression(this.width > 800 ? "800px": this.width);
}

/**列表页文章图片大小限制**/


/**文章页**/

.infobox {
  margin: 0 auto;
  margin-top: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .16);
  padding: 50px 30px;
}

.article {}

.article h1.arti_title {
  line-height: 44px;
  font-family: "Microsoft YaHei";
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #333;
}

/**文章标题**/

.article h2.arti_title {
  line-height: 34px;
  font-family: "Microsoft YaHei";
  font-size: 14px;
  text-align: center;
  color: #1B1B1B;
}

/**文章副标题**/

.article .arti_metas {
  line-height: 32px;
  font-size: 14px;
  text-align: center;
  color: #999;
  /* border-top:1px solid #ececec; */
}

.article .arti_metas span {
  margin: 0 5px;
  font-size: 14px;
  color: #999;
}

/**文章其他属性**/

.article .entry {
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid #dbdbdb;
  margin-top: 30px;
}

/**文章内容**/

.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  color: #333;
}

/**阅读字体**/

.article .entry .read p {
  margin-bottom: 10px;
  text-indent: 2em;
}

.article .entry .read img {
  margin-right: 20px;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
}

/**文章阅读部分图片大小限制**/

.article .entry .read table {
  margin: 0 auto;
  border: none !important;
}

.es_article_title {
  display: none;
}

/**翻页**/

.es_pagingbar_container {
  margin: 40px auto 0;
  text-align: center;
  padding-bottom: 40px;
}

.es_pagingbar_container .es_pagingbar {
  display: inline-block;
  overflow: hidden;
}

.es_pagingbar_container .es_pagingbar li {
  float: left;
  padding: 6px 12px;
  margin: 0 6px;
  color: #999;
  background: #fff;
  border: 1px solid #eee;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.es_pagingbar_container .es_pagingbar li.active {
  background: #d63e3e;
  color: #fff;
  border-color: #d63e3e;
}

.es_pagingbar_container .es_pagingbar li.active a {
  color: #fff;
}

.es_article_content img {
  margin-right: 20px;
}


/* about */
/**关于我们**/
.about_wz {
  line-height: 48px;
  font-size: 20px;
  color: #333;
  text-align: justify;
}

.about_wz p {
  line-height: 48px;
  text-indent: 2em;
}

#d-container.nybg {
  background: #f5f8ff url(images/nybg.png) center center no-repeat;
  background-size: cover;
}

.jiazhi_list {
  overflow: hidden;
}

.jiazhi_list ul {
  margin: 0 -24px;
}

.jiazhi_list li {
  width: 25%;
  padding: 0 24px;
}

.jiazhi_list li a {
  display: block;
}

.jiazhi_box {
  width: 100%;
  padding-top: 125%;
  position: relative;
  overflow: hidden;
}

.jiazhi_box .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: .5s all ease;
  -ms-transition: .5s all ease;
  transition: .5s all ease;
}

.jiazhi_box .card {
  position: absolute;
  z-index: 2;
  top: 62px;
  left: 48px;
  right: 48px;
  color: #fff;
}

.jiazhi_box .card .icon {
  display: block;
  width: 50px;
  height: 50px;
}

.jiazhi_list li:nth-child(1) .jiazhi_box .card .icon {
  background: url(images/icon_1.png) no-repeat;
  background-size: cover;
}

.jiazhi_list li:nth-child(2) .jiazhi_box .card .icon {
  background: url(images/icon_2.png) no-repeat;
  background-size: cover;
}

.jiazhi_list li:nth-child(3) .jiazhi_box .card .icon {
  background: url(images/icon_3.png) no-repeat;
  background-size: cover;
}

.jiazhi_list li:nth-child(4) .jiazhi_box .card .icon {
  background: url(images/icon_4.png) no-repeat;
  background-size: cover;
}

.jiazhi_box .card .bt {
  margin-top: 26px;
  margin-bottom: 10px;
  line-height: 46px;
  font-size: 32px;
  font-weight: bold;
}

.jiazhi_box .card .wz {
  line-height: 40px;
  font-size: 18px;
}
.jiazhi_box {
  padding-top: 135%;
}
.jiazhi_list li {
  padding: 0 20px;
}
.jiazhi_box .card {
  top: 40px;
  left: 30px;
  right: 30px;
}
.jiazhi_box .card .bt {
  line-height: 36px;
  font-size: 22px;
}