@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 {
   text-decoration: none;
}

body,
textarea,
input,
button,
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, .8);
   -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, .8);
   box-shadow: 0px 0px 10px rgba(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: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB, Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
   color: #333;
}

p {
   line-height: 1.75;
}

a {
   color: #333;
   text-decoration: none;
   transition: all 0.4s ease-in-out;
}

a:hover {
   color: #1267bb;
}

.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: .3s all ease;
   -ms-transition: .3s all ease;
   transition: .3s all ease
}

.text-overflow {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap
}

.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;
}

/*页面尺寸*/
.wrapper {
   width: 100%;
   margin: 0 auto;
}

.inner {
   width: 1400px;
   margin: 0 auto;
}

/**页面全局宽度**/
.top_main {
   position: relative;
   z-index: 10;
   border-top: 14px solid #1345a4;
}

.mbanner {
   position: relative;
   z-index: 1;
}

.mod {
   padding: 0px
}

.position_fix {
   position: relative;
}

/*head开始*/
#header {
   position: absolute;
   z-index: 10;
   top: 0;
   left: 0;
   right: 0;
   min-height: 160px;
   background: transparent;
   transition: all 1s;
}

#header.headfix {
   position: fixed;
   background: #1345a4;
}

#header .inner {
   position: relative;
   z-index: 2;
}

a.old_link {
   margin-right: 12px;
   position: absolute;
   z-index: 5;
   top: 4px;
   right: 0px;
   font-size: 14px;
   color: #fff;
   padding-left: 7px;
   line-height: 18px;
}



.head-top {
   padding-top: 35px;
   position: relative;
}

.header .head-left {
   float: left;
   display: inline-block;
   margin-top: 12px;
}

.header .sitelogo {
   float: left;
}

.header .sitelogo .logo {
   width: 494px;
   display: block;
   margin-top: -17px;
}

.header .sitelogo .logo img {
   display: block;
   width: 100%;
}

.header .head-right {
   float: right;
   position: relative;
}

.flo_1 {
   overflow: hidden;
}

.search-panel {
   float: right;
   position: relative;
   z-index: 20;
   display: inline-block;
   line-height: 25px;
margin-right:10px;
 
}

.search-panell {
   float: right;
   position: relative;
   z-index: 20;
   display: inline-block;
   line-height: 25px;
  margin-right: 14px;
}



.searchbtn {
   width: 25px;
   height: 25px;
   border-radius: 4px;
   border: 0;
   outline: 0;
   background: #ef7d2d url(images/search.png) no-repeat center;
   position: absolute;
   right: 0px;
   top: 0px;
   z-index: 120;
   cursor: pointer;
}


.search-window {
   width: 25px;
   border: 0px;
   overflow: hidden;
   min-height: 25px;
}

/**搜索**/
.wp_search {
   display: inline-block;
   position: relative;
   padding-left: 12px;
   background: #fff;
   width: 209px;
   height: 36px;
   opacity: 0.3;
   filter: Alpha(opacity=30)
}

.wp_search #keyword {
   width: 177px !important;
   padding: 4px 0;
   border: none;
   height: 28px;
   line-height: 28px;
   background: transparent;
   color: #fff;
   font-size: 14px;
   font-family: "Microsoft YaHei";
}

.wp_search .search {
   width: 32px;
   height: 32px;
   border: 0px;
   background: url(images/sous.png) no-repeat center;
   cursor: pointer;
   vertical-align: top;
}

/***自定义搜索*/
.searchbox {
   width: 212px;
   text-align: right;
}

.wp-search {
   border: 0px solid #fff;
   border-radius: 0px;
   position: relative;
}

.wp-search form {
   display: block;
   padding-right: 34px;
}

.wp-search .search-input {
   margin-right: 0;
   height: 25px;
   position: relative;
}

.wp-search .search-input input.search-title {
   width: 100%;
   box-sizing: border-box;
   height: 25px;
   padding: 0px 15px;
   line-height: 25px;
   color: #333;
   font-size: 14px;
   border: 0;
   outline: 0;
   background: none;

font-family: Microsoft YaHei;
}

.wp-search .search-btn {
   width: 25px;
   height: 25px;
   position: absolute;
   right: 0;
   top: 0;
}

.wp-search .search-btn input.search-submit {
   width: 25px;
   height: 25px;
   border: 0;
   outline: 0;
   border-radius: 4px;
   background: #ef7d2d url(images/search.png) no-repeat center;
   cursor: pointer;
}

.wp-search input:-webkit-autofill {
   transition: background-color 5000s ease-in-out 0s;
   -webkit-text-fill-color: #333;
}

.top_nav {
   position: absolute;
   top: 0;
   right: 50px;
}

.head-nav {
   margin-top: 12px;
}

/*默认主导航样式*/
#nav {}

.nav .inner {
   width: 100%;
}

.nav .wp-menu {
   height: 42px;
}

.nav .wp-menu .menu-item {
   display: inline-block;
   position: relative;
   height: 42px;
   text-align: center;
}

.nav .wp-menu .menu-item>a {
   display: inline-block;
   height: 42px;
   line-height: 42px;
   padding: 0 12px;
   position: relative;
}

.nav .wp-menu .menu-item a.menu-link {
   color: #fff;
   font-size: 20px;
   font-weight: 600;
   -webkit-transition: all 0.3s;
}

.nav .wp-menu .menu-item.hover a.menu-link {
   color: #000;
   background: rgba(200, 200, 200, 0.7);
}

.nav .wp-menu .menu-item.hover a.menu-link:before {
   position: absolute;
   content: '';
   bottom: 0;
   left: 0;
   right: 0;
   height: 1px;
   background: #ef7d2d;
}

.nav .sub-menu {
   display: none;
   position: absolute;
   left: 0;
   top: 42px;
   width: auto;
   min-width: 100%;
   z-index: 100;
   max-height: 400px;
   justify-content: flex-start;
   -webkit-justify-content: flex-start;
   -webkit-flex-direction: column;
   flex-direction: column;
   -webkit-flex-wrap: wrap;
   -webkit-box-lines: single;
   -moz-flex-wrap: wrap;
   flex-wrap: wrap;
}

.nav .sub-menu .sub-item {
   position: relative;
   white-space: nowrap;
   vertical-align: top;
   _zoom: 1;
   background: #f6f6f694;
}

.nav .sub-menu .sub-item a {
   display: block;
   color: #000;
   height: 40px;
   line-height: 40px;
   font-size: 16px;
   text-align: left;
   padding: 0 16px;
}

.nav .sub-menu .sub-item.hover>a,
.nav .sub-menu .sub-item a:hover {
   color: #ef7d2d;
   background-color: rgba(200, 200, 200, 0.7);
   display: block;
}

.nav .sub-menu .sub-menu {
   left: 100%;
   top: 0px;
   z-index: 200;
   background: rgba(255, 255, 255, 0.7);
}

/**主页开始**/
.min-h1 {
   min-height: 40px;
}

.min-h2 {
   min-height: 360px;
}

.mbanner {
   position: relative;
   z-index: 1;
}

