@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;
}

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{
  position: relative;
  background: #25448b;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 1400px;
  margin: 0 auto;
}
.head-top{
  display: flex;
  gap:15px;
  justify-content: space-between; 
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* 搜索框样式 */
.wp-search {
  width: 320px;
  height: 46px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  border-radius: 23px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.wp-search form {
  width: 100%;
  display: flex;
  padding-left: 20px;
}
.wp-search .search-input {
  flex: 1;
  height: 46px;
  display: flex;
  align-items: center;

}
.wp-search .search-input input.search-title {
  width: 100%;
  height: 46px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 1px;
  box-sizing: border-box;
}
.wp-search .search-input input.search-title::placeholder {
  color:rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-family: "Microsoft YaHei";
  font-weight: 400;
}
.wp-search .search-btn {
  width: 70px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 1px;
  top: 0;
  background: #143479;
  border-radius: 22px;
}
.wp-search .search-btn input.search-submit {
  width: 28px;
  height: 28px;
  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, 0.4);
}


/* nav */
.head-nav{
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  position: relative;
}
.head-nav:before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);

}
.nav .wp-menu {
  width: 100%;
  height: 52px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  padding-left: 20px;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 52px;
  text-align: center;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 52px;
  line-height: 52px;
  position: relative;
  transition: all 0s ease;
  padding: 0 22px;
  
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: Microsoft YaHei;
  font-weight: 500;
  font-size: 21px;
  color: #dcc9b5;
}
.nav .wp-menu .menu-item:hover a.menu-link {
  background: #f1cb96;
  position: relative;
}
.nav .wp-menu .menu-item:hover > a.menu-link{ 
  color: #143479;
}

.nav .wp-menu .menu-item:hover {
  
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 52px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(29, 62, 135, 0.9);
}
.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 {
  display: block;
  color: #ffffff;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  padding: 0 8px;
  transition: all 0.3s;
  font-family: "微软雅黑"
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #ffffff;
  display: block;
  font-weight: bold;
  background: #0f2d71;
}
.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(29, 62, 135, 0.9);
}
.nav .wp-menu .menu-item .sub-menu:hover .sub-menu{
  display: block;
}

/* banner */
.mySwiper1 {
  width: 100%;
  height: auto;
  position: relative;
}
.mySwiper1 {
  display: none;
}

.mySwiper1.active {
  display: block;
}
.banner {
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}



.m1{
  border-top: 4px solid #143479;
  display: flex;
  justify-content: center;
}
.m1 > ul{
  width: 864px; 
  display: flex; 
  position: relative;
  margin-top: -88px;
  z-index: 100; 
  border-bottom: 6px solid #f1cb96;
}
.m1 ul li{
  width: calc(100% / 2);
  height: auto;
  position: relative;
}
/* .m1 ul li a{
  display: block;
} */
.m1-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m1-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  z-index: 1002;
}
.s5{
  font-family: MicrosoftYaHei;
  font-size: 18px;
  color: #F7F7FE;
  white-space: nowrap;
}
.m1 ul li:before{
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: #264792;
  position: relative;
  z-index: 1001;
  left: 0;
  top: 0;
  display: none;
}
.m1 ul li.hover:before,
.m1 ul li.hover:hover:before{
  display: block;
}

.m1 ul li.hover .m1-img,
.m1 ul li.hover:hover .m1-img{
  display: none;
}


