@charset "utf-8";

body,
div,
table,
tr,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
label,
select,
textarea,
p,
u,
i,
em,
ul,
ol,
li,
dl,
dd,
dt,
img,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  border: 0 none;
  vertical-align: middle;
}

a,
input,
select,
textarea,
area,
button {
  outline: none;
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  color: inherit;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

textarea {
  overflow: auto;
  resize: none;
}

ul,
li {
  list-style: none;
}

body {
  font: 12px/180% Arial, Helvetica, sans-serif, Microsoft YaHei,
    WenQuanYi Micro Hei, Helvetica Neue;
}

.clear {
  clear: both;
}

.single {
  /* 文本强制不换行 */
  white-space: nowrap;
  /* 超出部分隐藏 */
  overflow: hidden;
  /* 用省略号来代表被修剪的文本 */
  text-overflow: ellipsis;
}

.multi {
  display: -webkit-box;
  /* 该属性的值指定要显示的最大文本行数，任何溢出都将被隐藏 */
  -webkit-line-clamp: 2;
  /*
 -webkit-box-orient是一个CSS属性，用于指定弹性盒子的子元素应如何排列。它有两个值：horizontal（水平）和vertical （垂直）。默认值是horizontal。当设置为vertical时，子元素将按照从上到下的顺序排列，而不是从左到右。该属性仅适用于 WebKit浏览器。 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.container {
  display: block;
  margin: auto;
  width: 1300px;
}

/* 头尾部 */
.header {
  width: 100%;
  height: 114px;
  border-bottom: 4px solid #98bdf8;
  background: #fff;
}

.header .container {
  position: relative;
  height: 100%;
}

.header .logo {
  float: left;
  width: 150px;
  height: 100%;
  background: url(../images/logo.png) no-repeat left center;
}

.header .user_center {
  position: absolute;
  right: -30px;
  top: 0;
  padding-left: 20px;
  height: 36px;
  line-height: 40px;
  color: #888;
  background: url(../images/user_center.png) no-repeat left center;
  background-size: auto 16px;
}

.header .user_center:hover {
  text-decoration: underline;
  color: #007aff;
}

.header .main_nav {
  float: left;
  height: 100%;
}

.header .main_nav li {
  float: left;
  width: 126px;
  height: 100%;
  padding: 40px 0 24px 0;
  text-align: center;
}

.header .main_nav li a {
  display: block;
  height: 100%;
  padding-top: 5px;
  font-size: 16px;
  font-weight: 800;
  color: #0758a4;
  line-height: 1;
  border-right: 1px solid #a3c3c8;
}

.header .main_nav li:last-child a {
  border: none;
}

.header .main_nav li span {
  display: block;
  font-size: 12px;
  color: #999;
  font-weight: normal;
  margin-top: 5px;
}

.header .main_nav li:hover,
.header .main_nav li.current {
  background: url(../images/nav_bg.png) no-repeat;
}

.header .main_nav li:hover a,
.header .main_nav li:hover span,
.header .main_nav li.current a,
.header .main_nav li.current span {
  color: #fff;
  border: none;
}

.footer {
  width: 100%;
  height: 102px;
  padding-top: 30px;
  background: url(../images/footer_bg.jpg) no-repeat center;
}

.footer .left {
  float: left;
}

.footer .left p {
  display: inline-block;
  vertical-align: top;
  margin-right: 25px;
  height: 50px;
  line-height: 1.2;
  font-weight: 800;
  font-size: 14px;
  color: #0677e4;
  padding-top: 15px;
  padding-left: 50px;
}

.footer .left .address {
  padding-top: 8px;
  background: url(../images/footer1.png) no-repeat;
}

.footer .left .tel {
  background: url(../images/footer2.png) no-repeat left 3px;
}

.footer .left .email {
  background: url(../images/footer3.png) no-repeat;
}

.footer .right {
  float: right;
  text-align: right;
  font-size: 14px;
  color: #fff;
  font-weight: 800;
}

.footer .right p {
  margin-bottom: 5px;
}

/* 主体 */
.slide_banner {
  width: 100%;
  height: 420px;
}

.slide_banner .flex-viewport li {
  background-size: 100%;
  background-size: cover;
  background-position: center;
}

.slide_banner .flex-control-nav {
  width: 100%;
  right: 0;
}

.main_cont {
  display: block;
  margin: auto;
  width: 1200px;
  min-height: 250px;
  padding: 15px 0;
}

.main_cont.pd20 {
  padding: 20px;
}

.main_cont.article_cont {
  margin: 50px auto;
  padding: 20px;
  min-height: 600px;
  background: #fff;
  box-shadow: 0 0 8px #bbb;
  border-radius: 6px;
}

.top_link {
  position: relative;
  width: 100%;
  height: 40px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #c0c0c0;
}

.top_link p {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 41px;
  line-height: 46px;
  background: url(../images/line.png) no-repeat left bottom;
}

.top_link .more {
  float: right;
  height: 100%;
  padding: 0 20px;
  line-height: 40px;
  font-size: 14px;
  color: #999;
}

.top_link a:hover {
  color: #0677e4;
  text-decoration: underline;
}

.cont_left {
  float: left;
  width: 650px;
}

.cont_right {
  float: right;
  width: 530px;
}

.slide_img {
  width: 100%;
  height: 420px;
}

.cont_right .slide_img li {
  position: relative;
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
}

.slide_img.min {
  float: left;
  width: 430px;
  height: 288px;
}

.slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide_img .flex-viewport li {
  position: relative;
}

.slide_img li p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  padding: 0 240px 0 20px;
  line-height: 60px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}

.slide_img.min li p,
.cont_right .slide_img li p {
  font-size: 15px;
  height: 40px;
  line-height: 42px;
  padding-right: 20px;
}

.slide_img.video .slides li a {
  position: relative;
}

.slide_img.video .slides li a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/video.png) no-repeat center;
}

.slide_img .slides li:hover a {
  opacity: 0.9;
  transition: all linear 0.2s;
}