.mbanner .swiper-button-next,
.mbanner .swiper-button-prev {
   display: block;
   box-sizing: border-box;
   -webkit-transition: all .2s ease;
   -moz-transition: all .2s ease;
   -ms-transition: all .2s ease;
   -o-transition: all .2s ease;
   transition: all .2s ease;
   width: 80px;
   height: 80px;
   display: block;
   z-index: 100;
   cursor: pointer;
   opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
   display: none;
}

.mbanner .swiper-button-prev {
   background: url(images/next4.png) center no-repeat;
   background-size: cover;
   transform: rotate(-180deg);
   left: 100px;
   right: auto;
   -webkit-transition: 0.5s all ease;
   -ms-transition: 0.5s all ease;
   transition: 0.5s all ease;
}

.mbanner .swiper-button-next {
   background: url(images/next4.png) center no-repeat;
   background-size: cover;
   transform: rotate(0deg);
   right: 100px;
   left: auto;
   -webkit-transition: 0.5s all ease;
   -ms-transition: 0.5s all ease;
   transition: 0.5s all ease;
}

.mbanner .swiper-button-prev.swiper-button-disabled {
   background: url(images/prev5.png) center no-repeat;
   transform: rotate(0deg);
   background-size: cover;
}

.mbanner .swiper-button-next.swiper-button-disabled {
   background: url(images/prev5.png) center no-repeat;
   transform: rotate(-180deg);
   background-size: cover;
}

.mbanner .swiper-slide img {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   max-width: 100%;
   width: 100%;
   height: 100%;
   /*object-fit: cover;*/
}

.mbanner .swiper-box {
   position: absolute;
   z-index: 2;
   bottom: 90px;
   left: 0;
   right: 0;
   margin: 0 auto;
   width: 1400px;
   height: 32px;
   padding-right: 70px;
}

.mbanner .swiper-pagination {
   bottom: 0px;
   left: auto;
   right: 70px;
   height: 32px;
   text-align: right;
}

.mbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
   width: 6px;
   height: 6px;
   background: #fff;
   margin: 0 10px;
   opacity: 1;
   position: relative;
}

.mbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:after {
   position: absolute;
   content: '';
   right: 0px;
   width: 0px;
   height: 2px;
   background: #ff7900;
   border-radius: 0;
}

.mbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
   position: absolute;
   z-index: 1;
   content: '';
   top: -12px;
   bottom: -12px;
   left: -12px;
   right: -12px;
   border: 1px solid #ff7900;
   border-radius: 50%;
   box-sizing: border-box;
}

.mbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
   margin-left: 30px;
   margin-right: 120px;
   -webkit-transition: 0.5s all ease;
   -ms-transition: 0.5s all ease;
   transition: 0.5s all ease;
}

.mbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
   right: -110px;
   width: 80px;
   -webkit-transition: 0.5s all ease;
   -ms-transition: 0.5s all ease;
   transition: 0.5s all ease;
}

.mbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active {
   margin-left: 120px;
   margin-right: 20px;
}

.mbanner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active:after {
   left: -110px;
}

.mbanner .swiper-num {
   position: absolute;
   bottom: 0px;
   right: 0;
   line-height: 32px;
   font-size: 20px;
   color: #fff;
}

.swiper-num span {
   padding: 0 5px;
}

.mbanner .swiper-num .active {
   font-size: 30px;
   color: #ff7900;
}


/**首页布局**/
.main2 {
   padding: 70px 0 76px;
   background: #fff;
}

.index_title {
   position: relative;
   text-align: center;
}

.index_title01 {
   margin: 0 auto;
   margin-bottom: 34px;
   width: 224px;
   height: 154px;
   background: url(images/newsbt1.png) center no-repeat;
   background-size: auto 100%;
}

.index_title:before {
   position: absolute;
   content: '';
   bottom: 0;
   left: -195px;
   top: 50%;
   transform: translateY(-50%);
   width: 195px;
   height: 2px;
   background: #cdcdcd;
}

.index_title:after {
   position: absolute;
   content: '';
   bottom: 0;
   right: -195px;
   top: 50%;
   transform: translateY(-50%);
   width: 195px;
   height: 2px;
   background: #cdcdcd;
}

.index_title .bt1 {
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   transform: translateY(-50%);
   text-align: center;
   font-size: 30px;
   font-weight: bold;
   color: #1267bb;
   line-height: 40px;
}

.index_title .bt2 {
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   transform: translateY(-50%);
   text-align: center;
   margin-top: 27px;
   font-size: 16px;
   font-weight: 400;
   color: #717171;
   line-height: 20px;
}

.index_more {
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   padding-right: 25px;
   font-size: 16px;
   line-height: 24px;
   color: #1267bb;
   background: url(images/more.png) right center no-repeat;
}

.index_01_left {
   float: left;
   width: calc(100% - 550px);
}

.index_01_right {
   float: right;
   width: 550px;
}

.index_01_left li {
   width: 50%;
   padding-right: 38px;
}

.index_01_left .pic_tu {
   border: 2px solid #1167bb;
   padding: 8px 6px;
}

.tu_pic {
   width: 100%;
   padding-top: 60.5%;
   overflow: hidden;
   position: relative;
}

.tu_pic .img {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-size: cover;
   -webkit-transition: 1.5s all ease;
   -ms-transition: 1.5s all ease;
   transition: 1.5s all ease;
}

.tu_pic:hover .img {
   transform: scale(1.1, 1.1);
   -webkit-transition: 1.5s all ease;
   -ms-transition: 1.5s all ease;
   transition: 1.5s all ease;
}

.index_01_left .info {
   padding: 10px 46px 13px 20px;
   background: #1167bb;
   position: relative;
}

.index_01_left .info:before {
   position: absolute;
   content: '';
   bottom: 5px;
   right: 0;
   width: 42px;
   height: 94px;
   background: url(images/lo.png) no-repeat;
}

.index_01_left .info .date {
   font-size: 16px;
   line-height: 24px;
   color: #fff;
}

.index_01_left .info .bt {
   margin-top: 7px;
   height: 48px;
   font-size: 18px;
   line-height: 24px;
   color: #fff;
}

.index_01_right li {
   border: 1px solid #999999;
   border-radius: 6px;
   margin-bottom: 17px;
}

.index_01_right li:last-child {
   margin-bottom: 0;
}

.index_01_right li a {
   height: 58px;
   position: relative;
   padding-right: 20px;
   padding-left: 120px;
   display: block;
   color: #333;
   overflow: hidden;
}

.index_01_right li a .news_bt {
   position: relative;
   z-index: 2;
   line-height: 58px;
   font-size: 18px;
}

.index_01_right li a .news_wz {
   display: none;
}

.index_01_right li a .news_date {
   position: absolute;
   z-index: 2;
   left: 0;
   top: 0;
   height: 58px;
   line-height: 58px;
   width: 105px;
   text-align: center;
   font-size: 14px;
   color: #333;
}

.index_01_right li a:before {
   position: absolute;
   content: '';
   z-index: 2;
   top: 50%;
   left: 105px;
   margin-top: -7px;
   height: 15px;
   width: 1px;
   background: #e0e0e0;
}

