@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;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 1400px;
  margin: 0 auto;
}

.h1{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo{
  width: 100px; height: 100px; object-fit: cover;
}
.lo{
  white-space: nowrap;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 600;
  font-size: 49px;
  color: #0F2D71; 
  line-height: 60px;
}
.lo1{
  text-transform: uppercase;
  font-family: ArialMT;
  white-space: nowrap;
  font-size: 17px; 
  color: #333333;
  font-weight:400; 
  line-height: 20px;
  margin-top: 5px;
}
.head-top{
  display: flex;
  gap:0px;
  justify-content: space-between; 
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* 搜索框样式 */
.wp-search {
  width: 320px;
  height: 46px;
  background: #fff;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.wp-search form {
  width: 100%;
  display: flex;
  padding-left:56px;
  border: 1px solid #1d3e87;
  border-radius: 23px;
}
.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: #666;
  padding: 0 1px;
  box-sizing: border-box;
}
.wp-search .search-input input.search-title::placeholder {
  color: #666666;
  font-size: 18px;
  font-family: "Microsoft YaHei";
  font-weight: 400;
}
.wp-search .search-btn {
  width: 36px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 1px;
  top: 0;
}
.wp-search .search-btn input.search-submit {
  width: 30px;
  height: 30px;
  border: none;
  outline: none;
  background:url(images/search.png) no-repeat center center;
  background-size: 30px 30px;
  cursor: pointer;
  position: absolute;
  right: -3px;
  top: 8px;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #666666;
}


/* nav */
.head-nav{
  width: 100%;
  height: 70px;
  background: #1d3e87;
  box-sizing: border-box;
  border-bottom: 5px solid #be161b;
}
.nav .wp-menu {
  width: 100%;
  height: 70px;
  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: 70px;
  text-align: center;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 70px;
  line-height: 65px;
  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: #ffffff;
}
.nav .wp-menu .menu-item:hover a.menu-link {
  background: #be161b;
  position: relative;
}
.nav .wp-menu .menu-item> a.menu-link{ 
  color: #ffffff;
}

.nav .wp-menu .menu-item:hover {
  
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  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 12px;
  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 {
  height: auto;
}
.banner {
  width: 100%;
  height: auto;
  position: relative;
  background: rgba(33, 66, 139, 0.8);

}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.banner:before {
  width: 100%;
  height: 80%;
  position: absolute;
  content: '';
  background: url("images/banner_mask.png") center no-repeat;
  left: 0px;
  bottom: 0px;
  background-size: 100% 100%;
}
/* 分页器 */
.mySwiper1 .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  gap: 15px;
  z-index: 10;
}
.mySwiper1 .swiper-pagination-bullet{
  width: 50px;
  height: 62px;
  background: url("images/banner_pinagition.png") center no-repeat;
  background-size: 100% 100%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d3e87;
  font-size: 18px;
  font-weight: Regular;
  transition: all 0.5s ease;
  font-family: Arial, sans-serif;
  line-height: 60px;
  cursor: pointer;
}
.mySwiper1 .swiper-pagination-bullet-active{
  background: url("images/banner_pinagition_hover.png") center no-repeat;
  background-size: 100% 100%;
  color: #ffffff;
}


/* main1 */
.main1{
  padding-top: 75px;
  padding-bottom: 120px;
  background: url("images/bj_01.png") center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
/* 标题 */
.title{
  display: block;
  text-align: center;
}
.til2{
  position: relative;
  padding: 0 28px;
}
.til2:before{ 
  content: '';
  position: absolute;
  width: 222px;
  height: 20px;
  background: url("images/tittle_05_w.png") center no-repeat;
  background-size: cover;
  top: 50%;
  left: -222px;
  transform: translateY(-50%);
  margin-top: -6px;
}
.til2:after{ 
  content: '';
  position: absolute;
  width: 222px;
  height: 20px;
  background: url("images/tittle_06_w.png") center no-repeat;
  background-size: cover;
  top: 50%;
  right: -222px;
  transform: translateY(-50%);
  margin-top: -6px;
}
.til1{
  position: relative;
  color: #ffffff;
  font-size: 34px;
  line-height: 36px;
  letter-spacing: 3px;
  padding: 0 45px;
}
.til1:before{ 
  content: '';
  position: absolute;
  width: 27px;
  height: 64px;
  background: url("images/tittle_01_w.png") center no-repeat;
  background-size: cover;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.til1:after{ 
  content: '';
  position: absolute;
  width: 27px;
  height: 64px;
  background: url("images/tittle_02_w.png") center no-repeat;
  background-size: cover;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.JYXW{
  margin-top: 55px;
  display: flex;
  gap: 64px;
}
.jybox1{
  width: 46.86%;
  display: block;
}
.pic1{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pic1 > img{
  height: 369px;
  object-fit: cover;
  transition: all 0.5s;
  object-position: center;
}
.time1{
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: #be161b;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  flex-direction: column;
}
.time1 .day{
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
  line-height: 30px;
  font-family: "Arial";
}
.time1 .year{
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-family: "微软雅黑";
  letter-spacing: 0.4px;
}
.s1{
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  line-height: 32px;
  font-family: "微软雅黑";
  margin-top: 10px;
  opacity: 0.9;
}
.s2{
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  line-height: 28px;
  font-family: "微软雅黑";
  opacity: 0.6;
  margin-top: 10px;
}
.jybox1:hover .pic1 > img{
  transform: scale(1.1);
}

.jybox2{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.jybox2 li{
  width: calc(50% - 20px);
}
.pic2{
  width: 100%;
  height: 180px;
  position: relative;
}
.pic2 > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.time2{
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, +50%);
  display: none;
  transition: all 0.3s ease;
  z-index: 2;
}
.s3{
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  line-height: 28px;
  font-family: "微软雅黑";
  margin-top: 10px;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.jybox2 li:hover  .time2{
  display: flex;
}
.pic2:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/pic2_before.png) no-repeat;
  z-index: 1;
  opacity: 0;
}
.jybox2 li:hover .pic2:before{
  opacity: 0.55;
}
.jybox2 li:hover .s3{
  transform: translate(8px,-2px);
}

.more{
  margin-top: 50px;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  font-family: "微软雅黑";
  letter-spacing: 0.5px;
}
.more:hover{
  border: 1px solid rgba(255,255,255,1);
}



/* main2 */
.main2{
  padding-top: 110px;
  padding-bottom: 50px;
  background: url("images/bj_02.png") center no-repeat;
  background-size: cover;
  margin-top: -65px;
  position: relative;
  z-index: 0;
}
.m2{
  display: flex;
  gap: 40px;
}
.TZGG,.XXGK{
  width: calc(50% - 20px);
}
.title1{
  display: flex;
  gap: 6px;
}
.til3{
  display: flex;
  flex-direction: column;
  color: #1d3e87;
  font-size: 34px;
  line-height: 50px;
  letter-spacing: 3px;
  align-items: center;
  font-weight: 400;
}
.tzlist{
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tzlist li{
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.tzlist li a{
  display: flex;
  gap: 10px;
  padding-right: 25px;
  align-items: center;
}
.time3 .day{
  position: relative;
  color: #1d3e87;
  font-size: 26px;
  line-height: 36px;
  font-family: "Arial";
  font-weight: 400;
  transition: all 0.3s ease;
}
.time3 .day:before{ 
  position: absolute;
  content: "";
  bottom: 0;
  left: 0px;
  width: 60%;
  height: 2px;
  background: #1d3e87;
  transition: all 0.3s ease;
}
.time3 .year{
  color: #666666;
  font-size: 15px;
  line-height: 20px;
  font-family: "Arial";
  font-weight: 400;
  margin-top: 5px;
  position: relative;
  transition: all 0.3s ease;
}
.s4{
  color: #000000;
  font-size: 18px;
  line-height: 28px;
  font-family: "微软雅黑";
  font-weight: 500;
  transition: all 0.3s ease;
}
.tzlist li:hover{
  background: #1d3e87;
}
.tzlist li:hover .s4,
.tzlist li:hover .time3 .day,
.tzlist li:hover .time3 .year{
  color: #ffffff;
}
.time3 {
  position: relative;
  padding: 10px 8px 10px 15px;
}
.tzlist li .time3:before{
  content: "";
  position: absolute;
  left: 0px;
  top: -3px;
  width: calc(100% + 5px);
  height: calc(100% + 6px);
  background: url(images/li_h.png) center no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s ease;
  display: none;
}
.tzlist li:hover .time3:before{
  display: block;
}
.tzlist li:hover .time3 .day:before{
  background: #ffffff;
}
.tzlist li:hover .s4{
  transform: translateX(8px);
}

.more1{
  width: 100%;
  height: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #cecece;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  font-size: 14px;
  font-family: "微软雅黑";
  font-weight: 500;
  letter-spacing: 0.5px;
}
.XXGK > a:hover .more1,
.TZGG > a:hover .more1{
  border: 2px solid #cecece;
}
/* 专题栏目 */
.ZTLM{
  margin-top: 80px;
}

.til2-1:before{ 
  background: url("images/tittle_05.png") center no-repeat;
  background-size: cover;
}
.til2-1:after{ 
  background: url("images/tittle_06.png") center no-repeat;
  background-size: cover;
}
.til1-1{
  position: relative;
  color: #1d3e87;
}
.til1-1:before{ 
  background: url("images/tittle_01.png") center no-repeat;
  background-size: cover;
}
.til1-1:after{ 
  background: url("images/tittle_02.png") center no-repeat;
  background-size: cover;
}
.banner1{
  margin-top: 70px;
  position: relative;
  width: calc(100% + 200px);
  margin-left: calc(-100px);
}
.banner1 .swiper-slide{
  max-width: 446px !important;
}
.banner1 .swiper-slide a{
  padding: 3px;
  background-color: #fff;
  box-shadow: 0 0  10px rgba(0,0,0,0.1);
  display: block;
  margin-bottom:5px;
  border-radius: 5px;
}
.banner1 .swiper-slide img{ 
  border-radius: 5px;
  transition: all .5s;
  width: 100%;
  height: 234px;
  object-fit: cover;
}
.swiper-button-next:after,
.swiper-button-prev:after{ 
  display: none;
}
.swiper-button-next{
  background: url("images/arrow_right.png") center no-repeat;
  opacity: 0.5;
}
.swiper-button-prev{
  background: url("images/arrow_left.png") center no-repeat;
  opacity: 0.5;
}
.zt{
  position: relative;
}
.zt:before{
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% + 40px);
  background: url("images/arrow_left_h.png") center no-repeat;
  width: 18px;
  height: 100%;
  background-size: 100% 100%;
}
.zt:after{
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% + 40px);
  background: url("images/arrow_right_h.png") center no-repeat;
  width: 18px;
  height: 100%;
  background-size: 100% 100%;
}
.banner1 .swiper-button-next:hover,
.banner1 .swiper-button-prev:hover{ opacity: 1;}
.banner1 .swiper-slide a:hover > img{
  transform: scale(0.95);
}




/* main3 */
.main3{
  padding :20px 0;
  background: url("images/bj_03.png") center no-repeat;
  background-size: cover;
}
.m3{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m3-1{
  display: flex;
  gap: 20px;
}
.m3-1 li{
  width: 220px;
  color: #000000;
  font-size: 18px;
  font-family: "微软雅黑";
  font-weight: 500;
  line-height: 46px;
  text-align: center;
  position: relative;
}
.m3-1 li:nth-child(1){ 
  background: url("images/icon1_b.png") center no-repeat;
  background-size: cover;
}
.m3-1 li:nth-child(1):before{
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: 10px;
  top:7px;
  background: url("images/icon1.png") center no-repeat;
  background-size: cover;
}
.m3-1 li:nth-child(2){ 
  background: url("images/icon2_b.png") center no-repeat;
  background-size: cover;
  text-align: right;
  padding-right: 20px;
}
.m3-1 li:nth-child(2):before{
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: 10px;
  top:7px;
  background: url("images/icon2.png") center no-repeat;
  background-size: cover;
}


.m3-2{
  display: flex;
  gap: 35px;
}
.xy{
  padding-right: 30px;
  display: flex;
  gap: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  min-height: 90px;
}
.xy1{
  border-right: none;
  padding-right: 0px;
}
.xy > img{
  width: 46px;
  height: 58px;
  object-fit: cover;
}
.s5{
  display: flex;
  gap: 7px;
  color: #ffffff;
  font-size: 18px;
  font-family: "微软雅黑";
  font-weight: 500;
  line-height: 28px;
}
.s5_icon{
  width: 16px;
  height: 9px;
  background: url("images/icon_arrow.png") center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.xy ul li a{
  color: #ffffff;
  font-size: 16px;
  font-family: "微软雅黑";
  font-weight: 500;
  line-height: 28px;
  opacity: 0.7;
}
.xy ul li a:hover{
  opacity: 1;
}
.xy ul li{
  display: flex;
  flex-direction: column;
}




/* main4 */
.main4{
  background: #f3f3f3;
  padding: 40px 0;
}
.icon_list{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.icon_list li{
  width: 120px;
}
.icon_list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}
.icon_list .icon_bg{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s6{
  color: #9f9f9f;
  font-size: 16px;
  font-family: "微软雅黑粗体";
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}
.icon-1{
  width: 36px;
  height: 36px;
  object-fit: 100% 100%;
  transition: filter 0.3s ease;
}
.icon_list li a:hover .icon-1 {
  filter: brightness(0) saturate(100%) invert(22%) sepia(45%) saturate(800%) hue-rotate(195deg) brightness(95%) contrast(95%);
}
.icon_list li a:hover .s6{
  color: #000000;
}



/* footer */
footer{
  background: url(images/bj_04.png) center no-repeat;
  padding: 32px 0;
  background-size: cover;
}
.footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.h2{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo1{
  height: 60px;
  width: 60px;
  object-fit: cover;
}
.loo{
  white-space: nowrap;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 600;
  font-size: 30px;
  color: #fff; 
  line-height: 40px;
}
.loo1{
  text-transform: uppercase;
  font-family: ArialMT;
  white-space: nowrap;
  font-size: 11px; 
  color: #fff;
  font-weight:400; 
  line-height: 15px;
  margin-top: 5px;
}
.m5-1{
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: row;
  gap: 25px;  
  padding-top: 30px;
  font-size: 16px;
  line-height: 20px;
	color: #ffffff;
	font-family: "微软雅黑";
}
.m5-1 li{
  position: relative;
  padding-left: 30px;
}
.m5-1 li:nth-child(1)::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 16px;
  height: 20px;
  background: url("images/add.png") no-repeat;
  background-size: cover;
}
.m5-1 li:nth-child(2)::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 14px;
  background: url("images/email.png") no-repeat;
  background-size: cover;
}
.m5-1 li:nth-child(3)::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  background: url("images/tel.png") no-repeat;
  background-size: cover;
}
.m5-2{
  margin-top: 15px;
  font-size: 15px;
  line-height: 20px;
	color: #ffffff;
	font-family: "微软雅黑";
  display: flex;
  gap: 12px;
}
.m5-3{
  margin-top: 25px;
}
.fr{
  display: flex;
  gap: 60px;
}
.s7{
  font-size: 18px;
  line-height: 30px;
	color: #ffffff;
	font-family: "微软雅黑";
  text-decoration: underline;
}
.col1 li a {
  font-size: 14px;
  line-height: 32px;
	color: #ffffff;
	font-family: "微软雅黑";
  opacity: 0.7;
}
.col1 li a:hover{
  opacity: 1;
}
.col2{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}








































/***********************************************************
 * 列表页
 */

 
 /*栏目图片*/
 .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:#fff;}
#l-container .inner {padding: 20px 0px; }
#d-container {  background: #ffffff; box-sizing: border-box; }
#d-container .inner { padding: 30px 40px 40px;box-sizing: border-box; box-shadow: 0 0 30px rgba(0,0,0,0.1);}
/*主栏目名称*/
.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: #1d3e87; position: relative;} /**位置栏目背景**/
.col_menu .col_menu_head:before{content: '';position: absolute;top: 0px; left: -10px;width: 10px; height: calc(100% + 10px);background: url(images/col_b.png)center no-repeat; background-size: cover;}
.col_menu .col_menu_head:after{content: '';position: absolute;top: 0px; right: -10px;width: 10px; height: calc(100% + 10px);background: url(images/col_n.png)center no-repeat; background-size: cover;} 
.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_head h3.col_name .col_name_text:before{content: '';position: absolute;top: 0px; left: 15px;width: 20px; 
  height: 46px;background: url(images/tittle_01_w.png)center no-repeat; background-size: cover;}
  .col_menu .col_menu_head h3.col_name .col_name_text:after{content: '';position: absolute;top: 0px; right: 15px;width: 20px; height: 46px;background: url(images/tittle_02_w.png)center no-repeat; background-size: cover;}
.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: #be161b;  position: relative; text-decoration: none;}
.col_list .wp_listcolumn .wp_column > a:before, .col_list .wp_listcolumn .wp_column > a:before {content: '';position: absolute;bottom: 0px; left: 10px;width: 0; height: 2px; background: #be161b;  transition: all 0.3s ease-in-out;}
.col_list .wp_listcolumn .wp_column > a:hover:before, .col_list .wp_listcolumn .wp_column > a.selected:before {content: '';position: absolute;bottom: 0px; left: 10px;width: calc(100% - 20px ); height: 2px; background: #be161b;  }
.col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #be161b; }
.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: #1d3e87; }
/*二级子栏目**/
.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: #1d3e87; }
/*三级子栏目**/
.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: #1d3e87; }

.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: 16px; font-weight: 600; text-align: center; position: relative; }
.col_list .wp_listcolumn .wp_column a .column-name { display:block; padding: 12px 15px;padding-left: 40px;  line-height: 30px; text-align:left;}
.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: 14px; color: #333; }
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 30px; padding: 10px 10px 10px 49px; cursor: pointer; position: relative;}
.col_list .wp_listcolumn .sub_list a.selected .column-name:before {  content: "";position: absolute;width: 5px; height: 5px ; left: 40px;top: 22px; border-radius: 50%;background: #be161b;}
.col_list .wp_listcolumn .sub_list a:hover { background: #f6f6f6; }
.col_list .wp_listcolumn .sub_list a.selected { background: #f6f6f6; font-weight: 600; font-size: 14px;}
.col_list .wp_listcolumn .sub_list a:hover span.column-name, .col_list .wp_listcolumn .sub_list a.selected span.column-name { color: #000; }
/*三级子栏目**/
.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;}
.colum-box {}

.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: #1d3e87; }
.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: #1d3e87;
  border: 2px solid #1d3e87;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0px 8px;
}
/**文章页**/
.infobox {width:auto; margin:0 auto; }
.article {padding-top:10px;}
.article h1.arti_title {line-height: 48px;font-family: "Microsoft YaHei";font-size:22px;text-align:center;color: #1d3e87;} /**文章标题**/
.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;border-top:1px solid #ececec;}
.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:14px; 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;}

.col_news_list .news_list li.news {line-height: 50px;padding-left:0px;font-size: 18px; border-bottom:1px solid #e5e5e5; position:relative} /**标题图标**/
.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: #1d3e87; transform: translateX(15px) ;  }
.col_news_list .news_list li.news span.news_meta:before{
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 17px;
  background: url(images/colu_time.png);

}
.col_news_list .news_list li.news:hover span.news_meta:before{
  background: url(images/colu_time_h.png);
}
.col_news_list .news_list li.news:hover span.news_meta{
  color: #1d3e87;
}
.col_news_list .news_list li.news_news{
  padding-left: 20px;
  position: relative;
}

.wp_editor_art_table td{
  border: none!important;
}