.primary-bg {
  background-color: #00A651;
}
.dark-bg {
  background-color: #000000;
}
.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
  margin-top: 80px;
  color: #ffffff;
}
.pagination li {
  display: inline-block !important;
  border-radius: 4px;
}
.pagination a,
.pagination .current {
  color: #ffffff;
  padding: 8px 12px;
  line-height: 18px;
  display: block;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
  text-decoration: none;
  border-radius: 4px;
}
.pagination .disabled a:link,
.pagination .disabled a:visited,
.pagination .disabled a:hover {
  cursor: not-allowed;
  pointer-events: none;
  color: #EBEBEB;
}
.pagination .active,
.pagination .current {
  pointer-events: none;
  background-color: #00A651;
}
.pagination .active,
.pagination a:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
/* 单行省略 */
.single-line-ellipsis {
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 隐藏超出部分 */
  text-overflow: ellipsis;
  /* 显示为省略号 */
}
/* 多行省略 -webkit-line-clamp只在Chrome、Safari和iOS Safari中支持*/
.multi-line-ellipsis-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 显示几行 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.background {
  background: url() no-repeat center / cover;
}
.trbl0 {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.text-center {
  text-align: center;
}
.text-white {
  color: #ffffff;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
img {
  max-width: 100%;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
.header {
  background: #000000;
}
.header .container {
  height: 98px;
  display: flex;
  align-items: center;
}
.header .container .logo img {
  height: 68px;
  display: block;
}
.header .container .nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
}
.header .container .nav .nav-item {
  padding: 0 2.5%;
  line-height: 68px;
  position: relative;
}
.header .container .nav .nav-item a {
  color: #ffffff;
  text-decoration: none;
}
.header .container .nav .nav-item a i {
  display: none;
}
.header .container .nav .nav-item.on > a,
.header .container .nav .nav-item:hover > a {
  color: #00A651;
  font-weight: 600;
}
.header .container .nav .nav-item .sub-nav {
  line-height: normal;
  position: absolute;
  background-color: #ffffff;
  padding: 12px;
  top: 60px;
  margin-left: -12px;
  z-index: 99;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 1px rgba(228, 228, 228, 0.5);
  display: none;
}
.header .container .nav .nav-item .sub-nav::after {
  content: "";
  position: absolute;
  border: 16px solid #ffffff;
  border-bottom: transparent;
  border-right: transparent;
  top: 0;
  margin-top: -8px;
  margin-left: -8px;
  left: 50%;
  transform: rotateZ(45deg);
}
.header .container .nav .nav-item .sub-nav .sub-nav-item a {
  color: #333333;
}
.header .container .nav .nav-item .sub-nav .sub-nav-item + .sub-nav-item {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #E7E7E7;
}
.header .container .nav .nav-item .sub-nav .sub-nav-item.on > a,
.header .container .nav .nav-item .sub-nav .sub-nav-item:hover > a {
  color: #00A651;
  font-weight: 600;
}
.header .container .nav .nav-item:hover .sub-nav {
  display: block;
}
.home_banner {
  position: relative;
}
.home_banner.owl-theme .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.home_banner.owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 4px;
  margin: 5px 15px;
}
.home_banner.owl-theme .owl-dots .owl-dot.active span {
  background: #00A651;
}
.section {
  padding: 7.4% 0;
  background: url() no-repeat center / cover;
}
.section .section-head {
  display: flex;
}
.section .section-head .section-title {
  flex: 1;
  margin-bottom: 8.4%;
}
.section .section-head .section-title .en {
  font-size: 20px;
  color: #DFDFDF;
}
.section .section-head .section-title .cn {
  font-size: 34px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
}
.section .section-head .section-title .cn span {
  position: relative;
  z-index: 2;
}
.section .section-head .section-title .cn::after {
  content: "";
  position: absolute;
  width: 3em;
  height: 10px;
  background-color: #FF8E00;
  bottom: 0;
  left: 2.15em;
}
.section .section-head .section-nav {
  display: flex;
  align-items: flex-start;
  color: #ffffff;
  font-size: 30px;
}
.section .section-head .section-nav .owl-prev {
  margin-right: 20px;
}
.section .section-head .section-nav .owl-prev,
.section .section-head .section-nav .owl-next {
  width: 60px;
  height: 60px;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.section .section-head .section-nav .owl-prev:hover,
.section .section-head .section-nav .owl-next:hover {
  background-color: #00A651;
  border-color: #00A651;
}
.section.activity {
  background-image: url(../images/activity-bg.png);
}
.section.menu {
  background-color: #000000;
  background-image: url(../images/smile.png);
  background-position: right -80px;
  background-repeat: no-repeat;
  background-size: 400px;
  padding-bottom: 0;
}
.slides-activity .item,
.lists_article_activity .activity .item,
.lists_article_new .new .item {
  display: flex;
  color: #ffffff;
}
.slides-activity .item .left,
.lists_article_activity .activity .item .left,
.lists_article_new .new .item .left {
  width: 46%;
  padding-bottom: 39%;
  flex-shrink: 0;
  background: url() no-repeat center / cover;
}
.slides-activity .item .right,
.lists_article_activity .activity .item .right,
.lists_article_new .new .item .right {
  background-color: #ffffff;
  padding: 5.5% 6.3%;
  box-sizing: border-box;
  flex: 1;
}
.slides-activity .item .right .right-title,
.lists_article_activity .activity .item .right .right-title,
.lists_article_new .new .item .right .right-title {
  color: #3a3a3a;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 9%;
}
.slides-activity .item .right .right-content,
.lists_article_activity .activity .item .right .right-content,
.lists_article_new .new .item .right .right-content {
  color: #666666;
  font-size: 14px;
  line-height: 34px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  /* 显示几行 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.slides-activity .item .right .right-content p,
.lists_article_activity .activity .item .right .right-content p,
.lists_article_new .new .item .right .right-content p {
  margin: 0;
}
.slides-activity .item .right .right-btn span,
.lists_article_activity .activity .item .right .right-btn span,
.lists_article_new .new .item .right .right-btn span {
  color: #ffffff;
  background-color: #00A651;
}
.lists_article_activity .activity .item,
.lists_article_new .activity .item,
.lists_article_activity .new .item,
.lists_article_new .new .item {
  padding: 7.3% 0;
}
.lists_article_activity .activity .item .container,
.lists_article_new .activity .item .container,
.lists_article_activity .new .item .container,
.lists_article_new .new .item .container {
  display: flex;
}
.lists_article_activity .activity .item:nth-of-type(2n) .container,
.lists_article_new .activity .item:nth-of-type(2n) .container,
.lists_article_activity .new .item:nth-of-type(2n) .container,
.lists_article_new .new .item:nth-of-type(2n) .container {
  flex-direction: row-reverse;
}
.lists_article_new .new .item .right {
  background-color: transparent;
}
.lists_article_new .new .item .right .right-title {
  color: #ffffff;
}
.lists_article_new .new .item .right .right-content {
  color: #ffffff;
}
.lists_article_new .new .item .right .view-btn span {
  background-color: #ffffff;
  color: #241F20;
}
.lists_article_new .new .item .right .view-btn:hover span {
  background-color: #00A651;
  color: #ffffff;
}
.lists_article_new .package .item {
  background-image: none;
}
.lists_article_new .package .item .container {
  justify-content: flex-end;
  position: relative;
}
.lists_article_new .package .item .left {
  width: 48%;
  height: 91.5%;
  position: absolute;
  left: 0;
  top: 94px;
  padding-bottom: 0;
}
.lists_article_new .package .item .right {
  flex: none;
  background-color: #403F3F;
  width: 72%;
  height: 420px;
  padding-left: 26.3%;
}
.lists_article_new .package .item .right .right-content {
  color: #CFCFCF;
}
.lists_article_new .package .item .right .right-price {
  font-size: 24px;
  color: #FF8E00;
}
.lists_article_new .package .item:nth-of-type(2n) .container .left {
  left: auto;
  right: 0;
}
.lists_article_new .package .item:nth-of-type(2n) .container .right {
  padding-right: 26.3%;
  padding-left: 6.3%;
}
.smile-bg {
  background: url() no-repeat center / cover;
  background-position: right 0;
  background-repeat: no-repeat;
  background-size: 25%;
  background-color: #000000;
}
.smile-bg > * {
  background-color: transparent !important;
}
.restaurant {
  display: flex;
  flex-wrap: wrap;
}
.restaurant .restaurant-item {
  text-decoration: none;
  color: #ffffff;
  border: 2px dashed #979797;
  box-sizing: border-box;
  width: calc((100% - 3.834%) / 2);
  margin-right: 3.834%;
  margin-bottom: 3.834%;
  padding: 24px;
  display: flex;
}
.restaurant .restaurant-item:nth-of-type(2n) {
  margin-right: 0;
}
.restaurant .restaurant-item .img {
  background: url() no-repeat center / cover;
  width: 50%;
  margin-right: 4%;
  padding-bottom: 31%;
  flex-shrink: 0;
}
.restaurant .restaurant-item .text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  overflow: hidden;
}
.restaurant .restaurant-item .text .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4%;
}
.restaurant .restaurant-item .text .tel,
.restaurant .restaurant-item .text .address {
  font-size: 14px;
  margin-top: 5px;
  color: #DBDBDB;
}
.restaurant .restaurant-item .text .tel a,
.restaurant .restaurant-item .text .address a {
  color: #DBDBDB !important;
  text-decoration: none;
}
.restaurant .restaurant-item .text i {
  margin-right: 5px;
}
.restaurant .restaurant-item .text .view-btn span {
  width: 99px;
  height: 36px;
}
.restaurant .restaurant-item .text .view-btn img {
  width: 36px !important;
  height: 36px;
}
.restaurant .restaurant-item:hover {
  border-color: #00A651;
}
.restaurant .restaurant-item:hover .view-btn span {
  background-color: #00A651;
  color: #ffffff;
}
.display .item {
  display: flex;
}
.display .item + .item {
  margin-top: 100px;
}
.display .item .left {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.display .item .left .img {
  background: url() no-repeat center / cover;
  padding-bottom: 100%;
}
.display .item .mid {
  width: calc(40% - 25px);
  padding: 0 25px;
}
.display .item .mid .img {
  background: url() no-repeat center / cover;
  height: 100%;
}
.display .item .right {
  width: calc(40% + 25px);
  display: flex;
  flex-wrap: wrap;
}
.display .item .right .img {
  width: calc((100% - 25px) / 2);
  background: url() no-repeat center / cover;
  padding-bottom: 47%;
  margin-right: 25px;
}
.display .item .right .img:nth-of-type(n+3) {
  margin-top: 25px;
}
.display .item .right .img:nth-of-type(2n) {
  margin-right: 0;
}
.menu2 {
  background-color: #000000;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5.3%;
}
.menu2 .menu2-item {
  width: 25%;
  padding-bottom: 25%;
  position: relative;
  background: url() no-repeat center / cover;
  cursor: pointer;
}
.menu2 .menu2-item .menu2-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  color: #ffffff;
  font-size: 34px;
  background: rgba(0, 169, 70, 0.8);
  opacity: 0;
  transition: all 0.5s;
}
.menu2 .menu2-item:hover .menu2-title {
  opacity: 1;
}
.more-wrap {
  display: flex;
  justify-content: center;
}
.more-wrap .more-btn {
  padding: 1.1% 2.77%;
  background: #FFFFFF;
  color: #241F20;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
.more-wrap .more-btn:hover {
  background-color: #00A651;
  color: #ffffff;
}
.menu2 ~ .more-wrap {
  background-color: #000000;
  padding-bottom: 7.3%;
}
.view-btn {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-top: 6%;
  cursor: pointer;
  color: #333333;
}
.view-btn span {
  background-color: #ffffff;
  width: 140px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-btn img {
  width: 50px !important;
  background-color: #241F20;
}
.view-btn:hover span {
  color: #ffffff;
  background-color: #00A651;
}
.footer {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding: 5.73% 0 5.21%;
}
.footer .first {
  height: 64px;
  display: flex;
  align-items: center;
}
.footer .first .logo img {
  height: 64px;
  display: block;
}
.footer .first .nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
}
.footer .first .nav .nav-item {
  padding: 0 2.5%;
  font-weight: bold;
}
.footer .first .nav .nav-item a {
  color: #ffffff;
  text-decoration: none;
}
.footer .first .nav .nav-item a:hover {
  color: #00A651;
}
.footer .line {
  height: 1px;
  opacity: 0.35;
  background-color: #ffffff;
  margin: 5% 0 2.5%;
}
.footer .second {
  color: #ffffff;
  display: flex;
}
.footer .second .left {
  flex: 1;
}
.footer .second .right a {
  text-decoration: none;
  font-size: 0;
}
.footer .second .right a + a {
  padding-left: 30px;
}
.footer .second .right img {
  width: 20px;
}
.channel-banner {
  height: 475px;
  background: url() no-repeat center / cover;
}
.channel-banner .banner-info {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.channel-banner p {
  margin: 0;
  letter-spacing: 8px;
}
.channel-banner .en {
  font-size: 34px;
  font-weight: bold;
  line-height: 45px;
}
.channel-banner .cn {
  margin-top: 10px;
  font-size: 34px;
  line-height: 45px;
}
.crumb-wrap {
  padding: 50px 0 0;
  background-color: #000000;
  color: #898989;
}
.crumb-wrap a {
  color: #ffffff;
  text-decoration: none;
}
.crumb-wrap a.crumb {
  color: #898989;
}
.siblings {
  background-color: #000000;
  color: #898989;
  padding: 50px 0;
}
.siblings .container {
  display: flex;
  justify-content: center;
}
.siblings .container .siblings-item {
  color: #ffffff;
  text-decoration: none;
  width: 134px;
  height: 52px;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.siblings .container .siblings-item + .siblings-item {
  margin-left: 35px;
}
.siblings .container .siblings-item.on,
.siblings .container .siblings-item:hover {
  background-color: #00A651;
  border-color: #00A651;
}
.content {
  padding: 7.3% 0;
  color: #ffffff;
  line-height: 1.5;
}
.article {
  padding: 0 0 140px;
}
.honor {
  display: flex;
  flex-wrap: wrap;
}
.honor .honor-item {
  width: calc((100% - (2.5% * 2)) / 3);
  margin-right: 2.5%;
  margin-bottom: 2.5%;
  padding: 1.67%;
  flex-shrink: 0;
  box-sizing: border-box;
  text-decoration: none;
}
.honor .honor-item:nth-of-type(3n) {
  margin-right: 0;
}
.honor .honor-item .img {
  background-color: #ffffff;
  background: url() no-repeat center / cover;
  padding-bottom: 100%;
  background-size: contain;
}
.honor .honor-item .text {
  display: flex;
  margin-top: 9%;
  align-items: center;
  padding-bottom: 4.5%;
  border-bottom: 1px solid #979797;
}
.honor .honor-item .text span {
  flex: 1;
  font-size: 20px;
  color: #ffffff;
}
.honor .honor-item .text img {
  width: 40px;
  flex-shrink: 0;
}
.honor .honor-item:hover .text {
  border-color: #00A651;
}
.honor .honor-item:hover .text span {
  color: #00A651;
}
.lists_article_activity .siblings,
.view_article .siblings {
  display: none;
}
.lists_article_activity .crumb-wrap,
.view_article .crumb-wrap {
  padding-bottom: 50px;
}
.view_article .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
.view_article p {
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 1280px) {
  .container {
    width: 970px;
  }
}
@media screen and (max-width: 1080px) {
  .container {
    width: 750px;
  }
  .header .container {
    justify-content: space-between;
  }
  .header .container .nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #ffffff;
    z-index: 99;
    width: 35%;
    min-width: 250px;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    justify-content: flex-start;
    display: none;
  }
  .header .container .nav .close-btn {
    line-height: 40px;
    font-size: 32px;
    text-align: right;
  }
  .header .container .nav .nav-item {
    line-height: 45px;
    border-bottom: 1px solid #E7E7E7;
    font-size: 16px;
  }
  .header .container .nav .nav-item a {
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .container .nav .nav-item a i {
    font-size: 18px;
    display: block;
  }
  .header .container .nav .nav-item .sub-nav {
    position: relative;
    top: auto;
    box-shadow: none;
    margin-left: 0;
    padding-left: 1em;
    padding-right: 0;
    font-size: 14px;
  }
  .header .container .nav .nav-item:hover .sub-nav {
    display: none;
  }
  .header .container .mask {
    position: fixed;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 98;
    display: none;
  }
  .header .container .mobile .btn {
    color: #ffffff;
    font-size: 32px;
  }
  .menu2 .menu2-item {
    width: 50%;
    padding-bottom: 50%;
  }
  .menu2 .menu2-item:nth-of-type(n+9) {
    display: none;
  }
  .channel-banner {
    height: 300px;
  }
  .channel-banner .en {
    font-size: 24px;
    line-height: 24px;
  }
  .channel-banner .cn {
    font-size: 24px;
    line-height: 24px;
  }
  .siblings .container .siblings-item {
    width: 100px;
    height: 40px;
  }
  .siblings .container .siblings-item + .siblings-item {
    margin-left: 25px;
  }
  .honor .honor-item {
    width: calc((100% - (2.5% * 2)) / 2);
  }
  .honor .honor-item:nth-of-type(3n) {
    margin-right: 2.5%;
  }
  .honor .honor-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .lists_article_new .package .item .container .left {
    position: relative;
    top: 0;
    height: auto;
  }
  .lists_article_new .package .item .container .right {
    flex: 1;
    width: auto;
    height: auto;
    padding-left: 6.3%;
  }
  .lists_article_new .package .item .container .right .right-price {
    font-size: 20px;
  }
  .lists_article_new .package .item:nth-of-type(2n) .container .right {
    padding-right: 6.3%;
  }
}
@media screen and (max-width: 800px) {
  .container {
    width: 92%;
    margin: 0 4%;
  }
  .header .container {
    height: 68px;
  }
  .header .container .logo img {
    height: 56px;
  }
  .section .section-head .section-title .en {
    font-size: 18px;
  }
  .section .section-head .section-title .cn {
    font-size: 26px;
  }
  .section .section-head .section-nav .owl-prev {
    width: 40px;
    height: 40px;
  }
  .section .section-head .section-nav .owl-next {
    width: 40px;
    height: 40px;
  }
  .slides-activity .item .right .right-title,
  .lists_article_activity .activity .item .right .right-title,
  .lists_article_new .new .item .right .right-title {
    font-size: 22px;
  }
  .view-btn span {
    width: 110px;
    height: 40px;
  }
  .view-btn img {
    width: auto !important;
    height: 40px;
  }
  .footer .first .nav {
    display: none;
  }
  .footer .second {
    flex-direction: column-reverse;
  }
  .restaurant .restaurant-item {
    width: 100%;
    margin-right: 0;
  }
  .display .item {
    flex-direction: column;
  }
  .display .item .left {
    width: 100%;
  }
  .display .item .left .img {
    margin-bottom: 16px;
  }
  .display .item .mid {
    width: 100%;
    padding: 0 0;
  }
  .display .item .mid .img {
    height: auto;
    padding-bottom: 100%;
    margin-bottom: 16px;
  }
  .display .item .right {
    width: 100%;
  }
  .display .item .right .img {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
  }
  .display .item .right .img:nth-of-type(n+3) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 480px) {
  .honor .honor-item {
    width: 100%;
  }
  .honor .honor-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .honor .honor-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1980px) {
  .section {
    padding: 140px 0;
  }
  .menu2 ~ .more-wrap {
    padding-bottom: 140px;
  }
  .lists_article_activity .activity .item,
  .lists_article_new .activity .item,
  .lists_article_activity .new .item,
  .lists_article_new .new .item {
    padding: 140px 0;
  }
  .lists_article_activity .activity .item .container,
  .lists_article_new .activity .item .container,
  .lists_article_activity .new .item .container,
  .lists_article_new .new .item .container {
    display: flex;
  }
  .lists_article_activity .activity .item:nth-of-type(2n) .container,
  .lists_article_new .activity .item:nth-of-type(2n) .container,
  .lists_article_activity .new .item:nth-of-type(2n) .container,
  .lists_article_new .new .item:nth-of-type(2n) .container {
    flex-direction: row-reverse;
  }
}