.index_01_right li a .news_day {
   position: absolute;
   left: -200%;
   top: 50%;
   transform: translateY(-50%);
   width: 96px;
   color: #fff;
}

.index_01_right li a .day1 {
   font-size: 40px;
   display: block;
   line-height: 40px;
   text-align: center;
}

.index_01_right li a .day2 {
   font-size: 14px;
   display: block;
   line-height: 26px;
   text-align: center;
}

.index_01_right li:hover,
.index_01_right li.on {
   background: #1167bb;
   border: 0;
}

.index_01_right li:hover a,
.index_01_right li.on a {
   color: #fff;
   height: auto;
   padding-right: 25px;
   padding-left: 101px;
   padding-bottom: 18px;
   padding-top: 17px;
}

.index_01_right li a:hover:before,
.index_01_right li.on a:before {
   display: none;
}

.index_01_right li a:hover .news_date,
.index_01_right li.on a .news_date {
   display: none;
}

.index_01_right li a:hover .news_day,
.index_01_right li.on a .news_day {
   left: 0px;
   transition: all 0.2s linear;
}

.index_01_right li a:hover .news_bt,
.index_01_right li.on a .news_bt {
   line-height: 24px;
   font-size: 18px;
}

.index_01_right li a:hover .news_wz,
.index_01_right li.on a .news_wz {
   display: block;
   line-height: 24px;
   font-size: 14px;
   margin-top: 7px;
}


.main3 {
   padding: 60px 0 50px;
   background: #1f65ac url(images/bg1.png) center top no-repeat;
   background-size: cover;
}

.main3 li {
   padding-top: 16px;
   padding-bottom: 12px;
}

.main3 li .icon {
   height: 54px;
   margin: 0 auto;
   position: relative;
   overflow: hidden;
   text-align: center;
}

.main3 li .icon img {
   position: absolute;
   top: -54px;
   left: 0;
   right: 0;
}

.main3 li .bt {
   text-align: center;
   font-size: 20px;
   font-weight: 600;
   color: #fff;
   line-height: 30px;
   margin-top: 28px;
}

.main3 li:nth-child(1) .icon {
   width: 56px;
}

.main3 li:nth-child(2) .icon {
   width: 53px;
}

.main3 li:nth-child(3) .icon {
   width: 53px;
}

.main3 li:nth-child(4) .icon {
   width: 44px;
}

.main3 li:nth-child(5) .icon {
   width: 45px;
}

.main3 li:nth-child(6) .icon {
   width: 50px;
}

.main3 li:nth-child(7) .icon {
   width: 53px;
}

.main3 li:nth-child(8) .icon {
   width: 53px;
}

.main3 li a:hover .icon img {
   top: 0px;
   -webkit-transition: 0.5s all ease;
   -ms-transition: 0.5s all ease;
   transition: 0.5s all ease;
}

.main4 {
   padding: 70px 0 65px;
   background: #fff;
}

.main4_bk {
   width: calc(50% - 36px);
}

.index_title02 {
   margin-bottom: 11px;
   width: 166px;
   height: 128px;
   background: url(images/newsbt2.png) left no-repeat;
   background-size: auto 100%;
}

.main4_bk .index_title:before {
   display: none;
}

.index_title02:before {
   display: none;
}

.index_title02 .bt1,
.index_title02 .bt2 {
   text-align: left;
}

.main4_left li {
   border-bottom: 1px dashed #e0e0e0;
}

.main4_left li a {
   padding: 12px 0 8px;
   display: block;
}

.main4_left li .date {
   padding-left: 24px;
   line-height: 24px;
   font-size: 16px;
   color: #717171;
   background: url(images/date.png) left no-repeat;
}

.main4_left li .bt {
   line-height: 28px;
   margin-top: 4px;
   font-size: 18px;
}

.main4_right li {
   margin-bottom: 32px;
}

.main4_right li:last-child {
   margin-bottom: 0px;
}

.main4_right li:first-child {
   margin-top: 16px;
}

.main4_right li a {
   display: block;
   position: relative;
   padding-left: 24px;
}

.main4_right li a:before {
   position: absolute;
   z-index: 2;
   content: '';
   left: 0;
   top: 0;
   bottom: 0;
   width: 4px;
   background: #0e60b0;
}

.main4_right li a:hover:before {
   top: -12px;
   bottom: -10px;
   -webkit-transition: 0.2s all ease;
   -ms-transition: 0.2s all ease;
   transition: 0.2s all ease;
}

.main4_right li a:hover:after {
   position: absolute;
   z-index: 1;
   content: '';
   left: 0;
   right: 0;
   top: -12px;
   bottom: -10px;
   background: #fff;
   box-shadow: 4px 0 10px rgba(51, 51, 51, 0.2);
   -webkit-transition: 0.5s all ease;
   -ms-transition: 0.5s all ease;
   transition: 0.5s all ease;
}

.main4_right li .bt {
   position: relative;
   z-index: 3;
   line-height: 20px;
   margin-bottom: 10px;
   font-size: 18px;
}

.main4_right li .date {
   position: relative;
   z-index: 3;
   padding-left: 30px;
   line-height: 22px;
   font-size: 14px;
   color: #999;
   background: url(images/time.png) left no-repeat;
}

.main5 {
   padding: 60px 0px 80px;
   background: #f2f5f8 url(images/bg3.png) center bottom no-repeat;
   background-size: cover;
}

.main5_bk1 {
   width: calc(50% - 35px);
}

.main5_bk2 {
   width: calc(50% - 15px);
}

.index_title03 {
   margin-bottom: 17px;
   width: 160px;
   height: 137px;
   background: url(images/newsbt3.png) left no-repeat;
   background-size: auto 100%;
}

.main5 .index_title:before {
   display: none;
}

.index_title03:before {
   display: none;
}

.index_title03 .bt1,
.index_title03 .bt2 {
   text-align: left;
}

.main5_left li {
   border-bottom: 1px solid #dfdbdc;
}

.main5_left li a {
   display: block;
   padding: 25px 160px 19px 49px;
   position: relative;
}

.main5_left li a:before {
   position: absolute;
   content: '';
   left: 8px;
   top: 25px;
   width: 8px;
   height: 24px;
   background: url(images/news.png) left no-repeat;
}

.main5_left li a:hover {
   background: #fff;
}

.main5_left li .bt {
   line-height: 24px;
   font-size: 18px;
}

.main5_left li .date {
   position: absolute;
   top: 25px;
   right: 24px;
   line-height: 24px;
   font-size: 16px;
   color: #7f7f7f;
font-family: Simsun;
    font-weight: 700;
}

.main5_bk2 .index_title03:after {
   display: none;
}

.main5_bk2 .index_title03 {
   margin-bottom: 38px;
}

.main5_bk2 .tab-menu {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   left: 160px;
   right: 120px;
   display: flex;
   display: -webkit-flex;
   justify-content: space-between;
   -webkit-justify-content: space-between;
}

.main5_bk2 .tab-menu li {
   font-size: 18px;
   font-weight: 600;
   color: #676767;
   height: 36px;
   line-height: 36px;
}

