.menu-active {
  position: relative;
  color: #2998d6 !important;
  color: var(--theme-color) !important;
  border-color: #2998d6 !important;
  border-color: var(--theme-color) !important;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.header .logo {
  width: auto;
  height: 80px;
  padding: 16px 0;
}

.header .menu-box {
  position: relative;
  display: none;
}

.header .nav {
  display: flex;
  align-items: center;
  gap: 8px 50px;
  padding-bottom: 12px;
}

.header .nav .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  color: #666;
  transition: all 0.6s;
  white-space: nowrap;
}

.header .nav .nav-item:hover,
.header .nav .nav-item.active {
  color: #2998d6;
  color: var(--theme-color);
  border-color: #2998d6;
  border-color: var(--theme-color);
}

.hero .swiper {
  --swiper-theme-color: #fff;
}

.hero .swiper .swiper-slide {
  width: 100%;
  height: auto;

}

.hero .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f7f7f7;
  padding: 60px 0;
}

.highlight .heading {
  position: relative;
  width: fit-content;
  margin: 0 auto 40px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.highlight .heading span {
  display: block;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2998d6;
  color: var(--theme-color);
}

.highlight .two-menu-box {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  justify-content: center;
  width: 100%;
}

.highlight .two-menu-box li {
  cursor: pointer;
  font-size: 16px;
  color: #333;
  white-space: nowrap;
}

/* .highlight .two-menu-box::-webkit-scrollbar {
  display: none;
} */

.highlight .content-swiper {
  --swiper-theme-color: #fff;
  width: 100%;
  overflow: hidden;
}

.highlight .content-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.highlight .content-swiper .swiper-slide .wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.6s;
}

.highlight .content-swiper .swiper-slide .wrapper:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.highlight .content-swiper .swiper-slide .wrapper:hover .mask {
  transform: scale(1);
  opacity: 1;
}

.highlight .content-swiper .swiper-slide .wrapper:hover .caption:after {
  width: 100%;
  left: 0;
  background-color: #2998d6;
  background-color: var(--theme-color);
}

.highlight .content-swiper .slide-box {
  position: relative;
}

.highlight .content-swiper .slide-box .mask {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  background-color: rgb(41 152 214 / 0.8);
  background-color: rgb(var(--theme-color-rgb) / 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.25);
  transition: all 0.6s;
}

.highlight .content-swiper .slide-box .mask .button {
  width: fit-content;
  min-width: 120px;
  margin-top: 8px;
  padding: 8px 20px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-radius: 2px;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: #2998d6;
  color: var(--theme-color);
}

.highlight .content-swiper .mask,
.highlight .content-swiper .image {
  width: 100%;
  /* aspect-ratio: 16/9; */
}

.highlight .content-swiper .image {
  object-fit: cover;
}

.highlight .content-swiper .caption {
  width: 100%;
  padding: 20px 16px;
  background-color: #fff;
  position: relative;
}

.highlight .content-swiper .caption:after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  width: 0;
  transition: all 0.6s;
  height: 4px;
}

