/* footer */
.grid {
  display: grid;
  gap: 20px;
}

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

@media (max-width: 768px) {
  .grid-columns3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loading-dot {
  position: relative;
  color: #fff;
  background: #4d50ff;
  padding: 6px 12px;
  border-radius: 8px;
}

.loading-dot span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 2px;
  border-radius: 50%;
  background: #4d50ff;
  animation: dotBounce 1.4s infinite ease-in-out;
}

.loading-dot span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dot span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-4px);
  }
}

/* AI搜索弹窗loading动画，独立class，和聊天loading互不干扰 */
.ais-loading-dot {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.ais-loading-dot span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4d50ff;
  animation: dotBounce 1.4s infinite ease-in-out;
}

.ais-loading-dot span:nth-child(2) {
  animation-delay: 0.2s;
}

.ais-loading-dot span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-4px);
  }
}

/* 加到页面style标签内 */
.staff-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.staff-info-header .staff-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.staff-text {
  flex: 1;
}

.staff-info-header .staff-name {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.right-box {
  z-index:99999;
  position: fixed;
  right: 10px;
  bottom: 1%;

}

.right-box .ai-kf-img img {
  width: 80px;
  height: auto;
  cursor: pointer;
  margin-bottom: 10px;
}

.right-box .top {
  width: 45px;
  height: 45px;
  cursor: pointer;
  margin: 0 auto;
}

/* CSS画粉色圆形+向上箭头 */
.right-box .go-top-btn {
  width: 100%;
  height: 100%;
  background-color: #00715d;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-box .go-top-btn img {
  width: 30px;
  height: 30px;
}

/* ==========客服弹窗面板样式========== */
.ai-kf-panel {
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  display: none;

}

.kf-panel-header {
  background-color: #2478f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 18px;
}

.kf-panel-header .kf-online-tag {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 0px 12px;
  border-radius: 10px;
  gap: 6px;
}

.kf-panel-header .kf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32bc54;
}

.kf-panel-header #kfOnlineText {
  color: #222;
  font-size: 12px;
}

.kf-panel-header .kf-close-top img {
  width: 14px;
  height: auto;
  filter: brightness(2);
  cursor: pointer;
}

.ai-kf-panel .kf-time-tip {
  background: #2478f5;
  color: #fff;
  font-size: 14px;
  padding: 0px 18px 6px;
}

.ai-kf-panel .kf-user-list {
  max-height: 80vh;
  overflow-y: auto;
  background: #f0f2f7;
}

.ai-kf-panel .kf-user-item {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  border-bottom: 1px solid #e4e6eb;
  cursor: pointer;
}

.ai-kf-panel .kf-user-item:hover {
  background: #e8ebf2;
}

.ai-kf-panel .kf-user-item .kf-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.ai-kf-panel .kf-user-info {
  flex: 1;
}

.ai-kf-panel .kf-user-name {
  font-size: 18px;
  line-height: 17px;
  color: #111;
  font-weight: 500;
  margin-bottom: 10px;
}

.ai-kf-panel .kf-user-job {
  font-size: 13px;
  line-height: 12px;
  color: #666;
}

.ai-kf-panel .kf-status-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #32bc54;
}

.ai-kf-panel .kf-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32bc54;
}


/* .custom-nav-pc-container {
  flex:1;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:#fff;
} */
/*  */

/* 大屏外层容器 */
.footer-container {
  position: relative;
  cursor: auto;
}

.wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}


.dashboard-banner {
  width: 100%;
  overflow: hidden;
  padding: 0px 0 60px 0;
}

.dashboard-banner .banner-inner {
  position: relative;
  z-index: 2;
}

.banner-top-title {
  text-align: center;
  margin-bottom: 40px;
}

.banner-top-title .live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(80, 137, 235, 0.15);
  border: 1px solid rgba(80, 137, 235, 0.3);
  padding: 6px 16px;
  border-radius: 99px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 16px;
}

.banner-top-title .live-tag .live-dot {
  width: 24px;
  height: 24px;
}

.banner-top-title h2 {
  font-size: 42px;
  color: #fff;
  margin: 0 0 12px;
}

.banner-top-title p {
  color: #b0b8d4;
  font-size: 16px;
}

.data-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* 恢复gap，不要0 */
  margin-bottom: 20px;
  flex-wrap: wrap;
}



.data-card {
  flex: 1;
  max-width: 220px;
  /* 最小宽度，防止卡片压缩到太窄，小屏触发换行 */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
  transition: 0.3s ease;
}