.main5_bk2 .tab-menu li.selected {
   font-size: 24px;
   font-weight: 600;
   color: #333;
   border-bottom: 2px solid #0e60b0;
}

.main5_right {
   padding: 0 7px;
}

.main5_right li {
   width: calc(50% - 13px);
   border: 1px solid #d2d2d2;
   box-shadow: 4px 0 10px rgba(51, 51, 51, 0.2);
   margin-top: 33px;
}

.main5_right li:nth-child(1),
.main5_right li:nth-child(2) {
   margin-top: 0;
}

.main5_right li a {
   position: relative;
   display: block;
   padding: 32px 25px 15px;
}

.main5_right li .bt {
   height: 60px;
   line-height: 30px;
   font-size: 18px;
}

.main5_right li .date {
   position: absolute;
   left: 25px;
   top: -11px;
   width: 110px;
   height: 33px;
   background: #0e60b0;
   line-height: 33px;
   text-align: center;
   font-size: 16px;
   color: #fff;
}

.main6 {
   padding: 55px 0 52px;
   background: #2c5c96 url(images/bg2.png) center top no-repeat;
   background-size: cover;
}

.main6 .tab-menu2 {
   height: 146px;
}

.main6 .tab-menu2 li {
   height: 146px;
   position: relative;
   color: #fff;
   min-width: 150px;
}

.main6 .tab-menu2 li.selected {
   background: url(images/newsbt4.png) center no-repeat;
   background-size: auto 100%;
}

.main6 .tab-menu2 li.selected:before {
   position: absolute;
   content: '';
   bottom: 0;
   left: -105px;
   top: 50%;
   transform: translateY(-50%);
   width: 105px;
   height: 2px;
   background: #fff;
}

.main6 .tab-menu2 li.selected:after {
   position: absolute;
   content: '';
   bottom: 0;
   right: -105px;
   top: 50%;
   transform: translateY(-50%);
   width: 105px;
   height: 2px;
   background: #fff;
}

.main6 .tab-menu2 .bt1 {
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   transform: translateY(-50%);
   text-align: center;
   font-size: 30px;
   font-weight: bold;
   line-height: 40px;
}

.main6 .tab-menu2 .bt2 {
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   transform: translateY(-50%);
   text-align: center;
   margin-top: 24px;
   font-size: 16px;
   font-weight: 400;
   line-height: 20px;
   display: none;
}

.main6 .tab-menu2 li.selected .bt2 {
   display: block;
}

.main7 {
   background: #fff url(images/bg4.png) center bottom no-repeat;
   background-size: cover;
   padding-bottom: 104px;
   padding-top: 1px;
}

.main7_more {
   margin: 0 auto;
   width: 160px;
   height: 46px;
   background: #0e60b0;
}

.main7_more span {
   font-size: 16px;
   font-weight: 600;
   color: #fff;
   padding-right: 24px;
   background: url(images/more2.png) right no-repeat;
}

.main7 .mod {
   max-width: 1400px;
   margin: 0 auto;
   position: relative;
}

.hero-slider {
   padding: 10px 0 40px;
   position: relative;
   margin-top: 80px;
}

.hero-slider .swiper {
   padding: 10px 0 70px
}

.hero-slider .swiper-slide {
   width: 460px;
   background: #fff;
   position: relative;
   border-radius: 15px;
   transform: scale(0.75);
   overflow: hidden;
}

.hero-slider .swiper-slide .hero-time {
   position: absolute;
   top: 40%;
   left: 50%;
   transform: translateX(-50%);
   text-align: center;
   font-size: 28px;
   color: #fff;
   background: rgba(14, 96, 176, 0.6);
   padding: 10px;
   display: none;
}

.hero-slider .swiper-slide.swiper-slide-active .hero-time {
   opacity: 1;
}

.hero-slider .swiper-pagination {
   width: 100%;
   bottom: 20px
}

.hero-slider .swiper-pagination-bullets .swiper-pagination-bullet {
   position: relative;
   margin: 0 38px;
   border: 3px solid #b71b1c;
   background-color: #d5d5d5;
   width: 10px;
   height: 10px;
   opacity: 1
}

.hero-slider .swiper-slide-active {
   transform: scale(1) !important
}

.hero-slider .swiper-container-android .history-slider-item {
   border-radius: 15px;
   transform: scale(0.75);
   position: relative;
   background: #f1f1f1 url(../img/background_default.jpg) no-repeat center !important;
   background-size: cover !important;
   overflow: hidden
}

.hero-slider-item a {
   display: block;
   padding-top: 65%;
   position: relative;
   overflow: hidden;
}

.hero-slider-item img {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   margin: auto;
   max-width: 100%;
   width: 100%;
   height: 100%;
  /* object-fit: cover;*/
}

.hero-slider .swiper-slide-active {
   box-shadow: 3px 3px 20px rgba(0, 0, 0, .2);
   transition: all .3s;
   -moz-transition: all .3s;
   -webkit-transition: all .3s;
   -o-transition: all .3s;
   -ms-transition: all .3s;
}

.hero-slider .swiper-slide-active:hover {
   box-shadow: 0 0 10px rgba(207, 71, 68, .5)
}

.hero-info {
   position: absolute;
   bottom: 0;
   left: auto;
   right: auto;
   width: 100%;
   padding: 35px 30px;
   background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
   background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
   background: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
   background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8))
}

.hero-info h1 {
   margin: 0;
   padding: 0;
   font-size: 20px;
   font-weight: 400;
   color: #fff;
   line-height: 20px;
   position: relative;
   padding-left: 20px;
}

.hero-info h1::before {
   content: "";
   position: absolute;
   left: 0;
   top: 3px;
   height: 8px;
   width: 8px;
   background: #fff;
   border-radius: 50%;
   display: inline-block;
   margin-right: 15px
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
   position: absolute;
   width: 40px;
   height: 40px;
   transform: translateY(-50%);
   z-index: 10;
   background-size: cover;
}

.hero-slider .swiper-button-next {
   right: 0px;
   background: url(images/right3.png) center no-repeat;
}

.hero-slider .swiper-button-prev {
   left: 0px;
   background: url(images/left3.png) center no-repeat;
}

.view-slider {
   margin-top: 70px;
   margin-bottom: 40px;
}

.school_view {
   width: 100%;
   overflow: hidden;
}

.school_view ul {
   position: relative;
   margin-bottom: -25px;
   width: 100%;
   height: 695px;
   z-index: 1;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-transition-property: -webkit-transform;
   transition-property: -webkit-transform;
   -o-transition-property: transform;
   transition-property: transform;
   transition-property: transform, -webkit-transform;
   -webkit-box-sizing: content-box;
   box-sizing: content-box;
   -webkit-flex-wrap: wrap;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
}

.school_view li {
   width: 30.5%;
   border-top: 5px solid #0e60b0;
   background: #fff;
   box-shadow: 4px 0 10px rgba(51, 51, 51, 0.2);
   position: relative;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
   margin-bottom: 25px;
}

