#works_list.yuanchuang {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 25px;
    width: 1205px;
    left: 0;
}

#works_list.yuanchuang li {
    position: relative;
    width: calc(20% - 20px);
    margin: 0;
}

.global-desc {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
#works_list.yuanchuang {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    width: 96%;
    left: 0;
}

#works_list.yuanchuang li {
    position: relative;
    width: calc(50% - 5px);
    margin: 0;
}

  .global-desc {
    width: 95%;
    margin: 0 auto 30px;
    text-align: left;
    font-size: 14px;
  }
}

.lang-switcher {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.arrow-down {
  width: 16px; /* 调整宽度 */
  height: 16px; /* 调整高度 */
  margin-left: 4px; /* 可选：添加一些间距 */
  transition: transform 0.3s ease;
}

/* 当下拉菜单打开时旋转箭头 */
.show + .arrow-down {
  transform: rotate(180deg);
}

.current-lang {
  font-size: 14px;
}

.arrow-down {
  font-size: 18px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
  width: 50px;
  padding: 8px 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  border-top: solid var(--primary-color) 3px;
}

.dropdown.show {
  display: block;
}

.dropdown-item {
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
  color: #333;
}

.dropdown-item:hover {
  color: var(--primary-color);
  background-color: #f5f7fa;
}

.divider {
  height: 1px;
  background-color: #e4e7ed;
  margin: 4px 0;
}

.category-title-sub {
  font-weight: 700;
  line-height: var(--line_height_snug);
  letter-spacing: 0.02em;
  margin-bottom: 7px;
  padding-left: 16px;
  position: relative;
  font-size: 20px;
}

.category-title-sub::before,
.category-title-sub::after {
  content: "";
  box-sizing: border-box;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
}

.category-title-sub::before {
  background: var(--primary-color);
  margin-top: 2px;
}

.category-title-sub::after {
  border: 1px solid currentColor;
  margin-left: 2px;
}

.category-title-main.is-en {
  font-size: 60px;
  font-weight: 700;
  line-height: var(--line_height_tight);
  letter-spacing: 0em;
}

.primary-color {
  color: var(--primary-color);
}

.category-title {
  width: 240px;
  margin: 0 auto 30px;
}

.category-title.t6 {
  width: 360px;
}

.category-title.t7 {
  width: 420px;
}

.category-title.guess {
  width: 420px;
}

@media screen and (max-width: 768px) {
  .category-title-sub {
    font-size: 16px;
  }
  .category-title-main.is-en {
    font-size: 48px;
  }
  .category-title {
    width: 200px;
  }
  .category-title.t6 {
    width: 300px;
  }
  .category-title.t7 {
    width: 340px;
  }
  .category-title.guess {
    width: 340px;
  }
}

.choose-us {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.choose-us .card {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.choose-us .card .main {
  position: relative;
  padding: 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10;
}

.choose-us .card .main .cover {
  margin-bottom: 16px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.choose-us .card .main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.choose-us .card .main .cover:hover img {
  transform: scale(1.1);
}

.choose-us .card .main h2 {
  margin-top: 10px;
  font-size: 24px;
  color: #333;
}

.choose-us .card .main p {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .choose-us {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 15px;
    gap: 20px;
    row-gap: 50px;
  }

  .choose-us .card {
    width: 50%;
    flex: 1 1 calc(50% - 15px);
  }

  .choose-us .card .main {
    padding: 10px;
  }

  .choose-us .card .main h2 {
    font-size: 20px;
  }

  .choose-us .card .main p {
    font-size: 12px;
  }
}

.leave-note {
  /* height: 140px; */
  margin-top: 14px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #f9f9f9;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  overflow: hidden; /* 隐藏超出的内容 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
  white-space: normal; /* 允许换行 */
  display: block; /* 确保容器为块级元素 */
}

.email-icon {
  margin-top: 10px;
  font-size: 18px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
}

/* 红框部分 */
.red-box {
  position: absolute;
  left: 0;
  /* 从卡片底部往下 */
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  height: 60px;
  line-height: 80px;
  text-align: center;
  font-size: 14px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 1;
  transform: translateY(-60px);
  transition: transform 0.3s ease-in-out;
}

/* 鼠标悬停时红框向下滑动显示 */
.choose-us .card:hover .red-box {
  transform: translateY(-20px);
  /* 保持向下滑动，位置依旧在卡片下方 */
}

.ourteam,
.process {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 160px;
  padding: 0 15px;
}

.process-bd {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.process-bd .service-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 270px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .leave-note {
    /* height: 200px; */
  }

  .ourteam,
  .process,
  .goodat,
  .works,
  .news,
  .client {
    margin: 0 auto 80px;
  }

  .process-bd {
    gap: 20px;
  }

  .process-bd .service-card {
    width: 50%;
    min-width: auto;
  }
}

.process-bd .icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #e6f0ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-bd .icon-wrapper img {
  width: 40px;
  height: 40px;
}

.process-bd .icon {
  width: 24px;
  height: 24px;
  fill: #409eff;
}

.process-bd .title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.process-bd .description {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.process-bd .large-number {
  position: absolute;
  right: 20px;
  top: -20px;
  font-size: 160px;
  color: #f5f5f5;
  z-index: 0;
  font-weight: 900;
  z-index: -1;
}

.process-bd .service-card {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.news-bd {
  width: 1200px;
  margin: 0 auto;
}

.news-bd a {
  display: flex;
  height: 200px;
  align-items: flex-start;
  justify-content: space-between;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
}

.news-bd a:not(:last-child) {
  margin-bottom: 50px;
}

.news-bd .num {
  width: 110px;
  height: 100%;
  line-height: 200px;
  text-align: center;
  background-color: rgba(0, 157, 245, 0.2);
  color: var(--primary-color);
  font-size: 120px;
  font-weight: 900;
}

.news-bd .main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -10px;
  width: 1100px;
  height: 200px;
  border-radius: 10px;
  background-color: rgba(245, 244, 244, 1);
  z-index: 10;
}

.news-bd .main .img {
  width: 264px;
  height: 165px;
  border-radius: 10px;
  margin-left: 40px;
  overflow: hidden;
}

.news-bd .main .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-bd .main .content {
  flex: 1;
  margin-left: 40px;
}

.news-bd .main .title {
  margin-bottom: 20px;
  font-size: 24px;
}

.news-bd .main .desc {
  padding-right: 70px;
  font-size: 16px;
  line-height: 32px;
  color: #666;
}

#works_list.yuanchuang {
    display: flex;
    flex-wrap: wrap;
}

#works_list.yuanchuang li {
    position: relative;
    width: calc(20% - 20px);
    margin: 0;
}

@media screen and (max-width: 768px) {
  .news-bd {
    width: 100%;
    padding: 0 15px;
  }

  .news-bd a {
    flex-direction: column;
    height: auto;
  }

  .news-bd a:not(:last-child) {
    margin-bottom: 30px;
  }

  .news-bd .num {
    width: 100%;
    height: 80px;
    line-height: 80px;
    font-size: 60px;
  }

  .news-bd .main {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: -10px;
    flex-direction: column;
    padding: 20px;
  }

  .news-bd .main .img {
    width: 100%;
    height: 200px;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .news-bd .main .content {
    margin-left: 0;
  }

  .news-bd .main .title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .news-bd .main .desc {
    padding-right: 0;
    font-size: 14px;
    line-height: 24px;
  }
}

.stats-container {
  max-width: 1200px;
  margin: 50px auto 160px;
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.stats-container .stat-item {
  text-align: left;
  flex: 1;
  margin: 0 15px;
}

.stats-container .stat-number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  bottom: -10px;
  left: 16px;
}

.stats-container .number {
  font-size: 52px;
  font-weight: bold;
  color: #333;
  margin-right: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.stats-container .circle-bg {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 157, 245, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 60px;
  position: relative;
}

.stats-container .plus {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.stats-container .stat-title {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
  padding-left: 80px;
}

@media (max-width: 768px) {
  .stats-container {
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto 80px;
  }

  .stats-container .stat-item {
    margin: 0;
    width: calc(50% - 15px);
    flex: auto;
  }

  .stats-container .number {
    font-size: 32px;
  }

  .stats-container .plus {
    font-size: 22px;
  }

  .stats-container .circle-bg {
    width: 50px;
    height: 50px;
    margin-left: 10px;
  }

  .stats-container .stat-title {
    padding-left: 30px;
  }

  .stats-container .stat-number {
    bottom: -7px;
  }
}

.links .links-header {
  width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
  padding: 40px 0;
}

.links .links-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.links .logo-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.links .logo {
  width: 120px;
}

.links .logo-text {
  color: #a2a2a2;
  font-size: 16px;
}

.links .right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.links .language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.links .language-selector a {
  text-decoration: none;
  color: #a2a2a2;
  font-size: 14px;
  padding: 5px;
}

.links .language-selector a.active {
  color: var(--primary-color);
}

.links .social-links {
  display: flex;
  gap: 20px;
}

.links .social-icon {
  height: 20px;
}

.links .links-content {
  /* display: none !important; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 300px;
}

.links .links-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.links .section-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.links .section-item {
  color: #a2a2a2;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 768px) {
  .links .links-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.footer-bottom {
  padding: 40px 0 20px;
  text-align: center;
}

.cursor {
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s;
  will-change: transform; /* 提示浏览器该元素会频繁变化 */
}

.cursor-follow {
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: rgba(0, 157, 245, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transition: all 0.15s ease-out;
  z-index: 9998;
  will-change: transform; /* 提示浏览器该元素会频繁变化 */
}

/* 当鼠标悬停在链接上时的样式 */
.cursor.link-hover {
  width: 30px;
  height: 30px;
  background: rgba(0, 157, 245, 0.4);
  border-color: var(--primary-color);
}

.cursor-follow.link-hover {
  width: 60px;
  height: 60px;
  background: rgba(0, 157, 245, 0.1);
}

.article-form {
  margin: 80px auto 20px;
  width: 90%;
  max-width: 800px;
  padding: 40px;
  background-color: var(--primary-color);
  border-radius: 16px;
}

.article-form * {
  box-sizing: border-box;
}

.article-form h1 {
  text-align: center;
  color: white;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.article-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.article-form .form-full {
  grid-column: 1 / -1;
}

.article-form .input-group {
  position: relative;
}

.article-form input,
.article-form textarea {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  font-size: 18px;
  outline: none;
}

.article-form input::placeholder,
.article-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.article-form textarea {
  resize: vertical;
  min-height: 100px;
}

.article-form .button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .article-form .form-grid {
    grid-template-columns: 1fr;
  }

  .article-form {
    padding: 20px;
  }
}

.flex,
.flex-st {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.message-form .group {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
}

.message-form .flex .group:first-child {
  margin-right: 18px;
}

.message-form .flex .group {
  -ms-flex: 1;
  flex: 1;
}

.message-form input,
.message-form textarea {
  border-radius: 10px;
  display: block;
  background: #fff;
  padding: 0 20px;
  height: 64px;
  width: 100%;
  color: #030b28;
  font-size: 20px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -0.4px;
  border: none;
  overflow: hidden;
}

.message-form .message-label {
  display: -ms-flexbox;
  display: flex;
  color: rgba(3, 11, 40, 0.6);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.32px;
  position: absolute;
  left: 30px;
  top: 32px;
  right: 20px;
}

.message-form textarea {
  resize: none;
  min-height: 9.8em;
  overflow-y: auto;
}

/* 移除 button 默认的外观 */
button.el-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}

.dosubmit.el-link[data-type="button"] {
  width: 100%;
}

.dosubmit.el-link[data-type="button"] .el-link__inner {
  min-width: 100%;
  background-color: #fff;
  color: #333;
}

.dosubmit.el-link[data-type="button"] .el-link__inner:hover {
  color: #fff;
}

/* 价值主张 */
.value-sections {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.value-section {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.value-section .badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 18px;
  margin-bottom: 10px;
}

.value-section .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.value-section .section-description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .value-sections {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .value-section {
    padding: 15px;
  }

  .value-section .badge {
    font-size: 16px;
    padding: 4px 10px;
  }

  .value-section .section-title {
    font-size: 26px;
  }

  .value-section .section-description {
    font-size: 16px;
  }
}

.team-members {
  margin: 0 auto;
  width: 1240px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.team-members .team-member {
  width: 190px;
}

.team-members .team-member img {
  width: 100%;
  border-radius: 10px;
}

.team-members .team-member .title {
  text-align: center;
  font-size: 16px;
  line-height: 40px;
}

@media screen and (max-width: 768px) {
  .team-members {
    width: 100%;
    padding: 0 15px;
    gap: 10px;
    justify-content: space-between;
  }

  .team-members .team-member {
    width: calc((100% - 20px) / 3);
  }

  .team-members .team-member .title {
    font-size: 14px;
    line-height: 30px;
  }
}

/* 团队成员 */

.characters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.character {
  flex: 0 0 calc(16.666% - 17px); /* 6个一行,减去gap的间距 */
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.character:hover {
  transform: scale(1.1);
}

.character-img {
  width: 200%;
  height: auto;
  transition: opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
  .character {
    flex: 0 0 calc(50% - 10px); /* 2个一行 */
  }

  .characters-container {
    gap: 10px;
  }
}

/* 滚动文字 */
.el-scroll-text {
  height: 216px;
  border-radius: 56px 56px 0 0;
  background-color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}
.el-scroll-text__item-container {
  mix-blend-mode: multiply;
  margin: 0;
  padding: 0;
  animation: flowing 70s linear infinite;
}
.el-scroll-text-item {
  display: inline-block;
  color: #009df5;
  font-weight: 700;
  margin-right: 80px;
  font-size: 144px;
}

@media screen and (max-width: 768px) {
  .el-scroll-text {
    height: 133px;
    border-radius: 28px 28px 0 0;
  }
  .el-scroll-text-item {
    font-size: 72px;
    margin-right: 40px;
  }
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* 联系我们区域 */
.footer .contact {
  position: relative;
  z-index: 1;
  margin-top: -46px;
  background: rgb(2, 10, 31);
}
.footer .contact .cover {
  height: 700px;
  background: rgba(2, 10, 31, 0.9);
}

.contact .cover {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .content-wrapper {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0 120px;
}

.contact .text-content {
  color: #fff;
}

.contact .text-content .title {
  margin-bottom: 20px;
  font-size: 72px;
}

.contact .text-content .info {
  font-size: 20px;
}

.contact .text-content .info > div {
  margin-bottom: 10px;
}

.contact .text-content .info .tel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact .form-wrapper {
  width: 480px;
}

/* button */
.el-link[data-align="left"] {
  justify-content: flex-start;
}
.el-link[data-align="center"] {
  justify-content: center;
}
.el-link[data-align="right"] {
  justify-content: flex-end;
}
.el-link {
  margin: 0 auto 24px;
  font-size: 18px;
  max-width: var(--contents-width);
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
}
.el-link[data-type="button"] .el-link__inner {
  min-width: 384px;
  padding: 8px 8px 8px 56px;
  text-decoration: none;
  background-color: #333;
  color: #fff;
  border-radius: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 2px 1px 3px 0 rgba(0, 0, 0, 0.28);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.el-link[data-type="button"] .el-link__inner:before {
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: var(--primary-color);
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.el-link[data-type="button"] .el-link__inner:hover:before {
  transform: translateX(10%);
}
.el-link[data-type="button"] .el-link__icn {
  width: 48px;
  height: 48px;
  margin-left: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.6s ease;
  color: #fff;
}
.el-link[data-type="button"] .el-link__inner:hover .el-link__icn {
  background-color: #333;
}
.el-link[data-type="button"] .el-link__icn i {
  width: 16px;
  height: 16px;
}

.list_news {
  padding-top: 80px;
}

.list_news .news-link {
  position: relative;
  overflow: hidden;
}

.list_news .slide-arrow {
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
  height: 100%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease;
}

.list_news .icon-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}

.list_news .news-link:hover .slide-arrow {
  right: 0;
}

@media screen and (max-width: 768px) {
  .list_news {
    padding: 0 10px;
    width: 100%;
  }

  .list_news .slide-arrow {
    width: 30px;
    right: -30px;
  }

  .list_news .icon-arrow {
    width: 8px;
    height: 8px;
  }

  .list_news li h2 {
    height: auto;
  }

  .list_news li p {
    margin-bottom: 0;
  }

  .list_news li {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* 蒙层 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 弹窗 */
.popup {
  position: relative;
  background-color: #f4f3f1;
  padding: 25px 45px;
  border-radius: 10px;
  width: 570px;
  max-width: 90%;
  border-top: 5px solid var(--primary-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.popup h2 {
  margin-bottom: 10px;
  font-size: 36px;
}

.popup .tel {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 500;
}

/* 关闭按钮 */
.close-btn {
  position: absolute;
  top: -30px;
  right: 20px;
  background-color: var(--primary-color);
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 100;
  border-radius: 4px;
  width: 24px;
  padding-bottom: 10px;
  z-index: -1;
}

/* 表单样式 */
.message-form .group {
  margin-bottom: 15px;
}

.globe-icon {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 768px) {
  .popup h2 {
    font-size: 32px;
  }
  .message-form input,
  .message-form textarea {
    height: 40px;
    font-size: 14px;
  }
  .popup {
    padding: 25px 15px;
  }
  .popup .tel {
    font-size: 16px;
  }

  .footer .contact {
    height: 800px;
  }
  .footer .contact .cover {
    height: 800px;
  }
  .contact .content-wrapper {
    flex-direction: column;
    width: 100%;
    padding: 40px 20px;
  }

  .contact .text-content {
    margin-bottom: 30px;
  }

  .contact .text-content .title {
    font-size: 36px;
  }

  .contact .text-content .info {
    font-size: 16px;
  }

  .contact .form-wrapper {
    width: 100%;
  }

  .el-link[data-type="button"] .el-link__inner {
    min-width: 334px;
    padding: 8px 8px 8px 28px;
  }

  .client .bd {
    padding: 10px;
  }

  .client ul {
    margin: 0 auto;
  }

  .category-title {
    height: 80px;
    margin: 0 auto 20px;
  }
}