.data-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(80, 137, 235, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(80, 137, 235, 0.15);
}

.category-grid-wrap {
  display: contents;
}

.data-card.big-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.data-card.small-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 12px !important;
}

.live-tag-sm {
  color: #48d170;
  text-align: right;
  font-size: 12px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 4px;
}

.live-tag-sm::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #48d170;
  border-radius: 50%;
  animation: liveBlink 1.2s infinite ease-in-out;
}

@keyframes liveBlink {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: transparent !important;
  border-bottom: none !important;
}

.card-header .card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.card-num {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin: 0px 0 6px;
}

.card-num1 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  color: #fff;
  margin: 16px 0 8px;
}

.card-num1 span {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.card-label {
  text-align: center;
  color: #b0b8d4;
  font-size: 15px;
}

@media (max-width: 991px) {
  .data-card {
    flex: 1 1 calc(50% - 10px);
    max-width: 48%;
  }

  .banner-top-title h2 {
    font-size: 28px;
  }

  .card-num1 {
    font-size: 26px;
  }

  .card-num1 span {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .data-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px;
  }

  .data-card.big-card {
    width: 48%;
    margin-bottom: 20px;
  }

}

@media (max-width: 480px) {}

/* 原有ai弹窗样式保留 */
.ai-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: hsla(0, 0%, 100%, 0.2);
  z-index: 9999998;
  display: none;
  overscroll-behavior: none;
  /* 阻止弹性橡皮筋滚动 */
}

.aiSearch-box {
  position: fixed;
  z-index: 9999999;
  right: 10px;
  bottom: 10px;
  background-color: #fff;
  width: 98%;
  max-width: 400px;
  height: 80vh;
  border-radius: 12px;
  box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.1);
  display: none;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* ios顺滑滚动 */
  overscroll-behavior: contain;
  /* 内容滚到头，不再穿透到下层 */
}

.custom-nav-pc-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nav-title {
  padding: 6px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.nav-title .page-back img {
  width: 15px;
  height: auto;
  cursor: pointer;
}

.nav-title-text {
  background-color: #f5f6fa;
  border-radius: 20px;
  color: #888b94;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding: 0 14px;
}

.page-operate {
  display: flex;
  align-items: center;
}

.close-nav-icon {
  cursor: pointer;
  width: 25px;
  display: flex;
  justify-content: center;
}

.close-nav-icon img {
  width: 14px;
}

.adm-pull-to-refresh-content {
  flex: 1;
  overflow: hidden;
  height: 0;
}

.doubao-chat {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  margin: 0 0 20px 0;
  scroll-behavior: auto !important;
}

.welcome-message-container-wrap {
  padding: 0px 15px 10px 15px;
}

.high-light-title-container {
  color: #4d50ff;
  margin-top: 10px;
}

.high-light-title {
  font-size: 13px;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}


.high-light-title .refreshlist {
  display: flex;
  align-items: center;
}

.high-light-title .refreshlist img {
  width: 14px;
  height: 14px;
  margin-right: 6px;

}

.variety-select-message-container {
  display: flex;
  flex-wrap: wrap;
}

.waterflow-container.item {
  background-color: #f7f8fc;
  border-radius: 5px;
  min-height: 30px;
  padding: 0 12px;
  color: #1a1a1a;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  line-height: 30px;
  margin: 4px 5px;
}

.aigc-ai-tips {
  margin: 10px 15px 10px;
  color: #828794;
  font-size: 12px;
  text-align: right;
}

.chat-inner {
  padding: 0 10px 20px 10px;
}

.user-message {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.user-message .user-message-icon {
  margin: 0 0 0 6px;
  width: 30px;
  height: 30px;
}

.ai-message {
  width: 100%;
  margin: 10px auto 0;
  display: flex;
  justify-content: flex-start;
}

.ai-message .ai-message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0 6px 0 0;
}

.ai-message-info {
  flex: 1;
}

.ai-message-name {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.leave-form-card {
  width: 95%;
  padding: 16px;
  background: #f8f9ff;
  border-radius: 12px;
}

.leave-form-card .leave-tip {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 14px 0;
  color: #1a1a1a !important;
}

.leave-form-card .leave-item {
  margin-bottom: 10px;
}

.leave-form-card .leave-item input, .leave-item textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
}

.leave-form-card .leave-item textarea {
  min-height: 80px;
  resize: none;
}

.leave-form-card .leave-submit-btn {
  width: 100%;
  background: #5b46e8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 15px;
  cursor: pointer;
}

.user-message {
  display: flex;
  gap: 10px;
  margin: 12px 0;
  align-items: flex-start;
  justify-content: flex-end;
}

.user-message-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  order: 2;
}

