.page-wrapper .btn-more {
  display: block;
  width: 120px;
  height: 32px;
  line-height: 32px;
  margin: 0 auto;
  text-align: center;
  border-radius: 4px;
  background-color: rgba(243, 156, 18, 0.85);
  color: #fff;
  font-size: 14px;
  transition: background-color 0.12s linear;
}
.page-wrapper .btn-more:hover {
  background-color: #f39c12;
}
.page-wrapper .btn-more:active {
  opacity: 0.85;
}
.page-header {
  background-color: #fff;
  color: #fff;
}
@media (max-width: 767px) {
  .page-header {
    position: sticky;
    top: 0;
    z-index: 300;
    box-shadow: 0px 1px 10px 0px rgba(8, 8, 8, 0.2);
  }
}
.page-header__top {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header .logo {
  width: 82px;
}
.page-header .phone {
  color: #1ABC9C;
  font-size: 24px;
  margin-right: 72px;
  display: flex;
  align-items: center;
}
.page-header .phone .iconfont {
  font-size: 22px;
  margin-right: 4px;
}
.page-header .btn-navbar {
  width: 32px;
  height: 26px;
  position: fixed;
  right: 16px;
  z-index: 300;
  transition: 0.15s linear;
}
.page-header .btn-navbar span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #1ABC9C;
  transition: 0.15s linear;
}
.page-header .btn-navbar span:nth-child(1) {
  top: 0;
}
.page-header .btn-navbar span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.page-header .btn-navbar span:nth-child(3) {
  top: 24px;
}
.page-header .btn-navbar-show {
  display: block;
  right: 210px;
}
.page-header .btn-navbar-show span {
  background-color: #fff;
}
.page-header .btn-navbar-show span:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}
.page-header .btn-navbar-show span:nth-child(2) {
  opacity: 0;
}
.page-header .btn-navbar-show span:nth-child(3) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}
.page-footer {
  background-color: #1ABC9C;
  color: #fff;
}
.page-footer__top {
  display: flex;
  padding-top: 32px;
  padding-bottom: 32px;
  max-width: 900px;
}
.page-footer__bottom {
  height: 32px;
  line-height: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 12px;
}
.page-footer__logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-footer__logo img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
}
.page-footer__text {
  margin-left: 42px;
}
.page-footer .links-list p {
  font-weight: bold;
}
.page-footer .links-list ul {
  margin-top: 4px;
  font-size: 14px;
}
.page-footer .links-list ul li {
  display: inline-block;
  margin-right: 6px;
}
.page-footer .links-list ul li a {
  display: block;
  padding: 4px 0;
}
.page-row > div {
  margin-bottom: 28px;
}
.bg-gray {
  background-color: #f6f6f6;
}
.navbar-wrapper.show-navbar .navbar-mask {
  height: 100%;
  opacity: 1;
}
.navbar-wrapper.show-navbar .navbar-list {
  transform: translate(0);
}
.navbar-mask {
  position: fixed;
  left: 0;
  top: 50%;
  width: 100%;
  height: 0px;
  transform: translateY(-50%);
  background-color: rgba(51, 51, 51, 0.32);
  z-index: 200;
  transition: 0.15s linear;
}
.navbar-list {
  position: fixed;
  width: 200px;
  top: 0;
  bottom: 0;
  right: 0;
  color: #ffffff;
  z-index: 200;
  background-color: #1ABC9C;
  padding-top: 10px;
  transform: translate(100%);
  transition: 0.15s linear;
}
.navbar-item {
  padding: 0 16px;
  line-height: 36px;
  cursor: pointer;
}
.navbar-item__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-item .icon-arrow {
  transition: 0.16s linear;
}
.sub-navbar-list .navbar-item {
  line-height: 0px;
  overflow: hidden;
  transition: 0.16s linear;
}
.navbar-item.show-sub-navbar > .navbar-item__inner .icon-arrow {
  transform: rotate(90deg);
}
.navbar-item.show-sub-navbar > .sub-navbar-list .navbar-item {
  line-height: 36px;
}
.pc-navbar-wrapper {
  background-color: #1ABC9C;
}
.pc-navbar-list {
  display: flex;
}
.pc-navbar-item {
  position: relative;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.95);
}
.pc-navbar-item a {
  display: block;
  line-height: 42px;
  padding: 0 24px;
}
.pc-navbar-item:hover,
.pc-navbar-item__active {
  color: #ffffff;
  background-color: #F39C12;
}
.pc-navbar-item:hover > .sub-navbar-list,
.pc-navbar-item__active > .sub-navbar-list {
  display: block;
}
.pc-navbar-item .sub-navbar-list {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 1px 10px 0px rgba(8, 8, 8, 0.2);
  display: none;
  padding-bottom: 4px;
  z-index: 200;
}
.sub-navbar-list .pc-navbar-item {
  color: #333333;
  font-size: 14px;
}
.sub-navbar-list .pc-navbar-item a {
  line-height: 38px;
}
.sub-navbar-list .pc-navbar-item:hover {
  color: #ffffff;
}
.page-banner {
  width: 100%;
  height: auto;
}
.page-banner .swiper-slide a,
.page-banner .swiper-slide img {
  display: block;
}
.page-banner .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.85);
  opacity: 1;
  border-radius: 4px;
  transition: width 0.16s linear;
}
.page-banner .swiper-pagination-bullet-active {
  width: 16px;
  background-color: #F39C12;
}
.page-column {
  padding-top: 42px;
  padding-bottom: 60px;
}
.page-column:nth-child(odd) {
  background-color: #f3f3f3;
}
.page-column:nth-child(even) {
  background-color: #fff;
}
.page-column-list {
  margin-top: 42px;
}
.page-column-item {
  display: block;
  border-radius: 4px;
  box-shadow: 0px 1px 10px 0px rgba(8, 8, 8, 0.2);
  transition: transform 0.16s linear;
  cursor: pointer;
  overflow: hidden;
}
.page-column-item:hover {
  transform: translateY(-3px);
}
.page-column-item .cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.page-column-item .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-column-item .text {
  padding: 18px 12px;
}
.page-column-item .text h3 {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-column-item .text p {
  display: -webkit-box;
  font-size: 14px;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.column-title {
  text-align: center;
  color: #1ABC9C;
  font-weight: bold;
  font-size: 32px;
}
@media (max-width: 767px) {
  .column-title {
    font-size: 28px;
  }
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  padding: 24px 0;
  font-size: 0px;
}
.breadcrumb-list .iconfont {
  font-size: 18px;
}
.breadcrumb-list a {
  font-size: 16px;
  line-height: 18px;
  vertical-align: middle;
  margin-left: 5px;
}
.breadcrumb-list a:not(:last-child)::after {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin: 2px;
}
.column-content {
  max-width: 900px;
  padding-bottom: 60px;
}
.artitle-list {
  margin-top: 40px;
}
.artitle-item {
  display: flex;
  margin-bottom: 20px;
}
.artitle-cover {
  flex-shrink: 0;
  width: 30%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
}
.artitle-content {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
}
.artitle-title {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.artitle-title a:hover {
  color: #1ABC9C;
}
.artitle-text {
  flex: 1;
  margin-top: 4px;
  margin-bottom: 4px;
}
.artitle-text p {
  display: -webkit-box;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  color: #333;
  line-height: 24px;
}
.artitle-date {
  flex-shrink: 0;
  font-size: 15px;
  color: #666;
  display: flex;
  align-items: center;
}
.artitle-date .iconfont {
  font-size: 18px;
  margin-bottom: 2px;
  margin-right: 2px;
}
.artitle-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.artitle-pagination li {
  line-height: 32px;
  text-align: center;
  margin-right: 12px;
  border-radius: 2px;
  font-size: 12px;
}
.artitle-pagination li.artitle a {
  color: #ffffff;
  background-color: #F39C12;
  border-color: #F39C12;
}
.artitle-pagination li a {
  color: #666;
  display: block;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border: 1px solid #ddd;
}
.artitle-pagination li a:not([href]) {
  cursor: not-allowed;
}
.artitle-pagination li a[href]:hover {
  color: #ffffff;
  background-color: #F39C12;
  border-color: #F39C12;
}
.artitle-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 42px;
}
.artitle-detail__left {
  width: 70%;
  background-color: #fff;
  padding: 16px 24px;
}
@media (max-width: 767px) {
  .artitle-detail__left {
    width: 100%;
    padding: 12px 16px;
  }
}
.artitle-detail__right {
  width: calc(30% - 42px);
  min-height: 180px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .artitle-detail__right {
    margin-top: 16px;
    width: 100%;
    padding: 12px 16px;
  }
}
.artitle-detail h1 {
  font-size: 24px;
  text-align: center;
  padding: 18px 0;
}
.artitle-other-info {
  font-size: 14px;
  color: #666;
  text-align: center;
}
.artitle-other-info span:not(:first-child) {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .artitle-other-info {
    font-size: 12px;
  }
}
.artitle-randow {
  padding: 16px;
}
.artitle-randow h2 {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.artitle-randow h2::before {
  content: '';
  width: 4px;
  height: 20px;
  background-color: #1ABC9C;
  margin-right: 6px;
}
.artitle-randow ul {
  margin-top: 12px;
  padding-left: 2px;
}
.artitle-randow ul li {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  line-height: 28px;
  font-size: 14px;
  transition: 0.16s linear;
}
.artitle-randow ul li:hover {
  color: #1ABC9C;
  transform: translateX(2px);
}
.artitle-randow ul li:hover::before {
  background-color: #1ABC9C;
}
.artitle-randow ul li a {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.artitle-randow ul li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  background-color: #ccc;
  margin-right: 10px;
}
.feature-list {
  margin-top: 48px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.feature-item .iconfont {
  font-size: 42px;
  color: #1ABC9C;
}
.feature-item p {
  font-size: 18px;
  margin-top: 20px;
  font-weight: bold;
}
