/* 通用 */
body {
  font: 16px '微软雅黑';
  font-family: '微软雅黑';
  font-size: 16px;
  color: #000;
  line-height: 1;
}
body {
  font-family: Microsoft YaHei, Times New Roman, Arial;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  line-height: 1;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
a {
  display: inline-block;
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
}
a,
span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
i {
  display: inline-block;
}
a,
button,
select,
option {
  cursor: pointer;
}
button,
input {
  outline: none;
  border: none;
}
img {
  vertical-align: middle;
}
button img {
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.inner {
  box-sizing: border-box;
  position: relative;
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1400px) {
  .inner {
    width: 100%;
    padding: 0 0.1rem;
  }
}
.w-row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .w-row {
    flex-wrap: wrap;
  }
  .w-row > .w-col {
    width: 100% !important;
  }
  .w-row > .w-col + .w-col {
    margin-top: 30px;
  }
}
/* 头部header 开始 */
.header {
  background: url(../images/header_bg.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
@media (min-width: 993px) {
  .header {
    height: 512px;
  }
}
@media (max-width: 992px) {
  .header {
    padding-bottom: 100px;
  }
}
.header .header_bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  z-index: 1;
  background: url(../images/banner.jpg) no-repeat center;
  background-size: cover;
}
.header .header_bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .header_bg img {
  display: none;
}
.header .header_content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.header .header_info {
  width: 100%;
  padding: 35px 0;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  color: #fff;
}
.header .header_info a {
  padding: 0 10px;
}
.header .header_info a:hover {
  color: #fff;
}
@media (max-width: 1400px) {
  .header .header_info {
    justify-content: center;
    text-align: center;
  }
}
.header .header_main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 993px) {
  .header .header_main {
    margin-top: -80px;
  }
}
.header .header_logo {
  margin-bottom: 10px;
  text-align: center;
}
.header .header_logo img {
  width: 927px;
}
@media (max-width: 992px) {
  .header .header_logo img {
    max-width: 90%;
  }
}
.header .search_box {
  width: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 4px;
}
.header .search_box .search_input {
  outline: none;
  border: none;
  padding: 0 1em;
  flex: 1;
  height: 48px;
  border-radius: 4px 0 0 4px;
  background: transparent;
  font-size: 18px;
  font-weight: normal;
  color: #333;
}
.header .search_box .search_input::placeholder {
  color: #999;
}
.header .search_box .search_btn {
  outline: none;
  border: none;
  flex-shrink: 0;
  width: 90px;
  height: 48px;
  background: linear-gradient(90deg, #86bd25 0%, #0091d2 100%);
  border-radius: 4px;
  font-size: 18px;
  font-weight: normal;
  color: #ffffff;
}
.header .search_box .search_btn img {
  vertical-align: middle;
  margin-top: -3px;
}
.header .search_box .search_btn:hover {
  opacity: 0.7;
}
@media (max-width: 992px) {
  .header .search_box {
    width: 95%;
  }
}
@media (min-width: 993px) {
  .header.index_header {
    height: 100vh;
  }
}
.header.index_header .header_info {
  color: #fff;
  /* background: rgba(0, 145, 210, 0.4); */
}
.header.index_header .header_info:hover {
  color: #fff;
}
@media (min-width: 993px) {
  .header.index_header .header_main {
    margin-top: -170px;
  }
}
/* 头部header 结束 */
.nav_box {
  width: 100%;
  background: url(../images/nav_bg.png) no-repeat bottom center;
  background-size: auto 100%;
}
.nav_box .nav_fir {
  display: flex;
  align-items: center;
}
.nav_box .nav_fir > li {
  position: relative;
  flex: 1;
}
.nav_box .nav_fir > li > a {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  color: #fff;
  transition: all 0.3s;
  position: relative;
}
.nav_box .nav_fir > li > a::after {
  z-index: 1;
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: 96px;
  height: 6px;
  border-radius: 30px 30px 0px 0px;
  background: #c3f5ff;
  opacity: 0;
}
.nav_box .nav_fir > li:hover > a {
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
}
.nav_box .nav_fir > li.cur > a {
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
}
.nav_box .nav_fir > li.cur > a::after {
  opacity: 1;
}
@media (max-width: 992px) {
  .nav_box {
    display: none;
  }
}
/* 移动菜单 开始 */
.menu-btn {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 0;
  z-index: 599;
  width: 50px;
  height: 50px;
}
.menu-btn > span {
  position: absolute;
  left: 0;
  right: 0;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #0091d2;
  border-radius: 2px;
  transition: 0.25s;
}
.menu-btn > span:nth-child(1) {
  top: 18px;
}
.menu-btn > span:nth-child(2) {
  top: 24px;
}
.menu-btn > span:nth-child(3) {
  top: 30px;
}
.menu {
  position: fixed;
  z-index: 598;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  background-color: #f5f5f5;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s;
}
.menu i {
  display: none;
}
.menu > ul {
  margin-top: 70px;
}
.menu > ul > li a {
  position: relative;
  display: block;
  margin: 0 15px;
  padding: 0 15px;
  line-height: 50px;
  font-size: 16px;
  color: #0091d2;
}
.menu > ul > li a::after {
  content: ' ';
  display: inline-block;
  height: 6px;
  width: 6px;
  border-width: 2px 2px 0 0;
  border-color: #ccc;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 10px;
}
.menu > ul > li > a {
  font-weight: bold;
}
.menu > ul > li:nth-child(1) {
  animation-delay: 0.1s;
}
.menu > ul > li:nth-child(2) {
  animation-delay: 0.2s;
}
.menu > ul > li:nth-child(3) {
  animation-delay: 0.3s;
}
.menu > ul > li:nth-child(4) {
  animation-delay: 0.4s;
}
.menu > ul > li:nth-child(5) {
  animation-delay: 0.5s;
}
.menu > ul > li:nth-child(6) {
  animation-delay: 0.6s;
}
.menu > ul > li:nth-child(7) {
  animation-delay: 0.7s;
}
.menu > ul > li:nth-child(8) {
  animation-delay: 0.8s;
}
.menu .menu_list_more ul {
  display: none;
}
.menu .menu_list_more ul a {
  padding-left: 50px;
}
.mask {
  display: none;
  position: fixed;
  z-index: 597;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.2s;
}
.menu-btn.on {
  position: fixed;
  top: 15px;
}
.menu-btn.on > span {
  background: #0091d2;
}
.menu-btn.on > span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.menu-btn.on > span:nth-child(2) {
  opacity: 0;
  transform: rotate(90deg);
}
.menu-btn.on > span:nth-child(3) {
  top: 21px;
  transform: rotate(135deg);
}
.menu.on {
  transform: translate3d(0, 0, 0);
}
.mask.on {
  display: block;
  opacity: 1;
}
@media (max-width: 992px) {
  .menu-btn {
    display: block;
  }
}
/* 移动菜单 结束 */
/* 底部footer 开始 */
.footer {
  padding-bottom: 30px;
  background: #0091d2;
}
.footer .links_box {
  padding: 40px 0;
}
.footer .links_box .links_list > li {
  position: relative;
  width: 19%;
}
.footer .links_box .links_list > li a {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #33a7db;
  line-height: 64px;
  text-align: left;
  padding-left: 1em;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}
.footer .links_box .links_list > li ul {
  z-index: -1;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 64px;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #eee;
  background-color: #fff;
  opacity: 0;
  transform: translate(0, 3px);
  transition: opacity, transform 0.3s;
}
.footer .links_box .links_list > li ul li {
  border-top: 1px solid #eee;
}
.footer .links_box .links_list > li ul a:hover {
  opacity: 0.7;
}
.footer .links_box .links_list > li:hover ul {
  z-index: 9;
  opacity: 1;
  transform: translate(0, 0);
}
.footer .links_box .more_links > a::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: 26px;
  width: 0;
  border-style: solid;
  border-width: 7px 6px 1px 6px;
  border-color: #fff transparent transparent transparent;
  transition: all 0.3s;
}
.footer .links_box .more_links > a:hover::after {
  transform: rotate(90deg);
}
.footer .copyright {
  position: relative;
}
.footer .copyright p {
  text-align: center;
  line-height: 2.5;
  color: #fff;
}
.footer .copyright p span,
.footer .copyright p a {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  margin: 0 10px;
  word-break: keep-all;
}
.footer .copyright p span:nth-child(1),
.footer .copyright p a:nth-child(1) {
  margin-left: 0px;
}
.footer .copyright p a:hover {
  opacity: 0.7;
}
.footer .copyright p img {
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.footer .copyright .gov,
.footer .copyright .jc {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer .copyright .gov {
  left: 0;
}
.footer .copyright .jc {
  right: 0;
}
@media (max-width: 992px) {
  .footer .copyright {
    text-align: center;
  }
  .footer .copyright .gov,
  .footer .copyright .jc {
    margin-top: 10px;
    display: inline-block;
    position: static;
    transform: none;
  }
}
@media (max-width: 992px) {
  .footer .w-row > .w-col + .w-col {
    margin-top: 10px;
  }
}
/* 底部footer 结束 */
/* 滚动条 开始 */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: #bbb;
}
::-webkit-scrollbar-track-piece {
  background-color: #ddd;
}
/* 滚动条 结束 */
.content {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0091d2 120px, rgba(255, 255, 255, 0.5) 600px);
}
@media (max-width: 992px) {
  .tab_pane_mobile .pane ul {
    margin-bottom: 0;
  }
  .tab_pane_mobile a.more {
    display: none !important;
  }
}
.tab_pane_mobile .panel-more {
  display: none;
  margin: 10px 0;
  background: none;
}
.tab_pane_mobile .panel-more a {
  box-sizing: border-box;
  position: relative;
  display: block;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  border: 0.5px solid #e9e9e9;
  background-color: #fff;
  color: #666;
  border-radius: 4px;
  width: 100% !important;
}
.tab_pane_mobile .panel-more a::before,
.tab_pane_mobile .panel-more a::after {
  position: absolute;
  top: 0;
  content: '\2022';
  font-weight: normal;
  font-size: 12px;
  color: #ddd;
  text-shadow: 8px 0 #ddd, -8px 0 #ddd;
  pointer-events: none;
}
.tab_pane_mobile .panel-more a::before {
  left: 30%;
}
.tab_pane_mobile .panel-more a::after {
  right: 30%;
}
@media (max-width: 992px) {
  .tab_pane_mobile .panel-more {
    display: block;
  }
}
.tab_pane {
  position: relative;
}
.tab_pane .more {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  font-size: 18px;
  font-weight: normal;
  color: #000;
}
.tab_pane .more:hover {
  color: #0091d2;
}
.link_box a,
.link_box img {
  display: block;
  width: 100%;
}
.list_t {
  margin-top: -17px;
  margin-bottom: -17px;
}
.list_t li:not(.panel-more) * {
  transition: all 0.3s;
  line-height: 1.5;
}
.list_t li:not(.panel-more) a {
  box-sizing: border-box;
  width: 100%;
  padding: 17px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_t li:not(.panel-more) a:hover .list_text {
  color: #0091d2;
}
.list_t li:not(.panel-more) a:hover .list_text::after {
  border-left: 10px solid #0091d2;
}
.list_t .list_text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: normal;
  color: #000;
  padding-left: 20px;
  position: relative;
}
.list_t .list_text::after {
  transition: all 0.3s ease;
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #bccbd9;
  border-right: 10px solid transparent;
}
.list_t .date {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: normal;
  color: #999;
  margin-left: 30px;
}
@media (max-width: 600px) {
  .list_t .date {
    display: none;
  }
}
.list_date li {
  box-sizing: border-box;
}
.list_date li > a {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_date li span {
  box-sizing: border-box;
  transition: all 0.3s;
  display: inline-block;
  width: 100%;
}
.list_date li .left {
  position: relative;
  flex: 0 0 83px;
  height: 83px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.list_date li .left .left_top {
  font-size: 30px;
  font-weight: bold;
  color: #0091d2;
  line-height: 1;
  margin-bottom: 10px;
}
.list_date li .left .left_bottom {
  font-size: 14px;
  font-weight: normal;
  color: #0091d2;
  line-height: 1;
}
.list_date li .right {
  width: calc(100% - 83px);
  padding: 10px 18px;
}
.list_date li .right .right_top {
  font-size: 18px;
  font-weight: normal;
  color: #000;
  line-height: 2;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.list_date li .right .right_bottom {
  max-height: 56px;
  font-size: 14px;
  font-weight: normal;
  color: #666;
  line-height: 2;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.list_date li:hover > a {
  background: linear-gradient(90deg, #e6f6ff 0%, #ffffff 100%);
}
.list_date li:hover .right_top {
  color: #0091d2;
}
.main_title1 {
  margin-bottom: 30px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
}
.main_title1 .text {
  flex-shrink: 0;
  margin-right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
}
.main_title1 .deco {
  flex: 1;
  display: inline-block;
  width: 100%;
  height: 12px;
  background: url(../images/title_deco.png) no-repeat center left;
  background-size: auto 12px;
}
.tab_style1 {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 50px;
}
.tab_style1 li a:not(.more) {
  width: 176px;
  display: inline-block;
  border-radius: 0px 24px 0px 0px;
  font-size: 22px;
  font-weight: normal;
  color: #000;
  padding: 0 10px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.tab_style1 li:hover a:not(.more),
.tab_style1 li.cur a:not(.more) {
  background: #0091d2;
  font-weight: bold;
  color: #fff;
}
.tab_style2 {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  border-bottom: 2px solid #f2f2f2;
}
.tab_style2 li + li {
  margin-left: 46px;
}
.tab_style2 li a:not(.more) {
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: normal;
  color: #000;
  position: relative;
}
.tab_style2 li a:not(.more)::after {
  z-index: 1;
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 6px;
  border-radius: 30px 30px 0px 0px;
  background: #0091d2;
  opacity: 0;
}
.tab_style2 li.cur a:not(.more) {
  font-weight: bold;
  color: #0091d2;
}
.tab_style2 li.cur a:not(.more)::after {
  opacity: 1;
}
.tab_style2 .more {
  top: 0;
  transform: none;
}
.paper_box {
  position: relative;
  border-radius: 8px;
  background: #ffffff;
  padding: 30px;
}
.sidebar {
  width: 100%;
  height: 100%;
}
.sidebar .sidebar_header {
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  padding: 0 8px;
}
.sidebar .sidebar_header span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 8px 7px 0px 0px;
  background: linear-gradient(90deg, #86bd25 0%, #0091d2 100%);
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.sidebar .sidebar_menu {
  padding-top: 5px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 8px 8px 0px 0px;
  background: #edf9ff;
  overflow: hidden;
}
@media (min-width: 993px) {
  .sidebar .sidebar_menu {
    min-height: 689px;
  }
}
.sidebar .sidebar_menu span {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: 1.1;
}
.sidebar .sidebar_menu > li {
  box-sizing: border-box;
  width: 100%;
  position: relative;
}
.sidebar .sidebar_menu > li > a {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 48px;
  line-height: 48px;
  border-radius: 8px;
  text-align: center;
  padding: 0 10px;
  font-size: 18px;
  font-weight: normal;
  color: #0091d2;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.sidebar .sidebar_menu > li.cur > a,
.sidebar .sidebar_menu > li:hover > a {
  background: #0091d2;
  color: #fff;
}
.list_title_top {
  position: relative;
}
.list_title_top .where {
  position: absolute;
  top: 0;
  right: 0;
}
.where {
  margin-bottom: 30px;
  padding-left: 25px;
  background: url(../images/icon_where.png) no-repeat left 2px;
  background-size: 20px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #cccccc;
}
.where a {
  padding: 0 5px;
  color: #7f7f7f;
}
.where a:hover {
  color: #0091d2;
}
.where .cur {
  color: #0091d2;
}
.pages {
  margin-top: 40px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  color: #333;
}
.pages a,
.pages span,
.pages input {
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: #edf9ff;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 0 14px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.pages a:hover,
.pages a.current,
.pages span.current {
  background-color: #0091d2;
  color: #fff !important;
}
.pages input {
  width: 68px;
  vertical-align: bottom;
}
.article_content p {
  color: #333333;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 1.8px;
}