.message-bubble-user {
  order: 1;
}

.message-bubble-user {
  background: #dde5ff;
  color: #1a1a1a;
  padding: 8px;
  border-radius: 10px;
  margin: 0px 0;
}

.message-bubble-left {
  width: 100%;
  background-color: #f4f6fb;
  padding: 8px;
  border-radius: 10px;
}

.message-bubble-left .type-text {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.message-text {
  all: unset;
  font-size: 14px;
  line-height: 1.6;
  color: #1a1a1a;
  display: block;
}

.message-text * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.message-text p {
  color: #1a1a1a;
  margin: 4px 0 !important;
}

.message-text h1,
.message-text h2,
.message-text h3,
.message-text h4 {
  margin: 8px 0 4px 0 !important;
  font-weight: bold;
  font-size: 15px;
}

.message-text ul,
.message-text ol {
  padding-left: 20px !important;
  margin: 6px 0 !important;
}

.message-text li {
  margin: 2px 0 !important;
}

.message-text blockquote {
  border-left: 3px solid #c8cde0;
  padding-left: 8px;
  color: #555;
  margin: 6px 0 !important;
}

.message-text pre {
  background: #eee;
  padding: 8px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 6px 0 !important;
}

.message-text code {
  background: #eeeeee;
  padding: 2px 4px;
  border-radius: 3px;
}

.message-text img {
  width: 80px;
  height: auto;
}

.bottom-input-container-pc {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 15px 10px;
}

.textarea-box {
  margin-top: 10px;
  display: flex;
  width: 100%;
}

.textarea-box textarea {
  width: 100%;
  height: 30px !important;
  border: none;
  outline: none;
  padding: 0;
  resize: none;
}

.send-message-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.send-message-btn .AIh {
  width: 24px;
  height: 24px;
}

.send-message-btn .send {
  width: 28px;
  height: 28px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .aiSearch-box {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    width: 90%;
    max-width: 400px;
    height: 70vh;
  }
}

.ai-loading-img {
  display: block;
  width: 20px !important;
  height: 20px !important;
  animation: aiBreathe 1.2s ease-in-out infinite;
}

@keyframes aiBreathe {
  0% {
    opacity: 0.25;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.25;
  }
}

/*  */
/* 删除原来的 footer::before ，替换为下面 */
footer {
  position: relative;
  background-color: #283734;
  padding-top: 60px;
}


footer p, footer p a {
  font-size: 12px !important;
  color: #fff;
  margin-bottom: 0;
}

footer .foot-main {
  padding: 0px 0 60px 0;
  display: flex;
  color: #fff;
  justify-content: space-between;
  /* align-items: center; */
  /* border: 1px solid #656364; */

}


footer .foot-main .foot-letxt {
  width: 25%;
}

footer .foot-main .foot-message {
  width: 40%;
}

footer .foot-main .foot-letxt .stt {
  /* font-family: Bahnschrift, Arial, Helvetica, sans-serif; */
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -1px;
}

footer .foot-main .foot-letxt .stel i {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 8px;
  font-size: 20px;
  text-align: center;
  background: #4d4d4d;
  border-radius: 30px;
  color: #fff;
}

footer .foot-main .foot-letxt .stel a {
  /* font-family: Bahnschrift, Arial, Helvetica, sans-serif; */
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 800;
  color: #4d4d4d
}

footer .foot-main .foot-letxt .foot-le-txt {
  font-size: 14px;
  color: #fff;
  line-height: 2;
  width: 100%;
}

footer .foot-main .foot-letxt .foot-le-txt .foot-le-txt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #656364;
  padding: 10px 20px;
  margin-bottom: 20px;

}

footer .foot-main .foot-letxt .foot-le-txt .foot-le-txt-item img {
  width: 26px;
  height: auto;
}

footer .foot-main .foot-nav {
  width: 180px;
}


footer .foot-main .foot-nav .foot-nav-title3 {
  /* font-family: Bahnschrift, Arial, Helvetica, sans-serif; */
  font-size: 20px;
  font-weight: 800;
  padding: 0px 0 8px 0;

}

