/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   @include retina(/images/mypic.jpg, 2);
 *   @include retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
  @include retina('/images/title-zfgl.jpg', 2, cover, center center no-repeat);
 *
 * @param  {Value}  $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
html {
  font-size: 16px;
}

@media only screen and (max-width: 576px) {
  html {
    font-size: 14px;
  }
}

h1,
h2,
h3 {
  font-weight: 700;
}

a:link,
a:visited {
  color: #161616;
  text-decoration: none;
}

a:hover {
  color: #a5231d;
}

.button-primary {
  color: #fff !important;
}

.gshadow {
  -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 0.5rem;
}

.gshadow:hover {
  -webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.morelink {
  margin-top: auto;
  margin-bottom: auto;
  min-width: 1.5rem;
  text-align: center;
  display: block;
  opacity: 0.7;
}

.morelink:hover {
  opacity: 1;
}

.bgcover, .jumbotron {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fsection {
  background-color: #f8f9fa;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid #dee2e6;
}

.fsection .section-title {
  color: #134857;
  font-size: 1.64rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.fsection .section-title:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
  margin-bottom: 0;
  visibility: hidden;
}

.fsection:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
  margin-bottom: 0;
  visibility: hidden;
}

.fsection p:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
  margin-bottom: 0;
  visibility: hidden;
}

.link-primary {
  font-size: 1.25rem;
  color: #144a74 !important;
}

.link-primary:after {
  font-family: 'iconfont' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e673';
  position: absolute;
  transition: 0.3s;
}

.link-primary:hover:after {
  transform: translateX(5px);
  transition: 0.3s;
}

.b-bar {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.b-bar:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
  margin-bottom: 0;
  visibility: hidden;
}

.jumbotron {
  background-image: url(/images/bg-reply-texture.jpg);
}

