@charset "utf-8";

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,
a:active {
  text-decoration: none;
  color: #0263bc;
}

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: rgba(67, 130, 233, 1); */
}

.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.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s 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;
}

/*页面尺寸*/
header{
  padding-top: 25px;
  position: relative;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner1 {
  width: 1800px;
  margin: 0 auto;
}
.inner {
  width: 1400px;
  margin: 0 auto;
}
.tbody{
  position: relative;
}
.tbody:before{
  content: '';
  position: absolute;
  height: 583px;
  background: linear-gradient(180deg, #0062BB 0%, #EFEFF4 100%);
  width: 100%;
  z-index: -1;
  left: 0;
  top: 0;
}
.tbody:after{
  content: '';
  position: absolute;
  height: calc(100% - 583px );
  background: #EFEFF4;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
}
.head-top{
  gap: 10px 20px;
}

.h-left{
  gap: 40px;
}
.h2-1{
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  letter-spacing: 0.8px;
  font-family: 'SourceHanSans';

  text-align: center;
  display:flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

/* 搜索框样式 */
.wp-search {
  width: 260px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.wp-search form {
  width: 100%;
  display: flex;
  padding-left: 20px;
}
.wp-search .search-input {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;

}
.wp-search .search-input input.search-title {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  background: transparent;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 1px;
  box-sizing: border-box;
}
.wp-search .search-input input.search-title::placeholder {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 40px;
}
.wp-search .search-btn {
  width: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 0;
}
.wp-search .search-btn input.search-submit {
  width: 19px;
  height: 19px;
  border: none;
  outline: none;
  background:url(images/search.png) no-repeat center center;
  background-size: cover;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: rgba(255, 255, 255, 1);
}



/* nav */
.head-nav{
  width: 100%;
  height: 66px;
  box-sizing: border-box;
  z-index: 3;
  position: relative;
}
.nav .wp-menu {
  width: 100%;
  height: 66px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 66px;
  text-align: center;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 66px;
  line-height: 60px;
  position: relative;
  transition: all 0s ease;
  padding: 0 22px;
  
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: Source Han Sans CN;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav .wp-menu .menu-item:hover a.menu-link {
  position: relative;
}
.icon1{
  width: 15px;
  height: 7px;
  display: inline-block;
}
.nav .wp-menu .menu-item:hover a.menu-link  .icon1{
  background: url(images/arrow.png);
  background-size: cover;
}
.nav .wp-menu .menu-item> a.menu-link{ 
  color: #ffffff;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 66px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(1,98,188,0.8);
  box-shadow: 0px 1px 10px 0px rgba(53,129,200,0.9);
  border-radius: 0px 0px 10px 10px;
  padding: 10px 0;
}
.nav .sub-menu:before{
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 1px;
  background: #FFFFFF;
  box-shadow: 0px 1px 10px 0px rgba(1,98,188,0.9);
  border-radius: 0px 0px 1px 1px;
  width: 100%;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
  transition: all 0.3s;
}

.nav .sub-menu .sub-item a {
  color: #ffffff;
  height: auto;
  min-height: 40px;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  padding: 4px 25px;
  transition: all 0.3s;
  font-family: "微软雅黑";
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #ffffff;
  display: flex;
  font-weight: bold;
  background: #0162bc;
}
.nav .wp-menu .menu-item:hover .sub-menu {
  display: block;
}
.nav .wp-menu .menu-item:hover .sub-menu .sub-menu{
  display: none;
}
.nav .sub-menu .sub-menu{
  display: none;
  position: absolute;
  left: 100%;
  transform: translateX(0);
  top: 0px;
  width: auto;
  min-width: 50%;
  z-index: 100;
  background: rgba(22, 95, 171, 0.9);
}
.nav .sub-menu .sub-menu .sub-item a{
  font-size: 16px;
}
/* .nav .wp-menu .menu-item .sub-menu:hover .sub-menu{
  display: block;
} */


/* banner */
.mySwiper1 {
  width: 100%;
  height: auto;
  position: relative;
}
.banner {
  width: 100%;
  height: auto;
  position: relative;
}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* 分页器 */
.mySwiper1 .swiper-pagination {
  position: absolute;
  bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  gap: 20px;
  z-index: 10;
}
.mySwiper1 .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.5s ease;
  cursor: pointer;
  border-radius: 50%;
}
.mySwiper1 .swiper-pagination-bullet-active{
  width: 30px;
  height: 30px;
  background: rgba(250,250,250,0.4);
  position: relative;
  margin-right: 66px !important;
}
.mySwiper1 .swiper-pagination-bullet-active:before{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.mySwiper1 .swiper-pagination-bullet-active:after{
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background: #fff;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  transition: width 0.8s ease;
}
.mySwiper1 .swiper-pagination-bullet-active.animate-line:after{
  width: 66px;
}


.m1{
  position: relative;
  
  padding-top: 70px;
 
}
.m1 .inner{
  display: flex;
  gap: 60px;
}
.m1:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 250px;
  background: url("images/bg2.png");
  background-size: cover;
  left: 0px;
  top: 0px;
}
.ml1{
  position: relative;
  z-index: 1;
  width: 63.125%;

}
.title{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 20px;
  position: relative;
}
.title:before{
  content: "";
  position: absolute;
  width: 6px;
  height: 45px;
  background: #e67921;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.tit1{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 38px;
  color: #FFFFFF;
  line-height: 45px;
}
.tit2{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 35px;
}
.more{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 30px;
  width: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
  position: relative;
  margin-right: 10px;
  
}
.moretxt{
  position: relative;
  z-index: 1;
}
.ticon1{
  display: block;
  position: absolute;
  right: calc(100%  + 5px );
  top: 15px;
  width: 20px;
  height: 26px;
  background: url(images/icon.png) no-repeat;
  background-size: cover;
}
.more1{
  border-bottom: 1px solid #0263bc;
}
.more1 .ticon1{
  background: url(images/icon_h.png) no-repeat;
}
.ticon2{
  display: block;
  position: absolute;
  right: 2px;
  top: 0px;
  width: 25px;
  height: 25px;
  background: url(images/cricle1.png) no-repeat;
  background-size: cover;
  z-index: 0;
  transform-style: preserve-3d;
  animation: rotate3d-cw 8s linear infinite;
  transition: all 0.5s ease-in-out;
}
.ticon3{
  display: block;
  position: absolute;
  right: -10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background: url(images/cricle2.png) no-repeat;
  background-size: cover;
  z-index: 0;
  transform-style: preserve-3d;
  animation: rotate3d-ccw 10s linear infinite;
  transition: all 0.5s ease-in-out;
}
@keyframes rotate3d-cw {
  0% {
      transform: perspective(500px) rotateZ(0deg) rotateY(0deg);
  }
  50% {
      transform: perspective(500px) rotateZ(180deg) rotateY(10deg);
  }
  100% {
      transform: perspective(500px) rotateZ(360deg) rotateY(0deg);
  }
}

@keyframes rotate3d-ccw {
  0% {
      transform: perspective(500px) rotateZ(0deg) rotateX(0deg);
  }
  50% {
      transform: perspective(500px) rotateZ(-180deg) rotateX(10deg);
  }
  100% {
      transform: perspective(500px) rotateZ(-360deg) rotateX(0deg);
  }
}
/* 旋转图标 hover 加速 */
.more:hover .ticon2 {
  animation-duration: 4s;
}

.more:hover .ticon3 {
  animation-duration: 5s;
}
.xwbox{
  margin-top: 30px;
  display: flex;
  gap: 30px 30px;
  flex-wrap: wrap;
}
.xwbox li{
  width: calc(50% - 15px);
  transition: all .3s;
}
.time{
  font-family: Georgia;
  font-weight: 400;
  font-size: 18px;
  color: #0061BB;
  line-height: 38px;
  margin-top: 10px;
}
.s1{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 36px;
  letter-spacing: 0.4px;
}
.pic {
  width: 100%;
  height: 275px;
  overflow: hidden;
}
.pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.xwbox li:hover {
  transform: translateY(-8px);
}
.xwbox li:hover .pic img {
  transform: scale(1.1);
}
.xwbox li:hover .s1 {
  color: #0263bc;
}








.mr1{
  width: 33.125%;
  padding-top: 220px;
}
.title1 .tit1{
  color: #333333;
}
.title1 .tit2{
  color: rgba(146, 153, 175, 0.5);
}
.more1{
  color: #0062bb;
}
.tzbox{
  margin-top: 25px;
}
.s2{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  letter-spacing: 0.1px;
  width: calc(100% - 90px);
}
.time1{
  display: flex;
  align-items: center;

  font-family: Georgia;
  font-weight: 400;
  font-size: 18px;
  color: #777F87;
  line-height: 32px;
  flex-direction: column;
  min-width: 68px;
}
.time1 img{
  vertical-align: middle;
  margin-right: 5px;
}
.tzbox li{
  padding: 20px 40px 20px 0px;
  border-bottom: 2px dashed rgba(33,118,195,0.25);
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.tzbox li a{
  display: flex;
  gap: 20px;
}
.tzbox li:hover .s2{
  color: #0263bc;
}
.tzbox li:hover{
  width: calc(100% + 20px);
  height: calc(100% + 6px);
  padding: 21px 40px 22px 20px;
  background: #FAFAFE;
  box-shadow: 8px 13px 43px 2px rgba(32,107,176,0.15);
  z-index: 1;
  margin-top: -3px;
  position: relative;
  border: none;
}
.m2{
  padding-top: 70px;
  width: 100%;
  padding-bottom: 108px;
}
.m2 .inner{
  position: relative;
  padding-bottom: 40px;
}
.m2 .inner:before{ 
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: 50%;
  height: 100%;
  background: url(images/bg3.png);
  background-size: cover;
}
.ml2{
  width: 960px;
  display: flex;
  gap: 23px 25px;
  position: relative;
  z-index: 10;
  padding-top: 40px;
  flex-wrap: wrap;
}
.ml2-1{
  width: 100%;
  justify-content: space-between;
}
.item1{
  background: #F8F8FA;
  width: 56.25%;
  transition: all 0.3s ease;
}
.item1 a{
  padding: 40px 30px ;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.icon3{
  width: 52px;
  height: 52px;
}
.icon3 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s3 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  line-height: 43px;
}
.s4 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #6E7E8C;
  line-height: 32px;
}
.ml2-2,.ml2-3{
  display: flex;
  width: 100%;
  gap: 25px;
}
.ml2-2 li{
  background: #F8F8FA;
  width: calc(100% / 3 - 17px);
  transition: all .3s;
}
.ml2-2 li a{
  display: block;
  width: 100%;
  padding: 28px;
}
.icon2{
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}
.icon2 img{ 
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ml2-3 li{
  width: 41.146%;
}
.ml2-3 li:nth-child(2){ 
  width: 56.25%;
}
.item1:hover,
.ml2-2 li:hover{
  box-shadow: 0px 0px 19px 1px rgba(2,99,188,0.35);
  transform: scale(1.03) translateY(-5px); 
}
.item1 a:hover .s3,
.ml2-2 li a:hover .s3{
  color: #0263BC;
}

.m3{
  padding-top: 100px;
  background: url("images/bg4.png") no-repeat;
  background-size: cover;
}
.title2{
  padding-left: 0px;
  padding-right: 20px;
  position: absolute;
  right: 0px;
  top: 25px;
  align-items: flex-end;
}

.title2:before{
  left: auto;
  right: 0px;
}
.ptbox{
  width: 86.875% ;
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  float: right;
  padding-top: 160px;
  position: relative;
}
.arrow-box{
  position: absolute;
  right: 100%;
  bottom: 118px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  z-index: 1;
  width: 54px;
  height: 108px;
}
.arrow-box li{
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.arrow-box li.before{
  background: #fff;
}
.arrow-box li.next{
  background: #156fc0;
}
.ptbox > li{ 
  width: 50%;
  height: 320px;
  background: #ccc;
  position: relative;
  display: none;
  overflow: hidden;
}
.ptbox > li {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ptbox > li:nth-child(1),
.ptbox > li:nth-child(5){ 
  width: calc(50% + 250px);
  margin-left: -150px;
  margin-right: -100px;
  margin-top: -145px;
  background: #fff;
  height: 465px;
}

.ptbox > li.active-large,
.ptbox > li:nth-child(1),
.ptbox > li:nth-child(5) {
    display: block; 
}
.ptbox > li a{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 50px;
  padding-top: 55px;
  padding-bottom: 40px;
  height: 100%;

  position: relative;
  z-index: 2;
  overflow: hidden;
}
.ptbox > li:nth-child(1) a,
.ptbox > li:nth-child(5) a{
  padding-left: 60px;
  padding-top: 80px;
  padding-bottom: 60px;
}
.pic2{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 0;
  overflow: hidden;
}
.pic2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}



/* 内容容器 */
.ptbox > li a > div[style*="z-index: 10"] {
  position: relative;
  z-index: 10;
  transition: transform 0.5s ease;
}
.s5{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 34px;
  color: #FFFFFF;
  line-height: 53px;
  text-shadow: 3px 4px 10px rgba(103,156,251,0.53);
}
.s6{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 43px;
  text-shadow: 3px 4px 10px rgba(103,156,251,0.53);
}
.ptbox > li:nth-child(2) .s5,
.ptbox > li:nth-child(2) .s6,
.ptbox > li:nth-child(6) .s5,
.ptbox > li:nth-child(6) .s6{ 
  text-shadow: 3px 4px 10px rgba(225,163,67,0.53);
}
.ptbox > li:nth-child(3) .s5,
.ptbox > li:nth-child(3) .s6,
.ptbox > li:nth-child(7) .s5,
.ptbox > li:nth-child(7) .s6{ 
  text-shadow: 3px 4px 10px rgba(103,156,251,0.53);
}
.ptbox > li:nth-child(4) .s5,
.ptbox > li:nth-child(4) .s6,
.ptbox > li:nth-child(8) .s5,
.ptbox > li:nth-child(8) .s6{ 
  text-shadow: none;
  color: #767F88;
}
.ptbox > li:nth-child(2) .iocn4{
  width: 59px;
  height: 44px;
  background: url(images/icon4.png) no-repeat;
  background-size: cover;
}
.iocn4{
  display: block;
  width: 51px;
  height: 77px;
  background: url(images/icon3.png) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.ptbox > li:nth-child(3) .iocn4{
  width: 50px;
  height: 64px;
  background: url(images/icon5.png) no-repeat;
  background-size: cover;
}
.ptbox > li:nth-child(4) .iocn4{
  width: 74px;
  height: 82px;
  background: url(images/icon6.png) no-repeat;
  background-size: cover;
}
.ptbox > li:nth-child(5) .iocn4{
  width: 68px;
  height: 68px;
  background: url(images/icon7.png) no-repeat;
  background-size: cover;
}
.ptbox > li:nth-child(6) .iocn4{
  width: 49px;
  height: 50px;
  background: url(images/icon8.png) no-repeat;
  background-size: cover;
}
.ptbox > li:nth-child(7) .iocn4{
  width: 55px;
  height: 65px;
  background: url(images/icon9.png) no-repeat;
  background-size: cover;
}
.ptbox > li:nth-child(8) .iocn4{
  width: 78px;
  height: 66px;
  background: url(images/icon10.png) no-repeat;
  background-size: cover;
}
/* 图片放大 */
.ptbox > li:hover .pic2 img {
  transform: scale(1.15) rotate(2deg);
}

.ptbox > li:hover a::before {
  opacity: 1;
}

.ptbox > li:hover a::after {
  left: 100%;
}

.ptbox > li:hover a > div[style*="z-index: 10"] {
  transform: translateY(-10px);
}

.ptbox > li:hover .iocn4 {
  transform: scale(1.2) translateY(-5px);
}

/* 文字发光效果 */
.ptbox > li:hover .s5 {
  text-shadow: 0 0 20px rgba(255,255,255,0.8), 3px 4px 10px rgba(103,156,251,0.53);
  transition: text-shadow 0.5s ease;
}
.ptbox > li:nth-child(2) :hover .s5 ,
.ptbox > li:nth-child(6) :hover .s5 {
  text-shadow: 0 0 20px rgba(255,255,255,0.8), 3px 4px 10px rgba(225,163,67,0.53);
}
.ptbox > li:nth-child(4) :hover .s5 ,
.ptbox > li:nth-child(8) :hover .s5 {
  text-shadow: 0 0 20px rgba(255,255,255,0.8), 3px 4px 10px rgba(220,221,222,0.53);
}
.ptbox > li:hover .s6 {
  text-shadow: 0 0 15px rgba(255,255,255,0.6), 3px 4px 10px rgba(103,156,251,0.53);
  transition: text-shadow 0.5s ease;
}
.ptbox > li:nth-child(2) :hover .s6 ,
.ptbox > li:nth-child(6) :hover .s6 {
  text-shadow: 0 0 15px rgba(255,255,255,0.8), 3px 4px 10px rgba(225,163,67,0.53);
}
.ptbox > li:nth-child(4) :hover .s6 ,
.ptbox > li:nth-child(8) :hover .s6 {
  text-shadow: 0 0 15px rgba(255,255,255,0.8), 3px 4px 10px rgba(220,221,222,0.53);
}
.ptbox > li:nth-child(1),
.ptbox > li:nth-child(5) {
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: box-shadow 0.5s ease, transform 0.5s ease; 
}
.ptbox > li:nth-child(1):hover,
.ptbox > li:nth-child(5):hover {
  box-shadow: 0 20px 60px rgba(2,99,188,0.4);
  transform: translateY(-5px);
}

/* 角落装饰 */
.ptbox > li .corner-decor {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255,255,255,0);
  transition: border-color 0.5s ease;
  z-index: 4;
}
.ptbox > li .corner-decor.top-left {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}
.ptbox > li .corner-decor.bottom-right {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}
.ptbox > li:hover .corner-decor {
  border-color: rgba(255,255,255,0.8);
}

.m4{
  margin-top: -170px;
  padding-top: 250px;
  background: url(images/bg5.png) no-repeat;
  background-size: cover;
  padding-bottom: 30px;
}
.m4 .inner{ 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


.fl{
  padding-left: 40px;
  display: flex;  
  flex-direction: column;
  gap: 12px;
}
.f1{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #F7FBFF;
  line-height: 28px;
  text-shadow: 4px 5px 15px rgba(53,129,201,0.4);
}

/**链接样式**/ 
.mlink { 
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  color: #fff; 
  font-size: 18px;
  letter-spacing: 0.6px;
  font-family: "Mircrosoft YaHei";
}

.botlinks .links-wrap {
  position: relative;
  width: 300px;
  height: 40px;
  line-height: 55px;
  background: rgba(255,255,255,0.15);
  box-shadow: 3px 4px 15px 0px rgba(53,129,201,0.1);
  border-radius: 10px;
}
.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 38px 0 35px; 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  position: relative;
}
.botlinks .links-wrap a.links-arrow:before{
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 9px;
  background:url("images/arrow1.png") no-repeat;
  background-size: 100% 100%;
  margin-top: 2px;
  opacity: 0.85;
}
.botlinks .links-wrap a.links-arrow div{
  position: relative;
}
.botlinks .links-wrap a.links-arrow:hover, .botlinks .wrap-open a.links-arrow { 
  color: #fff; 
  background-position: right top; 
  cursor: pointer; 
}
.botlinks .links-wrap .link-items { 
  display: none; 
  position: absolute; 
  left: 0px; 
  right: 0px; 
  bottom: 40px; 
  height: auto; 
  max-height: 300px; 
  overflow: auto !important; 
  overflow-x: auto; 
  background: #f3eaea; 
  border-radius: 4px; 
  min-width: 100%;
  z-index: 100;
}
.botlinks .links-wrap .link-items a { 
  display: block; 
  line-height: 24px; 
  padding: 6px 18px; 
  color: #444; 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
} 
.botlinks .links-wrap .link-items a span { 
  display: block; 
  padding: 0 10px; 
  white-space: nowrap; 
  position: relative;
}
.botlinks .links-wrap .link-items a:hover { 
  color: #0054ab; 
  cursor: pointer; 
}
.fr ul{
  display: flex;
  gap: 60px;
  margin-top: 25px;
}
.pic3{
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.3);
  box-shadow: 1px 2px 10px 0px rgba(53,129,201,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.fr ul li{
  cursor: pointer;
  position: relative;
  text-align: center;
}
.fr ul li .pic3 .mgh,
.fr ul li:hover .pic3 .mg{ 
  display: none;
}
.fr ul li:hover .pic3 .mgh,
.fr ul li .pic3 .mg{ 
   display: block;
}
.fr ul li:hover .pic3{
  background: rgba(255,255,255,0.75);
  box-shadow: 1px 2px 15px 0px rgba(53,129,201,0.6);
  border-radius: 50%;
}
.fr ul li > p{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #F7FBFF;
  text-shadow: 1px 2px 15px rgba(53,129,201,0.6);
  opacity: 0.7;
  line-height: 32px;
}
.fr ul li:hover > p{
  opacity: 1;
}
.tcontent{
  width: 100px;
  min-width: 90px;
  background: #fff;
  padding: 0 2px;
  border-radius: 5px;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  font-family: Source Han Sans CN;
  font-size: 15px;
  color: #000;
  text-align: center;
  line-height: 1.5;
  white-space: normal;  
  word-break: break-all;
}
.tcontent img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.fr ul li:hover .tcontent{
  display: block;
}
.pic4{
  width: 100px;
  height: 100px;
  box-shadow: 1px 2px 15px 0px rgba(53,129,201,0.35);
}
.pic4 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer1{ 
  background: #0d61bb;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 50px;
  text-align: center;
}

/* 
 *  内容页定制
 */
 .infotop{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 2px solid #156fc0;
 }
.info_title{
  color: #156fc0;
  font-size: 26px;
  font-weight: bold;
  line-height: 32px;
  font-family: "Mircrosoft YaHei";
  letter-spacing: 0.4px;
  padding-left: 22px;
  position: relative;
}
.info_title:before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4.6px;
  height: 27px;
  background: #156fc0;
}
.info_sy{
  color: #156fc0;
  font-size: 16px;
  line-height: 22px;
  font-family: "Mircrosoft YaHei";
  letter-spacing: 0.4px;
  padding-left: 20px;
  position: relative;
}
.info_sy:before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width:14px;
  height: 14px;
  background: url(images/sy.png);
}





















/***********************************************************
 * 列表页
 */

 
 /*栏目图片*/
 .l-banner {position: relative;margin-top: 0px; height: 485px; background:url(images/banner1.png);background-position: center bottom;background-repeat: no-repeat; background-size: cover;text-align: center;overflow: hidden;position: relative;}
 .l-banner img {display: none;vertical-align: top;height: 100%; object-position: center;}
 .l-banner:before{ content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 275px;
  background: url(images/banner_shadow.png) center no-repeat;
  background-size: cover;
  z-index: 2;}
 /**主体列表页开始**/

#l-container { }
#l-container .inner {padding: 20px 0px; padding-bottom: 40px;}
#d-container {  background: none; box-sizing: border-box; }
#d-container .inner { padding: 40px 40px 40px;box-sizing: border-box; }
#d-container .inner {
  background:#fff;
  box-shadow: 0 0 20px rgba(17, 68, 152, 0.3);
  border-radius:20px;
  margin-top: -90px;
  position: relative;
  z-index: 2;
  min-height: 400px;
}
/*主栏目名称*/
.col_menu { width: 300px; float: left; margin-right: -300px; position: relative; margin-top:-90px; box-sizing: border-box; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);}
.col_menu .l-qh { margin-bottom: 10px; }
.col_menu .col_menu_head { background: #0062bb; position: relative;} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name { height:107px; font-size: 24px; font-weight:bold; color: #fff; letter-spacing: 2.2px;font-family: "Mircrosoft YaHei";} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text { display: block; line-height: 45px; width:100%; text-align:center; position: relative;font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 28px;
  color: #FFFFFF;
  line-height: 45px;
  letter-spacing: 3px;
} /**栏目名称图标**/
.col_name_en{font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 45px;
  letter-spacing: 0px;
}
.col_menu_con{
  padding-top: 10px;
  background:#fff;
}
/* 设备列表 */
.sbbox{
  width: calc(100% - 10px);
  background: #FFFFFF;
  border: 1px solid #0062BB;
  position: relative;
  margin-top: 30px;
  padding: 10px 20px 20px 30px;
  transition: all 0.3s ease-in-out;
}
.sbbox:hover{
  transform: scale(1.05);
}
.sbbox:before{
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 100%;
  height: 10px;
  background: #0062bb;
}
.sbbox:after{
  content: "";
  position: absolute;
  top: 10px;
  left: 100%;
  width: 10px;
  height: 100%;
  background: #0062bb;
}
.ss1{
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 22px;
  color: #0062BB;
  line-height: 65px;
}
/*栏目列表*/
.col_list { min-height:30px; background: #fff; }
.col_list .wp_listcolumn { border-top: 0px solid #2867a0; border-bottom: 0px solid #fff; }
.col_list .wp_listcolumn .wp_column a { text-decoration: none; color: #333; display: block; font-size: 15px; font-weight: normal; background: none; border-top: 0px solid #fff; border-bottom: 0px solid #f6eaea; border-left: 0px solid #156fc0;}
.col_list .wp_listcolumn .wp_column a .column-name { padding: 5px 0px 5px 15px; line-height: 32px; }
.col_list .wp_listcolumn .wp_column a:hover, .col_list .wp_listcolumn .wp_column a.selected { color: #333333;  position: relative; text-decoration: none;}
/* .col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #333333; } */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a { color: #454545; background: none; border-top: 1px solid #fff; border-bottom: 1px solid #bbb; }
.col_list .wp_listcolumn .wp_column.parent > a .column-name { font-weight: bold; color: #0263bc; }

/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a { 
  color: #333; 
  /* border-top: 1px solid #eee;  */
  margin-top: -1px; 
}
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 28px; padding: 5px 10px 5px 44px; cursor: pointer; }
.col_list .wp_listcolumn .sub_list a:hover, .col_list .wp_listcolumn .wp_column a.selected { font-weight: bold; font-weight: bold; color: #0263bc; }
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 5px 10px 5px 60px; cursor: pointer; }
.col_list .wp_listcolumn .sub_list .sub_list a :hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected { font-weight: bold; color: #0263bc; }

.col_list .wp_listcolumn { border: 0px; }
.col_list .wp_listcolumn .wp_column a { font-family: "SourceHanSansCN"; background-image: none; display: block; box-sizing: border-box; color: #333; font-size: 20px; font-weight: 600; text-align: center; position: relative; }
.col_list .wp_listcolumn .wp_column a .column-name { display:flex; padding: 12px 15px;line-height: 45px; text-align:center; transition: all 0.3s ease-in-out; justify-content: center;align-items: center;flex-direction: column;}
.col_list .wp_listcolumn .wp_column a:hover  .column-name,
.col_list .wp_listcolumn .wp_column a.selected  .column-name{ background: #0062bb; color: #fff; align-items: flex-start; padding-left: 35px;width:calc(100% + 35px);
  margin-right: -45px;
}
.column-name-en{
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 28px;
  display: none;
}
.col_list .wp_listcolumn .wp_column a:hover  .column-name .column-name-en,
.col_list .wp_listcolumn .wp_column a.selected  .column-name .column-name-en{
  display: inline-block;
}
.col_list .wp_listcolumn .wp_column a:before{
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  background: url("images/list_icon.png");
  background-size: cover;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.col_list .wp_listcolumn .wp_column a.selected:before ,
.col_list .wp_listcolumn .wp_column a:hover:before{
  display: block;
}
.col_list .wp_listcolumn .wp_column .sub_list a:hover:before,
.col_list .wp_listcolumn .wp_column .sub_list a.selected:before{
  display: none;
}
/* 新加 */
.col_list .wp_listcolumn .wp_column .sub_list a:hover  .column-name,
.col_list .wp_listcolumn .wp_column .sub_list a.selected  .column-name{background: none;padding-left: 15px;margin-right: 0px;    width: auto;
  text-align: center;}



.col_list .wp_listcolumn .wp_column a.col_item_link i { position: absolute; content: ""; right: 48px; top: 50%; margin-top: -7px; width: 8px; height: 14px; display: none; }
.col_list .wp_listcolumn .wp_column a.col_item_link:hover i, .col_list .wp_listcolumn .wp_column a.col_item_link.selected i, .col_list .wp_listcolumn .wp_column a.col_item_link.parent i { display: block; }
.col_list .wp_listcolumn .sub_list .wp_column a { color: #454545; background: none; border-bottom: 1px solid #bbb; }
/*二级子栏目**/
.col_list .wp_listcolumn .sub_list a { font-weight: normal; font-size: 18px; color: #333; font-family: "Mircrosoft YaHei";}
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 30px; padding: 10px 0; cursor: pointer;  padding-left: 20px; position: relative;}
.col_list .wp_listcolumn .sub_list a .column-name:before {  position: absolute; content: ""; left: 2px; top: 50%; margin-top: -2px; width: 6px; height: 6px; background: #0263bc; }
.col_list .wp_listcolumn .sub_list a:hover { background: #f6f6f6; }
.col_list .wp_listcolumn .sub_list a.selected { background: #f6f6f6; font-weight: 600; }
.col_list .wp_listcolumn .sub_list a:hover span.column-name, .col_list .wp_listcolumn .sub_list a.selected span.column-name { color: #0263bc; }
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { background: none;  }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 5px 10px 5px 20px; cursor: pointer; font-size: 16px; position: relative; }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name:before { position: absolute; content: ""; left: 2px; top: 50%; margin-top: -2px; width: 6px; height: 6px; background: #bbb; }
.col_list .wp_listcolumn .sub_list .sub_list a:hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected { font-weight: 400; color: #237b36; }
.col_list .wp_listcolumn .sub_list .sub_list a:hover .column-name:before, .col_list .wp_listcolumn .sub_list .sub_list a.selected .column-name:before { background: #0263bc; }

/**栏目新闻**/
.col_news { width: 100%; min-height: 400px; float: right; } /**栏目新闻**/
.col_news .col_news_box { margin-left: 330px;min-height: 350px; 
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); */
  padding:15px;}
.colum-box {}

/* .col_news_head { border-bottom: 2px solid #156fc0; } */
.col_metas .col_title { display: inline-block; float: left; height: 58px; line-height: 58px; padding-left: 20px;position: relative; display: none;} /**当前栏目**/
.col_metas .col_title:before {  
  content: '';
  position: absolute;
  width: 4.6px;
  height: 30px;
  background: #0263bc;
  left: 0;
  top: 50%;
  margin-top: -12px;
}
.col_metas .col_title h2 { display: inline-block; font-size: 28px; font-weight: bold; color: #0263bc; }
.col_metas .col_path { display: inline-block; float: right; white-space: nowrap; height: 38px; line-height: 38px; color: #6ca2d5; font-size:16px; padding-left: 25px;position: relative;} /**当前位置**/
.col_metas .col_path:before { content: ''; position: absolute;  left: 3px; width: 18px; height: 18px; background: url(images/sy.png) no-repeat; background-size: 15px 18px; top: 50%; margin-top: -8px; }
.col_metas .col_path a { color: #6ca2d5; }
.col_news_con { padding: 0px 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; min-width: 414px;}
.col_news_list .wp_entry img { margin:0 auto; max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); margin:0 auto;} /**列表页文章图片大小限制**/
.wp_paging { font-size: 14px; margin-top: 30px;}
#wp_pager .pages {
  display: flex;
  min-height: auto;
  margin: 40px 0 20px;
  justify-content: center;
  align-items: center;
}
#wp_pager .pages li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  padding: 0;
  margin: 0 4px;
  text-align: center;
  background-color: transparent;
  color: #323333;
  border-radius: 50%;
  font-family: "Mircrosoft YaHei";
}
#wp_pager .pages li a.pgCurrent {
  font-weight: bold;
  background-color: #0263bc;
  color: #fff;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0px 8px;
}
#wp_pager .pages li:hover a.pgNext {
  color: #0263bc;
}


/**文章页**/
.infobox {width:auto; margin:0 auto; }
.article {padding-top:10px;}
.article h1.arti_title {line-height: 40px;font-family: "Microsoft YaHei";font-size:22px;text-align:center;color: #0263bc; margin-bottom: 10px; margin-top: 10px;} /**文章标题**/
.article h2.arti_title {line-height: 40px;font-family: "Microsoft YaHei";font-size: 17px;text-align:center;color: #1B1B1B;} /**文章副标题**/
.article .arti_metas { padding:10px; text-align:center;}
.article .arti_metas span { margin:0 5px; font-size:14px; color:#999999;}/**文章其他属性**/
.article .entry { margin:0 auto; overflow:hidden;margin-top:10px;} /**文章内容**/
.article .entry .read,.article .entry .read p { line-height:1.75; font-size:18px; color:#333;}  /**阅读字体**/
.article .entry .read p { margin-bottom:10px;}
.article .entry .read img {margin:0 auto; max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); }   /**文章阅读部分图片大小限制**/
.article .entry .read table{margin:0 auto; border:none!important; min-width: 414px;}

.col_news_list .news_list li.news {line-height: 50px;padding-left:0px;font-size: 18px; /*border-bottom:1px solid #e0e0e0;*/ position:relative;padding-bottom: 20px;} /**标题图标**/
.col_news_list .news_list li.news span.news_title { float:left;width:calc(100% - 110px);white-space: nowrap;overflow: hidden;text-overflow: ellipsis;  transition: all .5s ease-in-out;}/*标题*/
.col_news_list .news_list li.news span.news_title img {vertical-align: middle;}
.col_news_list .news_list li.news span.news_meta { position:absolute;right:0;top:0;line-height: 50px; text-align:right; width:105px;color: #777;font-size: 14px;}/*属性*/
.col_news_list .news_list li.news:hover span.news_title{ color: #0263bc; transform: translateX(15px) ;  }

.col_news_list .news_list li.news:hover span.news_meta{
  color: #0263bc;
}
.col_news_list .news_list li.news_news{
  padding-left: 5px;
  position: relative;
  padding-top: 10px;
}
.news_time{
  font-size: 14px;
  font-family: "Roboto";
  color: #0263bc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-style: italic;
  line-height: 30px;
  position: relative;
}
.news_time:before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background: #0263bc;
  transition: all 1.3s ease;
}
.xline5{
  display: block;
  width: calc(100% - 90px);
  height: 1px;
  background: #E5E5E5;
}
.s16{
  font-size: 18px;
  color: #333333;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  font-family: "Mircrosoft YaHei";
}
.s17{
  color: #666666;
  font-size: 16px;
  line-height: 24px;
  margin-top: 5px;
  font-family: "Mircrosoft YaHei";
}
.col_news_list .news_list li.news > a:hover .s16{
  color: #0263bc;
  transform: translateX(5px);
}
.col_news_list .news_list li.news > a:hover .news_time:before{
  width: 80%;
}

.tu_list{
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}
.tu_list li.news_tu{
  width: calc(100% / 3 - 20px);
}
.tu_list li.news_tu a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 4px 20px 4px ;
  background: #F9F9FB;
  border: 1px solid #E2E2E6;
  box-sizing: border-box;
  transition: all .3s ease;
}
.tu_list li.news_tu img{
  max-width: 345px;
  width: 100%;
  height: 255px;
  object-fit: cover;
}
.news_tu_text{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
  margin-top: 10px;
  text-align: center;
  padding: 0 10px;
  transition: all .3s ease;
}
.tu_list li.news_tu:hover a{
  background: #efeff4; 
}
.tu_list li.news_tu:hover a .news_tu_text{
  color: #0263bc;
}