footer .foot-main .foot-nav .foot-nav-title3 img {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

/*  */
footer .footer-widget .webfoot_ai {
  width: 100%;
  background-color: hsla(0, 0%, 100%, .05);
  display: flex;
  align-items: center;
  border: 1px solid hsla(0, 0%, 100%, .6);
  padding: 0.2rem;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 10px;
}

footer .footer-widget .webfoot_ai img {
  width: 30px;
  height: auto;
  margin-right: 4px;

}

footer .footer-widget .webfoot_ai div .font-medium {
  color: #fff;
}

footer .footer-widget .webfoot_ai div .font-medium1 {
  color: #ffffff80;
}

/*  */

footer .foot-main .foot-nav .webfoot_ai {
  width: 100%;
  max-width: 180px;
  background-color: hsla(0, 0%, 100%, .05);
  display: flex;
  align-items: center;
  border: 1px solid hsla(0, 0%, 100%, .6);
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 14px;
}

footer .foot-main .foot-nav .webfoot_ai img {
  width: 30px;
  height: auto;
  margin-right: 4px;

}

footer .foot-main .foot-nav .webfoot_ai div .font-medium {
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 6px;
  color: #fff;
}

footer .foot-main .foot-nav .webfoot_ai div .font-medium1 {
  font-size: 14px;
  line-height: 14px;
  color: #ffffff80;
}

footer .foot-main .foot-nav .foot-nav-title2 {
  /* font-family: Bahnschrift, Arial, Helvetica, sans-serif; */
  font-size: 20px;
  font-weight: 800;
  border-bottom: 1px solid #656364;
  padding: 10px 0;
  max-width: 180px;

}

footer .foot-main .foot-nav ul {
  padding-left: 0rem;
  /* display: flex; */
  /* flex-wrap: wrap; */
  margin-top: 20px;
  /* justify-content: space-between; */
  /* flex-direction: row; */
  /* justify-content: space-between; */
}

footer .foot-main .foot-nav ul li {
  /* display: block;
  width: 50%; */
  flex: 0 0 calc(50% - 0px);
  /* 每个li占50%宽度，无间距则直接50% */
  box-sizing: border-box;
  /* 防止内边距/边框撑大宽度 */
}


footer .foot-main .foot-nav ul li:nth-child(even) {
  text-align: right;
  /* display: flex; */
  justify-content: end;
}

footer .foot-main .foot-nav ul li .foot-tit {
  font-size: 18px;
  /* color: #333; */
  margin-bottom: 10px;
}

footer .foot-main .foot-nav ul li .foot-tit a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

footer .foot-main .foot-nav ul li .foot-tit a span {
  display: block;
  width: 4px;
  height: 4px;
  margin: 0 10px 0 0;
  border-radius: 50%;
  background-color: #fff;
}

footer .foot-main .foot-nav ul li p {
  font-size: 14px;
  /* color: #888a92; */
  line-height: 2.4;
}

footer .foot-main .foot-nav ul li p a {
  /* color: #333; */
}

footer .foot-main .foot-nav ul li p a:hover {
  /* color: #000; */
}

footer .foot-main .foot-nav ul li:nth-child(2) p {}

footer .foot-main .foot-ewm {
  width: 120px;
  float: right;
  text-align: center;
  font-size: 14px;
  color: #333;
}

footer .foot-main .foot-ewm p {
  margin-top: 5px;
}

/*底部状态栏模块*/
.webfoot_status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin: 0 auto;
}

.webfoot_status .status-item-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.webfoot_status .status-item {
  align-items: center;
  background-color: hsla(0, 0%, 100%, .08);
  border-radius: 12px;
  color: hsla(0, 0%, 100%, .6);
  display: flex;
  font-size: 12px;
  gap: 8px;
  padding: 10px 20px;
}

.webfoot_status .status-item img {
  height: 24px;
  width: 24px;
}

.webfoot_status .status-text {
  color: hsla(0, 0%, 100%, .6);
  font-size: 12px;
}

.webfoot_copy {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  color: hsla(0, 0%, 100%, .6);
}

footer .yq-link {
  margin-top: 35px;
  color: #666;
  font-size: 18px;
}

footer .yq-link a {
  color: #666;
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}