/* main1 */
.main1{
  margin-top: 70px;
}
.m2{
  display: flex;
  gap: 40px;
}
.ml,.mr{
  width: calc(50% - 20px);
}
.title{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  border-bottom: 3px solid rgba(186, 196, 219, 0.3);
  padding-bottom: 17px;
}
.tit1{
  font-family: MicrosoftYaHei;
  font-size: 34px;
  color: #1D3E87;
  line-height: 36px;
  text-align: left;
  font-style: normal;
}
.more{
  font-family: ArialMT;
  font-size: 18px;
  color: #666666;
  line-height: 36px;
  text-align: right;
  font-style: normal;
  transition: all 0.3s;
}
.more:hover{
  color: #143479;
}
.zsbox{
  margin-top: 25px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  background: #FFFFFF;
  padding:10px 0px 8px 0px;

  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 2px 2px 2px 2px;
}
.zsbox li{
  padding: 10px 30px 10px 10px;
  transition: all 0.3s;
}
.zsbox li:hover{
  background: #fff3e2;
}
.zsbox li a{
  display: flex;
  align-items: center;
  gap: 20px;
}
.time{
  min-width: 120px;
  width: 120px;
  padding-left: 30px;
  background: url(images/-h-date_bj.png) no-repeat center;
  background-size: cover;
  
  display: flex;
  gap: 0px;
  flex-direction: column;
  padding-top: 5px;
  padding-bottom: 2px;
  transition: all 0.3s;
}
.time .day{
  font-family:"Arial";
  font-size: 22px;
  color: #fff;
  line-height: 25px;
}
.time .month{
  font-family:"Arial";
  font-size: 12px;
  color: #fff;
  line-height: 18px;
}
.zsbox li:hover .time{
  background: url(images/-h-date_bj_h.png) no-repeat center;
  background-size: cover;
}
.s1{
  font-family: MicrosoftYaHei;
  font-size: 18px;
  color: #000000;
  line-height: 24px;
  text-align: left;
  font-weight: 400;
  transition: all 0.3s;
}
.zsbox li:hover .s1{
  font-weight: 600;
}


.zybox{
  margin-top: 25px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  background: #FFFFFF;
  padding-top: 10px;
  border-radius: 2px 2px 2px 2px;
}
.zybox .zy1{
  margin: 0px 20px;
  background: #143479;
  display: flex;
  align-items: center;

  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #ffffff;
  line-height: 49px;
}
.mc{
  /* display: block; */
  width: 50%;
  padding-left: 20px;
  padding-right: 15px;
}
.dm{
  width: 23.4375%;
}
.xz{
  width: 26.5625%;
}
.zybox li{
  padding: 0px 20px;
}
.zybox li a{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d1d1d1;

  font-family: MicrosoftYaHei;
  font-size: 18px;
  color: #000000;
  line-height: 49px;
  box-sizing: border-box;
  transition: all .3s;
}
.zybox li:last-child a{
  border-bottom: none;
}
.zybox li:hover{
  background: #f7f7fe;
}
.zybox li:hover a{
  color: #143479;
  font-weight: 500;
}

/* main2 */
.main2{
  margin-top: 55px;
}
.m3{
  display: flex;
  gap: 40px;
}
.ml1,.mr1{
  width: calc(50% - 20px);
}
.jybox,.zcbox{
  margin-top: 25px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  background: #FFFFFF;
  border-radius: 2px 2px 2px 2px;
}
.jybox{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 23px 0;
}
.jybox li a{
  display: flex;
  gap: 16px;
  padding: 0px 20px 0px 10px;
  align-items: center;
}
.time1{
  width: auto;
  min-width: 97px;
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  gap: 5px;
  padding: 5px 20px;
  border-right: 1px solid #d1d1d1;
}
.time1 .day{
  font-family: "Arial";
  font-size: 22px;
  color: #143479;
  line-height: 26px;
  border-bottom: 2px solid #143479;
}
.time1 .month{
  font-family: "Arial";
  font-size: 14px;
  color: #666666;
  line-height: 16px;
}
.s2{
  font-family: MicrosoftYaHei;
  font-size: 18px;
  color: #000000;
  line-height: 28px;
}
.jybox li a:hover .s2{
  color: #143479;
  font-weight: 500;
}
.jybox li a:hover .time1{
  background: #143479;
  border-right: 1px solid #143479;
}
.jybox li a:hover .time1 .month{
  color: #ffffff;
}
.jybox li a:hover .time1 .day{
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}