.slide_tu {
   width: 100%;
   padding-top: 0;
   position: relative;
   overflow: hidden;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
}

.slide_tu img {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   margin: auto;
   max-width: 100%;
   width: 100%;
   height: 100%;
  /* object-fit: cover;*/
}

.slide_con {
   padding: 26px 30px;
   position: relative;
   overflow: hidden;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
}

.slide_con .bt {
   height: 72px;
   line-height: 36px;
   font-size: 18px;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   white-space: initial;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
}

.slide_con .wz {
   height: 0px;
   line-height: 36px;
   font-size: 16px;
   color: #333;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
}

.slide_con .time {
   height: 0px;
   overflow: hidden;
   line-height: 22px;
   font-size: 16px;
   font-weight: bold;
   color: #a7a6a6;
   position: relative;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
}

.slide_con .more {
   position: absolute;
   right: 0;
   bottom: -32px;
   width: 80px;
   height: 32px;
   background: url(images/more3.png) no-repeat;
   background-size: 65px 26px;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
}

.school_view li.hover .slide_tu {
   padding-top: 68%;
}

.school_view li.hover .slide_con .bt {
   height: 36px;
   line-height: 36px;
   color: #333;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   text-align: center;
}

.school_view li.hover .slide_con .wz {
   height: 72px;
}

.school_view li.hover .slide_con .time {
   margin-top: 20px;
   height: 22px;
}

.school_view li.hover .slide_con .more {
   right: 0;
   bottom: 14px;
   background: #0e60b0 url(images/more3.png) no-repeat;
}

.school_view li.hover a:hover .bt {
   color: #0e60b0;
}

.image-slider {
   position: relative;
   margin-top: 80px;
   padding-bottom: 30px;
}

.image_list {
   overflow: hidden;
}

.image_list ul {
   position: relative;
   margin: 0 -15px;
}

.image_list li {
   margin-bottom: 40px;
   width: 25%;
   padding: 0 15px;
}

.image_list li a {
   display: block;
   background: #fff;
   border-radius: 3px;
   box-shadow: 4px 0 10px rgba(51, 51, 51, 0.2);
   position: relative;
}

.image_list li .tu_pic {
   width: 100%;
   padding-top: 70%;
   border-radius: 3px;
   position: relative;
   overflow: hidden;
}

.image_list li .pic_bt {
   position: absolute;
   z-index: 2;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(255, 255, 255, 0.8);
   padding: 10px 20px;
}

.image_list li .pic_wz {
   font-size: 18px;
   line-height: 24px;
   text-align: center;
}

.data-slider {
   position: relative;
   margin-top: 80px;
   padding-bottom: 30px;
}

.data_list {
   padding-top: 10px;
}

.data_list li {
   margin-bottom: 65px;
   width: 24%;
}

.data_list li .pic_tu {
   width: 134px;
   height: 134px;
   border: 2px solid #1167bb;
   border-radius: 3px;
   position: relative;
   overflow: hidden;
}

.data_list li .pic_tu:before {
   position: absolute;
   z-index: 2;
   content: '';
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background: rgba(17, 103, 187, 0.5);
}

.data_list li .pic_tu .img {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   margin: auto;
   width: 100%;
   height: 100%;
}

.data_list li .info {
   width: calc(100% - 150px);
}

.data_number {
   font-size: 16px;
   font-weight: 600;
   color: #0e60b0;
}

.data_number span {
   font-size: 40px;
}

.data_name {
   font-size: 18px;
   color: #333;
   line-height: 24px;
   margin-top: 10px;
}

.history-slider {
   position: relative;
   margin-top: 80px;
   height: 446px;
}

.history-slider .swiper {
   padding: 10px 0 40px;
}

.history-slider .swiper-wrapper {
   padding: 30px 0;
}

.history-slider .swiper-slide {
   text-align: center;
   /* Center slide text vertically */
   display: -webkit-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   -webkit-justify-content: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   -webkit-align-items: center;
   align-items: center;
   transition: 300ms;
}

.history-slider .swiper-slide .img_pic {
   display: block;
   width: 344px;
   position: relative;
   border-top: 5px solid #0e60b0;
   background: #fff;
   box-shadow: 4px 0 10px rgba(51, 51, 51, 0.2);
}

.history-slider .swiper-slide .img_con {
   width: 100%;
   padding-top: 56.25%;
   overflow: hidden;
   position: relative;
}

.history-slider .swiper-slide .img_con .img {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-size: cover;
   -webkit-transition: 1.5s all ease;
   -ms-transition: 1.5s all ease;
   transition: 1.5s all ease;
}

.history-slider .swiper-slide .img_wz {
   padding: 18px 20px 15px;
}

.history-slider .swiper-slide .img_wz p {
   height: 56px;
   line-height: 28px;
   font-size: 18px;
}

.history-slider .swiper-slide .img_wz .year {
   color: #0e60b0;
}

.history-slider .swiper-slide.swiper-slide-active .img_pic {
   width: 384px;
   margin-top: -25px;
   margin-bottom: -30px;
   border-top: 6px solid #ff7900;
}

.history-slider .swiper-slide.swiper-slide-active .img_con {
   padding-top: 56.25%;
}

.history-slider .swiper-slide.swiper-slide-active .img_wz {
   padding: 28px 20px 25px;
}

.history .swiper-button-next,
.history .swiper-button-prev {
   position: absolute;
   width: 40px;
   height: 40px;
   transform: translateY(-50%);
   z-index: 10;
   background-size: cover;
}

.history .swiper-button-next {
   right: -50px;
   background: url(images/right3.png) center no-repeat;
}

.history .swiper-button-prev {
   left: -50px;
   background: url(images/left3.png) center no-repeat;
}

.year-pagination {
   text-align: center;
   width: 100%;
   padding: 0 90px;
   position: relative;
   margin-bottom: 60px;
}

.year-pagination:before {
   position: absolute;
   content: '';
   left: 0px;
   top: 50%;
   margin-top: -2px;
   width: 118px;
   height: 36px;
   background: url(images/cloud1.png) right bottom no-repeat;
}

.year-pagination:after {
   position: absolute;
   content: '';
   right: 0px;
   bottom: 50%;
   margin-bottom: -2px;
   width: 118px;
   height: 36px;
   background: url(images/cloud2.png) left bottom no-repeat;
}

.gallery-thumbs .swiper-wrapper {
   height: 90px;
}

.gallery-thumbs:before {
   position: absolute;
   content: '';
   left: 0px;
   right: 0px;
   top: 50%;
   margin-top: -2px;
   height: 4px;
   background: #1268bb;
}

.gallery-thumbs .swiper-slide i {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 15px;
   height: 15px;
   border-radius: 15px;
   border: 2px solid #1268bb;
   background: #fff;
}

.gallery-thumbs .swiper-slide .year {
   font-size: 16px;
   font-weight: 600;
}

.gallery-thumbs .swiper-slide:nth-child(2n+1) {
   display: flex;
   display: -webkit-flex;
   -webkit-flex-direction: column;
   flex-direction: column;
   justify-content: flex-start;
   -webkit-justify-content: flex-start;
}

