/* 客服支持页面专用样式 */

.support-hero {
  width: 100%;
  height: 840px;
  background: url("../images/support.png") center center/cover no-repeat;
  display: flex;
  position: relative;
  padding-top: 69px;
}
.support-maincard {
  width: 54.9%;
  height: 65%;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  left: 9.4%;
  animation: floatCard 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* background-color: skyblue; */
  background-image: url('../images/support-card.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.support-maincard .support-maincard-title {
  width: 56%;
  position: absolute;
  top: 40%;
  left: 4%;
}
.support-maincard .support-info {
  color: #fff;
  /* font-size: 30px; */
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 4px 24px rgba(58, 143, 255, 0.18);
  letter-spacing: 2px;
  margin-bottom: 18px;
  margin-top: 0;
  animation: fadeInLeft 1.2s;
  font-family: Source Han Sans SC;
  font-weight: 500;
  font-size: 50px;
  color: #fdfdfd;
}

.support-maincard .support-desc {
  margin-bottom: 24px;
  animation: fadeInLeft 1.2s 0.2s backwards;
  font-family: Source Han Sans SC;
  font-weight: 500;
  font-size: 40px;
  color: #fdfdfd;
}
.support-maincard .support-arrow {
  color: #fff;
  font-size: 38px;
  margin-top: 18px;
  letter-spacing: 8px;
  animation: arrowMove 1.6s infinite alternate;
}
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(18px);
  }
}
.support-maincard .support-qr {
  position: absolute;
  top: 32%;
  left:70%;
  transform: translateX(-50%);
  z-index: -1;
  width: 318px;
  height: 318px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(58, 143, 255, 0.1);
  margin-left: 32px;
  animation: fadeInRight 1.2s;
}
.support-maincard .support-qr img {
  width: 100%;
  height: 100%;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(0px);
  }
  100% {
    opacity: 1;
    transform: translateX(-10);
  }
}

.support-contact-section {
  width: 100%;
  background: #eaf6fb;
  padding: 60px 0 0 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.support-contact-section .support-qr-main {
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(58, 143, 255, 0.1);
  margin: 0 auto 18px auto;
  animation: fadeInUp 1.2s;
}
.support-contact-section .support-qr-main img {
  width: 100%;
  height: 100%;
}
.support-contact-section .support-phone {
  color: #0090e7;
  font-size: 20px;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}
.support-contact-section .support-fixed-btns {
  position: absolute;
  right: 10vw;
  top: 20%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}
.support-contact-section .support-fixed-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.support-contact-section .support-fixed-btn:hover {
  transform: scale(1.08) translateY(-8px) rotate(-2deg);
  /* box-shadow: 0 8px 32px rgba(58, 143, 255, 0.18); */
}
.support-contact-section .support-fixed-btn img {
  width: 63px;
  height: 56px;
}
.support-contact-section .btn-desc {
  margin-top: 10px;
  color: #1ca5e8;
  font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .support-hero {
    height: 700px;
  }

  .support-maincard {
    width: 700px;
    left: 8%;
  }

  .support-maincard .support-info {
    font-size: 48px;
  }

  .support-maincard .support-desc {
    font-size: 36px;
  }

  .support-maincard .support-qr {
    width: 280px;
    height: 280px;
  }

  .support-contact-section .support-fixed-btns {
    right: 5vw;
  }
}

@media (max-width: 900px) {
  .support-hero {
    height: 500px;
    padding-top: 60px;
  }

  .support-maincard {
    position: relative;
    width: 90%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
  }

  .support-maincard .support-info {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .support-maincard .support-desc {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .support-maincard .support-qr {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    margin: 20px auto 0 auto;
  }

  .support-contact-section {
    padding: 40px 0 0 0;
  }

  .support-contact-section .support-qr-main {
    width: 180px;
    height: 180px;
  }

  .support-contact-section .support-phone {
    font-size: 18px;
  }

  .support-contact-section .support-fixed-btns {
    position: relative;
    right: auto;
    top: auto;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
  }

  .support-contact-section .support-fixed-btn img {
    width: 50px;
    height: 45px;
  }

  .support-contact-section .btn-desc {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .support-hero {
    height: 400px;
  }

  .support-maincard {
    width: 95%;
    padding: 15px;
  }

  .support-maincard .support-info {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .support-maincard .support-desc {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .support-maincard .support-qr {
    width: 150px;
    height: 150px;
    margin: 15px auto 0 auto;
  }

  .support-contact-section {
    padding: 30px 0 0 0;
  }

  .support-contact-section .support-qr-main {
    width: 140px;
    height: 140px;
  }

  .support-contact-section .support-phone {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .support-contact-section .support-fixed-btns {
    gap: 15px;
    margin-top: 15px;
  }

  .support-contact-section .support-fixed-btn img {
    width: 40px;
    height: 36px;
  }

  .support-contact-section .btn-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .support-hero {
    height: 350px;
  }

  .support-maincard {
    width: 98%;
    padding: 10px;
  }

  .support-maincard .support-info {
    font-size: 24px;
  }

  .support-maincard .support-desc {
    font-size: 18px;
  }

  .support-maincard .support-qr {
    width: 120px;
    height: 120px;
  }

  .support-contact-section .support-qr-main {
    width: 120px;
    height: 120px;
  }

  .support-contact-section .support-phone {
    font-size: 14px;
  }

  .support-contact-section .support-fixed-btn img {
    width: 35px;
    height: 31px;
  }

  .support-contact-section .btn-desc {
    font-size: 12px;
  }
}