.highlight .content-swiper .title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.highlight .content-swiper .description {
  font-size: 0.875rem;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.about {
  padding: 80px 0;
}

.about .container {
  position: relative;
}

.about .content {
  width: 92%;
  padding: 60px 35% 80px 60px;
  border: 5px solid #2998d6;
  border: 5px solid var(--theme-color);
}

@media screen and (min-width:1921px) {
  .about .content {
    width: 92%;
    padding-right: 25%;
    border: 5px solid #2998d6;
    border: 5px solid var(--theme-color);
  }
}

@media screen and (max-width:1536px) {
  .about .content {
    width: 92%;
    padding-right: 50%;
    border: 5px solid #2998d6;
    border: 5px solid var(--theme-color);
  }
}

.about .content-box {
  position: relative;
  width: 100%;
}


.about .content-box .image {
  position: absolute;
  bottom: 0;
  right: 0;
  /* width: 40%; */
  max-height: 90%;
  object-fit: cover;
  /* display: flex; */
  /* justify-content: flex-end; */
}

.about .heading {
  position: relative;
  width: fit-content;
  margin-bottom: 40px;
  font-size: 1.75rem;
  font-weight: 700;
}

.about .heading span {
  display: block;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2998d6;
  color: var(--theme-color);
}



.about .caption {
  color: #444;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  line-clamp: 8;
}

.about .button-wrapper {
  text-align: end;
}

.about .button {
  display: inline-block;
  width: fit-content;
  min-width: 120px;
  margin-top: 20px;
  padding: 8px 20px;
  border: 2px solid #2998d6;
  border: 2px solid var(--theme-color);
  border-radius: 2px;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: #2998d6;
  color: var(--theme-color);
  transition: all 0.6s;
}

.about .button:hover {
  background-color: #2998d6;
  background-color: var(--theme-color);
  color: #fff;
}

.case {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f7f7f7;
  padding: 60px 0;
}

.case .heading {
  position: relative;
  width: fit-content;
  margin: 0 auto 40px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.case .heading span {
  display: block;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2998d6;
  color: var(--theme-color);
}

.case .swiper {
  --swiper-theme-color: #fff;
  width: 100%;
}

.case .swiper .swiper-slide {
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  overflow: hidden;
}

.case .swiper .swiper-slide:hover .caption {
  background-color: #2998d6;
  background-color: var(--theme-color);
}

.case .swiper .swiper-slide:hover .tag {
  color: rgb(255 255 255 /0.8);
}

.case .swiper .swiper-slide:hover .title {
  color: #fff;
}

.case .swiper .image {
  width: 100%;
  /* aspect-ratio: 16/9; */
  object-fit: cover;
}

.case .swiper .caption {
  display: block;
  width: 100%;
  padding: 32px 20px;
  border-top: 1px solid #e7e7e7;
  background-color: #fff;
  transition: all 0.6s;
}

.case .swiper .tag {
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #666;
  transition: all 0.6s;
}

.case .swiper .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2998d6;
  color: var(--theme-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  transition: all 0.6s;
}

.news-center {
  padding: 60px 0;
}

.news-center .heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}

.news-center .heading {
  position: relative;
  width: fit-content;
  font-size: 1.75rem;
  font-weight: 700;
}

.news-center .heading span {
  display: block;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2998d6;
  color: var(--theme-color);
}

.news-center .button {
  display: inline-block;
  width: fit-content;
  min-width: 120px;
  margin-top: 20px;
  padding: 8px 20px;
  border: 2px solid #2998d6;
  border: 2px solid var(--theme-color);
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: var(--theme-color);
  transition: all 0.6s;
}

.news-center .button:hover {
  background-color: var(--theme-color);
  color: white;
}

.news-center .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-center .list-item {
  display: flex;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  overflow: hidden;
}

.news-center .list-item:hover .caption {
  background-color: #2998d6;
  background-color: var(--theme-color);
}

.news-center .list-item:hover .title {
  color: #fff;
}

.news-center .list-item:hover .description,
.news-center .list-item:hover .date {
  color: rgb(255 255 255 /0.8);
}

.news-center .list-item .image {
  width: 40%;
  aspect-ratio: 15/9;
  object-fit: cover;
}

.news-center .list-item .caption {
  display: block;
  width: 100%;
  padding: 32px 24px;
  border-top: 1px solid #e7e7e7;
  background-color: #fff;
  transition: all 0.6s;
}

.news-center .list-item .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2998d6;
  color: var(--theme-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: all 0.6s;
}

.news-center .list-item .description {
  margin-top: 8px;
  font-size: 0.875rem;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  transition: all 0.6s;
}

.news-center .list-item .date {
  margin-top: 20px;
  font-size: 0.875rem;
  color: #666;
  transition: all 0.6s;
}

.footer {
  padding: 40px 0 max(env(safe-area-inset-bottom), 40px);
  background-color: #2b2b2b;
  color: rgb(255 255 255 / 0.8);
  font-size: 14px;
}

.footer .header {
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
  margin-bottom: 20px;
}

.footer .nav {
  margin-top: 3px;
}

.footer .nav .nav-item {
  padding-bottom: 6px;
  color: inherit;
}

.footer .nav .nav-item:hover,
.footer .nav .nav-item.active {
  color: #fff;
  border-color: rgb(255 255 255 / 0.5);
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgb(255 255 255 / 0.2);
  font-size: 0.875rem;
}

.footer .info {
  color: rgb(255 255 255 / 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.footer .info p + p {
  margin-top: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer .platform {
  text-align: right;
}

.footer .platform .title {
  margin-bottom: 12px;
}

.footer .platform .list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
}

.footer .platform .list-item {
  display: block;
  width: 40px;
  height: 40px;
  opacity: 0.8;
  transition: all 0.6s;
  position: relative;
}

.footer .platform .list-item .qrcode {
  position: absolute;
  display: none;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border: 1px solid #e1e1e1;
}

.footer .platform .list-item:hover {
  opacity: 1;
}

.footer .platform .list-item:hover .qrcode {
  display: block;
}

.footer .platform .list-item .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.show {
  display: block;
}

.hidde {
  display: none;
}

.breadcrumbs {
  display: flex;
  width: 100%;
  column-gap: 0.5em;
  justify-content: space-between;
}

.breadcrumbs .locale {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  flex-wrap: wrap;

}

.breadcrumbs .locale a:hover {
  color: var(--theme-color);
}

.breadcrumbs .locale .divider:last-child {
  display: none;
}

.breadcrumbs .category {
  display: flex;
  align-items: center;
  column-gap: 1em;
  max-width: 50%;
  overflow: hidden;
  padding-bottom: 20px;
  overflow-x: scroll;
}

.breadcrumbs a {
  display: flex;
  align-items: center;
  column-gap: 0.25em;
  white-space: nowrap;
}

.breadcrumbs .icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
}

.category {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 24px;
  background-color: #fff;
  user-select: none;
}

.category-item {
  transition: all 0.6s;
  cursor: pointer;
}

.category-item.active,
.category-item:hover {
  color: #2998d6;
  color: var(--theme-color);
}

.category-item.active {
  font-weight: 700;
}

.elli1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#crumbs a {
  background: #f1f1f1;
  padding: 6px 18px;
}

#crumbs a.active {
  background: #2998d6;
  background: var(--theme-color);
  color: white;
}