.gallery-thumbs .swiper-slide:nth-child(2n+2) {
   display: flex;
   display: -webkit-flex;
   -webkit-flex-direction: column;
   flex-direction: column;
   justify-content: flex-end;
   -webkit-justify-content: flex-end;
}

.gallery-thumbs .swiper-slide.swiper-slide-thumb-active i {
   width: 29px;
   border-radius: 15px;
   position: absolute;
}

.gallery-thumbs .swiper-slide.swiper-slide-thumb-active i:before {
   position: absolute;
   content: '';
   top: -1px;
   bottom: -1px;
   left: 0;
   right: 0;
   margin: 0 auto;
   width: 13px;
   height: 13px;
   border-radius: 50%;
   background: #1268bb;
}

.year-pagination .swiper-button-next,
.year-pagination .swiper-button-prev {
   position: absolute;
   width: 40px;
   height: 40px;
   z-index: 10;
   background-size: 20px 24px;
}

.year-pagination .swiper-button-next {
   right: 0px;
   background: url(images/right1.png) center no-repeat;
}

.year-pagination .swiper-button-prev {
   left: 0px;
   background: url(images/left1.png) center no-repeat;
}

.main7_bottom {
   margin-top: 60px;
}

.main7_bottom .title {
   line-height: 60px;
   font-size: 26px;
   font-weight: bold;
   color: #0e60b0;
}

.main8_list {
   margin-top: 24px;
   position: relative;
}

.main8_list .swiper {
   width: 100%;
}

.main8_list .swiper-slide {
   width: 328px;
   position: relative;
}

.meeting_3 {
   display: block;
   width: 100%;
}

.meeting_3 .news_img {
   position: relative;
   max-width: 100%;
}

.meeting_3 .tu_pic {
   padding-top: 44.5%;
   position: relative;
   overflow: hidden;
}

.main8_list .swiper-button-next,
.main8_list .swiper-button-prev {
   position: absolute;
   width: 27px;
   height: 27px;
   z-index: 10;
   -moz-background-size: 27px 27px;
   -webkit-background-size: 27px 27px;
   background-size: 27px 27px;
   border-radius: 50%;
   box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1);
}

.main8_list .swiper-button-next {
   right: -10px;
   background: url(images/right2.png) center no-repeat;
}

.main8_list .swiper-button-prev {
   left: -10px;
   background: url(images/left2.png) center no-repeat;
}

/**页脚开始**/
#footer {
   background: #1a3f86 url(images/foot.png) right bottom no-repeat;
   background-size: cover;
   font-size: 16px;
   color: #fff;
   position: relative;
}

#footer .bottom {
   padding: 66px 0 45px;
   position: relative;
   border-bottom: 1px solid #fff;
}

.foot_bt {
   line-height: 26px;
   font-size: 16px;
   font-weight: 600;
   color: #fff;
   margin-bottom: 14px;
}

.foot_bt span.selected {
   color: #ef7d2d
}

.foot_nav {
   width: 320px;
}

.foot_navlink {
   flex-direction: row;
   display: flex;
   flex-wrap: wrap
}

.foot_nav li {
   width: 160px;
   line-height: 24px;
   margin-top: 6px;
}

.foot_nav li a {
   font-size: 15px;
   color: #fff;
   line-height: 24px;
   display: block;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap
}

#footer .xiaofeng {
   width: 426px;
   padding-top: 14px;
}

#footer .xiaofeng img {
   width: 100%;
}

.footer-category {
   width: 268px;
}

.footer-category .ma {
   width: 124px;
   height: 124px;
   overflow: hidden;
   margin-right: 20px;
   position: relative;
}

.footer-category .ma img {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   margin: auto;
   max-width: 100%;
   width: 100%;
   height: 100%;
  /* object-fit: cover;*/
}

.footer-category .ma:last-child {
   margin-right: 0;
}

#footer .foot {
   padding-top: 36px;
   padding-bottom: 33px;
}

#footer .sitelogo {
   float: left;
   width: 390px;
}

#footer .sitelogo img {
   width: 100%;
   display: block;
}

.footer-contact {
   float: right;
   width: 640px;
   padding-top: 7px;
   display: flex;
   align-items: center;
   justify-content: flex-end;
}

.copyright_wz {
   line-height: 26px;
   font-size: 14px;
   color: #fff;
   text-align: right;
}

.copyright_wz span {
   padding: 0 8px;
}

.copyright_wz a {
   color: #fff;
}

.wl {
   width: 165px;
   height: 300px;
}

/**友情链接**/
.mlink {
   width: 100%;
}

.botlinks .links-wrap {
   position: relative;
   width: 100%;
   height: 40px;
   line-height: 30px;
   background: transparent;
   background: rgba(255, 255, 255, 0.5);
   border-radius: 10px;
}

.botlinks .links-wrap a.links-arrow {
   display: block;
   height: 40px;
   line-height: 40px;
   padding: 0 38px 0 12px;
   color: #fff;
   font-size: 16px;
   background: url(images/arrow.png) no-repeat right bottom;
}

.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: -1px;
   right: -1px;
   bottom: 41px;
   height: auto;
   max-height: 300px;
   overflow: auto;
   overflow-x: hidden;
   background: rgba(255, 255, 255, 0.9);
}

.botlinks .links-wrap .link-items a {
   display: block;
   line-height: 24px;
   padding: 5px 0;
   color: #444;
}

.botlinks .links-wrap .link-items a span {
   display: block;
   padding: 0 16px;
   white-space: nowrap;
}

.botlinks .links-wrap .link-items a:hover {
   color: #333;
   background: #e0f1f9;
   cursor: pointer;
}

/**链接样式**/
.s04 {
   animation-delay: 0.4s
}

.s05 {
   animation-delay: 0.5s
}

.s06 {
   animation-delay: .6s
}

.s07 {
   animation-delay: .7s
}

.s08 {
   animation-delay: .8s
}

.s09 {
   animation-delay: .9s
}

.s10 {
   animation-delay: 1s
}

.follow {
   position: fixed;
   top: 165px;
   z-index: 9999;
}

.followDiv1 {
   left: 0;
}

.followDiv2 {
   right: 0;
}

.close_follow {
   position: absolute;
   z-index: 99999;
   top: 5px;
   right: 5px;
}



/*滚动Arrows */

.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-next:hover {
   height: 62px;
   width: 60px;
   background: url(images/slickarrow2.png) no-repeat;
   top: 50%;
   margin-top: -30px;
   border: 0px solid #d4d8d9;
   border-radius: 50%;
   outline: none;
}

.slick-prev {
   left: -95px;
   background-position: 0px 0px;
}

.slick-prev:hover {
   background-position: 0px 0px;
   opacity: .8;
   filter: Alpha(opacity=80);
}

.slick-prev:before {
   content: '';
}

.slick-next {
   right: -95px;
   background-position: right 0px;
}

.slick-next:hover {
   background-position: right 0px;
   opacity: .8;
   filter: Alpha(opacity=80);
}

.slick-next:before {
   content: '';
}

.post .con .wp_article_list .list_item {
   border-bottom: 1px dashed #ccc;
}