footer .foot-copyr {
  padding: 20px 0;
  font-size: 14px;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

footer .foot-copyr a {
  color: #666;
}

.footer-bottom .footer-bottom-box {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  color: #fff;
}


/* 底部导航留言 */

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer {
  display: flex;
  justify-content: space-between;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer {
  width: 48%;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer>div {
  display: flex;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  /* border-bottom: 4px solid #2aa344; */
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer>div>img {
  width: 20px;
  height: 20px;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-footer>div>input {
  height: 30px !important;
  padding: 0px;
  background: #fff;
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #495057;
  cursor: text;
  /* 强制鼠标悬浮时显示文本光标 */
  user-select: auto;
  /* 允许选中文本，部分浏览器默认禁用会导致光标消失 */
  pointer-events: auto;
  /* 确保输入框能响应点击聚焦 */
  caret-color: #333;
  /* 强制设置光标颜色（解决部分场景光标透明问题） */

}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-content-footer {
  width: 100%;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-content-footer>div {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  /* border-bottom: 4px solid #2aa344; */
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-content-footer>div>img {
  width: 20px;
  height: 20px;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-ny-ct-item-content-footer>div>textarea {
  padding: 0px;
  background: #fff;
  border: none;
  outline: none;
  /* 关键：清除 textarea 默认样式 */
  resize: none;
  /* 禁止用户拉伸文本域（可选，如需允许可设为 vertical） */
  overflow: auto;
  /* 按需显示滚动条 */
  width: 100%;
  /* 占满剩余宽度 */
  font-size: 14px;
  color: #495057;
  cursor: text;
  /* 强制鼠标悬浮时显示文本光标 */
  user-select: auto;
  /* 允许选中文本，部分浏览器默认禁用会导致光标消失 */
  pointer-events: auto;
  /* 确保输入框能响应点击聚焦 */
  caret-color: #333;
  /* 强制设置光标颜色（解决部分场景光标透明问题） */
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-btn-footer {
  cursor: pointer;
  width: 40%;
  color: #fff;
  /* height: 46px; */
  /*  */
  text-align: center;
  /* font-weight: 600; */
  border: 1px solid #656364;
  margin: 10px auto 0;

}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-btn-footer button {
  font-size: 14px;
  line-height: 14px;
  /* 清除默认外观 */
  appearance: none;
  /* 关键：清除浏览器原生样式（兼容webkit/火狐） */
  -webkit-appearance: none;
  /* 兼容 Safari/Chrome */
  -moz-appearance: none;
  /* 兼容 Firefox */

  /* 清除边框/背景 */
  border: none;
  outline: none;
  /* 清除聚焦外边框（若需聚焦样式可自定义） */
  background: transparent;
  /* 透明背景 */

  /* 清除内边距/外边距（按需调整） */
  margin: 0;
  padding: 0;

  /* 清除字体默认样式（继承父元素） */
  font-family: inherit;
  font-weight: inherit;
  color: inherit;

  /* 清除鼠标样式（恢复普通光标） */
  cursor: pointer;
  /* 保留点击光标，若需普通光标改为 default */

  /* 清除点击高亮（移动端） */
  -webkit-tap-highlight-color: transparent;
  /* 兼容 iOS/Android */

  /* 清除行高/对齐（按需） */
  line-height: normal;
  text-align: left;
  /* 按需改为 center/right */

  /* 清除边框圆角（若有） */
  border-radius: 0;

  /* 清除盒模型默认值 */
  box-sizing: border-box;
  padding: 10px 0px;
}

.hm-contact-footer .hm-ny-ct-footer .hm-ny-ct-box-footer .hm-ny-ct-content-footer .hm-btn-footer:hover {
  background-color: var(--secundary-color);
}

@media screen and (max-width:768px) {
  footer .foot-main .foot-nav {
    width: 100%;
    margin: 0 auto;
    /* display: none; */
  }

  footer .foot-main .foot-letxt {
    width: 100%;
    margin: 0 auto;
  }

  footer .foot-main .foot-message {
    width: 100%;
    margin: 0 auto;
  }

  footer .foot-main .foot-letxt .foot-le-txt {
    font-size: 12px;
    width: 100%;
  }

  footer .foot-main .foot-letxt .stt {
    font-size: 18px;
  }

  footer .foot-main .foot-letxt .stel a {
    font-size: 18px;
  }

  footer .foot-main .foot-letxt .stel i {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }

  footer .yq-link {
    display: none;
  }

  footer .foot-main {
    display: block;
    /* border-top: none; */
    /* padding: 40px 0 20px 0; */
  }

  footer .foot-main .foot-ewm {
    margin-top: 10px;
  }

  footer .foot-main .foot-ewm p {
    font-size: 12px;
  }

  footer .foot-copyr {
    font-size: 10px;
  }

  footer .foot-copyr p {
    float: none;
    text-align: center;
  }

  footer .foot-copyr p img {
    width: 90px;
    margin-top: -7px !important;
  }

  .webfoot_status {
    flex-wrap: wrap;
    justify-content: center;
  }

  .webfoot_copy {
    display: block;
    justify-content: center;

  }

}

/* footer */