.menus input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.menus {
  display: block;
  position: relative;
  font-size: 20px;
  user-select: none;
}

.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
}

.checkmark span {
  width: 32px;
  height: 2px;
  background-color: #2998d6;
  position: absolute;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.checkmark span:nth-child(1) {
  top: 10%;
}

.checkmark span:nth-child(2) {
  top: 50%;
}

.checkmark span:nth-child(3) {
  top: 90%;
}

.menus input:checked + .checkmark span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
}

.menus input:checked + .checkmark span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -o-transform: translateY(-50%) rotate(-45deg);
}

.menus input:checked + .checkmark span:nth-child(3) {
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  opacity: 0;
}

.wap-box {
  display: none;
}

.wap-box .wap {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  color: #fff;
  font-size: 16px;
  z-index: 10;
}

.wap-box .wap a {
  display: block;
  padding-bottom: 20px;
  width: 80%;
  border-bottom: 1px solid #f1f1f12b;
}

.banner .image {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
}

.main {
  padding: 60px 0;
}

.pro-box .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pro-box .list-item {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.6s;
}

.pro-box .list-item:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.pro-box .list-item:hover .mask {
  transform: scale(1);
  opacity: 1;
}

.pro-box .list-item:after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  width: 0;
  transition: all 0.6s;
  height: 4px;
}

.pro-box .list-item:hover:after {
  width: 100%;
  left: 0;
  background-color: #2998d6;
  background-color: var(--theme-color);
}

.pro-box .list-item .slide-box {
  position: relative;
}

.pro-box .list-item .mask,
.pro-box .list-item .image {
  width: 100%;
}