/**新闻列表**/

/***********************************************************
 * 列表页
 */

/*栏目图片*/
.l-banner {
   background-position: center top;
   background-repeat: no-repeat;
   text-align: center;
}

.l-banner img {
   vertical-align: top;
}

.l-banner img {
   width: 100%;
   height: 100%;
   display: none;
}

.column-banner {
   position: relative;
   width: 100%;
   height: 460px;
   background-image: url(images/banner2.png);
   background-size: cover !important;
   background-position: center !important;
   background-repeat: no-repeat !important;
}

.column-banner .inner {
   position: relative;
   z-index: 1;
   height: 100%;
}

.column-banner .tit_bt {
   position: absolute;
   left: 20px;
   bottom: 100px;
   color: #fff;
}

.column-banner .tit1 {
   font-size: 40px;
   line-height: 1.1;
   font-weight: 600;
}

.column-banner .tit2 {
   font-size: 24px;
   line-height: 1.2;
   font-weight: 600;
   margin-top: 28px;
}

.column-banner .overlay {
   position: absolute;
   z-index: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
}

/**主体列表页开始**/
#l-container {
   background: #fff;
   padding-bottom: 50px;
}

#l-container .inner {
   padding: 0px;
}

.page_place {
   margin-top: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #f0f0f0;
}

.column-breadcrumb {
   line-height: 40px;
   font-size: 16px;
   color: #333;
   padding-left: 28px;
   background: url(images/back.png) left center no-repeat;
}

#d-container {
   background: #fff;
   padding: 50px 0;
}

.col_menu {
   width: 232px;
   float: left;
   margin-right: -232px;
   position: relative;
   /* margin-bottom: 27px; */
}

.col_menu .l-qh {
   margin-bottom: 10px;
}

.col_menu .col_menu_head {
   background: #1167bb;
}

/**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
   font-size: 25px;
   font-weight: bold;
   color: #fff;
}

/**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
   display: flex;
   display: -webkit-flex;
   -webkit-align-items: center;
   align-items: center;
   height: 80px;
   padding: 0px 5px 0px 48px;
}

/**栏目名称图标**/
.col_menu .col_menu_con {
   /* border:1px solid #e4e4e4; */
   background: #f7f7f7;
   /* padding-top: 10px; */
   margin-bottom: 27px;
}

/*栏目列表*/
.col_menu .col_menu_con .col_list {}

.col_list .wp_listcolumn {
   border-top: 0px solid #2867A0;
   border-bottom: 0px solid #fff;
   padding: 8px;
}

.col_list .wp_listcolumn .wp_column a {
   color: #333;
   font-size: 18px;
   font-weight: normal;
   background: none;
   border-top: 0px solid #fff;
   border-bottom: 0px solid #F6EAEA;
   margin: 0px;
   width: auto;
   line-height: 48px;
}

.col_list .wp_listcolumn .wp_column a .column-name {
   padding: 0px 0px 0px 46px;
   line-height: 48px;
}

.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
   color: #1167bb;
   background: #eee;
}

.col_list .wp_listcolumn .wp_column a.selected span.column-name {
   color: #1167bb;
   position: relative;
}

.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: #0f429b;
}

/*二级子栏目**/
.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: normal;
   color: #1167bb;
}

/*三级子栏目**/
.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: #0f429b;
}

/* 列表页－栏目列表 */
.col_menu .col_menu_head {
   position: absolute;
   z-index: 11;
   width: 100%;
   top: -80px;
}

.col_list .wp_listcolumn .wp_column a.selected span.column-name:after {
   content: "";
   display: block;
   position: absolute;
   width: 8px;
   height: 8px;
   background: #e4b100;
   left: 15px;
   top: 20px;
}

.wp_listcolumn {
   display: block;
   width: 100%;
   border-top: 1px solid #ddd;
   border-bottom: 1px solid #fff;
}

.wp_listcolumn .wp_column {
   display: block;
   width: 100%;
   vertical-align: bottom;
}

.wp_listcolumn .wp_column a {
   display: block;
   width: 100%;
   color: #666;
   font-size: 15px;
   font-weight: bold;
   word-wrap: break-word;
   border-bottom: 1px solid #ddd;
   border-top: 1px solid #fff;
   text-align: left;
}

.wp_listcolumn .wp_column a:hover {
   color: #C00;
   background-color: #f9f9f9;
}

.wp_listcolumn .wp_column a.selected {
   color: #000;
   background-color: #e8e8e8;
}

.wp_listcolumn .wp_column a .column-name {
   display: inline-block;
   line-height: 22px;
   padding: 5px 10px 5px 20px;
   cursor: pointer;
}

/**栏目新闻**/
.col_news {
   width: 100%;
   min-height: 500px;
   float: right;
}

.col_news .col_news_box {
   margin-left: 290px;
   padding-top: 30px;
}

.col_news_head {
   border-bottom: 1px solid #DBDBDB;
}

.col_news_head1 {

    border-bottom: 1px solid #DBDBDB;

  
}

.col_metas .col_title {
   float: left;
   height: 48px;
   line-height: 48px;
}

/**当前栏目**/
.col_metas .col_title h2 {
   display: inline-block;
   font-size: 22px;
   font-weight: 600;
   color: #1267bb;
   border-bottom: 3px solid #CBCBCB;
}

.col_metas .col_path {
   display: inline-block;
   float: right;
   white-space: nowrap;
   height: 46px;
   line-height: 46px;
   color: #727272;
}

/**当前位置**/
.col_metas .col_path a {
   color: #727272;
}

.col_news_con {
   padding: 5px 0px 10px 0px;
   margin: 0 0px;
}

.col_news_list {
   margin-top: 7px;
}

.col_news_list .wp_article_list .list_item {}

/**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index {}

/**栏目新闻图标序号**/
.col_news_list .wp_entry,
.col_news_list .wp_entry p {
   line-height: 1.75;
   font-size: 14px;
   color: #333;
}

.col_news_list .wp_entry p {
   margin-bottom: 10px;
}

.col_news_list .wp_entry table {
   margin-bottom: 4px;
}

.col_news_list .wp_entry img {
max-width:100%;
   _width: expression(this.width > 680 ? "680px" : this.width);
   
}



/**列表页文章图片大小限制**/

/**列表页资讯列表**/
.column-newslist {
   margin: 0 auto;
   width: 100%;
}

.column-item {
   padding: 30px 0;
   border-bottom: 1px dashed #e0e0e0;
}

.column-item .news-img {
   float: left;
   width: 320px;
   height: 214px;
   overflow: hidden;
   position: relative;
}

.column-item:hover .news-img {
   box-shadow: 0 4px 8px rgba(0, 0, 0, .16);
}

