/* common */
html {
  background-color: #f7f7f7;
}
.container {
  width: 1380px;
  margin: 0 auto;
}
.ny-container {
  margin-bottom: 80px;
}
@media screen and (max-width: 1450px) {
  .container {
    width: 1200px;
  }
}
.flex-0 {
  display: flex;
  align-items: center;
}
.flex-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-3 {
  display: flex;
  justify-content: space-between;
}
.flex-4 {
  display: flex;
  flex-wrap: wrap;
}
.flex-5 {
  display: flex;
  justify-content: flex-start;
}
.flex-6 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-7 {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}


/* header */
.header {
  width: 100%;
  height: 180px;
  background-color: #00864e;
  background-size: cover;
}
.header .container {
  height: 100%;
}
.header .logo {
  width: 750px;
  height: 116px;
}
.header .logo img {
  width: 100%;
  height: 100%;
}
.header .motto {
  width: 441px;
  height: 55px;
  margin-top: 20px;
}
.header .motto img {
  width: 100%;
  height: 100%;
}
.header .search {
  width: 441px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px #026433 solid;
  box-sizing: border-box;
  border-radius: 12px;
}
.header .search-icon {
  flex: none;
  position: relative;
  width: 25px;
  height: 25px;
  padding: 0 15px;
  border-right: 1px #ddd solid;
}
.header .search-icon img {
  width: 100%;
  height: 100%;
}
.header .search-input {
  flex: 1;
  height: 50px;
  padding: 0 10px;
}
.header .search-input input {
  width: 100%;
  height: 95%;
  border: none;
  background-color: transparent;
  outline: none;
  color: #333;
}
.header .search-btn {
  flex: none;
  width: 80px;
  height: 50px;
}
.header .search-btn button {
  width: 100%;
  height: 100%;
  border: none;
  color: #fff;
  border-radius: 0 10px 10px 0;
  background-color:#026433;
}
@media screen and (max-width: 1380px) {
  .header .logo {
    width: 593px;
    height: 101px;
  }
  .header .motto {
    width: 384px;
    height: 48px;
  }
}


/* nav */
.nav {
  height: 54px;
  font-size: 18px;
}
.nav a {
  display: block;
  height: 100%;
  font-size: 18px;
  color: #333;
  line-height: 54px;
  padding: 0 14px;
}
.nav a:hover{
  color:#fff;
} 
.nav-item {
  position: relative;
  height: 100%;
float:left;
}
.nav-item-active {
  background-color: #00864e;
}
.nav-item-active a {
  color: #fff;
}
.nav-item__second {
  z-index: 9;
  position: absolute;
  left: -50px;
  width: 150%;
  padding: 0 20px;
  background-color: rgba(0, 134, 78, 0.8);
  color: #fff;
}
.nav-item__second a {
  font-size: 16px;
  color: #fff;
  line-height: 52px;
  text-align: center;
  width: 100%;
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: height 0.5s ease-in;
  margin-left: -20px;
}
.nav-item:hover {
  background-color: #00864e;
}
.nav-item:hover a {
  color: #fff;
}
.nav-item:hover .nav-item__second a {
  height: 52px;
}
.nav-item__second a:hover {
  background-color: #00864e;
}
@media screen and (max-width: 1380px) {
  .nav a {
    padding: 0 10px;
    font-size: 16px;
  }
  .nav-item__second a {
    padding: 0 10px;
    font-size: 16px;
  }
}


/* footer */
.footer {
  background: url('../images/bg-footer.png') no-repeat 0 0;
  background-size: 100% 100%;
}
.footer .links {
  border-bottom: 1px #009159 solid;
  padding: 43px 0 28px 0;
}
.footer .links-title {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  padding: 0 0 22px 0;
}
.footer .links-list-item {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  padding-right: 10px;
}
.footer .links-list-item:hover {
  opacity: 0.8;
}
.footer .info {
  font-size: 16px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  padding: 30px 0 34px 0;
}
.footer .info span {
  padding-right: 10px;
}

/* common-title */
.common-title .title {
  font-size: 36px;
  color: #333;
}
.common-title .more-icon {
  width: 22px;
	height: 22px;
	background-color: rgb(0, 150, 61, 0.3);
  border-radius: 50%;
}
.common-title .more-icon i {
  position: relative;
  display: block;
  width: 10px;
	height: 10px;
	background-color: #00963d;
  border-radius: 50%;
}
.common-title .more-icon i::before {
  position: absolute;
  left: 9px;
  top: 5px;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fccd53;
}
.common-title .more-icon i::after {
  position: absolute;
  left: 9px;
  top: 5px;
  content: '';
  width: 40px;
  height: 1px;
  background-color: #00963d;
}
.common-title .more-text {
  font-size: 14px;
  color: #999;
  padding-left: 42px;
}
.common-title-white .title {
  color: #fff;
}
.common-title-white .more-icon {
  background-color: rgb(255, 255, 255, 0.3);
}
.common-title-white .more-icon i {
  background-color: #fff;
}
.common-title-white .more-icon i::after {
  background-color: #fff;
}
.common-title-white .more-text {
  color: #fff;
}
.common-title .more:hover .more-icon {
  background-color: rgb(255, 255, 255, 0.9);
  transition: all 0.5s linear;
}
.common-title .more:hover .more-icon i {
  background-color: #fccd53;
  transition: all 0.5s linear;
}
.common-title .more:hover .more-icon i::before {
  width: 40px;
  transition: width 0.6s linear;
}
.common-title .more:hover .more-icon i::after {
  opacity: 0;
  transition: opacity 1s linear;
}
.common-title .more:hover .more-text {
  color: #fccd53;
  transition: all 1s linear;
}


