@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, 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: 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;
}

.flex {
  display: flex;
  display: -webkit-flex;
}
.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}
.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
} /**页面全局宽度**/
.mod {
  padding: 0px;
}
/*head开始*/
#header {
  height: 150px;
  background: #0168b7;
}
.head-top {
  height: 150px;
  background: url(images/topbg.png) right top no-repeat;
}
.header .head-left {
  display: inline-block;
}
.header .sitelogo {
  float: left;
}
.header .sitelogo .logo {
  width: 590px;
  display: block;
}
.header .sitelogo .logo img {
  display: block;
  width: 100%;
}
.header .head-right {
  font-size: 26px;
  color: #fff;
}
.search-panel {
  float: right;
  position: relative;
  z-index: 20;
  display: inline-block;
  line-height: 25px;
}
.search-window {
  border: 0px;
  overflow: hidden;
  min-height: 32px;
}
/**搜索**/
.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;
}
/***自定义搜索*/
.wp-search {
  width: 320px;
  height: 40px;
  background: #f6f6f6;
  border-radius: 20px;
  position: relative;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;
  height: 38px;
  position: relative;
  font-size: 16px;
  color: rgba(246, 246, 246, 1);
  font-family: Microsoft YaHei;
  font-size: 14px;
}
.wp-search .search-input input.search-title {
  width: 100%;
  box-sizing: border-box;
  height: 38px;
  padding: 0px 15px;
  line-height: 32px;
  border: 0;
  outline: 0;
  background: none;
  font-family: Microsoft YaHei;
  font-size: 16px;
  color: #aaaaaa;
  line-height: 27px;
}
.wp-search .search-btn {
  width: 99px;
  height: 40px;
  background: #ffae00;
  border-radius: 20px;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-search .search-btn:before {
  position: absolute;
  content: "";
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: #fff;
}
.wp-search .search-btn input.search-submit {
  width: 32px;
  height: 32px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: url(images/search.png) no-repeat center;
  background-size: 20px 20px;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
}

/*默认主导航样式*/
.head-nav {
  height: 55px;
  background: #ffffff;
}
#nav {
}
.nav .wp-menu {
  height: 55px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 55px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 55px;
  line-height: 55px;
  position: relative;
}
.nav .wp-menu .menu-item a.menu-link {
  color: #0168b7;
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
}
.nav .wp-menu .menu-item.hover a.menu-link {
  border-bottom: 4px solid rgba(255, 174, 0, 1);
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 55px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: #fff;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}
.nav .sub-menu .sub-item a {
  display: block;
  color: #333;
  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: #fff;
  background-color: rgba(1, 104, 183, 1);
  display: block;
}
/* banner */
.mySwiper1 .swiper-button-prev {
  background: url(images/bannerbtnleft.png) no-repeat;
  width: 100px;
  height: 100px;
  transition: 0.5s;
  left: 5% !important;
}

.mySwiper1 .swiper-button-next {
  background: url(images/bannerbtnright.png) no-repeat;
  width: 100px;
  height: 100px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  right: 5% !important;
}

.mySwiper1 .swiper-button-prev:hover {
  background: url(images/bannerbtnleft-on.png) no-repeat;
  width: 100px;
  height: 100px;
}
.mySwiper1 .swiper-button-next:hover {
  background: url(images/bannerbtnright-on.png) no-repeat;
  width: 100px;
  height: 100px;
}
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev:after {
  display: none;
}
.main1 {
  padding-top: 60px;
  padding-bottom: 58px;
  background:url(images/main1bg.png) no-repeat;
  background-size:cover;
}
.m1title {
  display: flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
.index_left {
  width: 100%%;
}
.more a {
  font-size: 17px;
  color: #0168b7;
  display: flex;
  align-items: center;
}
.more a img {
  margin-left: 5px;
}
.minfo {
}
.m1title {
  font-weight: bold;
  font-size: 20px;
  color: #333;
  line-height: 36px;
  margin-bottom: 25px;
  transition: 0.5s;
}
.mySwiper2 .swiper-slide:hover .m1title {
  color: #0168b7;
}
.m2title {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  line-height: 36px;
  margin-bottom: 25px;
  transition: 0.5s;
}
.m2title a {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  line-height: 36px;
  margin-bottom: 25px;
  transition: 0.5s;
}
.m3title {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  line-height: 36px;
  transition: 0.5s;
}
.mtime {
  font-weight: bold;
  font-size: 16px;
  color: #0168b7;
  line-height: 27px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: 0.5s;
}
.mtime2 {
  font-weight: bold;
  font-size: 14px;
  color: #333;
  line-height: 27px;
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.mtime img {
  margin-right: 10px;
}
.mmore {
  font-weight: bold;
  font-size: 16px;
  color: #717171;
  line-height: 30px;
}
.container {
  /* background: url(images/contain.png) no-repeat; */
  background-size: cover;
}
/* main1 */
.main1 {
  padding-bottom: 58px;
}
.mySwiper2 {
  overflow: hidden;
  padding-bottom: 50px !important;
}
.mySwiper2 .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mySwiper2 .swiper-slide {
  background: #fff;
}
.mySwiper2 .swiper-slide .img {
  width: 703px;
  height: 405px;
}
.mySwiper2 .swiper-pagination {
  left: 40% !important;
  bottom: 72px !important;
}

.mimg img {
  width: 182px;
  height: 137px;
}
.m2info {
  width: 50%;
}
html,
body {
  position: relative;
}
.swiper-container {
  width: 100%;
  height: 100%;
  padding-bottom: 50px !important;
  padding-top: 10px;
}
.swiper-container .swiper-slide {
  transition: 0.5s;
  text-align: center;
  font-size: 18px;
  background: #fff;
  /*Centerslidetextvertically*/
  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;
  transform: scale(0.8);
  justify-content: space-between;
  padding-left: 11px !important;
  padding-right: 18px !important;
  align-items: flex-start;
  padding-top: 18px !important;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.swiper-container .swiper-slide-active,
.swiper-container .swiper-slide-duplicate-active {
  transform: scale(1);
}
.swiper-container .swiper-button-prev:hover {
  background: url(images/btn2left-on.png) no-repeat;
  width: 37px;
  height: 26px;
  bottom: 0 !important;
}
.swiper-container .swiper-button-next:hover {
  background: url(images/btn2right-on.png) no-repeat;
  width: 37px;
  height: 26px;
  bottom: 0 !important;
}
.swiper-button-next:after {
  display: none!;
}
.swiper-button-prev:after {
  display: none;
}
.swiper-container .swiper-button-prev {
  background: url(images/btn2left.png) no-repeat;
  width: 37px;
  height: 26px;
  transition: 0.5s;
  left: 45% !important;
  bottom: 0 !important;
  top: 98% !important;
}

.swiper-container .swiper-button-next {
  background: url(images/btn2right.png) no-repeat;
  width: 37px;
  height: 26px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  right: 45% !important;
  top: 98% !important;
}
/* main3 */
.main3 {
  padding-top: 70px;
  

}
.main33{
  background:url(images/main2bg.png) no-repeat;
  background-size:cover;
}
.m3 {
  display: flex;
  justify-content: space-between;
}
.m3left {
  width: 47%;
}
.m3right {
  width: 47%;
}
.ztgg {
  display: flex;
  justify-content: space-between;
}
.ztgg li {
  width: 295px;
  height: 136px;
  background: #f3f6f9;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.ztgg li a {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ztime {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ztime .day {
  width: 43px;
  height: 41px;
  background: url(images/date2.png) no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #0168b7;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.ztime .year {
  font-weight: bold;
  font-size: 14px;
  color: #a1a1a1;
}
.main4 {
  padding-top: 84px;
}
.zc1 li {
  background: url(images/pc12.png) no-repeat;
  padding:40px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.zc1 li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
.ztime2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 20px;
  border-right: 1px solid rgba(238, 238, 238, 1);
  transition: 0.5s;
}
.ztime2 .day {
  font-weight: bold;
  font-size: 23px;
  color: #0168b7;
  line-height: 25px;
}
.ztime2 .year {
  font-weight: bold;
  font-size: 14px;
  color: #a1a1a1;
  line-height: 25px;
}
.zc2 li {
  padding: 12px;
}
.zc2 li a {
  width: 100%;
  background: url(images/btn.png) left no-repeat;
  padding-left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zc2time {
  width: 66px;
  height: 29px;
  background: #f3f6f9;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.xg1 li {
  border-bottom: 1px solid rgba(187, 187, 187, 1);
  padding-bottom: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.xg1 li a img {
  width: 225px;
  height: 127px;
}
.xinfo {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 127px;
}
.xtime2 {
  font-weight: bold;
  font-size: 14px;
  color: #a1a1a1;
}
.xgbox1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.xgbox2 {
  font-weight: bold;
  font-size: 16px;
  color: #717171;
  line-height: 30px;
  margin-top: 22px;
}
.xg2 li {
  padding: 12px;
  transition: 0.5s;
}
.xg2 li a {
  display: flex;
  justify-content: space-between;
}
.xg2 {
  border-bottom: 1px solid rgba(187, 187, 187, 1);
  padding-bottom: 20px;
}
.xgtime {
  font-weight: bold;
  font-size: 16px;
  color: #1964a9;
  line-height: 40px;
}
.mySwiper3 {
  padding-top: 20px !important;
  padding-bottom: 60px !important;
}
.mySwiper3 .swiper-slide img {
  width: 248px;
  height: 180px;
  margin-top: 32px;
}
.mySwiper3 .swiper-slide {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(1, 104, 183, 0.25);
  border: 1px solid #d9e8f4;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.xytime {
  display: flex;
  align-items: center;
}
.xytime .day {
  font-weight: bold;
  font-size: 25px;
  color: #a1a1a1;
}
.xytime .year {
  font-weight: bold;
  font-size: 14px;
  color: #a1a1a1;
}
.mySwiper3 .swiper-pagination-bullet {
  width: 70px;
  height: 7px;
  background: rgba(235, 237, 238, 1);
  border-radius: 4px;
  opacity: 3.2;
}
.mySwiper3 .swiper-pagination-bullet-active {
  width: 70px;
  height: 7px;
  background: #ffae00 !important;
  border-radius: 4px;
}
.by1 {
  width: 371px;
  height: 279px;
}
.by1 li {
  position: relative;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  height: 100%;
}
.by1 li a img {
  width: 100%;
  height: 100%;
}
.byimg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(0deg, #0c0c0c 0%, rgba(14, 14, 14, 0) 100%);
  opacity: 0.9;
  color: #fff;
  padding-left: 20px;
}
.main5 {
  padding-bottom: 108px;
}
.by2 {
  width: 231px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.by2 li {
  position: relative;
  width: 231px;
  height: 130px;
  transition: 0.5s;
}
.by2 li a img {
  width: 100%;
  height: 100%;
object-fit: cover;
}
.bybox {
  display: flex;
  justify-content: space-between;
}
/* 选项卡 */
/* 设置选项卡样式 */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 40%;
  height: 279px;
}

/* 为用于打开选项卡内容的按钮设置样式 */
.tab button {
  color: black;
  padding: 13px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  height: 92px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #333333;

  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 更改悬停按钮的背景颜色 */
.tab button:hover {
  background: rgba(1, 104, 183, 1);
}

/* 创建一个活动的/当前的 "tab button" 类 */
.tab button.active {
  background-color: rgba(1, 104, 183, 1);
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
}

/* 设置选项卡内容的样式 */
.tabcontent {
  float: left;
  border: 1px solid #ccc;
  width: 62%;
  height: 279px;
  display: none;
}
.grbox {
  display: flex;
  flex-direction: row-reverse;
}
.tabcontent img {
  width: 371px;
  height: 279px;
}
/* main6 */
.main6 .m1title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.xgmt {
  margin-top: 41px;
  display: flex;
  justify-content: space-around;
}
.xgtitle {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  margin-top: 20px;
}
.main6 {
  padding-bottom: 55px;
  padding-top: 50px;
  background:url(images/main3bg.png) no-repeat;
  background-size:cover;

}
.xgmt li {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.main7 {
  padding-top: 93px;
  padding-bottom: 83px;
  background:url(images/main4bg.png) no-repeat;
  background-size:cover;
}
.main7 .m1title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.swiper-container2 .swiper-slide img {
  width: 456px;
  height: 342px;
}
.swiper-container2 .swiper-slide {
  position: relative;
}
.swiper-container2 .swiper-slide .m7box {
  position: absolute;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 456px;
  height: 83px;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-container2 {
  width: 100%;
  height: 100%;
}
.swiper-container2 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* 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;
  transform: scale(0.8);
}
.swiper-container2 .swiper-slide-active,
.swiper-slide-duplicate-active {
  transform: scale(1);
}
.swiper-container2 .swiper-button-next {
  width: 72px;
  height: 72px;
  background: url(images/pc13.png);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  right: 24% !important;
  top: 85% !important;
}
.swiper-container2 .swiper-button-prev {
  width: 72px;
  height: 72px;
  transition: 0.5s;
  background: url(images/pc14.png);
  left: 24% !important;
  top: 85% !important;
}
.swiper-container2 .swiper-button-prev:hover {
  background: url(images/pc16.png) no-repeat;
  width: 72px;
  height: 72px;
  bottom: 0 !important;
  left: 24% !important;
  top: 85% !important;
}
.swiper-container2 .swiper-button-next:hover {
  background: url(images/pc15.png) no-repeat;
  width: 72px;
  height: 72px;
  bottom: 0 !important;
  right: 24% !important;
  top: 85% !important;
}
.qlinks {
  width: 100%;
  background: rgba(0, 85, 151, 0.15);
  height: 100px;
  display: flex;
}
/**链接样式**/
.mlink {
  width: 306px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
}
.botlinks .links-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 30px;
  background: transparent;
  background: rgba(255, 255, 255, 1);
  border-radius: 4px;
}
.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 38px 0 12px;
  color: #333333;
  font-size: 16px;
  background: url(images/arrow.png) no-repeat right bottom;
}

.botlinks .links-wrap .link-items {
  display: none;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 40px;
  height: auto;
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background: #f3eaea;
  border-radius: 4px;
}
.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: rgba(1, 104, 183, 1);
  cursor: pointer;
}
.q {
  display: flex;
  justify-content: space-around;
  padding-top: 25px;
  padding-bottom: 25px;
}
.botlinks .links-wrap a.links-arrow {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  font-weight: bold;
  font-size: 18px;
  color: #005597;
}
.mlink {
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer {
  height: 388px;
  background: #005597;
  padding-top: 60px;
  padding-bottom: 60px;
}
.f1 {
  font-weight: bold;
  font-size: 20px;
  color: #f8f6f5;
  line-height: 38px;
  margin-top: 46px;
}
.f li {
  font-size: 16px;
  color: #f8f6f5;
  line-height: 38px;
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mySwiper2 .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: #0168b7;
  border-radius: 50%;
  opacity: 3;
}
.mySwiper2 .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: url(images/XWbtn.png);
}
.mySwiper2 .swiper-pagination {
  display: flex;
  align-items: center;
}

/* hover */
.swiper-container .swiper-slide:hover {
  box-shadow: 0px 0px 21px 4px rgba(67, 128, 226, 0.15);
}
.swiper-container .swiper-slide:hover .mtime2 {
  color: #0168b7;
}
.swiper-container .swiper-slide:hover .m2title a {
  color: #0168b7;
}
.ztgg li:hover {
  background: #0168b7;
  box-shadow: 0px 0px 27px 3px rgba(1, 104, 183, 0.35);
}
.ztgg li:hover .ztime .day {
  background: url(images/date.png) no-repeat;
  color: #fff;
}
.ztgg li:hover .ztime .year {
  color: #fff;
}
.ztgg li:hover .m3title {
  color: #fff;
}
.zc1 li:hover {
 
}
.zc1 li:hover .m3title {
  color: rgba(1, 104, 183, 1);
}
.zc2 li:hover .m3title {
  color: rgba(1, 104, 183, 1);
  border-bottom: 1px solid rgba(1, 104, 183, 1);
}
.zc2 li:hover a {
  background: url(images/btn2.png) left no-repeat;
}
.zc2 li:hover .zc2time {
  background: #0168b7;
  color: #fff;
}
.xg1 li:hover .m3title {
  color: rgba(1, 104, 183, 1);
}
.xg2 li:hover .m3title {
  color: rgba(1, 104, 183, 1);
}
.mySwiper3 .swiper-slide:hover {
  box-shadow: 0px 0px 19px 1px rgba(1, 104, 183, 0.35);
}
.mySwiper3 .swiper-slide:hover .xytime .day {
  color: rgba(1, 104, 183, 1);
}
.mySwiper3 .swiper-slide:hover .m3title {
  color: rgba(1, 104, 183, 1);
}
.by1 li:hover .byimg {
  background: rgba(1, 104, 183, 1);
}
.by2 li:hover .byimg {
  background: rgba(1, 104, 183, 1);
}
.mySwiper1 .swiper-slide img {
  width: 100%;
}
.mySwiper1 .swiper-pagination-bullet {
  background: none;
  opacity: 1;
  margin: 0 50px !important;

  position: relative;
  outline: none;
  vertical-align: middle;
  background: #ffffff;
  border-radius: 50%;
}
.mySwiper1 .swiper-pagination-bullet span {
  display: block;
}
.mySwiper1 .swiper-pagination-bullet i {
  height: 3px;
  background: #0168b7;
  width: 80px;
  position: absolute;
  top: 4px;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 3;
  transition-timing-function: linear;
  left: 20px !important;
}
.mySwiper1 .swiper-pagination-bullet-active span,
.mySwiper1 .swiper-pagination-bullet:hover span {
  width: 18px;
  height: 18px;
  top: -4px;
  left: -2px;
  background: url(images/XWbtn.png) no-repeat;
  position: relative;
  z-index: 1;
}
.mySwiper1 .swiper-pagination-bullet-active i {
  animation: middle 6s;
}
.mySwiper1
  .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active
  i {
  animation: first 6s;
}
.mySwiper1
  .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active
  i {
  animation: last 6s;
}
@keyframes first {
  0% {
    transform: scaleX(0.5);
    left: 0px;
  } /*091*/
  100% {
    transform: scaleX(1);
    left: 2px;
  } /*0915*/
}
@keyframes last {
  0% {
    transform: scaleX(0.7);
    left: -10px;
  } /*1090*/
  20% {
    transform: scaleX(0.3);
    left: 2px;
  } /*090*/
  100% {
    transform: scaleX(0.3);
    left: 0px;
  } /*090*/
}
@keyframes middle {
  0% {
    transform: scaleX(0.7);
    left: -10px;
  } /*1091*/
  20% {
    transform: scaleX(0.45);
    left: 2px;
  } /*092*/
  100% {
    transform: scaleX(1);
    left: 2px;
  } /*0913*/
}
.mySwiper1 .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 73px !important;
  left: 27% !important;
}
.tab button {
  position: relative;
  z-index: 1;
}
.tab button::after {
  content: url("images/btn3.png");
  width: 14px;
  height: 17px;
  position: absolute;
  z-index: 999;
  left: 0;
}

/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#l-container .inner {
  padding: 25px 0px;
}
/**主体文章页开始**/

.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: rgba(44, 103, 200, 1);
  height: 68px;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 50px;
  padding: 0px 5px 0px 30px;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 1px solid #e4e4e4;
}
/*栏目列表*/
.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  color: #333;
  font-size: 15px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
  border-bottom: 1px solid #f6eaea;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 28px;
  line-height: 32px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #8e0107;
  background: #eee;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #8e0107;
}
.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: #8e0107;
}
/*二级子栏目**/
.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: #8e0107;
}
/*三级子栏目**/
.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: #8e0107;
}
/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}
.col_news .col_news_box {
  margin-left: 290px;
}
.col_news_head {
  border-bottom: 1px solid #dbdbdb;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 48px;
  line-height: 48px;
} /**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 18px;
  font-family: "Microsoft yahei";
  font-weight: normal;
  color: rgba(44, 103, 200, 1);
  border-bottom: 3px solid #cbcbcb;
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 46px;
  color: #666;
} /**当前位置**/
.col_metas .col_path a {
  color: #2f2f2f;
}
.col_news_con {
  padding: 5px 0px 10px 0px;
  margin: 0 0px;
}
.col_news_list {
  margin-top: 7px;
}
.col_news_list .wp_article_list .list_item {
} /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index {
} /**栏目新闻图标序号**/
.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}
.col_news_list .wp_entry p {
  margin-bottom: 10px;
}
.col_news_list .wp_entry table {
  margin-bottom: 4px;
}
.col_news_list .wp_entry img {
  max-width: 680px;
  _width: expression(this.width > 680 ? "680px": this.width);
} /**列表页文章图片大小限制**/
/**文章页**/
.infobox {
  margin-top: 20px;
  padding: 20px 60px;
  width: auto;
  min-height: 500px;
  box-shadow: 0px 0px 25px 1px rgba(129, 155, 194, 0.25);
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 36px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #333;
} /**文章标题**/
.article h2.arti_title {
  line-height: 34px;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: #666;
} /**文章副标题**/
.article .arti_metas {
  padding: 10px;
  text-align: center;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 12px;
  color: #787878;
} /**文章其他属性**/
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
} /**文章内容**/
.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  color: #333;
} /**阅读字体**/
.article .entry .read p {
  margin-bottom: 10px;
}
.article .entry .read img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
} /**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none !important;
}
.es_article_title {
  display: none;
}
/**翻页**/