.menu_tab {
  width: 100%;
  overflow: hidden;
}

.menu1 {
  height: 420px;
  padding: 0 10px;
  box-shadow: 0 0 6px #ccc;
}

.menu_tab .tit {
  position: relative;
  width: 100%;
  /* height: 66px; */
  /* background: url(../images/line.png) no-repeat left bottom; */
  height: 40px;
  background: url('../images/bg1.png') no-repeat right center;
  margin-top: 20px;
  background-color: rgba(237, 246, 255, 1);
}

.menu_tab .tit .more {
  display: none;
  position: absolute;
  right: 0;
  /* top: 10px; */
  bottom: 0;
  padding: 0 10px;
  font-size: 16px;
  font-weight: normal;
  /* line-height: 56px; */
  font-size: 14px;
  font-weight: 400;
  color: #0071e3;
  /* line-height: 24px; */
  font-weight: bold;
  background: url('../images/re_right.png') no-repeat;
  background-size: 8px 14px;
  background-position: right center;
  margin-right: 10px;
}

.menu_tab .tit .more:hover {
  text-decoration: underline;
}

.menu_tab .tit .more.user {
  padding-left: 20px;
  background: url(../images/user_blue.png) no-repeat left 18px;
  background-size: auto 16px;
}

.menu_tab .tit li {
  float: left;
  /* margin-right: 10px; */
  height: 100%;

  /* line-height: 28px; */
  font-size: 18px;
  font-weight: bold;
  color: #666;
  /* background: url(../images/q_gray.png) no-repeat 8px 26px;
  border-bottom: 4px solid transparent; */
  /* width: 135px; */
  padding: 0 10px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-right: 2px solid #fff;

  cursor: pointer;
}

.menu_tab .tit li.active {
  /* color: #0677e4; */
  color: #fff;
  /* border-bottom: 4px solid #0677e4; */
  /* background: url(../images/q_blue.png) no-repeat 8px 26px; */
  background: #0071e3;
}

.menu_tab .tit li.active .more {
  display: block;
}

.menu_tab .tit li:hover {
  border-bottom: 4px solid #0677e4;
}

.menu_tab .tit li:last-child span {
  border: none;
}

.menu_tab .tit li span {
  /* padding-right: 20px; */
  /* border-right: 1px solid #82bbf1; */
}

.menu_tab .tit+.tabcont {
  display: block;
}

.icon_tab {
  width: 100%;
}

.icon_tab .icon {
  width: 100%;
  padding: 30px 0 30px 0;
  display: flex;
  justify-content: space-between;
}