.column-item .news-img img {
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   margin: auto;
   max-width: 100%;
   width: 100%;
   height: 100%;
  /* object-fit: cover;*/
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.column-item:hover .news-img img {
   -webkit-transform: scale(1.1);
   -ms-transform: scale(1.1);
   transform: scale(1.1);
}

.column-item .news-cont {
   float: right;
   width: calc(100% - 360px);
}

.column-item .news-cont .news_bt {
   line-height: 38px;
   font-size: 18px;
   color: #333;
   -webkit-transition: .3s all ease;
   -ms-transition: .3s all ease;
   transition: .3s all ease;
}

.column-item .news-cont .news_bt:hover {
   color: #5273a6;
}

.column-item .news-cont .news_text {
   margin-top: 14px;
   line-height: 40px;
   color: #999;
   font-size: 16px;
}

.column-item .news-cont .news_date {
   margin-top: 14px;
   line-height: 20px;
   color: #999;
   font-size: 16px;
}

/**列表页图片列表**/
.scene-listcon {
   margin-top: 40px;
   overflow: hidden;
}

.scene-listcon ul {
   position: relative;
   margin: 0 -12px;
}

.scene-listcon li {
   width: 25%;
}

.scene-listcon li a {
   display: block;
   padding: 0 22px;
   margin-bottom: 60px;
}

.scene-listcon li .card {
   display: block;
   background: #fff;
   box-shadow: 0 4px 8px rgba(0, 0, 0, .16);
   position: relative;
   padding-bottom: 72px;
   overflow: hidden;
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.scene-listcon li .card_pic {
   position: relative;
   overflow: hidden;
   width: 100%;
   padding-top: 125%;
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.scene-listcon li .card_pic .img {
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   margin: auto;
   max-width: 100%;
   width: 100%;
   height: 100%;
   object-fit: cover;
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.scene-listcon li .card_bt {
   position: absolute;
   z-index: 2;
   bottom: 0;
   left: 0;
   right: 0;
   height: 72px;
   padding-top: 12px;
   box-sizing: border-box;
   background: #fff;
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.scene-listcon li .card_bt1 {
   text-align: center;
   line-height: 30px;
   font-size: 18px;
   color: #333;
}

.scene-listcon li .card_bt2 {
   text-align: center;
   line-height: 20px;
   font-size: 14px;
   color: #999;
}

.scene-listcon li a:hover .card {
   padding-bottom: 40px;
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.scene-listcon li a:hover .card_pic {
   padding-top: calc(125% + 32px);
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.scene-listcon li a:hover .card:before {
   position: absolute;
   z-index: 3;
   content: '';
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(13, 59, 146, 0.16);
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.scene-listcon li a:hover .card_bt {
   bottom: -32px;
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}


/**文章页**/

.infobox {
   margin: 0 auto;
   margin-top: 30px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, .16);
   padding: 50px 30px;
}

.article {
margin-top:50px;
}

.article h1.arti_title {
   line-height: 44px;
   font-family: "Microsoft YaHei";
   font-size: 24px;
   font-weight: 600;
   text-align: center;
   color: #333;
}

/**文章标题**/

.article h2.arti_title {
   line-height: 34px;
   font-family: "Microsoft YaHei";
   font-size: 14px;
   text-align: center;
   color: #1B1B1B;
}

/**文章副标题**/

.article .arti_metas {
   line-height: 32px;
   font-size: 14px;
   text-align: center;
   color: #999;
   /* border-top:1px solid #ececec; */
}

.article .arti_metas span {
   margin: 0 5px;
   font-size: 14px;
   color: #999;
}

/**文章其他属性**/

.article .entry {
   margin: 0 auto;
   overflow: hidden;
   padding: 20px 0;
}

/**文章内容**/

.article .entry .read,
.article .entry .read p {
   line-height: 1.75;
   font-size: 16px;
   color: #333;
}

/**阅读字体**/

.article .entry .read p {
   margin-bottom: 10px;
   text-indent: 2em;
}

.article .entry .read img {
   margin-right: 20px;
   max-width: 940px;
   _width: expression(this.width > 940 ? "940px": this.width);
}

/**文章阅读部分图片大小限制**/

.article .entry .read table {
   margin: 0 auto;
   border: none !important;
}

.es_article_title {
   display: none;
}

/**翻页**/

.es_pagingbar_container {
   margin: 40px auto 0;
   text-align: center;
   padding-bottom: 40px;
}

.es_pagingbar_container .es_pagingbar {
   display: inline-block;
   overflow: hidden;
}

.es_pagingbar_container .es_pagingbar li {
   float: left;
   padding: 6px 12px;
   margin: 0 6px;
   color: #999;
   background: #fff;
   border: 1px solid #eee;
   font-size: 14px;
   text-align: center;
   cursor: pointer;
}

.es_pagingbar_container .es_pagingbar li.active {
   background: #d63e3e;
   color: #fff;
   border-color: #d63e3e;
}

.es_pagingbar_container .es_pagingbar li.active a {
   color: #fff;
}

.es_article_content img {
   margin-right: 20px;
}

/* 领导页面 */
.column-item1 {
   padding: 30px 0;
   border-bottom: 1px dashed #e0e0e0;
}

.column-item1 .news-img {
   float: left;
   width: 192px;
   height: 240px;
   overflow: hidden;
   position: relative;
}

.column-item1:hover .news-img {
   box-shadow: 0 4px 8px rgba(0, 0, 0, .16);
}

.column-item1 .news-img img {
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   margin: auto;
   max-width: 100%;
   width: 100%;
   height: 100%;
  object-fit: cover;
   -webkit-transition: .5s all ease;
   -ms-transition: .5s all ease;
   transition: .5s all ease;
}

.column-item1:hover .news-img img {
   -webkit-transform: scale(1.1);
   -ms-transform: scale(1.1);
   transform: scale(1.1);
}

.column-item1 .news-cont {
   float: right;
   width: calc(100% - 255px);
}

.column-item .news-cont .news_bt {
   line-height: 38px;
   font-size: 18px;
   color: #333;
   -webkit-transition: .3s all ease;
   -ms-transition: .3s all ease;
   transition: .3s all ease;

}

.column-item1 .news-cont .aol {
  
   font-weight: bold;
   font-size: 20px;
   color: #123971;
   margin-left: 50px;

}
.column-item1 .news-cont .news_bt {
  
   font-weight: bold;
   font-size: 20px;
   color: #123971;


}

.column-item1 .news-cont .news_bt:hover {
   color: #5273a6;
}

.column-item1 .news-cont .news_text {
   margin-top: 14px;
   line-height: 40px;
   color: #333;
   font-size: 16px;
text-indent: 29px;
}

.column-item1 .news-cont .news_date {
   margin-top: 14px;
   line-height: 20px;
   color: #999;
   font-size: 16px;
}


.text-line3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wp_editor_art_paste_table{
    width: auto;
}

.foot_bt .btsa {
   width: 106px!important;
   
   margin-right: 18px!important;
 text-align: center;
    display: inline-block;


}
.foot_bt span:nth-child(1) {
    margin-right: 15px;
}
.foot_bt .btsa {
    width: 106px!important;
    margin-right: 18px!important;
    text-align: center;
    display: inline-block;

}


.foot_bt span:last-child {
   margin-right: 0px;
}


.foot_bt span:nth-child(1) {
    margin-right: 15px;
}
.foot_bt span:nth-child(2) {
    margin-left: 15px;
}