.es_pagingbar_container {
  margin: 40px auto 0;
  text-align: center;
  padding-bottom: 40px;
}
.es_pagingbar_container .es_pagingbar {
  display: inline-block;
  overflow: hidden;
}
.es_pagingbar_container .es_pagingbar li {
  float: left;
  padding: 6px 12px;
  margin: 0 6px;
  color: #999;
  background: #fff;
  border: 1px solid #eee;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.es_pagingbar_container .es_pagingbar li.active {
  background: #d63e3e;
  color: #fff;
  border-color: #d63e3e;
}
.es_pagingbar_container .es_pagingbar li.active a {
  color: #fff;
}
.es_article_content img {
  margin-right: 20px;
}

/***********************************************************
 * 列表页
 */

/**首页三列布局**/

/**列表页**/

/*栏目图片*/

.l-banner {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  background: url(images/img_banner1.png);
  background-size: cover;
}

.l-banner img {
  vertical-align: top;
}

.l-banner img {
  width: 100%;
  height: 100%;
}

.list {
  background: #f5f5f5;
}

.list #nav {
  margin-bottom: 0;
}

/**主体列表页开始**/

#l-container {
  background: #f5f5f5;
  position: relative;
  z-index: 1;
}

#l-container .inner {
  padding: 30px 0px 60px;
}

