.hide {
  display: none;
}
.header {
  height: 741px;
  background: url(../images/bg_pub_header.png) no-repeat;
  background-size: 100% 100%;
  padding-top: 70px;
}
.header .top {
  display: flex;
  justify-content: space-between;
}
.header .top .logo {
  width: 562px;
  height: 113px;
}
.header .top .back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 41px;
  background-color: #ffffff;
  border-radius: 17px;
  font-size: 16px;
  color: #00569d;
  font-weight: 700;
  margin-top: 20px;
}
.header .gov_title {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.layout {
  padding: 50px;
  background-color: #f2f2f2;
  margin-top: -300px;
}
.layout .disclosure_search {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.layout .disclosure_search .search_web {
  display: flex;
  width: 514px;
  height: 54px;
  background-color: #fff;
  border: 2px solid #3874b4;
  border-radius: 10px;
  overflow: hidden;
}
.layout .disclosure_search .search_web .search_text {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  padding: 0 30px;
}
.layout .disclosure_search .search_web .search_button {
  width: 62px;
  height: 100%;
  background: url(../images/disc_search_icon.png) no-repeat;
  background-size: 40px;
  background-position: center;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.layout .disclosure_search::before {
  content: "";
  width: 242px;
  height: 2px;
  background-color: #d3dce5;
  margin-right: 20px;
}
.layout .disclosure_search::after {
  content: "";
  width: 242px;
  height: 2px;
  background-color: #d3dce5;
  margin-left: 20px;
}
.layout .inner {
  margin-top: 84px;
}
.layout .inner::after {
  content: "";
  display: table;
  clear: both;
}
.layout .inner .side {
  float: left;
  width: 252px;
  margin-right: 20px;
}
.layout .inner .side .side_item {
  width: 100%;
  background-color: #fff;
  margin-bottom: 16px;
}
.layout .inner .side .side_item .side_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 75px;
  font-size: 18px;
  color: #2d66a5;
  padding: 0 30px;
  cursor: pointer;
}
.layout .inner .side .side_item .side_link .left {
  display: flex;
  align-items: center;
}
.layout .inner .side .side_item .side_link .left img {
  width: 42px;
  height: 44px;
  margin-right: 22px;
}
.layout .inner .side .side_item .side_link .default_element {
  display: block;
}
.layout .inner .side .side_item .side_link .active_element {
  display: none;
}
.layout .inner .side .side_item .side_link .symbol {
  font-size: 30px;
  font-weight: 700;
}
.layout .inner .side .side_item .side_link:hover {
  background-color: #2d66a5;
  color: #fff;
}
.layout .inner .side .side_item .side_link:hover .active_element {
  display: block;
  font-size: 40px;
}
.layout .inner .side .side_item .side_link:hover .default_element {
  display: none;
}
.layout .inner .side .side_item.active .side_link {
  background-color: #2d66a5;
  color: #fff;
}
.layout .inner .side .side_item.active .side_link .active_element {
  display: block;
  font-size: 40px;
}
.layout .inner .side .side_item.active .side_link .default_element {
  display: none;
}
.layout .inner .side .side_item.active .columns {
  display: block;
}
.layout .inner .side .side_item .columns {
  display: none;
  width: 100%;
  border: 1px solid #ddd;
  padding: 15px 10px;
}
.layout .inner .side .side_item .columns li {
  font-size: 15px;
  margin-bottom: 3px;
}
.layout .inner .side .side_item .columns li .columns_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 35px;
  color: #333;
  padding: 0 15px 0 30px;
  cursor: pointer;
}
.layout .inner .side .side_item .columns li .columns_link .symbol {
  font-size: 18px;
  color: #2d66a5;
}
.layout .inner .side .side_item .columns li .columns_link .default_symbol {
  display: block;
}
.layout .inner .side .side_item .columns li .columns_link .active_symbol {
  display: none;
}
.layout .inner .side .side_item .columns li .columns_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  background-color: #e4e4e4;
}
.layout .inner .side .side_item .columns li .columns_link:hover {
  color: #2d66a5;
  background-color: #e6f5ff;
}
.layout .inner .side .side_item .columns li .columns_link:hover::before {
  background-color: #2d66a5;
}
.layout .inner .side .side_item .columns li .columns_link:hover .default_symbol {
  display: none;
}
.layout .inner .side .side_item .columns li .columns_link:hover .active_symbol {
  display: block;
}
.layout .inner .side .side_item .columns li.selected .columns_link {
  color: #00569d;
  background-color: #e6f5ff;
}
.layout .inner .side .side_item .columns li.selected .columns_link::before {
  background-color: #2d66a5;
}
.layout .inner .side .side_item .columns li.selected .columns_link .default_symbol {
  display: none;
}
.layout .inner .side .side_item .columns li.selected .columns_link .active_symbol {
  display: block;
}
.layout .inner .side .side_item .columns li.selected .sub_columns {
  display: block;
}
.layout .inner .side .side_item .columns li .sub_columns {
  display: none;
  padding: 5px 30px;
  line-height: 35px;
}
.layout .inner .side .side_item .columns li .sub_columns .sub_item {
  position: relative;
  display: block;
  font-size: 14px;
  color: #999;
}
.layout .inner .side .side_item .columns li .sub_columns .sub_item:hover {
  color: #00569d;
}
.layout .inner .side .side_item .columns li .sub_columns .sub_item::before {
  content: "-";
}
.layout .inner .main {
  float: right;
  width: 925px;
  padding: 36px 30px;
  background-color: #fff;
}
.disc_guide .disc_guide_head {
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}
.disc_guide .disc_guide_head .disc_guide_title {
  font-size: 32px;
  color: #2d66a5;
  text-align: center;
}
.disc_guide .disc_guide_head .disc_guide_other {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #999;
  margin-top: 20px;
}
.disc_guide .disc_guide_text {
  margin-top: 20px;
  max-height: 700px;
  overflow-y: auto;
}
.disc_guide .disc_guide_text::-webkit-scrollbar-corner {
  width: 0;
}
.disc_guide .disc_guide_text::-webkit-scrollbar {
  width: 16px;
  height: 16px;
  background: transparent;
}
.disc_guide .disc_guide_text::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-left: 1px solid rgba(244, 244, 244, 0.14);
}
.disc_guide .disc_guide_text::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 4px solid transparent;
  background-clip: content-box;
  background-color: #2d66a5;
}
.disc_single .disc_single_title {
  color: #fff;
  border-bottom: 1px solid #ddd;
}
.disc_single .disc_single_title .text {
  display: inline-block;
  height: 35px;
  background-color: #2d66a5;
  padding: 0 25px;
  text-align: center;
  line-height: 35px;
  font-weight: 700;
}
.disc_single .disc_single_list {
  width: 100%;
  margin-top: 20px;
}
.disc_single .disc_single_list .list_head {
  display: flex;
  align-items: center;
  height: 47px;
  background-color: #f2f6fa;
}
.disc_single .disc_single_list .list_head .head_item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  color: #2d66a5;
}
.disc_single .disc_single_list .list_head .xh {
  width: 60px;
  border-bottom: 5px solid #236caf;
}
.disc_single .disc_single_list .list_head .bt {
  flex: 1;
  border-bottom: 5px solid #32b9e6;
}
.disc_single .disc_single_list .list_head .fbrq {
  width: 140px;
  border-bottom: 5px solid #236caf;
}
.disc_single .disc_single_list li {
  display: flex;
  align-items: center;
  height: 65px;
  font-size: 14px;
  color: #333;
  background-color: #f4f8fb;
  border-bottom: 1px solid #d4d6d7;
}
.disc_single .disc_single_list li .xh {
  width: 60px;
  text-align: center;
}
.disc_single .disc_single_list li .bt {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  background-color: #fff;
  color: #333;
  padding: 0 20px;
}
.disc_single .disc_single_list li .bt:hover {
  color: #236caf;
}
.disc_single .disc_single_list li .fbrq {
  width: 140px;
  text-align: center;
}
.disc_single .paging {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.disc_single .paging a {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #fff;
  border: 1px solid #ebebeb;
  color: #bdbdbd;
  font-size: 14px;
  border-radius: 4px;
}
.disc_single .paging a:hover {
  background-color: #2d66a5;
  color: #fff;
}
.disc_single .paging .active {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #2d66a5;
  color: #fff;
  font-size: 14px;
  border: 1px solid #2d66a5;
  border-radius: 4px;
}
.disc_single .paging .jump-ipt {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #fff;
  border: 1px solid #ebebeb;
  outline: none;
  color: #2d66a5;
  font-size: 14px;
}
.disc_single .check_more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.disc_single .check_more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  background-color: #f2f2f2;
  font-size: 14px;
  color: #333;
}
.disc_single .check_more a:hover {
  background-color: #236caf;
  color: #fff;
}
.leader .disc_single_title {
  color: #fff;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.leader .disc_single_title .text {
  display: inline-block;
  height: 35px;
  background-color: #2d66a5;
  padding: 0 25px;
  text-align: center;
  line-height: 35px;
  font-weight: 700;
}
.leader .leader_list li {
  height: 249px;
  margin-bottom: 40px;
}
.leader .leader_list li a {
  display: flex;
  height: 100%;
}
.leader .leader_list li a .pic {
  width: 209px;
  height: 249px;
  margin-right: 30px;
}
.leader .leader_list li a .content {
  flex: 1;
}
.leader .leader_list li a .content .name {
  font-size: 28px;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
}
.leader .leader_list li a .content .desc {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}
.leader .leader_list li a .content .dutes {
  font-size: 20px;
  color: #666;
}
