html {
  --color-primary: #7fd8d2;
  --color-primary-deep: #63afaa;
  --color-primary-light: #e3eeed;

  --color-gold: #c09c4b;
  --color-gold-light: #f4f1eb;

  overflow-x: hidden;
}
a {
  text-decoration: none;
  outline: 0;
}
input {
  padding: 6px 8px;
  border: 1px solid #e2e3e5;
  border-radius: 4px;
}
textarea {
  padding: 6px 8px;
  border: 1px solid #e2e3e5;
  border-radius: 4px;
}

/*评论列表*/
.comment-main {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #eee;
  margin-top: 30px;
  font-size: 12px;
  color: #666;
  line-height: 14px;
  transition: all 0.3s ease;
}
.comment-main:hover {
  border-bottom: 3px solid var(--color-primary);
  box-shadow: 0 10px 20px 0 #ccc;
}
.comment-title {
  width: 100%;
  height: 49px;
  line-height: 50px;
  background: #fff;
  border-bottom: 1px solid #ccc;
}
.comment-title span {
  float: left;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  display: block;
  padding: 0 30px;
  background: var(--color-primary);
  color: #fff;
}

.header-sticky .header,
.header-sticky .header-mobile {
  position: sticky;
  top: 0px;
}
.header-fixed .header,
.header-fixed .header-mobile {
  z-index: 13;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
}
.header-transparent .header-menu-item a {
  color: white;
}
.header-transparent .header-menu-item-active {
  color: #c09c4b !important;
}
.header-transparent .header-submenu-item {
  color: initial !important;
}
.header-white {
  background-color: white !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: initial !important;
}
.header-white .header-menu-item a {
  color: initial;
}
.header-white .header-menu-item-active {
  color: #c09c4b !important;
}
.header-white .header-menu-button-icon-white {
  display: none;
}
.header-white .header-menu-button-icon-black {
  display: inline;
}
.header-primary .header,
.header-primary .header-mobile {
  background-color: var(--color-primary);
}
.header-primary .header-menu-button-icon-white {
  display: none;
}
.header-primary .header-menu-button-icon-black {
  display: inline;
}
.header {
  display: flex;
  justify-content: center;
  transition: background-color 0.2s ease-in-out;
  z-index: 999;
}
.header-container {
  position: relative;
  height: 65px;
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  width: 56px;
  height: 56px;
}
.header-logo img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
}
.header-menu-group {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.header-menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-menu-item:hover .header-submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header-menu-item a {
  font-size: 16px;
  min-width: 72px;
  text-align: center;
}
.header-menu-item-active {
  color: #c09c4b;
}
.header-submenu {
  display: none;
  position: absolute;
  top: 48px;
  left: 0px;
  padding: 8px 6px;
  background-color: white;
  border: 1px solid #e2e3e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 120px;
  flex-direction: column;
  z-index: 15;
}
.header-submenu-item {
  padding: 4px 16px;
  border-radius: 8px;
  text-wrap: nowrap;
  color: initial !important;
}
.header-submenu-item:hover {
  background-color: #7fd8d2;
  color: inherit;
}
.header-submenu-item-active {
  background-color: #7fd8d2;
  color: inherit;
}

.header-mobile {
  display: none;
  position: relative;
  transition: background-color 0.2s ease-in-out;
  z-index: 999;
}
.header-mobile:has(input[type="checkbox"]:checked) .header-mobile-menu-group {
  display: block;
}
.header-mobile-container {
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16px;
}
.header-menu-button-icon-black {
  display: none;
}
.header-mobile-menu-group {
  display: none;
  position: absolute;
  top: 64px;
  left: 0px;
  right: 0px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header-mobile-menu-item {
  border-bottom: 1px solid #e2e3e5;
  padding: 16px;
  display: block;
  font-size: 16px;
}

.footer {
  background-color: #7fd8d2;
}
.footer-main {
  display: flex;
  gap: 16px;
  padding: 32px 0px;
  justify-content: space-between;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}
.footer-contact h2 {
  font-size: 20px;
}
.footer-contact h3 {
  margin-bottom: 50px;
  font-size: 24px;
}
.footer-contact .tel {
  font-size: 24px;
}
.footer-contact .qr-code {
  max-height: 128px;
  max-width: 128px;
}
.footer-contact-qr {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  flex-grow: 1;
  justify-content: end;
}
.footer-site-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  font-size: 16px;
}
.footer-site-menu dd {
  margin: unset;
}
.footer-site-menu-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-site-menu-group-title {
  font-size: 18px;
  font-weight: bold;
}
.footer-copyright {
  text-align: center;
  padding: 16px 0px;
  color: white;
  font-size: 14px;
  background-color: #c09c4b;
}

.banner-hero {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100vw;
  overflow: hidden;
}
.banner-hero-full-screen {
  height: 100vh;
}
.banner-hero-half-screen {
  height: 30vh;
}
.banner-hero-video {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-hero-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner-hero-image {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner-hero-mask {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.banner-hero-container {
  position: relative;
  width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  z-index: 10;
  color: white;
  padding: 16px;
}
.banner-hero-container p {
  font-size: 16px;
}
.banner-hero-slogan {
  font-size: 48px;
  font-weight: normal;
  margin-bottom: unset;
}
.banner-hero-card {
  padding: 24px;
  background-color: #0003;
  border-radius: 8px;
}
.banner-hero-card-title {
  font-size: 18px;
  font-weight: bold;
}
.banner-hero-card-content {
  margin-top: 16px;
  font-size: 16px;
}
.banner-hero-card-content p {
  margin: 16px 0px;
}
.banner-hero-card-content li {
  margin: 8px 0px;
  list-style: inside;
}

.button {
  display: inline-flex;
  align-items: center;
  background-color: #f4f1eb;
  border: unset;
  outline: unset;
  padding: 12px 28px;
  border-radius: 120px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s ease-in-out;
}
.button:disabled {
  cursor: not-allowed;
}
.button:hover {
  background-color: #ddd9d0;
  color: initial;
}
.button:disabled:hover {
  background-color: #f4f1eb;
  color: #6d6d6d;
}
.button-small {
  padding: 4px 16px;
}
.button-middle {
  padding: 8px 16px;
}
.button-icon {
  display: flex;
  gap: 4px;
}
.button-icon img {
  height: 20px;
  width: 20px;
}
.button-link {
  padding: unset;
  background-color: unset;
}
.button-link:hover {
  background-color: unset;
  color: #c09c4b;
}
.button-circle {
  height: 32px;
  width: 32px;
  padding: unset;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-circle img {
  height: 20px;
  width: 20px;
}

.card {
  padding: 24px;
  background-color: white;
  border-radius: 8px;
  color: initial !important;
}
.card-title {
  font-size: 18px;
  font-weight: bold;
}
.card-content {
  margin-top: 16px;
  font-size: 16px;
}
.card-content p {
  margin: 16px 0px;
}
.card-content li {
  margin: 8px 0px;
  list-style: inside;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.service-item {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 16px;
}
.service-cover {
  width: 100%;
  border-radius: 8px;
  height: 220px;
  object-fit: cover;
}
.service-name {
  font-size: 18px;
  font-weight: bold;
}

.photo-grid {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow: auto;
}
.photo-grid-item {
  border-radius: 8px;
}
.photo-grid-image {
  border-radius: 8px;
  max-height: 340px;
}

.cooperation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.cooperation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cooperation-icon {
  padding: 8px;
  border-radius: 1000px;
  background-color: #f4f1eb;
}
.cooperation-icon img {
  width: 64px;
  height: 64px;
}
.cooperation-name {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.cooperation-text {
  font-size: 16px;
  text-align: center;
}

.news-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.news-group-title {
  font-size: 18px;
  font-weight: bold;
}
.news-group-item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-item {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 8px 0px;
  border-bottom: 1px solid #e2e3e5;
}
.news-item .time {
  color: #999;
  flex-shrink: 0;
}

.page-content p {
  margin: 16px 0px;
  line-height: 1.5;
}
.page-content ul {
  list-style: inside;
  padding-left: 16px;
}
.page-content li {
  margin: 8px 0px;
  list-style: inside;
}
.page-content li p {
  display: inline;
}
.page-content img {
  max-width: 100%;
  border-radius: 8px;
}

.page-aside {
  min-width: 250px;
  background-color: #f4f1eb;
  padding: 16px;
  border-radius: 8px;
}
.page-aside-title {
  padding: 12px 24px;
  margin-bottom: 16px;
  background-color: white;
  border-radius: 120px;
  /* display: inline-block; */
  display: none;
}
.page-aside-menu-list {
  display: flex;
  flex-direction: column;
}
.page-aside-menu-link {
  padding: 12px 24px;
  border-radius: 120px;
  font-size: 16px;
  background-color: #f4f1eb;
  text-wrap: nowrap;
}
.page-aside-menu-link:hover {
  background-color: white;
  color: #c09c4b;
}
.page-aside-menu-link-active {
  background-color: white;
  color: #c09c4b;
}

.page-breadcrumb {
  font-size: 16px;
  background-color: #f4f1eb;
  border-radius: 8px;
  padding: 16px;
}

.page-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
}
.page-main-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #f4f1eb;
  background-color: #f4f1eb;
  border-radius: 8px;
  padding: 16px;
}
.page-main-title {
  font-size: 28px;
}

.section-title {
  font-size: 24px;
  padding: 12px 24px;
  margin: 32px 0px;
  background-color: #f4f1eb;
  border-radius: 120px;
  display: inline-block;
}

.section-header {
  font-size: 22px;
  /* background-color: #f4f1eb; */
  border-radius: 8px;
  display: inline-block;
  /* margin-bottom: 8px; */
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0px;
  /* background-color: #f4f1eb; */
  border-radius: 8px;
}

.comment-editor {
  display: flex;
  flex-direction: column;
}
.comment-input {
  padding: 8px 6px;
  font-family: inherit;
  resize: vertical;
}
.comment-action {
  display: flex;
  align-items: center;
}
.comment-captcha {
  display: flex;
  gap: 8px;
  justify-content: end;
}
.comment-captcha img {
  cursor: pointer;
  height: 33px;
}
.comment-submit-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 32px;
}
.comment-item {
  padding: 8px;
  border: 1px solid #e2e3e5;
  background-color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comment-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.comment-item-avatar {
  background-color: #f2f3f5;
  border-radius: 50%;
  min-height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment-item-avatar img {
  height: 32px;
  width: 32px;
}
.comment-item-author-time {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comment-item-time {
  color: #999;
  font-size: 14px;
}
.comment-item-content {
  font-size: 16px;
}
.comment-item-images {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.comment-item-images img {
  height: 120px;
  width: 120px;
  border-radius: 4px;
  object-fit: cover;
}

.comment-image-list {
  display: flex;
  gap: 8px;
}
.comment-image-item {
  height: 120px;
  width: 120px;
  border-radius: 4px;
  border: 1px solid #e2e3e5;
  padding: 2px;
  position: relative;
}
.comment-image-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.comment-image-delete-button {
  position: absolute;
  top: -8px;
  right: -8px;
  border: 1px solid #e2e3e5;
}

.tab-list {
  display: flex;
  gap: 8px;
}

.tab-item {
  border: unset;
  padding: 12px 24px;
  border-radius: 120px;
  background-color: transparent;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}
.tab-item:hover {
  background-color: #f4f1eb;
}
.tab-item-active {
  background-color: #f4f1eb;
}

.tab-container {
  margin-top: 16px;
}
.tab-panel {
  display: none;
}
.tab-panel-active {
  display: block;
}

.qualifications-raw {
  display: flex;
  gap: 16px;
}

.badge {
  padding: 6px 10px;
  background-color: var(--color-primary);
  border-radius: 8px;
}
.badge-outline {
  background-color: var(--color-primary-light);
}

.paginator {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
}
.paginator a {
  padding: 8px 24px;
  background-color: #f4f1eb;
  border-radius: 120px;
  display: inline-block;
}
.paginator .page-num-current {
  outline: 2px solid #c09c4b;
  color: #c09c4b;
}

.bg-soft-blue {
  background-color: #e3eeed;
}
.bg-soft-gold {
  background-color: #f4f1eb;
}

.mt-32 {
  margin-top: 32px;
}
.my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.container {
  max-width: 1200px;
  margin: 32px auto;
  padding-left: 16px;
  padding-right: 16px;
}
.pc-w-50 {
  width: 50%;
}
.pc-max-w-50 {
  max-width: 50%;
}
.w-full {
  width: 100%;
}
.h-300 {
  height: 300px;
}
.max-w-300 {
  max-width: 300px;
}
.cover-image {
  object-fit: cover;
}
.hbox {
  display: flex;
}
.hcenter {
  align-items: center;
}
.hend {
  align-items: end;
}
.vbetween {
  justify-content: space-between;
}
.vbox {
  display: flex;
  flex-direction: column;
}
.flex-row-auto {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.flex-row-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.flex-no-shrink {
  flex-shrink: 0;
}
.flex-row-start {
  align-items: start;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap {
  gap: 16px;
}
.gap-8 {
  gap: 8px;
}
.no-gap {
  gap: unset;
}
.image-auto {
  max-width: 100%;
}
.no-margin-bottom {
  margin-bottom: unset;
}
.grid-2x-auto {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-4x-auto {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.radius {
  border-radius: 8px;
}
.text-base {
  font-size: 1rem;
}
.text-middle {
  font-size: 1.125rem;
}
.text-bold {
  font-weight: bold;
}
.text-muted {
  color: #999;
}
.text-center {
  text-align: center;
}

.size-24 {
  width: 24px;
  height: 24px;
}

.image-gralley {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.cycle-image-gallery {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.cycle-image-gallery img {
  height: auto;
  width: 100%;
}
.cycle-image-gallery .swiper-slide {
  overflow-x: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cycle-image-gallery .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
}
.cycle-image-gallery .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .header {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .footer-main {
    flex-direction: column;
    padding: 32px;
  }
  .footer-site-menu {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
    gap: 16px;
  }

  .banner-hero-full-screen {
    height: 50vh;
  }
  .banner-hero-half-screen {
    height: 30vh;
  }
  .banner-hero-container {
    padding: 64px 16px;
  }
  .banner-hero-video video {
    height: 100%;
  }
  .banner-hero-story {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .news-group-grid {
    grid-template-columns: 1fr;
  }

  .pc-w-50 {
    width: 100%;
  }
  .pc-max-w-50 {
    max-width: unset;
  }
  .flex-row-auto {
    flex-direction: column;
  }
  .flex-row-start {
    align-items: unset;
  }
  .grid-4x-auto {
    grid-template-columns: 1fr 1fr;
  }

  .page-aside-menu-list {
    flex-direction: row;
    overflow-x: auto;
  }
  .page-aside-menu-link {
    padding: 6px 12px;
  }

  .image-gralley {
    grid-template-columns: 1fr 1fr;
  }

  .comment-grid {
    grid-template-columns: 1fr;
  }
}