.pro-box .list-item .mask {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: rgb(41 152 214 / 0.8);
  background-color: rgb(var(--theme-color-rgb) / 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.25);
  transition: all 0.6s;
  inset: 0;
}

.pro-box .list-item .mask .button {
  display: block;
  width: fit-content;
  min-width: 120px;
  margin-top: 8px;
  padding: 8px 20px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-radius: 2px;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: #2998d6;
  color: var(--theme-color);
}

.pro-box .list-item .image {
  object-fit: cover;
}

.pro-box .list-item .caption {
  width: 100%;
  padding: 20px 16px;
  border-top: 1px solid #e7e7e7;
  background-color: #fff;
  position: relative;

}



.pro-box .list-item .title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.pro-box .list-item .description {
  font-size: 0.875rem;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.pro-box .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  user-select: none;
}

.pro-box .pagination .button {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid #2998d6;
  border: 1px solid var(--theme-color);
  border-radius: 2px;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: #2998d6;
  color: var(--theme-color);
  transition: all 0.6s;
}

.pro-box .pagination .button.active,
.pro-box .pagination .button:hover {
  background-color: #2998d6;
  background-color: var(--theme-color);
  color: #fff;
}

.pro-box .pagination .button.disabled {
  background-color: #eee;
  color: #2998d6;
  color: var(--theme-color);
  cursor: not-allowed;
}

.editor-img {
  text-align: center;

}

.editor-img img {
  display: inline-block;
}

.Picture-editor p {
  display: flex;
  flex-direction: column;
}

.Picture-editor p img {
  display: inline-block;
}

.editor-title {
  color: #37474f;
  text-align: center;
  font-size: 1.5rem;
  margin: 1vw 0;
  font-weight: 700;
}

.detail-page-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  gap: 20px;
}

.detail-page-box a {
  max-width: 48%;
  color: #666;
}

.detail-page-box a:hover {
  color: #2998d6;
  color: var(--theme-color);
}

.article {
  padding: 80px 0;
  line-height: 1.5;
}

.article img {
  margin: 0 auto;
  display: inline-block;
}

.about-title {
  font-size: 24px;
  color: #2a333c;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2vw;
}

.main .category {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  user-select: none;
}

.main .category-item {
  transition: all 0.6s;
  cursor: pointer;
}

.main .category-item.active,
.main .category-item:hover {
  color: #2998d6;
  color: var(--theme-color);
}

.main .category-item.active {
  font-weight: 700;
}

.article-box .list {
  display: flex;
  flex-direction: column;
}

.article-box .list-item {
  display: flex;
  gap: 20px 40px;
  padding: 40px 20px;
  border-bottom: 1px solid #f1f1f1;
}

.article-box .list-item:hover .image {
  scale: 1.1;
}

.article-box .list-item:hover .title {
  color: #2998d6;
  color: var(--theme-color);
}

.article-box .list-item .img-box {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  min-width: 400px;
}

.article-box .list-item .img-box .image {
  width: 100%;
  object-fit: cover;
  height: 100%;
  flex: none;
  transition: all 0.6s;
}

.article-box .list-item .caption {
  padding: 20px;
}

.article-box .list-item .title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: all 0.6s;
}

.article-box .list-item .description {
  margin-bottom: 20px;
  text-align: justify;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.article-box .list-item .date {
  font-size: 0.875rem;
  color: #666;
}

.article-box .editor-title {
  color: #37474f;
  text-align: center;
  font-size: 1.5rem;
  margin: 1vw 0;
}

.main .editor-time {
  font-size: 14px;
  text-align: center;
  margin: 1vw 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  user-select: none;
}

.pagination .button {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid #2998d6;
  border: 1px solid var(--theme-color);
  border-radius: 2px;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: #2998d6;
  color: var(--theme-color);
  transition: all 0.6s;
}

.pagination .button.active,
.pagination .button:hover {
  background-color: #2998d6;
  background-color: var(--theme-color);
  color: #fff;
}

.pagination .button.disabled {
  background-color: #eee;
  color: #2998d6;
  color: var(--theme-color);
  cursor: not-allowed;
}

.detail-page-box a {
  max-width: 48%;
  color: #666;
}

.detail-page-box a:hover {
  color: #2998d6;
  color: var(--theme-color);
}

.detail-page-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  gap: 20px;
}