/* common-slide */
.common-slide {
  flex: none;
  z-index: 9;
  position: relative;
  width: 280px;
  margin-top: -126px;
}
.common-slide .col_name{
  font-size: 36px;
  color: #f8f8f8;
  line-height: 90px;
  text-align: center;
  background-color: #00963d;
font-weight: normal;
margin-bottom: 0;
}
.common-slide .slide-list {
	min-height: 560px;
  background-color: #fff;
  padding-top: 18px;
  border-width: 0 0 11px 11px;
  border-style: solid;
  border-color: #00963d;
  background-image: url('../images/bg-slide.png');
  background-repeat: no-repeat;
  background-position: center bottom;
}
.common-slide .slide-item {
  font-size: 20px;
  color: #333;
  line-height: 70px;
}

.common-slide .slide-item-active {
  background-color: #00963d;
  color: #fff;
}
.common-slide .slide-item a {
  display: block;
  padding-left: 58px;
}
.common-slide .slide-item:hover {
  background-color: #00963d;
  color: #fff;
}


/* common-content */
.common-content {
  width: 1060px;
  background-color: #fff;
  padding: 0 30px 85px 30px;
  box-sizing: border-box;
}


/* common-position */
.common-position {
  position: relative;
  width: 100%;
  height: 77px;
  border-bottom: 1px #e6e6e6 solid;
}
.common-position-title {
  font-size: 30px;
  color: #383838;
  line-height: 77px;
  font-weight: bold;
  border-bottom: 2px #00864e solid;
}

.common-position-icon {
  width: 25px;
  height: 25px;
  margin-right: 13px;
}
.common-position-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.common-position-cur {
  font-size: 16px;
  color: #333;
  line-height: 90px;
}
.common-position-cur span {
  vertical-align: top;
}
.common-position-cur span:last-child {
  color: #666;
}


/* pagination */
.common-pagination {
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  margin-top: 68px;
}
.common-pagination__item {
  display: inline-block;
  height: 37px;
  padding: 0 20px;
  border: 1px #e8e8e8 solid;
  margin-right: 5px;
  color: #515151;
  line-height: 37px;
  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 {
  display: inline-block;
}
.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;
  border: 1px #e8e8e8 solid;
  padding: 0 10px;
  background-color: transparent;
  font-size: 14px;
}


/* common-desc */
.common-desc,
.common-desc p,
.common-desc p span,
.common-desc span {
  font-size: 21px;
  color: #333;
  line-height: 36px;
}

.common-desc img {
  max-width: 100% !important;
}

@media screen and (max-width: 1450px) {
  .common-content {
    width: 931px;
  }
  .common-slide {
    width: 237px;
    height: 104px;
  }
}
.wp_listcolumn .wp_column a .column-name {
    display: inline-block;
    line-height: 70px;
    padding: 0;
    cursor: pointer;
    text-align: center;
    width: 100%;
}
.wp_listcolumn .wp_column a{background:#fff;border: 0;font-size: 20px;
    color: #333;font-weight:normal;}
.wp_listcolumn .wp_column a.selected {
    color: #fff;
    background-color: #e8e8e8;
    background-image: url(wp_column_menu_li_2.gif);
    background: #00963d;
}
.wp_listcolumn .wp_column a:hover {
    color: #fff;
    background-color: #00963d;
    background-image: url(wp_column_menu_li_2.gif);
  
}
.wp_listcolumn {
    display: block;
    width: 100%;
    border-top: 0;
    border-bottom: 0;
}
.possplit{ background-image: url('../images/row.png');background-size: 60%;
    width: 30px;}
/*翻页*/
.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;}
.focus-pagination {
    position: absolute;
    right: 50% !important;
    bottom: 15px !important;
    z-index: 60;
    height: 20px;
    text-align: center !important;
    margin-right: -690px !important;
    width: 1380px;
}
.focus.focus-box {
    position: relative !important;
}
.focus-page{
width:20px !important;
height:20px !important;
border-radius: 20px !important;
}
.focus-page-active {
background-color: transparent !important;
  background: url('../images/icon-swiper-active.png');
}