.promos-section {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.promos-section .row > div {
  margin-bottom: 1rem;
}

.promos-section img {
  max-width: none;
  border-radius: 4px;
  width: 100%;
}

.promos-section h3 {
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.breadcrumb {
  padding: 0.3rem 0;
  margin: 0 .5rem;
}

@media (max-width: 768px) {
  .breadcrumb {
    margin: 0;
  }
}

.breadcrumb a {
  color: #adb5bd;
}

.breadcrumb a:last-child {
  color: #134857;
}

.breadcrumb a:hover {
  color: #a5231d;
}

.breadcrumb a + a:before {
  display: inline-block;
  padding-right: 0.8rem;
  padding-left: 0.5rem;
  color: #6c757d;
  content: '/';
}

@media only screen and (max-width: 576px) {
  .breadcrumb a + a:before {
    padding-left: 0;
    padding-right: 0.5rem;
  }
}

@media (max-width: 991px) {
  .order-lg {
    order: -1;
  }
}

.table-list {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.table-list th {
  background-color: #ececec;
  border: 1px solid #d2d2d2;
  padding: 5px 8px;
  text-align: center;
  font-size: 16px;
}

.table-list td {
  background-color: #fff;
  padding: 5px 8px;
  border: 1px solid #ddd;
  font-size: 16px;
  word-break: break-word;
}

.table-list div {
  word-break: break-all;
}

.table-list .tb-row td {
  background-color: #f5f5f5;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
  }
}

body {
  font-family: "Microsoft Yahei", sans-serif, arial;
}

h1,
h2,
h3 {
  font-weight: bold;
}

ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

img,
object,
embed,
video {
  max-width: 100%;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.col-lg-1,
.col-md-1,
.col-sm-1,
.col-1 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-1 .card,
.col-md-1 .card,
.col-sm-1 .card,
.col-1 .card {
  width: 100% !important;
}

.col-lg-2,
.col-md-2,
.col-sm-2,
.col-2 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-2 .card,
.col-md-2 .card,
.col-sm-2 .card,
.col-2 .card {
  width: 100% !important;
}

.col-lg-3,
.col-md-3,
.col-sm-3,
.col-3 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-3 .card,
.col-md-3 .card,
.col-sm-3 .card,
.col-3 .card {
  width: 100% !important;
}

.col-lg-4,
.col-md-4,
.col-sm-4,
.col-4 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-4 .card,
.col-md-4 .card,
.col-sm-4 .card,
.col-4 .card {
  width: 100% !important;
}

.col-lg-5,
.col-md-5,
.col-sm-5,
.col-5 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-5 .card,
.col-md-5 .card,
.col-sm-5 .card,
.col-5 .card {
  width: 100% !important;
}

.col-lg-6,
.col-md-6,
.col-sm-6,
.col-6 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-6 .card,
.col-md-6 .card,
.col-sm-6 .card,
.col-6 .card {
  width: 100% !important;
}

.col-lg-7,
.col-md-7,
.col-sm-7,
.col-7 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-7 .card,
.col-md-7 .card,
.col-sm-7 .card,
.col-7 .card {
  width: 100% !important;
}

.col-lg-8,
.col-md-8,
.col-sm-8,
.col-8 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-8 .card,
.col-md-8 .card,
.col-sm-8 .card,
.col-8 .card {
  width: 100% !important;
}

.col-lg-9,
.col-md-9,
.col-sm-9,
.col-9 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-9 .card,
.col-md-9 .card,
.col-sm-9 .card,
.col-9 .card {
  width: 100% !important;
}

.col-lg-10,
.col-md-10,
.col-sm-10,
.col-10 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-10 .card,
.col-md-10 .card,
.col-sm-10 .card,
.col-10 .card {
  width: 100% !important;
}

.col-lg-11,
.col-md-11,
.col-sm-11,
.col-11 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-11 .card,
.col-md-11 .card,
.col-sm-11 .card,
.col-11 .card {
  width: 100% !important;
}

.col-lg-12,
.col-md-12,
.col-sm-12,
.col-12 {
  max-width: none !important;
  float: left !important;
  padding: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.col-lg-12 .card,
.col-md-12 .card,
.col-sm-12 .card,
.col-12 .card {
  width: 100% !important;
}

.row-clear {
  clear: both;
}

.gd_row {
  overflow: hidden;
}

.container-fiuld {
  width: 100%;
}

.container {
  width: 1200px !important;
  max-width: none !important;
  margin: auto !important;
  padding: 0 !important;
}

.header-wrapper .nav {
  overflow: hidden;
}

.header-wrapper .nav .container {
  width: auto !important;
}

.header-wrapper .nav .navbar-toggler {
  display: none;
}

.header-wrapper .nav .nav-right {
  float: right;
}

.header-wrapper .nav .navbar-nav {
  margin-left: 10px !important;
}

.header-wrapper .nav .navbar-nav li {
  margin-right: 15px !important;
  line-height: 40px !important;
}

.header-wrapper .nav .navbar-nav li a {
  padding: 0 !important;
}

.header-wrapper .nav .nav-right .link-verson {
  font-size: 14px;
  line-height: 40px;
}

.hot li {
  margin-right: 20px !important;
}

.homepage .tab-link .tabs {
  margin-bottom: 10px !important;
  overflow: hidden !important;
  height: 40px !important;
}

.homepage .tab-link .tabs a {
  padding: 5px !important;
}

.homepage .tab-link .panes div {
  padding: 0 !important;
  margin: 0 !important;
}

.homepage .swiper-news {
  height: 265px;
}

.main-banner {
  margin-top: 10px;
}

.gd_row.banner-mid {
  width: 1200px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: 170px !important;
  overflow: hidden;
  margin-top: 15px !important;
  margin-bottom: 20px !important;
}

.gd_row.banner-mid .container {
  padding: 0 !important;
  margin: 0 !important;
}

.gd_row.banner-mid .container .swiper-wrapper {
  width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.gd_row.banner-mid .swiper-slide {
  width: 280px !important;
  margin-left: 10px !important;
  margin-right: 10px !important;
  padding: 0 !important;
}

.gd_row.banner-mid .swiper-slide img {
  box-shadow: none;
}

.swiper-news .swiper-photo {
  background-position: center center;
}

.header .tools {
  display: none;
}

.article_list li {
  margin-bottom: 7px;
}

.col-lg-3,
.col-md-3 {
  width: 270px !important;
  float: left;
}

.col-lg-5,
.col-md-5 {
  float: left;
  width: 470px !important;
}

.col-lg-4,
.col-md-4 {
  float: left;
  width: 370px !important;
}

.col-lg-6,
.col-md-6 {
  float: left;
  width: 570px !important;
}

.col-lg-7,
.col-md-7 {
  float: left;
  width: 630px !important;
}

.col-lg-9,
.col-md-9 {
  float: left;
  width: 870px !important;
}

.gd_row .col-md-6.col-lg-3 {
  width: 270px !important;
}

.gd_row .col-md-12.col-lg-5 {
  width: 470px !important;
}

.gd_row .col-md-6.col-lg-5 {
  width: 470px !important;
}

.gd_row .col-md-6.col-lg-4 {
  width: 370px !important;
}

.banner-row .col-md-3 {
  margin-bottom: 30px;
}

.card {
  float: left;
}

.card .card-title {
  line-height: 1.4;
  max-height: 3rem;
  overflow: hidden;
}

.topic_content {
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}

.topic_content .swiper-news {
  height: 400px;
}

.topic_content .card_right {
  float: right !important;
}

.topic_content .card_content {
  padding: 20px;
}

.row:after,
.container:after,
.card-deck:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
  margin-bottom: 0;
  visibility: hidden;
}

.row .card,
.container .card,
.card-deck .card {
  width: 31%;
  margin-left: 1%;
  margin-right: 1%;
}

.row .card .card-title,
.container .card .card-title,
.card-deck .card .card-title {
  font-size: 18px;
  margin-bottom: 10px;
  max-height: 50px;
  overflow: hidden;
}

.row .card .card-text,
.container .card .card-text,
.card-deck .card .card-text {
  line-height: 1.2;
  max-height: 78px;
  overflow: hidden;
}

.row .card .card-text:last-child,
.container .card .card-text:last-child,
.card-deck .card .card-text:last-child {
  height: auto;
}

.row .card .card-body,
.container .card .card-body,
.card-deck .card .card-body {
  padding: 15px;
}

.card-6 .card {
  width: 15.6%;
  margin-left: .5%;
  margin-right: .5%;
}

.card-3 .card {
  width: 370px;
  margin: 15px;
}

.card-4 .card {
  width: 24%;
  margin-left: .5%;
  margin-right: .5%;
}

.navbar-collapse {
  display: block;
}

.navbar-collapse .navbar-nav li {
  float: left;
}

.gdcic-search {
  float: right;
  margin-top: 5px !important;
  background-image: url(/images/gdcic-search.png) !important;
  background-position: center;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}

.gdcic-search i {
  display: none;
}

.sub-nav .column-nav {
  margin: 15px;
}

.sub-nav .column-nav li {
  float: left;
}

.i-want {
  height: 260px;
}

.i-want h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

.i-want .item li {
  line-height: 35px;
  margin-bottom: 12px !important;
  height: 35px;
  overflow: hidden;
}

.i-want .item li a {
  padding: 0;
}

.i-want .item-list p {
  font-size: 12px;
}

.i-want .item-back {
  top: -35px;
  width: 24px;
  height: 24px;
  background-image: url(/images/i-want-back.png);
  background-repeat: no-repeat;
  background-position: center;
}

.i-want .item-back i {
  display: none;
}

.panel-func a {
  height: 42px;
  line-height: 42px;
  margin-bottom: 3px !important;
  padding: 0 !important;
}

.mailbox .card {
  width: 22%;
}

.media .pic {
  float: left;
}

.news_group_list li:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
  margin-bottom: 0;
  visibility: hidden;
}

.section-app .card {
  min-height: 40px;
}

.data_charts {
  display: none;
}

.theme_qa .card-qa-nav {
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

.topic_content .news-pagination.swiper-pagination {
  bottom: -10px !important;
}

.topic_content .swiper-news {
  padding-bottom: 1rem;
}

.topic_content .swiper-slide {
  background-color: transparent;
}

.print {
  display: none;
}

.header-hero-gov,
.header-hero-zf,
.header-hero-cx,
.header-hero-js {
  margin-bottom: 1rem;
}

.header-hero-gov .header-news,
.header-hero-zf .header-news,
.header-hero-cx .header-news,
.header-hero-js .header-news {
  display: none;
}

.button-primary {
  color: #fff !important;
}

.pagination {
  text-align: center;
}

.pagination a {
  padding-top: 8px;
  padding-bottom: 8px;
}

.section-qa .card {
  min-height: 190px;
}

.mailbox .card {
  min-height: 200px;
}

.mailbox .card .card-title {
  max-height: none;
}

.section-comic {
  background-color: #92b3a5;
}

#subject_header .site_logo {
  float: left;
  width: 100%;
}

#subject_header .site_link {
  float: right;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #subject_header .site_link {
    float: left;
  }
}

.app_housing .card {
  width: 23%;
  margin-left: 1%;
  margin-right: 1%;
  min-height: 40px;
}

.embed-responsive {
  height: 680px !important;
}

.bellows__item {
  float: left;
  width: 200px;
}

.header-wrapper .logo img {
  width: 500px;
  max-width: none;
}

.header-wrapper .t-bar {
  display: none;
}

.sharesheet {
  display: none;
}

.news-title {
  font-size: 24px;
}

.news-container {
  overflow: hidden;
  margin-bottom: 20px;
}

.news-container .main-title h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

.news-container .article_list li {
  background-image: none;
}

.section-title {
  font-size: 20px;
  padding: 15px;
}

.navbar_article {
  max-width: 1170px;
  margin: auto;
  padding: 15px;
  margin-bottom: 20px;
}

.news_group_list li {
  margin-bottom: 20px;
}

.news_group_list li h6 {
  margin-bottom: 5px;
}

.news_group_list li h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.news_group_list li .article_content {
  font-size: 14px;
}

.news_group_list .media-body {
  margin-left: 230px;
}

.pagination-container {
  margin-top: 20px;
  margin-bottom: 20px;
}

.header-hero {
  margin-bottom: 20px;
}

.header-hero .header-hero-subtitle,
.header-hero .header-hero-title {
  left: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
}

.copyright {
  padding-top: 30px;
  padding-bottom: 10px;
  clear: both;
  overflow: hidden;
  color: #868e96;
}

.copyright li {
  margin-right: 10px;
}

.promos-section {
  margin-bottom: 20px;
}

.promos-section .col-md-3 {
  margin-bottom: 20px;
}

.promos-section .col-md-4 {
  margin-bottom: 20px;
  height: 250px;
}

.section-qa {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.section-qa .card {
  height: 150px;
}

.mailbox {
  padding-bottom: 20px;
}

.mailbox .section_title_intro {
  margin-left: auto;
  margin-right: auto;
}

.section-next-episode {
  padding-bottom: 20px;
}

.section-next-episode .col-5 {
  float: left;
}

.section-next-episode .col-6 {
  float: left;
}

.policy_list {
  background-color: #376d27;
  padding-bottom: 20px;
}

.graphic_policy {
  padding-bottom: 20px;
}

.comic-slider {
  height: 450px;
  overflow: hidden;
  padding-bottom: 20px;
}

.comic-slider .swiper-slide {
  height: 400px !important;
}

.card-img {
  background-image: none;
  display: none;
}

.app_housing .col-sm-6 {
  width: 550px;
  float: left;
}

.app_housing .button {
  margin-bottom: 10px;
}

.app_housing .button:hover {
  color: #111;
}

#notice {
  display: none;
}

.panel-func-tablet {
  display: none;
}