/**主体文章页开始**/

#d-container {
  background: #f5f5f5;
}

#d-container .inner {
  padding: 30px 0px 60px;
}

.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
  z-index: 2;
}

.col_menu .l-qh {
  margin-bottom: 10px;
}

/**位置栏目背景**/

.col_menu .col_menu_head h3.col_name {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

/**位置栏目字体**/

.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 80px;
  padding: 0px 12px;
  text-align: center;
}

/**栏目名称图标**/

.col_menu .col_menu_con {
  border: 0px solid #e4e4e4;
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 10px;
}

/*栏目列表*/

.col_list {
}

.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}

.col_list .wp_listcolumn .wp_column a {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  border-top: 0px solid #fff;
  border-bottom: 0px solid #fff;
  display: block;
  background: none;
}

.col_list .wp_listcolumn .wp_column a .column-name {
  display: block;
  padding: 10px;
  line-height: 28px;
  text-align: center;
  color: #333;
}

.col_list .wp_listcolumn .wp_column a.selected {
  color: #000;
  border-radius: 8px;
  background: #f1ac40;
}

.col_list .wp_listcolumn .wp_column a.selected span.column-name,
.col_list .wp_listcolumn .wp_column a:hover span.column-name {
  color: #000;
}

.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: normal;
  color: #fff;
  background: #f1ac40;
  border-radius: 8px;
}

