@font-face {
  font-family: AlibabaPuHuiTi;
  src: url(/static/font/AlibabaPuHuiTi-2-55-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font-weight: normal;*/
  font-style: normal;
  line-height: 1;
  vertical-align: baseline;
  list-style: none;
  box-sizing: border-box;
  color: #282828;
  font-family: 'AlibabaPuHuiTi' !important;
}
ul li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: inherit;
  text-decoration: none;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.fz-hide1 {
  /* //溢出隐藏省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* //-webkit-line-clamp:1; 超出几行 */
}
.fz-hide2 {
  /* //溢出隐藏省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* //-webkit-line-clamp:1; 超出几行 */
}
.fz-hide3 {
  /* //溢出隐藏省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* //-webkit-line-clamp:1; 超出几行 */
}
.Header {
  height: 5rem;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 0.875rem;
  position: fixed;
  background-color: #fff;
  z-index: 66;
  justify-content: space-between;
}
.Header .Header-left {
  display: flex;
  align-items: center;
}
.Header .Header-left .logo {
  width: 4rem;
  height: auto;
  margin-right: 0.4rem;
}
.Header .Header-left .name {
  color: #009944;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1rem;
}
.Header .Header-left .enname {
  font-size: 0.6875rem;
  margin-top: 0.4rem;
}
.Header .Header-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
}
.Header .Header-right span {
  display: inline-block;
  width: 2rem;
  height: 0.1875rem;
  border-radius: 0.375rem;
  margin-bottom: 0.375rem;
  background-color: #575b66;
}
.swiper {
  width: 100%;
}
.swiper img {
  width: 100%;
  height: auto;
}
.swiper .swiper-pagination {
  bottom: 5% !important;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff !important;
  opacity: 1;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  height: 10px;
  border-radius: 0.375rem;
  background-color: #fff;
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f2f7f2;
  padding: 0 1.25rem;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}
.footer .logo {
  width: 5rem;
  height: auto;
  margin-bottom: 0.625rem;
}
.footer .name {
  font-size: 1.0625rem;
  font-weight: bold;
  color: #009944;
  margin-bottom: 0.375rem;
}
.footer .en {
  font-size: 0.75rem;
  margin-bottom: 0.625rem;
}
.footer .address {
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.footer .line {
  width: 100%;
  height: 0.0625rem;
  background-color: #dcdcdc;
  margin-bottom: 0.625rem;
}
/* MainNavBox 样式 */
.MainNavBox {
  position: fixed;
  top: 0;
  right: -100%;
  width: 0;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  opacity: 0;
}
.MainNavBox.active {
  right: 0;
  width: 50%;
  opacity: 1;
}
.nav-content {
  padding: 2rem 1.5rem;
}
.nav-content h3 {
  font-size: 1.2rem;
  color: #282828;
  margin-bottom: 1.5rem;
  font-weight: bold;
  border-bottom: 2px solid #009944;
  padding-bottom: 0.5rem;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-list li {
  margin-bottom: 0.8rem;
}
.nav-link {
  display: block;
  padding: 0.8rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}
.actives {
  background-color: #009944;
  color: #fff !important;
}
.nav-link:hover {
  background-color: #009944;
  color: #fff;
  transform: translateX(5px);
}
/* 列表分页 */
.pager {
  margin-top: 1.3em;
}

.pager .pagination {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.pager .pagination li {
  margin-right: .5rem;
}

.pager .pagination li span,
.pager .pagination li a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.375rem;
  text-align: center;
  color: #303133;
  background: #FFFFFF;
  border: .0625rem solid #E4E7ED;
  font-family: Roboto;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .0321rem;
}

.pager .pagination li:first-child span,
.pager .pagination li:first-child a {
  background: #fff url(../img/pager_prev.svg) no-repeat center;
  display: block;
  color: #fff;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0;
  border-radius: 3.75rem;
  -webkit-border-radius: 3.75rem;
  -moz-border-radius: 3.75rem;
  -ms-border-radius: 3.75rem;
  -o-border-radius: 3.75rem;
}

.pager .pagination li:last-child span,
.pager .pagination li:last-child a {
  background: #fff url(../img/pager_next.svg) no-repeat center;
  color: #fff;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0;
  border-radius: 3.75rem;
  -webkit-border-radius: 3.75rem;
  -moz-border-radius: 3.75rem;
  -ms-border-radius: 3.75rem;
  -o-border-radius: 3.75rem;
}

.pager .pagination li.active span,
.pager .pagination li.active a {
  background: #009944;
  color: #fff;
}

/*详情页上一篇下一篇*/
.last_next {
  margin-top: calc(20rem / 16);
  padding-top: calc(20rem / 16);
  border-top: 1px solid #dcdcdc;
}
.last_next a {
  font-family: 'Alibaba PuHuiTi 2.0';
  font-size: calc(16rem / 16);
  font-weight: 400;
  line-height: calc(24rem / 16);
  letter-spacing: 0.02em;
  text-align: left;
  color: #303133;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.last_next a.last_archives {
  background-size: calc(20rem / 16);
  /*padding-left: calc(24rem / 16);*/
}
.last_next a.next_archives {
  background-size: calc(20rem / 16);
  /*padding-right: calc(24rem / 16);*/
}