.zcbox{
  padding-bottom: 39px;
  display: flex;
  flex-direction: column;
}
.zcbox li{
  padding: 34px 20px 0px 20px;
}
.zcbox li a{
  display: flex;
  padding-left: 30px;
  padding-bottom: 15px;
  position: relative;
  flex-direction: column;
  gap: 7px;
  border-bottom: 1px solid #d1d1d1;
}
.zcbox li a:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 24px;
  height: 22px;
  background: url(images/-h-star.png) no-repeat;
  background-size: 24px 22px;
}
.s3{
  font-family: MicrosoftYaHei;
  font-size: 18px;
  color: #000000;
  line-height: 24px;
}
.s4{
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #666666;
  line-height: 28px;
}

.zcbox li:hover{
  background: #F7F7FE;
}
.zcbox li:hover .s4,
.zcbox li:hover .s3{color: #143479;}
.zcbox li:hover .s3{
  font-weight: 600;
}
.zcbox li:hover a:before{
  background: url(images/-h-star_h.png) no-repeat;
}


/* main3 */
.main3{
  display: flex;
  gap: 37px;
}
.main3 li{
  width: calc(100% / 4 - 27.75px);
  height: 120px;
  box-sizing: border-box;
  overflow: hidden;
}
.main3 li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ;
}
.main3 li:hover{
  border:1px solid #fff;
}
.main3 li:hover img{
  transform: scale(1.1);
}