/*二级子栏目**/

.col_list .wp_listcolumn .wp_column .sub_list {
  padding-bottom: 6px;
}

.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #2ca6e0;
  border-bottom: 0px dashed #e0e0e0;
  margin-top: 6px;
  text-align: center;
  background: #e9e9e9;
  border-radius: 8px;
}

.col_list .wp_listcolumn .sub_list a.hover,
.col_list .wp_listcolumn .sub_list a.selected {
  color: #2ca6e0;
}

.col_list .wp_listcolumn .sub_list a.selected span.column-name {
  color: #036eb7;
}

.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px;
  cursor: pointer;
}

.col_list .wp_listcolumn .wp_column .sub_list a:hover .column-name {
  color: #036eb7;
}

/*三级子栏目**/

.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;
  font-size: 13px;
}

.col_list .wp_listcolumn .sub_list .sub_list a :hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #93150c;
}

/**栏目新闻**/

.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}

.col_news .col_news_box {
  margin-left: 270px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 0 30px;
}

.col_news_head {
  border-bottom: 1px solid #dbdbdb;
}

.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 74px;
  line-height: 74px;
}

/**当前栏目**/

.col_metas .col_title h2 {
  display: inline-block;
  font-size: 24px;
  font-family: "Microsoft yahei";
  font-weight: bold;
  color: #333;
}

