/* common */
html {
  background-color: #f7f7f7;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container::before,
.container::after {
  display: none !important;
}
.ny-container {
  margin-bottom: 80px;
}
.ny-wrap {
  padding: 22px 0 50px 0;
}
.flex {
  display: flex;
}
.flex-box {
  display: flex;
  align-items: center;
}
.flex-none {
  flex: none;
}
.flex-grow-1 {
  flex: 1;
  min-width: 0;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-between {
  justify-content: space-between;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content: center;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reserve {
  flex-direction: column-reverse;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reserve {
  flex-direction: row-reverse;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-align-baseline {
  align-items: baseline;
}
.flex-end {
  justify-content: flex-end;
}
.no-break {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-clamp-2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-container,
.ny-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
.ny-container {
  padding: 0 10px 30px 10px;
}

/* header */
.header {
  z-index: 3;
  position: sticky;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: url('common_res/bg-header.png') no-repeat center center;
  background-size: cover;
  transition: all 0.7s ease-out 0s;
}
.header-top {
  display: none;
  height: 110px;
  border-bottom: 1px #048c52 solid;
  transition: height 0.3s ease-in-out;
}
/*.header-active .header-top {
  height: 90px;
}*/
.ny-index .header-top {
/*  height: 90px;*/
  transition: none;
}
.header-top>.index-container {
  height: 100%;
}
.header .logo {
  width: 580px;
  height: 94px;
}
.header .logo img {
  width: 100%;
	height: 100%;
}

.header .nav {
  display: none;
  height: 80px;
}
.header .nav a {
  display: block;
  color: #fff;
}
.header .nav-item {
  position: relative;
  flex: 1;
  text-align: center;
}
.header .nav-item-icon {
  display: block;
  margin: 0 auto;
  height: 34px;
}
.header .nav-item-active {
  background-color: #069546;
}
.header .nav-item>a {
  height: 80px;
  padding-top: 12px;
  box-sizing: border-box;
}
.header .nav .nav-item__second {
  z-index: 9;
  position: absolute;
  left: -30%;
  top: 90px;
  width: 160%;
  background-color: rgba(21, 110, 56, 0.9);
  color: #fff;
}
.header .nav .nav-item__second a {
  position: relative;
  font-size: 18px;
  color: #fff;
  line-height: 60px;
  text-align: center;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding: 0 13px;
  box-sizing: border-box;
  transition: height 0.5s ease-in;
}
.header .nav .nav-item__second a::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: '';
  width: 10px;
  height: 10px;
  border-width: 0 1px 1px 0;
  border-color: #fff;
  border-style: solid;
  transform: translateY(-50%) rotate(-45deg);
}
.header .nav .nav-item:hover {
  background-color: #069546;
}
.header .nav .nav-item__second a:hover {
  background-color: #069546;
}


/* mobile nav */
.header-mobile {
  width: 100%;
  padding: 10px 0;
}
.header-mobile-logo {
  width: 68%;
}
.header-mobile-logo img {
  width: 100%;
  height: auto;
}
.header .menu-open,
.header .menu-close {
  height: 36px;
  cursor: pointer;
}
.header .menu-open img,
.header .menu-close img {
  width: auto;
  height: 100%;
}
.header .menu-close {
  margin: 10px;
}
.header .menu-wrap {
  z-index: 999;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  transition: right 0.5s ease-out;
}
.header-en .menu-wrap {
  width: 90%;
}
.header .menu-scroll {
  height: calc(100% - 120px);
  padding-bottom: 100px;
  background-color: #fff;
  overflow-y: scroll;
}
.header .menu-item {
  position: relative;
  border-bottom: 1px #e5e5e5 solid;
}
.header .menu-item a {
  display: inline-block;
  font-size: 20px;
  color: #333;
  line-height: 48px;
  padding-left: 20px;
  width: 100%;
}
.header .menu-item__icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
}
.header .menu-item__icon-wrap .menu-item__icon {
  position: absolute;
  right: 20px;
  border: solid #afafaf;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
}
.header .menu-item__icon-wrap .menu-item__icon--up {
  display: none;
  top: 18px;
  transform: rotate(-135deg);
}
.header .menu-item__icon-wrap .menu-item__icon--down {
  top: 14px;
  transform: rotate(45deg);
}
.header .menu-item .menu-item__second>a {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s linear;
  font-size: 16px;
  color: #666;
  line-height: 38px;
  padding-left: 30px;
}



/* footer */
footer {
  background: url('common_res/bg-footer.png') no-repeat 0 0;
  background-size: cover;
}
.footer-links {
  border-bottom: 1px #0a9350 solid;
  padding-bottom: 10px;
}
.footer-links-title {
  font-size: 20px;
  color: #fff;
  line-height: 60px;
}
.footer-links-list a {
  font-size: 14px;
  color: #fff;
  line-height: 22px;
  padding-right: 20px;
}
.footer-info {
  text-align: center;
  padding: 10px 0;
}
.footer-info span {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}


/* ny-section */
.ny-section {
  padding-bottom: 50px;
}


/* common-slide */
.common-slide {
  display: none;
  width: 270px;
  text-align: center;
}
.common-slide-title {
  height: 84px;
  background-color: #156e38;
  font-size: 30px;
  color: #fff;
  line-height: 40px;
}
.common-slide-list {
  min-height: 590px;
}
.common-slide-list .common-slide-list__item {
  cursor: pointer;
}
.common-slide-list__item {
  position: relative;
}
.common-slide-list a {
  z-index: 2;
  position: relative;
  display: block;
  font-size: 18px;
  color: #333333;
  line-height: 70px;
  transition: width 0.7s ease-in;
}
.common-slide .common-slide-list__item--active {
  background-color: #ededed;
}
.common-slide-list__item:hover {
  background-color: #ededed;
}


/* common-news-list */
.common-news-list {
  width: 100%;
  margin-top: 30px;
  padding: 0 10px;
  box-sizing: border-box;
}
.common-news-list .item {
  border-bottom: 1px #eee solid;
  padding: 10px 0;
}
.common-news-list .item-title {
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 32px;
  padding: 0 20px;
}
.common-news-list .item-title::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 0;
  height: 0;
  border-top: 7px transparent solid;
  border-bottom: 7px transparent solid;
  border-left: 7px #d1d1d1 solid;
}
.common-news-list .item-time {
  font-size: 16px;
  color: #666;
  line-height: 32px;
}
.common-news-list .item:hover .item-title {
  color: #156e38;
}
.common-news-list .item:hover .item-title::before {
  border-left-color: #eaab0f;
}


/* common-pagination */
.common-pagination {
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  margin-top: 28px;
}
.common-pagination__item {
  display: inline-block;
  height: 30px;
  padding: 0 10px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  margin-right: 5px;
  color: #515151;
  line-height: 30px;
  cursor: pointer;
}
.common-pagination__item:hover {
  color: #d30b15;
}
.common-pagination__cur {
  color: #fff;
  background-color: #d30b15;
}
.common-pagination__cur:hover {
  color: #fff;
}
.common-pagination__next {
  margin-left: 5px;
}
.common-pagination-list {
  display: inline-block;
}
.pagination-ellipsis-prev,
.pagination-ellipsis-next {
  margin-right: 5px;
}
.common-pagination-form__input {
  width: 53px;
  height: 37px;
  border: 1px #e8e8e8 solid;
  margin: 0 4px;
  box-sizing: border-box;
  text-align: center;
  outline: none;
}
.common-pagination-form__button {
  height: 37px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  padding: 0 10px;
  font-size: 14px;
}
.common-pagination__prev,
.common-pagination__next,
.common-pagination__count,
.common-pagination-form {
  display: none;
}


/* common-pos */
.common-pos-wrap {
  border-bottom: 1px #e6e6e6 solid;
}
.common-pos-wrap .page-title {
  position: relative;
  font-size: 30px;
  color: #383838;
  line-height: 82px;
  font-weight: bold;
}
.common-pos-wrap .page-title::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: '';
  width: 120px;
	height: 2px;
	background-color: #94070a;
}
.common-pos {
  height: 82px;
}
.common-pos .icon-home {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.common-pos .icon-home img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.common-pos .cur {
  font-size: 16px;
  color: #383838;
}
.common-pos .cur-list a {
  position: relative;
  padding: 0 5px;
  font-size: 16px;
  color: #383838;
}
.common-pos .cur-list a::after {
  position: absolute;
  /*content: '>';*/
  font-size: 16px;
  color: #383838;
}
.common-pos .cur-list a:last-child {
  /* color: #999; */
}
.common-pos .cur-list a:last-child::after {
  content: '';
}


/* common-desc */
.common-desc {
  padding: 15px 10px;
}
.common-desc,
.common-desc p,
.common-desc p span,
.common-desc span {
  font-size: 16px;
  color: #333;
  line-height: 30px;
  margin-left: 0 !important;
}
.common-desc img {
  max-width: 100% !important;
  height: auto !important;
}

/*ç¼ˆå©šã€‰*/
.pageNum{width:100%;height: 50px;margin: 50px auto;}
.pageNum a,.pageNum i,.pageNum em,.pageNum span{height: 37px; line-height: 37px; padding: 0 15px; display: inline-block; border: 1px #e8e8e8 solid; background-color: #fff;  margin: 0 3px;color:#515151; }
.pageNum i{background-color: #fff;}
.pageNum a:hover,.pageNum .pative,.pageNum span{color:#fff;background-color:#d30b15;}





.selected1,.parent1,.syy .MMi1 {
    background-color: #069546 !important;
}
.selected2,.parent2 {
    background-color: #ededed !important;
}
.possplit {background: none; width: auto;text-align: center;text-indent: 0px;padding:0 5px;}
.lbyy { min-height:400px; padding-bottom:50px;}
.wp_entry {
    width: 100%;
    line-height: 1.7em;
    font-size: initial;
    color: initial;
    overflow: hidden;
}
.wp_entry a:hover {text-decoration:none;}