/* footer */
.footer{
  margin-top: -26px ;
  position: relative;
  z-index: 1; 
  background: url(images/-h-bj_03.png);
  padding: 40px 0px 30px 0;
  background-size:100% 100% ;
}
.m4{
  display: flex;
  justify-content: space-between;
}
.ml4{
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ml4-1,
.ml4-2{
  display: flex;
  gap: 0px 20px;
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 30px;
}
.ml4-1{
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.ml4-1 li{
  padding-left: 30px;
  position: relative;
}
.ml4-1 li:nth-child(1):before{
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 20px;
  background: url(images/add.png);
}
.ml4-1 li:nth-child(2):before{
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 14px;
  background: url(images/email.png);
}
.ml4-1 li:nth-child(3):before{
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background: url(images/phone.png);
}


.ai-job-officer{
  position: fixed;
  top: 10%;
  right:20px;
  z-index: 999;
  display: flex;
  width: 200px;
}
.ai-job-officer img {
  width: 100%;
  height: auto;
  object-fit: cover;
}














/***********************************************************
 * 列表页
 */

 
 /*栏目图片*/
 .l-banner {height: 300px; 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-container{
  background:#f8fafc;
}
#l-container .inner {padding:25px 0px; } 
/**主体文章页开始**/
#d-container .inner {background:#fff; box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);}
/*主栏目名称*/
.col_menu { width: 250px; float: left; margin-right: -250px; position: relative; /* margin-top:-85px;  */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: #143479; position: relative;} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name { height:80px; font-size: 24px; font-weight:bold; color: #fff; } /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text { display: block; line-height: 45px; padding: 0px 25px; width:100%; text-align:center; position: relative;} /**栏目名称图标**/
.col_menu .col_menu_con {  background:#fff }

/*主栏目名称*/
.col_menu { width: 250px; float: left; margin-right: -250px; position: relative; /* margin-top:-85px;  */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: #143479; position: relative;} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name { height:80px; font-size: 24px; font-weight:bold; color: #fff; } /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text { display: block; line-height: 45px; padding: 0px 25px; width:100%; text-align:center; position: relative;} /**栏目名称图标**/
.col_menu .col_menu_con {  background:#fff }


/*栏目列表*/
.col_list { min-height:30px; }
.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; }
.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: #143479;  position: relative; text-decoration: none;}
.col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #143479; }
.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: #143479; }
/*二级子栏目**/
.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: #143479; }
/*三级子栏目**/
.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: #143479; }

.col_list .wp_listcolumn { border: 0px; }
.col_list .wp_listcolumn .wp_column a { background-image: none; display: block; box-sizing: border-box; color: #333; font-size: 18px; font-weight: 600; text-align: center; position: relative; }
.col_list .wp_listcolumn .wp_column a .column-name { display:block; padding: 12px 15px; line-height: 30px; 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: 16px; color: #333; }
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 30px; padding: 10px 0; cursor: pointer; }
.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: #143479; }
/*三级子栏目**/
.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: 14px; 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: 4px; height: 4px; 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: #f6f6f6; }

/**栏目新闻**/
.col_news { width: 100%; min-height: 400px; float: right; } /**栏目新闻**/
.col_news .col_news_box { margin-left: 280px;min-height: 350px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);padding:15px; background: #fff;}

.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: 20px; font-weight: bold; color: #143479; }
.col_metas .col_path { display: inline-block; float: right; white-space: nowrap; height: 46px; line-height: 46px; color: #666; font-size:12px; padding-left: 25px;position: relative;} /**当前位置**/
.col_metas .col_path:before { content: ''; position: absolute;  left: 0px; width: 18px; height: 18px; background: url(images/home.png) no-repeat; background-size: 18px 18px; top: 50%; margin-top: -9px; }
.col_metas .col_path a { color: #2f2f2f; }
.col_news_con { padding: 15px 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:940px; _width:expression(this.width > 940 ? "940px" : this.width); } /**列表页文章图片大小限制**/
.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: 36px;
  overflow: hidden;
  padding: 0;
  margin: 0 4px;
  text-align: center;
  background-color: #f1f1f1;
  color: #333;
  border: 2px solid transparent;
  border-radius: 0;
  -webkit-transition: .3s all ease;
  -ms-transition: .3s all ease;
  transition: .3s all ease;
}
#wp_pager .pages li a.pgCurrent {
  font-weight: bold;
  background-color: #fff;
  color: #143479;
  border: 2px solid #143479;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0px 8px;
}
.col_news_list .news_list li.news {line-height: 50px;padding-left:0px;font-size: 18px;  position:relative} /**标题图标**/
.col_news_list .news_list li.news .news_title { width:100% ;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;  transition: all .5s ease-in-out;font-weight: bold;}/*标题*/
.col_news_list .news_list li.news .news_title img {vertical-align: middle;}
.col_news_list .news_list li.news .news_meta { padding-left: 20px;position:relative;line-height: 20px;  color: #777;font-family: "Arial";font-style: italic;font-size: 14px;display: flex;gap: 10px;justify-content: space-between;align-items: center;}/*属性*/
.col_news_list .news_list li.news:hover .news_title{ color: #1d3e87; transform: translateX(15px) ;  }
.line11{
  width: calc(100% - 110px);
  height: 1px;
  /* background-color: #1d3e87; */
  display: block;
  position: relative;
  border-top: 1px dashed #777;
  transition: all 0.7s ease-in-out;
}
.line11:before{
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0px;
  height: 1px;
  background-color: #1d3e87;
  transition: all 0.7s ease-in-out;
}
.col_news_list .news_list li.news:hover .line11:before{
  width: 100%;
}
.col_news_list .news_list li.news .news_meta:before{
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  background:url(images/time.png);
  background-size: cover;
}
.col_news_list .news_list li.news:hover .news_meta{
  color: #1d3e87;
}
.col_news_list .news_list li.news_news{
  padding-left: 20px;
  position: relative;
}

/**文章页**/
.infobox {padding:20px 60px; margin:0 auto; width:auto;    min-height: 500px;}
.article {padding-top:10px;}
.article h1.arti_title {line-height: 36px;font-family: "Microsoft YaHei";font-size:22px;text-align:center;color: #0044A0;} /**文章标题**/
.article h2.arti_title {line-height: 34px;font-family: "Microsoft YaHei";font-size: 17px;text-align:center; color:#666;} /**文章副标题**/
.article .arti_metas {padding:10px;text-align:center;}
.article .arti_metas span { margin:0 5px; font-size:12px; color:#787878;}/**文章其他属性**/
.article .entry { margin:0 auto; overflow:hidden;margin-top:10px;} /**文章内容**/
.article .entry .read,.article .entry .read p { line-height:1.75; font-size:16px; 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; }
.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; }


.newspic{ width:100%; height: 293px; }
.n1 .n22{ margin-top: 15px; }
.n3 .n22{ margin-top: 15px; }
.list_news li{
  margin-top: 20px;
  margin-bottom: 20px;
}


.sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
}