.icon_tab .icon li {
  display: inline-block;
  /* width: 145px;
  height: 140px; */
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #606b7a;
  cursor: pointer;
  width: 180px;
  height: 80px;
  background: #edf6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_tab .icon li:hover,
.icon_tab .icon li.active {
  background: url('../images/bg3.png') no-repeat;
  background-size: 100% 100% !important;
  transition: all linear 0.2s;
  color: #fff;
}

.icon_tab .culture .icon1 {
  background: url(../images/activety1.png) no-repeat center 20px;
  background-size: auto 88px;
}

.icon_tab .culture .icon2::before {
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  background: url(../images/icon_wyqqb.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon2:hover::before,
.icon_tab .culture .icon2.active::before {
  background: url(../images/icon_wyqqb_active.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon3::before {
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  background: url(../images/icon_bxssx.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon3:hover::before,
.icon_tab .culture .icon3.active::before {
  background: url(../images/icon_bxssx_active.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon4::before {
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  background: url(../images/icon_zyfw.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon4:hover::before,
.icon_tab .culture .icon4.active::before {
  background: url(../images/icon_zyfw_active.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon5::before {
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  background: url(../images/icon_hqjc.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon5:hover::before,
.icon_tab .culture .icon5.active::before {
  background: url(../images/icon_hqjc_active.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon6::before {
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  background: url(../images/icon_gcw.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon6:hover::before,
.icon_tab .culture .icon6.active::before {
  background: url(../images/icon_gcw_active.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon7::before {
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  background: url(../images/icon_hechang.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon7:hover::before,
.icon_tab .culture .icon7.active::before {
  background: url(../images/icon_hechang_active.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon8::before {
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  background: url(../images/icon_yqfk.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon8:hover::before,
.icon_tab .culture .icon8.active::before {
  background: url(../images/icon_yqfk_active.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon9::before {
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  background: url(../images/icon_kzl.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon9:hover::before,
.icon_tab .culture .icon9.active::before {
  background: url(../images/icon_kzl_active.png) no-repeat left center;
  background-size: 40px 40px;
}

.icon_tab .culture .icon9 a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.icon_tab .icon+.tabcont {
  display: block;
}

.icon_tab .ich .icon1 {
  background: url(../images/ich1.png) no-repeat center 20px;
  background-size: auto 88px;
}

.icon_tab .ich .icon2 {
  background: url(../images/ich2.png) no-repeat center 20px;
  background-size: auto 88px;
}

.icon_tab .ich .icon3 {
  background: url(../images/ich3.png) no-repeat center 20px;
  background-size: auto 88px;
}

.icon_tab .ich .icon4 {
  background: url(../images/ich4.png) no-repeat center 20px;
  background-size: auto 88px;
}

.icon_tab .ich .icon5 {
  background: url(../images/ich5.png) no-repeat center 20px;
  background-size: auto 88px;
}

.icon_tab .ich li.active {
  font-weight: bold;
  color: #4ba6ff;
  background-position: center 14px;
  background-size: auto 100px;
  transition: all linear 0.2s;
}

.icon_tab .ich li:hover {
  background-position: center 14px;
  background-size: auto 100px;
  transition: all linear 0.2s;
}

.icon_tab .icon+.tabcont {
  display: block;
}
/* #_ideConac {
  position: absolute;
  width: 100%;
  height: 132px;
  bottom: 0;
  padding-top: 30px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#_ideConac:first-child {
  z-index: 10000;
}
#_ideConac:nth-child(2) {
  display: none;
} */
.tabcont {
  display: none;
  width: 100%;
}

.nav_tit {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(131, 182, 241, 1);
}

.nav_tit h3 {
  color: #fff;
  font-size: 18px;
  height: 40px;
  padding: 0 16px;
  background-color: rgba(8, 109, 227, 1);
  font-weight: bold;
  line-height: 40px;
  position: relative;
}

.nav_tit h3::after {
  content: '';
  display: block;
  width: 56px;
  height: 40px;
  background: url('../images/bg2.png') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 100%;
  bottom: 0;
}

.nav_tit .more {
  font-size: 14px;
  font-weight: 400;
  color: #0071e3;
  line-height: 36px;
  background: url('../images/re_right.png') no-repeat;
  background-size: 8px 14px;
  background-position: right center;
  padding-right: 10px;
}

.list_time {
  width: 100%;
  font-family: 'microsoft yahei';
}

.list_time li {
  margin: 13px 0;
  width: 100%;
  height: 100px;
  padding: 20px 10px;
  background: #f7fafd;
}

.list_time li:hover {
  background: #d3e2f1;
}

.list_time li .time {
  float: left;
  width: 60px;
  height: 60px;
  padding-top: 7px;
  text-align: center;
  border: 2px solid #0677e4;
}

.list_time li .time h4 {
  margin-bottom: 2px;
  font-size: 20px;
  color: #0677e4;
}

.list_time li .time span {
  font-size: 12px;
  color: #444;
}

.list_time li .text {
  margin-left: 75px;
}

.list_time li .text h4 {
  font-size: 15px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_time li .text p {
  font-size: 12px;
  color: #666;
}

.activity_list {
  width: 100%;
  /* height: 320px; */
  display: flex;
  justify-content: space-between;
}

.activity_list li {
  float: left;
  width: 282px;
  height: 100%;

  box-shadow: 0px 0px 10px 0px rgba(8, 109, 227, 0.1);
  /* margin-right: 25px; */
  /* box-shadow: 0 4px 4px #ccc;
  border-top: 1px solid #f4f5f6; */
}

.activity_list.min li {
  width: 250px;
  height: 290px;
  margin-top: 30px;
  margin-right: 20px;
}

.activity_list li:nth-child(4) {
  margin-right: 0;
}

.activity_list.min li:nth-child(3) {
  margin-right: 0;
}

.activity_list li .img {
  /* margin-bottom: 3px;
  width: 100%;
  height: 202px; */
  width: 282px;
  height: 201px;
  background: #ffffff;
  border-radius: 5px;
}

.activity_list.min li .img {
  position: relative;
  height: 164px;
}

/* .activity_list.min li .img:after{content: ''; position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: url(../images/video.png) no-repeat center; background-size: 50px auto; } */
.activity_list li h4 {
  padding: 10px 10px 5px;
  height: 60px;
  color: #606b7a;
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  /* 必须 */
  overflow: hidden;
  /* 必须 */
  text-overflow: ellipsis;
  /* 必须 */
  -webkit-line-clamp: 2;
  /* 控制显示的行数 */
  -webkit-box-orient: vertical;
  /* 必须 */
  max-height: calc(2em * 2);
  /* 根据字体大小调整 */
  line-height: 24px;
}

.activity_list li p {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  padding: 0 10px 10px;
}

.activity_list li:hover {
  opacity: 0.9;
  /* box-shadow: 0 6px 6px #999; */
}

.three_left,
.three_center {
  float: left;
  margin-right: 35px;
  width: 376px;
  height: 460px;
}

.three_right {
  float: right;
  width: 376px;
  height: 460px;
}

.wrap_bm {
  margin-top: 19px;
  width: 100%;
  /*height: 150px;*/
  height: 68px;
  /* padding: 25px 10px 10px 10px; */
  text-align: center;
  background: url(../images/yybm_bg.png) no-repeat -8px center;
  display: flex;
  align-items: center;
}

.wrap_bm h4 {
  width: 100%;
  margin-bottom: 5px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.wrap_bm p {
  width: 100%;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.wrap_bm .bm_btn {
  display: block;
  margin: 0 auto 0;
  width: 120px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
  background: url(../images/yybm_btn.png) no-repeat;
}

.wrap_bm .bm_btn:hover {
  opacity: 0.9;
}

.wrap_list {
  width: 100%;
}

.wrap_list.bor_dashed {
  padding-top: 10px;
}

.wrap_list.two,
.wrap_list.three {
  float: left;
}

.wrap_list li {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  line-height: 38px;
  font-size: 14px;
  color: #333;
  background: url(../images/li.png) no-repeat left center;
}

.wrap_list.three li {
  float: left;
  width: 34%;
  padding-right: 50px;
}

.wrap_list.two li {
  float: left;
  width: 50%;
  padding-right: 30px;
}

.wrap_list.three li:nth-child(3n) {
  width: 32%;
}

.wrap_list li a {
  float: left;
  width: 80%;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  word-wrap: break-word;
}

.wrap_list.video li b {
  float: left;
  width: 32px;
  height: 100%;
  background: url(../images/video_min.png) no-repeat left 9px;
}

.wrap_list.w100 li {
  height: 39px;
}

.wrap_list.video li {
  height: 45px;
  line-height: 44px;
  border-bottom: 1px solid #c0c0c0;
}

.wrap_list.w100 li a {
  width: 100%;
}

.wrap_list li span {
  float: right;
  text-align: right;
  font-size: 13px;
  color: #999;
}

.wrap_list li:hover {
  color: #0677e4;
  background: url(../images/li_hover.png) no-repeat left center;
}

.bor_dashed li {
  border-bottom: 1px dashed #c0c0c0;
}

.index_list {
  margin-top: 30px;
  width: 100%;
  height: 362px;
  padding: 10px;
  box-shadow: 0 4px 4px #ccc;
  border-top: 1px solid #f4f5f6;
}

.index_list .img {
  float: left;
  width: 160px;
  height: 106px;
}

.index_list li .img,
.index_list li p {
  display: none;
}

.index_list h4 {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal;
  color: #555;
  font-size: 15px;
  line-height: 2;
}

.index_list p {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}

.index_list li:first-child {
  margin-bottom: 10px;
  height: 134px;
  padding: 10px 0 16px 0;
  border-bottom: 2px dashed #e1e1e1;
}

.index_list li:first-child h4 {
  color: #333;
  font-weight: bold;
}

.index_list li:first-child h4,
.index_list li:first-child p {
  margin-left: 170px;
}

.index_list li:first-child .img,
.index_list li:first-child p {
  display: block;
}

.index_list li:hover h4 {
  color: #0677e4;
}

.video_left {
  float: left;
  width: 590px;
  height: 390px;
}

.video_list.slide_img {
  margin-top: 20px;
  width: 100%;
  height: 304px;
}

.video_list .slides>li a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 60px;
  right: 0;
  background: url(../images/video.png) no-repeat center;
}

.video_right {
  float: right;
  width: 590px;
  height: 390px;
}

.img_time {
  width: 100%;
  height: 324px;
}

.img_time li {
  float: left;
  margin-top: 15px;
  width: 50%;
  height: 56px;
}

.img_time li .img {
  display: none;
  float: left;
  width: 280px;
  height: 100%;
}

.img_time li .text {
  height: 100%;
  padding-right: 15px;
}

.img_time li .text .time {
  margin-right: 10px;
  float: left;
  width: 70px;
  height: 56px;
  padding-top: 12px;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 13px;
  background: #0677e4;
}

.img_time li .text .time p {
  margin-bottom: 3px;
  font-size: 16px;
}

.img_time li .text h4 {
  line-height: 1.5s;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.img_time li .text>p {
  height: 34px;
  line-height: 17px;
  overflow: hidden;
  font-size: 12px;
  color: #999;
}

.img_time li:first-child {
  margin-top: 20px;
  width: 100%;
  height: 160px;
}

.img_time li:first-child .img {
  display: block;
}

.img_time li:first-child .time {
  display: none;
}

.img_time li:first-child .text {
  width: auto;
  padding-top: 10px;
  margin-left: 300px;
}

.img_time li:first-child .text h4 {
  font-size: 18px;
  margin: 15px 0;
}

.img_time li:hover .text h4 {
  color: #0677e4;
}

.long_left {
  float: left;
  width: 790px;
  height: 400px;
}

.long_right {
  float: right;
  width: 380px;
  height: 400px;
}

.long_right .time_list {
  padding-top: 22px;
}

.time_list li {
  margin: 9px 0;
  width: 100%;
  height: 66px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}

.time_list li .time {
  margin-right: 10px;
  float: left;
  width: 70px;
  height: 56px;
  padding-top: 12px;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 13px;
  background: #0677e4;
}

.time_list li .time p {
  margin-bottom: 3px;
  font-size: 16px;
}

.time_list li h4 {
  line-height: 1.5s;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.time_list li a>p {
  height: 34px;
  line-height: 17px;
  overflow: hidden;
  font-size: 12px;
  color: #999;
}

.time_list li:hover h4 {
  color: #0677e4;
}

.friend_link {
  width: 100%;
  padding: 50px 0 0;
  position: relative;
}

.link_list {
  width: 200%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tempWrap {
  width: 100% !important;
}

.friend_link a {
  margin-bottom: 30px;
  margin-right: 62px;
  width: 252px;
}

/* .friend_link a:nth-child(4n){ margin-right: 0;} */
.list_left {
  float: left;
  width: 100%;
  min-height: 600px;
}

.list_right {
  float: right;
  width: 340px;
}

.list_img {
  width: 100%;
}

.list_img.three {
  float: left;
  margin-bottom: 5px;
}

.list_img li {
  margin-top: 15px;
  width: 100%;
  height: 76px;
  display: table;
}

.list_img.three li {
  float: left;
  width: 34%;
  padding-right: 40px;
}

.list_img.three li:nth-child(3n) {
  width: 32%;
}

.list_img .img {
  display: table-cell;
  width: 116px;
  height: 76px;
}

.list_img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list_img p {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
  text-align: justify;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
}

.list_img li:hover p {
  color: #0677e4;
}

.wrap_list_img {
  float: left;
  width: 100%;
}

.wrap_list_img li {
  float: left;
  margin-bottom: 30px;
  width: 50%;
  height: 144px;
  padding-right: 25px;
}

.wrap_list_img li .img {
  float: left;
  width: 216px;
  height: 100%;
}

.wrap_list_img li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap_list_img li .text {
  margin-left: 236px;
}

.wrap_list_img li .text h4 {
  margin-bottom: 10px;
  height: 48px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  overflow: hidden;
}

.wrap_list_img li .text p {
  height: 83px;
  font-size: 14px;
  color: #888;
  line-height: 2;
  overflow: hidden;
}

.wrap_list_img li:hover .text h4 {
  color: #0677e4;
}

.list_content {
  display: table;
  width: 1200px;
  min-height: 600px;
  margin: auto;
  padding: 30px 0;
}

.list_content .main_cont {
  display: table-cell;
  background: #fff;
  box-shadow: 0 0 8px #bbb;
  border-radius: 6px;
}

.list_nav {
  display: table-cell;
  vertical-align: top;
}

.list_nav li {
  margin-right: 20px;
  width: 200px;
  height: 64px;
  text-align: center;
  line-height: 66px;
  background: #fff;
  font-size: 16px;
  color: #333;
  box-shadow: 0 0 6px #bbb;
}

.list_nav li a {
  display: block;
}

.list_nav li.current,
.list_nav li.current:hover {
  background: #4ba6ff url(../images/white.png) no-repeat 170px center;
  color: #fff;
}

.list_nav li:hover {
  background: #4ba6ff;
  color: #fff;
}

.article {
  width: 100%;
}

.article .top {
  padding: 30px 0;
  text-align: center;
}

.article .top h4 {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 24px;
}

.article .top p {
  font-size: 15px;
  color: #999;
}

.article .top p span {
  margin: 0 20px;
}

.article .cont {
  padding: 0 60px;
}

.article .cont,
.article .cont p {
  text-indent: 2em;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}

.article .cont img {
  max-width: 100%;
  display: block;
  margin: auto;
  width: auto !important;
}

.article .cont p {
  margin: 15px 0;
}

/* .window_fixed {
  position: fixed;
  top: 550px;
  left: 50%;
  margin-left: 615px;
} */

.window_fixed {
  position: fixed;
  bottom: 20px;
  right: 10px;
}

.window_fixed img {
  display: block;
  margin-bottom: 15px;
  max-width: 150px;
}

.back_top {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 100;
  margin-left: 645px;
  width: 60px;
  height: 60px;
  background: url(../images/back_top.png) no-repeat center;
  background-size: 100%;
  cursor: pointer;
}

.back_top:hover {
  opacity: 0.85;
}

.jj_cont {
  width: 100%;
}

.jj_cont img {
  display: block;
  margin: auto;
  margin-bottom: 30px;
  max-width: 100%;
}

/* 公共样式 */
.flex-viewport,
.flex-viewport ul,
.flex-viewport li {
  height: 100%;
}

.flex-direction-nav .flex-prev {
  left: 0;
}

.flex-direction-nav .flex-next {
  right: 0;
}

.slide_img.min .flex-control-nav {
  display: none;
}

.flex-control-nav {
  right: 20px;
  bottom: 20px;
  width: auto;
}

.flex-control-nav li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.flex-control-paging li a {
  background: #fff;
  border-radius: 50%;
  opacity: 1;
}

.flex-control-paging li a.flex-active {
  background: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  opacity: 1;
}

.wrap_page {
  float: left;
  width: 100%;
  margin-top: 10px;
  padding: 20px 0;
  text-align: center;
}

.wrap_page li {
  margin-bottom: 10px;
  display: inline-block;
}

.wrap_page li.thisclass {
  padding: 5px 11px;
  font-size: 14px;
  color: #fff;
  background: #0677e4;
  border: 1px solid #0677e4;
}

.wrap_page li .pageinfo {
  margin-left: 12px;
}

.wrap_page li .pageinfo strong {
  margin-right: 5px;
  color: #0677e4;
}

.wrap_page li .pageinfo strong:last-child {
  margin-left: 10px;
}

.wrap_page a {
  display: inline-block;
  margin: 0 5px;
  padding: 4px 11px;
  text-align: center;
  font-size: 14px;
  color: #888;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #ccc;
}

.wrap_page a:hover,
.wrap_page a.active {
  border: 1px solid #0677e4;
  padding: 4px 11px;
  font-size: 14px;
  color: #888;
}

.wrap_page span {
  color: #666;
  font-size: 14px;
}

.wrap_page span label {
  margin: 0 5px;
  color: #0677e4;
}

.wrap_page td {
  min-width: 40px;
  width: auto;
}

.wrap_page input[name='PageNo'],
.wrap_page input[name='plistgo'] {
  margin-right: 5px;
  width: 50px !important;
  height: 31px !important;
  text-align: center;
  border: 1px solid #ccc;
}

.wrap_page td b {
  margin: 0 5px;
  color: red;
}

/* pc端 */
@media only screen and (min-width: 640px) {

  html,
  body {
    min-width: 1220px;
    position: relative;
  }

  .pc_bg {
    background: #efefef;
  }
}

/* 移动端 */
@media only screen and (max-width: 640px) {

  a,
  input,
  select,
  textarea,
  area,
  button {
    outline: none;
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  input::-webkit-input-placeholder {
    color: #999;
  }

  input:focus::-webkit-input-placeholder {
    color: #999;
  }

  a {
    text-decoration: none;
  }

  a:hover {
    text-decoration: none;
  }

  textarea {
    overflow: auto;
    resize: none;
  }

  html,
  body {
    width: 100%;
  }

  html {
    font-size: 100px;
    font-size: calc(100vw / 3.75);
  }

  body {
    min-width: 100%;
    font-size: 0.16rem;
    background: #fff;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  ::-webkit-scrollbar {
    display: none;
  }

  .container {
    width: 100%;
  }

  .header {
    display: none;
    height: auto;
  }

  .footer {
    float: left;
    height: auto;
    padding: 0.1rem 0;
    width: 100%;
    background: #f5f5f5;
  }

  .footer .right {
    display: none;
  }

  .footer .left p {
    margin: 0;
    width: 100%;
    height: auto;
    padding: 0.1rem 0;
    padding-left: 0.8rem;
  }

  .footer .left .address {
    background-position: 0.4rem center;
    background-size: 0.2rem auto;
  }

  .footer .left .tel {
    background-position: 0.4rem center;
    background-size: 0.2rem auto;
  }

  .footer .left .email {
    background-position: 0.4rem center;
    background-size: 0.2rem auto;
  }

  .header .logo {
    display: none;
  }

  .header .main_nav {
    float: none;
    display: flex;
    flex-wrap: wrap;
  }

  .header .main_nav li {
    float: none;
    width: 25%;
    padding: 0.1rem 0;
    text-align: center;
    height: auto;
    border-bottom: 2px solid #98bdf8;
  }

  .header .main_nav li a {
    display: block;
    height: 0.24rem;
    padding-top: 5px;
    font-size: 0.12rem;
    font-weight: 800;
    color: #0758a4;
    line-height: 1;
    border-right: 1px solid #a3c3c8;
  }

  .header .main_nav li span {
    display: none;
  }

  .list_content {
    display: block;
    width: 100%;
    padding-top: 0;
  }

  .list_content .list_nav {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    width: 100%;
    overflow-x: auto;
    background: url(../images/vaccinum.navbg.png) repeat-x;
  }

  .list_content .list_nav li {
    position: relative;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 24%;
    height: 42px;
    font-size: 0.12rem;
    color: #333;
    line-height: 1;
    padding: 0 10px;
    background: none;
    box-shadow: none;
  }

  .list_content .list_nav li.current {
    color: #1976d2;
    font-weight: bold;
  }

  .list_content .list_nav li:after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    border-right: 1px solid #ddd;
  }

  .list_content .list_nav li:last-child:after {
    display: none;
  }

  .list_content .main_cont {
    display: block;
    width: 100%;
    padding: 10px;
    box-shadow: none;
  }

  .wrap_list li a {
    width: 100%;
  }

  .wrap_list li span {
    display: none;
  }

  .wrap_page li.thisclass {
    margin: 0 3px;
    padding: 0 7px;
  }

  .wrap_page a {
    margin: 0 3px;
    padding: 0 7px;
    font-size: 12px;
  }

  .wrap_list_img {
    padding-top: 10px;
  }

  .wrap_list_img li {
    width: 100%;
    padding-bottom: 10px;
    height: 82px;
    border-bottom: 1px dashed #ddd;
  }

  .wrap_list_img li .img {
    width: 108px;
    height: 100%;
  }

  .wrap_list_img li .text {
    margin-left: 120px;
  }

  .wrap_list_img li .text h4 {
    margin-bottom: 5px;
    width: 100%;
    height: auto;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .wrap_list_img li .text p {
    line-height: 1.4;
    height: 38px;
  }

  .main_cont.article_cont {
    margin: 0;
    width: 100%;
    padding: 10px;
    box-shadow: none;
  }

  .article .top {
    padding: 10px 0;
  }

  .article .top h4 {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .article .top p {
    font-size: 12px;
  }

  .article .cont {
    padding: 0 10px;
  }

  .article .cont img {
    height: auto !important;
  }

  .article .cont iframe {
    display: block;
    margin: auto;
    height: 2.5rem;
  }
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
  width: 8px;
  height: 2px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
  /*inset后 第一个0表示：阴影水平偏移值（可取正负值）；第二个0：阴影垂直偏移值（可取正负值）；1px：阴影模糊值（越小表示越清晰）；rgba(0,0,0,0.3)：阴影颜色；*/
  border-radius: 100px;
  opacity: 0;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #d8d8d8;
}

.menus_list {
  width: 240px;
  height: 924px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(8, 109, 227, 0.1);
  border-radius: 5px;
  float: left;
  margin-top: -120px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.menus_list .item {
  width: 200px;
  height: 105px;
  background: #edf6ff;
  border-radius: 10px;
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #606b7a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menus_list .item:hover {
  background: url('../images/bg5.png') no-repeat;
  background-size: 100% 100%;
  color: #fff;
  transition: all 0.8s;
}

.menus_list .icon1::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url('../images/icon_cgyy.png') no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

.menus_list .icon1:hover::before {
  background: url('../images/icon_cgyy_active.png') no-repeat;
  background-size: 100% 100%;
}

.menus_list .icon2::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url('../images/icon_fyztyy.png') no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

.menus_list .icon2:hover::before {
  background: url('../images/icon_fyztyy_active.png') no-repeat;
  background-size: 100% 100%;
}

.menus_list .icon3::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url('../images/icon_kcbm.png') no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

.menus_list .icon3:hover::before {
  background: url('../images/icon_kcbm_active.png') no-repeat;
  background-size: 100% 100%;
}

.menus_list .icon4::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url('../images/icon_ycyy.png') no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

.menus_list .icon4:hover::before {
  background: url('../images/icon_ycyy_active.png') no-repeat;
  background-size: 100% 100%;
}

.menus_list .icon5::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url('../images/icon_wszt.png') no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

.menus_list .icon5:hover::before {
  background: url('../images/icon_wszt_active.png') no-repeat;
  background-size: 100% 100%;
}

.menus_list .icon6::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url('../images/icon_tssn.png') no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

.menus_list .icon6:hover::before {
  background: url('../images/icon_tssn_active.png') no-repeat;
  background-size: 100% 100%;
}

.menus_list .icon7::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url('../images/icon_szwhzyk.png') no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

.menus_list .icon7:hover::before {
  background: url('../images/icon_szwhzyk_active.png') no-repeat;
  background-size: 100% 100%;
}

.box_feiyi {
  width: 940px;
  height: 924px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(8, 109, 227, 0.1);
  border-radius: 5px;
  float: right;
  margin-top: -120px;
  position: relative;
  padding: 20px;
}

.feiyiAct {
  padding: 20px 0 0;
}

.feiyiAct .activity_list li {
  width: 210px;
  margin-right: 20px;
  box-shadow: none;
}

.feiyiAct .activity_list li .img {
  width: 100%;
  height: 150px;
}

.feiyiAct .activity_list li h3 {
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #606b7a;
  padding: 5px;
  /* 文本强制不换行 */
  white-space: nowrap;
  /* 超出部分隐藏 */
  overflow: hidden;
  /* 用省略号来代表被修剪的文本 */
  text-overflow: ellipsis;
  width: 100%;
}

.feiyiNews {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feiyiNews .feiyiNews-item {
  width: 440px;
  padding-top: 20px;
}

.pic_list .item {
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
}

.pic_list .item .cover {
  width: 140px;
  height: 100px;
  border-radius: 5px;
}

.pic_list .item .infos {
  width: calc(100% - 150px);
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pic_list .item .infos h3 {
  font-size: 16px;
  color: #606b7a;
  /* 文本强制不换行 */
  white-space: nowrap;
  /* 超出部分隐藏 */
  overflow: hidden;
  /* 用省略号来代表被修剪的文本 */
  text-overflow: ellipsis;
  width: 100%;
}

.pic_list .item .infos p {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
  display: -webkit-box;
  /* 该属性的值指定要显示的最大文本行数，任何溢出都将被隐藏 */
  -webkit-line-clamp: 2;
  /*
 -webkit-box-orient是一个CSS属性，用于指定弹性盒子的子元素应如何排列。它有两个值：horizontal（水平）和vertical （垂直）。默认值是horizontal。当设置为vertical时，子元素将按照从上到下的顺序排列，而不是从左到右。该属性仅适用于 WebKit浏览器。 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.news_list .item {
  font-size: 14px;
  color: #606b7a;
  position: relative;
  padding-left: 10px;
  /* 文本强制不换行 */
  white-space: nowrap;
  /* 超出部分隐藏 */
  overflow: hidden;
  /* 用省略号来代表被修剪的文本 */
  text-overflow: ellipsis;
  width: 100%;
  display: block;
  margin-top: 20px;
}

.news_list .item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #606b7a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news_list .item:hover {
  color: #086de3;
}

.news_list .item:hover::before {
  background-color: #086de3;
}

.feiyiNews .feiyiNews-item .activity_list {
  display: flex;
  justify-content: space-between;
}

.feiyiNews .feiyiNews-item .activity_list li {
  width: 210px;
  box-shadow: none;
  margin-top: 20px;
}

.feiyiNews .feiyiNews-item .activity_list li .img {
  width: 210px;
  height: 150px;
  border-radius: 5px;
}

.feiyiNews .feiyiNews-item .activity_list li h3 {
  padding: 10px 5px 0;
  font-size: 16px;
  color: #606b7a;
  width: 100%;
  /* 文本强制不换行 */
  white-space: nowrap;
  /* 超出部分隐藏 */
  overflow: hidden;
  /* 用省略号来代表被修剪的文本 */
  text-overflow: ellipsis;
}

.box_service {
  background-color: rgba(237, 246, 255, 1);
  width: 100%;
  margin-top: 30px;
}

.box_service .wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.box_service .wrapper .item {
  width: 381px;
  margin-top: 20px;
}

.box_service .wrapper .item .tit {
  width: 100%;
  height: 40px;
  background: url('../images/bg6.png') no-repeat;
  background-size: 100% 100%;
  background-position: right bottom;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box_service .wrapper .item .tit h3 {
  padding: 0 30px;
  background-color: rgba(0, 113, 227, 1);
  color: #fff;
  height: 100%;
  line-height: 40px;
}

.box_service .wrapper .item .tit .more {
  font-size: 16px;
  font-weight: normal;
  /* line-height: 56px; */
  font-size: 14px;
  font-weight: 400;
  color: #0071e3;
  /* line-height: 24px; */
  font-weight: bold;
  background: url('../images/re_right.png') no-repeat;
  background-size: 8px 14px;
  background-position: right center;
  margin-right: 10px;
  padding-right: 10px;
}

.box_service .wrapper .item .content {
  padding: 10px 0;
}

.box_service .wrapper .item .content .first {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box_service .wrapper .item .content .first .cover {
  width: 140px;
  height: 100px;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}

.box_service .wrapper .item .content .first .infos {
  width: calc(100% - 150px);
}

.box_service .wrapper .item .content .first .infos h3 {
  font-size: 16px;
  color: #606b7a;
  line-height: 24px;
}

.box_service .wrapper .item .content .first .infos p {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
}

.box_service .wrapper .item .content .news_list .item {
  margin-top: 10px;
}

.box_resource {
  width: 100%;
  /* height: 392px; */
  background: url('../images/bg7.png') no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding-bottom: 30px;
}

.none {
  display: none !important;
}

.box_resource .wrapper {
  display: flex;
  justify-content: space-between;
}

.box_resource .wrapper .left {
  min-width: 114px;
  /* height: 187px; */
}

.box_resource .wrapper .left .item {
  min-width: 114px;
  padding: 0 10px;
  height: 47px;
  font-size: 14px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 47px;
  border-right: 1px solid #9dbdf4;
  cursor: pointer;
}

.box_resource .wrapper .left .item.active {
  background: linear-gradient(to right, #226ee8, transparent);
  border-right: 1px solid #226ee8;
  border-top: 1px solid #9dbdf4;
  border-left: 1px solid #9dbdf4;
  border-bottom: 1px solid #9dbdf4;
  border-right: none;
}

.box_resource .right {
  /* width: calc(100% - 144px); */
  margin-left: 30px;
  flex: 1;
}

.box_resource .right .wrapper_search {
  width: 894px;
  height: 68px;
  background-color: #ffffff;
  border-radius: 5px;
  position: relative;
  background-image: url('../images/icon_search2.png');
  background-repeat: no-repeat;
  background-size: 17px 17px;
  background-position: 20px center;
}

.box_resource .right .wrapper_search input {
  width: 100%;
  height: 100%;
  padding: 0 200px 0 50px;
  font-size: 18px;
  color: #606b7a;
}

.box_resource .right .wrapper_search .btn_search {
  width: 170px;
  height: 68px;
  background: linear-gradient(-90deg, #f98728, #fab13c);
  border-radius: 5px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  color: #ffffff;
  line-height: 68px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.box_resource .right .wrapper_search .btn_search::before {
  display: block;
  content: '';
  width: 22px;
  height: 22px;
  background: url('../images/icon_search.png') no-repeat;
  background-size: 100% 100%;
  margin-right: 10px;
}

.box_resource .right .keywords {
  padding: 19px 0;
  margin-left: 20px;
  border-bottom: 1px solid rgba(157, 189, 244, 1);
  display: inline-block;
}

.box_resource .right .keywords span {
  font-size: 14px;
  color: #ffffff;
}

.box_resource .right .keywords .item {
  cursor: pointer;
  margin-right: 30px;
}

.checkbox {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-left: 20px;
}

.checkbox .item {
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.checkbox .item::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 2px;
  margin-right: 8px;
}

.checkbox .item.active::before {
  background: url('../images/icon_right.png') no-repeat;
  background-size: 100% 100%;
}

.ku {
  display: none;
}

#ku1 {
  display: block;
}

.box_huigu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box_huigu .item {
  width: 48%;
}

.ku_list {
  width: 280px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(8, 109, 227, 0.1);
  border-radius: 10px;
  float: left;
  margin-top: -50px;
  overflow: hidden;
}

.ku_list .el-submenu .el-menu-item {
  height: auto !important;
  line-height: normal;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 20px !important;
  /* white-space: pre-wrap !important; */
  display: flex;
  align-items: center;
  padding-left: 20px !important;
}

.ku_content {
  width: 900px;
  background: #ffffff;
  border-radius: 10px;
  float: right;
  margin-top: -50px;
}

.loadmore {
  margin: 40px auto 20px;
  color: #999;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.is-opened .el-submenu__title {
  background: #7dbeff;
  color: #fff;
  margin: 10px 10px 0;
  border-radius: 5px;
}

.is-opened .el-submenu__title i {
  color: #fff;
}

.menu_icon {
  width: 12px;
  margin-right: 5px;
}

.back_home {
  width: 140px;
  height: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: 0;
  font-size: 18px;
  align-items: center;
  border-radius: 3px;
  color: #0071e3;
  background-color: #fff;
}

.back_home img {
  width: 30px;
  margin-right: 5px;
}

.ku_list_m {
  display: none;
}

@media only screen and (max-width: 750px) {
  .main_cont {
    width: 100%;
  }

  .menu_tab .tit li {
    font-size: 16px;
  }

  .menu_tab .tit .more {
    font-size: 13px;
  }

  .ku_list {
    display: none;
  }

  .ku_content {
    width: 100%;
  }

  .box_huigu .item {
    width: 100%;
  }

  .pic_list .item .cover {
    width: 120px;
    height: 85px;
  }

  .pic_list .item .infos {
    width: calc(100% - 135px);
    height: 85px;
  }

  .pic_list .item .infos p {
    font-size: 13px;
    line-height: 22px;
  }

  .pic_list .item .infos h3 {
    font-size: 15px;
  }

  .ku_list_m {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 100px;
    padding-top: 50px;
    background-color: #ecf5ff;
    transition: top ease 0.35s;
  }

  .el-menu {
    background-color: #ecf5ff !important;
  }

  .el-menu li{
    border-bottom: 1px solid #fff;
  }
  .el-submenu__title{
    font-size: 16px !important;
  }

  .is-opened .el-submenu__title{
    margin: 0;
    color: #333;
  }
  .box_resource .wrapper {
    display: block;

  }
  .box_resource .wrapper .left {
    display: flex;
    width: 100%;
    margin-bottom: 0.1rem;
    box-sizing: border-box;
    padding: 0 0.1rem;
  }
  .box_resource .wrapper .left .item {
    margin: 0 0.05rem;
    padding: 0;
    width: 30%;
    min-width: 0;
    border: 1px solid #9dbdf4;
    overflow: hidden;
  }
  .box_resource .wrapper .left .item.active {
    background: linear-gradient(to right, #226ee8, transparent);
    border-right: 1px solid #226ee8;
    border-top: 1px solid #9dbdf4;
    border-left: none !important;
    border-bottom: 1px solid #9dbdf4;
    border-right: none;
    font-weight: 900 !important;
    font-size: 0.16rem;
    color: #00fff6;
  }
  .wrapper .right {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.2rem;
  }
  .box_resource .right .wrapper_search {
    width: 100%;
    height: 34px;
    background-color: #ffffff;
    border-radius: 5px;
    position: relative;
    background-image: url('../images/icon_search2.png');
    background-repeat: no-repeat;
    background-size: 17px 17px;
    background-position: 20px center;
  }
  .box_resource .right .wrapper_search input {
    width: 100%;
    height: 100%;
    padding: 0 0 0 50px;
    font-size: 18px;
    color: #606b7a;
  }
  .box_resource .right .wrapper_search .btn_search {
    width: 100px;
    height: 34px;
    background: linear-gradient(-90deg, #f98728, #fab13c);
    border-radius: 5px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    color: #ffffff;
    line-height: 68px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .wrapper .right .checkbox {
    margin: 0;
    padding: 0.05rem 0;
  }
  .wrapper .right .keywords {
    margin: 0;
    padding: 0.05rem 0;
  }
  .back_home {
    top: 10px;
    display: none;
  }
  .sp_nav {
    width: 0.4rem;
    /*float:right;*/
    position: absolute;
    cursor: pointer;
    height: 0.2rem;
    margin: 0 0 0 0;
    top: 0.2rem;
    right: 0.2rem;
  }

  .sp_nav span {
    display: block;
    background: #FFFFFF;
    width: 0.25rem;
    height: 3px;
    position: absolute;
    left: 0.15rem;
    transition: all ease 0.35s
  }
  .sp_nav span:nth-of-type(1) {
    top: 0
  }

  .sp_nav span:nth-of-type(2) {
    top: 0.075rem
  }

  .sp_nav span:nth-of-type(3) {
    top: 0.15rem
  }
  .close {
    width: 0.4rem;
    /*float:right;*/
    position: absolute;
    cursor: pointer;
    height: 0.45rem;
    margin: 0 0 0 0;
    top: 0.1rem;
    right: 0.1rem;
  }
  .close span {
    display: block;
    background: #000000;
    width: 0.25rem;
    height: 3px;
    position: absolute;
    left: 0.15rem;
    transition: all ease 0.35s
  }
  .close span:nth-of-type(1) {
    top: 0
  }

  .close span:nth-of-type(2) {
    top: 0.075rem
  }

  .close span:nth-of-type(3) {
    top: 0.15rem
  }
  .close span:nth-of-type(1) {
    top: 0.15rem;
    transform: rotate(45deg)
  }

  .close span:nth-of-type(2) {
    width: 0
  }

  .close span:nth-of-type(3) {
    top: 0.15rem;
    transform: rotate(-45deg)
  }
  .main_cont {
    padding: 0.2rem 0 0 0;
  }
  .box_huigu {
    padding: 0.05rem 0.2rem !important;
  }
  .menu_tab .tit {
    margin-top: 0.1rem;
  }
  .footer .container .left .contact{
    display: flex;
    align-items: center;
  }
  .footer .container .left .contact .tel {
    display: flex;
    margin-right: 0.1rem;
  }
  .footer .container .left .contact .email {
    display: flex;
    background-position: 0;
    padding-left: 0.3rem;
    width: 1rem;
  }
}
