/* common */
html {
  background-color: #f7f7f7;
}
.app-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.container::before,
.container::after {
  display: none !important;
}

.flex {
  display: flex;
}
.flex-none {
  flex: none;
}
.flex-1 {
  flex: 1;
  min-width: 0;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-justify-between {
  justify-content: space-between;
}
.flex-justify-around {
  justify-content: space-around;
}
.flex-justify-start {
  justify-content: flex-start;
}
.flex-justify-center {
  justify-content: center;
}
.flex-justify-end {
  justify-content: flex-end;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-align-center {
  align-items: center;
}
.flex-align-end {
  align-items: flex-end;
}
.flex-align-stretch {
  align-items: stretch;
}
.flex-align-baseline {
  align-items: baseline;
}
.flex-align-content-start {
  align-content: flex-start;
}
.flex-align-content-center {
  align-content: center;
}
.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;
}


/* header */
.header {
  width: 100%;
  height: 110px;
  background: url('../images/bg-header.png') no-repeat 0 0;
  background-size: 100% 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.header-fixed {
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
}
.header .app-container {
  height: 100%;
}
.header .logo {
  width: 80%;
}
.header .logo img {
  width: 100%;
}


/* nav */
.nav {
  display: none;
  width: 100%;
  height: 82px;
  transition: all 0.3s ease-in; background:#fff;
}
.nav .app-container {
  height: 100%;
}
.nav .nav-item {
  position: relative;
  flex: 1;
  height: 100%;
}
.nav .nav-item::after {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  content: '';
  width: 0;
	height: 3px;
	background-color: #0ab375;
  transition: width 0.2s ease-in;
}
.nav a {
  display: block;
}
.nav-item>a {
  height: 100%;
  font-size: 18px;
  color: #0ab375;
  text-align: center;
  line-height: 82px;
}
.nav-item>a:hover{
  color:#0ab375;
}
.nav .nav-item__second {
  z-index: 9;
  position: absolute;
  top: 82px;
  left: -15%;
  width: 130%;
  background-color: rgba(9, 178, 117, 0.9);
  color: #f7f7f7;
}
.nav .nav-item__second a {
  position: relative;
  font-size: 18px;
  color: #f7f7f7;
  line-height: 48px;
  text-align: center;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding: 0 13px;
  box-sizing: border-box;
  transition: height 0.5s ease-in;
}
.nav .nav-item:hover>a{
  color: #0ab375;
}
.nav .nav-item:hover::after{
  width: 30px;
}
.nav .nav-item:hover .nav-item__second {
  padding: 22px 0;
}
.nav .nav-item:hover .nav-item__second a {
  height: 48px;
}
.nav .nav-item__second a:hover {
  background-color: #0a9864;
}


/* mobile nav */
.header .menu-open {
  display: block;
  height: 30px;
}
.header .menu-open img,
.menu-wrap .menu-close img {
  width: auto;
  height: 100%;
}
.menu-wrap .menu-close {
  height: 36px;
  cursor: pointer;
  margin: 10px;
}
.menu-wrap {
  z-index: 999;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  transition: right 0.5s ease-out;
}
.menu-scroll {
  height: calc(100vh - 56px);
  background-color: #fff;
  overflow-y: scroll;
}
.menu-item {
  position: relative;
  border-bottom: 1px #e5e5e5 solid;
}
.menu-item a {
  display: inline-block;
  font-size: 20px;
  color: #333;
  line-height: 48px;
  padding-left: 20px;
  width: 100%;
}
.menu-item__icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
}
.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;
}
.menu-item__icon-wrap .menu-item__icon--up {
  display: none;
  top: 18px;
  transform: rotate(-135deg);
}
.menu-item__icon-wrap .menu-item__icon--down {
  top: 14px;
  transform: rotate(45deg);
}
.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-top {
  background-color: #01b171;
  padding: 23px 10px 13px 10px;
  box-sizing: border-box;
}
.footer-links-icon {
  width: 24px;
	height: 16px;
}
.footer-links-icon img {
  width: 100%;
	height: 100%;
  vertical-align: top;
}
.footer-links-title {
  font-size: 18px;
  color: #fff;
  padding-left: 5px;
  font-weight: bold;
  line-height: 1;
}
.footer-links-list {
  padding-top: 20px;
}
.footer-links-list_item {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  padding: 0 7px;
  border-right: 1px #fff solid;
  margin-bottom: 10px;
}
.footer-links-list_item:last-child {
  border-right: none;
}
.footer-links-list_item:hover {
  color: #ffc000;
}
.footer-ewm-img {
  width: 116px;
	height: 116px;
  padding: 8px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.footer-ewm-img img {
  width: 100%;
	height: 100%;
}
.footer-ewm-text {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 20px;
  padding-top: 10px;
}
.footer-bottom {
  background-color: #029962;
  padding: 13px 0;
}
.footer-info {
  font-size: 14px;
  color: #fefefe;
  line-height: 24px;
  text-align: center;
  padding-right: 10px;
}


/* ny-section */
.ny-section {
  padding-bottom: 50px;
}
.ny-section-r {
  width: 0;
}

/* common-slide */
.common-slide {
  display: none;
  width: 270px;
  margin-top: -111px;
}
.common-slide-title {
  height: 111px;
  background-color: #09b275;
  font-size: 32px;
  color: #fff;
  line-height: 40px;
  padding-left: 36px;
  box-sizing: border-box;
}
.common-slide-list {
  min-height: 595px;
  background: url('../images/bg-slide.png') no-repeat center bottom;
  padding: 12px 0;
  box-sizing: border-box;
}
.common-slide-list .common-slide-list__item {
  cursor: pointer;
  border-left: 5px #09b275 solid;
}
.common-slide-list__item {
  position: relative;
}
.common-slide-list__item::before {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 0;
  height: 100%;
  background-color: #09b275;
  transition: width 0.5s ease-in;
}
.common-slide-list a {
  z-index: 2;
  position: relative;
  display: block;
  font-size: 20px;
  color: #333333;
  line-height: 58px;
  padding-left: 36px;
  box-sizing: border-box;
  transition: width 0.7s ease-in;
}
.common-slide .common-slide-list__item--active {
  background-color: #09b275;
}
.common-slide .common-slide-list__item--active a {
  color: #fff;
}
.common-slide-list__item:hover::before {
  width: 100%;
}
.common-slide-list__item:hover a {
  color: #fff;
}


/* common-pos */
.common-pos-wrap {
  display: none;
  border-bottom: 1px #e6e6e6 solid;
  padding: 0 10px;
  box-sizing: border-box;
}
.common-pos-wrap .page-title {
  position: relative;
  font-size: 26px;
  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: #09b275;
}
.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-news-list */
.common-news-list {
  width: 100%;
  margin-top: 30px;
  padding: 0 10px;
  box-sizing: border-box;
}
.common-news-list .item {
  display: block;
  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;
  box-sizing: border-box;
}
.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;
  padding: 0 20px;
  box-sizing: border-box;
}
.common-news-list .item:hover .item-title {
  color: #09b275;
}
.common-news-list .item:hover .item-title::before {
  border-left-color: #09b275;
}


/* 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: #01b171;
}
.common-pagination__cur {
  color: #fff;
  background-color: #01b171;
}
.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-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;
}
.possplit{background: none;width: 20px;}
span.xq {
    padding-left: 20px;
}
.common-slide .common-slide-list__item.selected{
    background-color: #09b275;
}
.common-slide .common-slide-list__item.selected a {
    color: #fff;
}