.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 74px;
  line-height: 74px;
  color: #666;
  padding-left: 28px;
  background: url(images/back.png) left center no-repeat;
}

/**当前位置**/

.col_metas .col_path a {
  color: #2f2f2f;
}

.col_news_con {
  padding: 0px;
  margin: 0 0px;
}

.col_news_list {
  margin-top: 0px;
}

.col_news_list .news_list2 li {
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
}

.col_news_list .news_list2 li .news_pic {
  width: 240px;
  height: 134px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.col_news_list .news_list2 li .news_pic .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}

.col_news_list .news_list2 li .news_pic:hover {
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

.col_news_list .news_list2 li .news_pic:hover .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.col_news_list .news_list2 li .news_info {
  width: calc(100% - 280px);
  height: 134px;
  position: relative;
}

.col_news_list .news_list2.list2c li .news_info {
  width: 100%;
}

.col_news_list .news_list2 li .news_title {
  margin-top: 5px;
  line-height: 28px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.col_news_list .news_list2 li .news_meta {
  height: 20px;
  line-height: 20px;
  font-size: 16px;
  color: #999;
}

.col_news_list .news_list2 li .news_wz {
  margin-top: 7px;
  line-height: 24px;
  max-height: 48px;
  font-size: 14px;
  color: #999;
}

.col_news_list .news_list2 li .news_more {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 14px;
  background: url(images/more.png) left no-repeat;
  padding-left: 16px;
  height: 14px;
  font-size: 14px;
  color: #1267bb;
}

.col_news_list .news_list2 li .news_more1 {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-top: 14px;
  background: url(images/more.png) right no-repeat;
  padding-right: 20px;
  height: 14px;
  font-size: 14px;
}

.col_news_list .wp_article_list .list_item {
}

/**栏目新闻列表**/

.col_news_list .wp_article_list .list_item .Article_Index {
}

/**栏目新闻图标序号**/

.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}

.col_news_list .wp_entry p {
  margin-bottom: 10px;
}

.col_news_list .wp_entry table {
  margin-bottom: 4px;
}

.col_news_list .wp_entry img {
  max-width: 800px;
  _width: expression(this.width > 800 ? "800px": this.width);
}

.col_news_list .news_list2 li {
  padding-right: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.col_news_list .news_list2 li:hover {
  border-radius: 25px;
  box-shadow: 2px 3px 9px 1px rgba(74, 74, 74, 0.15);
  padding-left: 30px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.Column_Name {
  display: none;
}


#zSlider{margin:0px auto; width:620px; overflow:hidden;}
#picshow{position:relative;}
#picshow,#picshow_img{
width: 371px;
height: 279px; overflow:hidden; float:left;}
#picshow_img li {
width: 371px;
height: 279px; overflow:hidden; float:left; display:none;}
#picshow_img img{
width: 371px;
height: 279px;}
#picshow_tx{left:0px; width:600px; bottom:0px; position:absolute; height:90px; overflow:hidden;}
#picshow_tx li{background:url(../images/picshow_bg.png) repeat; padding:10px 30px; height:70px; color:#fff; display:none;}
#picshow_tx li a{color:#fff;}
#picshow_tx li a:hover{text-decoration:underline;}
#picshow_tx li h3{ margin:13px 0;}
#picshow_tx li p{ color:#ccc; line-height:16px; height:16px; overflow:hidden;}
#select_btn{width:249px; height:276px; color:#111; float:right; display:inline;background-color:#fff;}
#select_btn li{padding:9px 11px 0px 13px; width:249px; height:92px; border-top:1px solid #fff; cursor:pointer;}
#select_btn li:hover{background-color:rgba(1, 104, 183, 1);}
#select_btn li.current{background-color:rgba(1, 104, 183, 1);}
#select_btn li.current:hover{background-color:rgba(1, 104, 183, 1);}
#select_btn a{color:#000;}
#select_btn .select_text{height:60px;line-height:30px;font-size:18px;overflow:hidden;float: left;width: 230px;
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 18px;
color: #333333;

}
#select_btn .select_text:hover{color:#fff;}
#select_btn .select_date{height:45px;line-height:45px;font-size:12px;overflow:hidden;float: right;}
#select_btn li.current  .select_text{
color:#fff;
}




.mySwiper2 .swiper-slide img{
transition: 0.8s;
}
.mySwiper2 .swiper-slide:hover  img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}

.swiper-container .swiper-slide .mimg img{
transition: 0.8s;
}
.swiper-container .swiper-slide:hover .mimg img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}


.xg1 li a img{
transition: 0.8s;
}
.xg1 li:hover  a img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}


.mySwiper3 .swiper-slide img{
transition: 0.8s;
}
.mySwiper3 .swiper-slide:hover img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}

.by1 li a img{
transition: 0.8s;
}
.by1 li:hover  a img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}


.by1 li a img{
transition: 0.8s;
}
.by2 li:hover a img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}

#picshow_img img{
transition: 0.8s;
}
#picshow_img:hover  img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}


.xgmt li img{
transition: 0.8s;
}
.xgmt li:hover img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}


.swiper-container2 .swiper-slide img{
transition: 0.8s;
}
.swiper-container2 .swiper-slide:hover  img{
 transform: scale(1.03);
 transition: transform 0.8s ease;
}

.nav .wp-menu .menu-item:hover  .sub-menu{

display: block
}