.one-menu {
  position: relative;
}

.one-menu:hover .two-menu {
  z-index: 10;
  opacity: 1;
}

.two-menu {
  position: absolute;
  top: 100%;
  z-index: -1;
  padding-top: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.two-menu a {
  padding: 4px 16px;
  background-color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  color: white;
}

.two-menu a:hover {
  background: var(--theme-color);
}


.case-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.case-box .case-item .title {
  background: var(--theme-color);
  text-align: center;
  padding: 10px;
  color: white;
  position: relative;
  z-index: 1;
}

.case-box .case-item .case-img-box {
  overflow: hidden;
}

.case-box .case-item .case-img-box img {
  transition: all 0.6s;
}

.case-box .case-item .title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 0;
  z-index: -1;
  transition: all 0.6s;
}

.case-box .case-item:hover .case-img-box img {
  scale: 1.1;
}

.case-box .case-item:hover .title:after {
  height: 100%;
  top: 0;
  /* background-color: red; */
}

.friendship {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.friendship a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .friendship {
    justify-content: start;
  }

  .case-box {
    grid-template-columns: repeat(3, 1fr);
  }

  .header .logo {
    width: 90%;
    height: 70px
  }

  .article {
    padding: 40px 0
  }

  .header .menu-box {
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 20px
  }

  .header .nav {
    display: none
  }

  .header .nav .nav-item {
    padding: 0;
    border-bottom: none
  }

  .highlight {
    padding: 40px 0
  }

  .about {
    padding: 40px 0
  }

  .about .content {
    width: unset;
    padding: 40px 20px;
    border-width: 3px;
  }

  .about .content-box .image {
    position: unset;
    width: 100%;
    max-height: unset;
    margin-top: 40px
  }

  .case {
    padding: 40px 0
  }

  .news-center {
    padding: 40px 0
  }

  .news-center .list {
    grid-template-columns: unset
  }

  .news-center .list-item {
    flex-direction: column
  }

  .news-center .list-item .image {
    width: 100%
  }

  .footer .nav {
    display: flex;
    flex-wrap: wrap
  }

  .footer .bottom {
    flex-direction: column-reverse
  }

  .breadcrumbs {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px
  }

  .category {
    justify-content: flex-start
  }

  .detail-page-box {
    margin-top: 30px;
    gap: 10px
  }

  .main .pagination {
    margin-top: 20px;
  }

  .main .list {
    margin-top: 20px;
    grid-template-columns: repeat(3, 1fr)
  }

  .main {
    padding: 40px 0
  }

  .detail-page-box {
    margin-top: 30px;
    gap: 10px
  }

  .pagination {
    margin-top: 20px;
  }

  .article {
    padding: 20px 0;
  }

  .main .list-item .img-box {
    width: auto;
    min-width: auto
  }

  .main .list-item {
    flex-direction: column;
    padding: 0
  }

  .main .category {
    justify-content: flex-start
  }

  .highlight .two-menu-box {
    overflow: hidden;
    overflow-x: scroll;
  }
}

@media (max-width: 768px) {

  .highlight .heading {
    margin-bottom: 30px
  }

  .highlight .two-menu-box {
    padding-bottom: 30px;
    justify-content: start;
  }

  /* .breadcrumbs .locale {
    display: none;
  } */

  .detail-page-box a {
    max-width: 100%
  }

  .detail-page-box {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start
  }

  .main .list {
    grid-template-columns: repeat(1, 1fr)
  }

  .main {
    padding: 20px 0
  }

  .article {
    padding: 20px 0;
  }

  .about-title {
    font-size: 18px
  }

  .detail-page-box a {
    max-width: 100%
  }

  .detail-page-box {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start
  }

  .footer .info {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .main .category {
    max-width: 100%;
  }

  .case-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-box .case-item .title {
    padding: 5px;
  }
}
