.appMain .nav-section {
  width: 100%;
  height: 95px;
  position: relative;
  z-index: 2;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(61, 113, 208, 0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.appMain .nav-section .nav-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 280px;
  padding: 0 24px;
}
.appMain .nav-section .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  color: #666;
  text-decoration: none;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}
.appMain .nav-section .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: transparent;
  border-radius: 999px;
  transition: background-color 0.3s ease;
}
.appMain .nav-section .nav-item.is-active,
.appMain .nav-section .nav-item:hover {
  color: #333;
}
.appMain .nav-section .nav-item.is-active::after,
.appMain .nav-section .nav-item:hover::after {
  background: #ff7a00;
}
.appMain .nav-section .nav-item img {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: width 0.3s ease, height 0.3s ease;
}
@media (max-width: 1536px) {
  .appMain .nav-section {
    height: 95px;
  }
  .appMain .nav-section .nav-inner {
    gap: 240px;
  }
  .appMain .nav-section .nav-item {
    font-size: 20px;
  }
  .appMain .nav-section .nav-item img {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1280px) {
  .appMain .nav-section {
    height: 92px;
  }
  .appMain .nav-section .nav-inner {
    gap: 180px;
  }
  .appMain .nav-section .nav-item {
    font-size: 18px;
    gap: 8px;
  }
  .appMain .nav-section .nav-item img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1024px) {
  .appMain .nav-section {
    height: 88px;
  }
  .appMain .nav-section .nav-inner {
    gap: 130px;
  }
  .appMain .nav-section .nav-item {
    font-size: 17px;
    gap: 7px;
  }
  .appMain .nav-section .nav-item img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .appMain .nav-section {
    height: 82px;
  }
  .appMain .nav-section .nav-inner {
    gap: 64px;
    justify-content: space-evenly;
  }
  .appMain .nav-section .nav-item {
    font-size: 16px;
    gap: 6px;
  }
  .appMain .nav-section .nav-item img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 640px) {
  .appMain .nav-section {
    height: 78px;
  }
  .appMain .nav-section .nav-inner {
    gap: 24px;
  }
  .appMain .nav-section .nav-item {
    font-size: 15px;
    gap: 5px;
  }
  .appMain .nav-section .nav-item img {
    width: 22px;
    height: 22px;
  }
}
.appMain .banner-section {
  width: 100%;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
  transition: background-position 0.3s ease, background-size 0.3s ease;
}
.appMain .banner-section .banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  max-height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 0;
  transition: min-height 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}
.appMain .banner-section .banner-content {
  width: 52%;
  min-width: 0;
  padding: 0;
}
.appMain .banner-section .banner-title {
  font-size: 32px;
  color: #333333;
  font-weight: 600;
  transition: font-size 0.3s ease, margin-bottom 0.3s ease;
  font-family: "HONORSans-Demibold";
}
.appMain .banner-section .banner-subtitle {
  margin: 0 0 10px;
  font-size: 32px;
  color: #333333;
  font-weight: 600;
  transition: font-size 0.3s ease;
  font-family: "HONORSans-Demibold";
}
.appMain .banner-section .banner-desc {
  margin: 0 0 22px;
  max-width: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  transition: max-width 0.3s ease, font-size 0.3s ease, line-height 0.3s ease;
}
.appMain .banner-section .banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 40px;
  padding: 0 18px;
  border-radius: 4px;
  background: linear-gradient(89.78deg, #FF9932 0%, #F60 100%);
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.appMain .banner-section .banner-button span {
  flex: 0 0 auto;
}
.appMain .banner-section .banner-button img {
  flex: 0 0 auto;
  margin-left: 6px;
}
.appMain .banner-section .banner-button:hover {
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.18);
  transform: translateY(-1px);
}
@media (max-width: 1536px) {
  .appMain .banner-section {
    padding: 0 24px;
  }
}
@media (max-width: 1280px) {
  .appMain .banner-section {
    background-position: center center;
  }
  .appMain .banner-section .banner-title {
    font-size: 30px;
  }
  .appMain .banner-section .banner-subtitle {
    font-size: 30px;
  }
  .appMain .banner-section .banner-desc {
    max-width: 400px;
    font-size: 15px;
  }
  .appMain .banner-section .banner-button {
    min-width: 160px;
    height: 44px;
    font-size: 15px;
  }
  .appMain .banner-section .banner-button img {
    margin-left: 6px;
  }
}
@media (max-width: 1024px) {
  .appMain .banner-section {
    background-position: 68% center;
  }
  .appMain .banner-section .banner-inner {
    min-height: 280px;
  }
  .appMain .banner-section .banner-content {
    width: 58%;
  }
  .appMain .banner-section .banner-title {
    font-size: 28px;
  }
  .appMain .banner-section .banner-subtitle {
    font-size: 28px;
  }
  .appMain .banner-section .banner-desc {
    font-size: 14px;
  }
  .appMain .banner-section .banner-button {
    min-width: 150px;
    height: 42px;
    font-size: 14px;
  }
  .appMain .banner-section .banner-button img {
    margin-left: 6px;
  }
}
@media (max-width: 768px) {
  .appMain .banner-section {
    background-position: 66% center;
  }
  .appMain .banner-section .banner-inner {
    min-height: 240px;
  }
  .appMain .banner-section .banner-content {
    width: 72%;
  }
  .appMain .banner-section .banner-title {
    font-size: 24px;
  }
  .appMain .banner-section .banner-subtitle {
    font-size: 24px;
  }
  .appMain .banner-section .banner-desc {
    max-width: 100%;
    font-size: 13px;
  }
  .appMain .banner-section .banner-button {
    min-width: 140px;
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
  .appMain .banner-section .banner-button img {
    margin-left: 6px;
  }
}
@media (max-width: 640px) {
  .appMain .banner-section {
    background-position: center top;
  }
  .appMain .banner-section .banner-inner {
    min-height: 210px;
  }
  .appMain .banner-section .banner-content {
    width: 100%;
  }
  .appMain .banner-section .banner-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .appMain .banner-section .banner-subtitle {
    font-size: 20px;
    line-height: 1.2;
  }
  .appMain .banner-section .banner-desc {
    margin-bottom: 16px;
    font-size: 12px;
  }
  .appMain .banner-section .banner-button {
    min-width: 128px;
    height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }
  .appMain .banner-section .banner-button img {
    margin-left: 6px;
  }
}
.appMain .spec-section {
  width: 100%;
  padding: 72px 24px 88px;
  background: #fff;
  transition: padding 0.3s ease, background-color 0.3s ease;
}
.appMain .spec-section .spec-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.appMain .spec-section .spec-header {
  text-align: center;
  margin-bottom: 34px;
}
.appMain .spec-section .spec-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
  color: #333;
  font-weight: 700;
  transition: font-size 0.3s ease, margin-bottom 0.3s ease;
}
.appMain .spec-section .spec-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
  transition: font-size 0.3s ease, gap 0.3s ease;
}
.appMain .spec-section .spec-preview {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid #ff7a00;
  border-radius: 999px;
  color: #333333;
  text-decoration: none;
  font-size: 12px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.appMain .spec-section .spec-preview:hover {
  background: #ff7a00;
  color: #fff;
  transform: translateY(-1px);
}
.appMain .spec-section .spec-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.appMain .spec-section .spec-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  background-clip: padding-box;
  border: 1px solid transparent;
  border-top: 3px solid #ff7a00;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 10px 0 rgba(20, 43, 86, 0.1);
}
.appMain .spec-section .spec-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.appMain .spec-section .spec-card-head-section {
  padding-left: 24px;
  padding-right: 24px;
}
.appMain .spec-section .spec-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 16px;
  border-bottom: 1px solid #ececf2;
}
.appMain .spec-section .spec-card-head h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  color: #333;
  font-weight: 700;
}
.appMain .spec-section .spec-card-head p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #999;
}
.appMain .spec-section .spec-tag {
  width: 80px;
  height: 63px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: -16px;
}
.appMain .spec-section .spec-features {
  min-height: 150px;
  flex: 1;
  overflow: hidden;
  margin: 0;
  padding: 16px 24px 12px 24px;
  list-style: none;
}
.appMain .spec-section .spec-features li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 21px;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  transition: color 0.3s ease;
}
.appMain .spec-section .spec-features li::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 16px;
  height: 16px;
  top: 2px;
  color: #ff7a00;
  font-weight: 700;
  background-size: cover;
}
.appMain .spec-section .spec-features li .highlight {
  color: #ff7a00;
}
.appMain .spec-section .spec-storage {
  padding: 0 24px 18px;
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: baseline;
}
.appMain .spec-section .spec-storage .num {
  color: #ff7a00;
  font-size: 28px;
}
.appMain .spec-section .spec-storage .size {
  color: #ff7a00;
}
.appMain .spec-section .spec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px 22px;
  background: #f9fafc;
}
.appMain .spec-section .spec-price {
  color: #ff7a00;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}
.appMain .spec-section .spec-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 32px;
  padding: 0 18px;
  background: #ff7a00;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.appMain .spec-section .spec-button:hover {
  background: #ff8a1f;
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.18);
  transform: translateY(-1px);
}
.appMain .spec-section .spec-table-wrap {
  margin-top: 14px;
}
.appMain .spec-section .spec-table-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}
.appMain .spec-section .spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 4px;
}
.appMain .spec-section .spec-table th,
.appMain .spec-section .spec-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #ececf2;
  border-right: 1px solid #ececf2;
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
  color: #555;
  vertical-align: middle;
}
.appMain .spec-section .spec-table th {
  background: #f2f3f7;
  color: #666;
  font-weight: 600;
}
.appMain .spec-section .spec-table thead tr th:nth-child(3),
.appMain .spec-section .spec-table thead tr th:nth-child(4) {
  text-align: right;
}
.appMain .spec-section .spec-table tbody tr td:nth-child(3),
.appMain .spec-section .spec-table tbody tr td:nth-child(4) {
  text-align: right;
}
.appMain .spec-section .spec-table tbody tr:nth-child(odd) td {
  color: #666;
  background: #fff;
}
.appMain .spec-section .spec-table tbody tr:nth-child(even) td {
  color: #666;
  background: #fafbfc;
}
.appMain .spec-section .spec-table tr:last-child td {
  border-bottom: 0;
}
.appMain .spec-section .spec-table td:last-child,
.appMain .spec-section .spec-table th:last-child {
  border-right: 0;
}
.appMain .spec-section .spec-table .highlight {
  color: #ff7a00 !important;
  font-weight: 700;
}
.appMain .spec-section .spec-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.8;
  display: flex;
}
.appMain .spec-section .spec-note .spec-note-left-content .asterisk {
  color: #ff6d05;
}
.appMain .spec-section .spec-note .spec-note-left-content .remark {
  color: #333;
}
.appMain .spec-section .spec-note .spec-note-right-content {
  flex: 1;
  overflow: hidden;
  color: #888;
}
@media (max-width: 1536px) {
  .appMain .spec-section {
    padding: 68px 24px 82px;
  }
}
@media (max-width: 1280px) {
  .appMain .spec-section {
    padding: 64px 24px 76px;
  }
  .appMain .spec-section .spec-title {
    font-size: 28px;
  }
  .appMain .spec-section .spec-cards {
    gap: 16px;
  }
  .appMain .spec-section .spec-card-head-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1024px) {
  .appMain .spec-section {
    padding: 58px 20px 68px;
  }
  .appMain .spec-section .spec-cards {
    grid-template-columns: 1fr;
  }
  .appMain .spec-section .spec-card-head-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .appMain .spec-section .spec-features {
    padding: 14px 20px 10px 20px;
  }
  .appMain .spec-section .spec-storage,
  .appMain .spec-section .spec-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .appMain .spec-section {
    padding: 50px 18px 58px;
  }
  .appMain .spec-section .spec-header {
    margin-bottom: 26px;
  }
  .appMain .spec-section .spec-title {
    font-size: 24px;
  }
  .appMain .spec-section .spec-subtitle {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
  }
  .appMain .spec-section .spec-table-title {
    font-size: 13px;
  }
  .appMain .spec-section .spec-card-head-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .appMain .spec-section .spec-features {
    padding-left: 18px;
    padding-right: 18px;
  }
  .appMain .spec-section .spec-storage,
  .appMain .spec-section .spec-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .appMain .spec-section .spec-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .appMain .spec-section .spec-card-head h3 {
    font-size: 16px;
  }
  .appMain .spec-section .spec-price {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .appMain .spec-section {
    padding: 42px 16px 50px;
  }
  .appMain .spec-section .spec-title {
    font-size: 22px;
  }
  .appMain .spec-section .spec-card-head-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .appMain .spec-section .spec-features {
    padding: 12px 16px 8px 16px;
  }
  .appMain .spec-section .spec-storage {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
  }
  .appMain .spec-section .spec-footer {
    padding: 14px 16px 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .appMain .spec-section .spec-button {
    min-width: 96px;
  }
  .appMain .spec-section .spec-note {
    font-size: 11px;
    line-height: 1.7;
  }
}
.appMain .features-section {
  width: 100%;
  padding: 72px 24px 96px;
  background: #f7f7f9;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.appMain .features-section .features-inner {
  max-width: 1200px;
  margin: 0 auto;
  transition: max-width 0.3s ease;
}
.appMain .features-section .features-title {
  margin: 0 0 44px;
  text-align: center;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  color: #333;
  transition: font-size 0.3s ease, margin-bottom 0.3s ease;
}
.appMain .features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 36px;
  transition: gap 0.3s ease, grid-template-columns 0.3s ease;
}
.appMain .features-section .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 10px 2px;
  color: #666;
  transition: transform 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.appMain .features-section .feature-card:hover {
  transform: translateY(-4px);
}
.appMain .features-section .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.appMain .features-section .feature-icon img {
  display: block;
  max-width: 48px;
  max-height: 48px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.appMain .features-section .feature-card:hover .feature-icon img {
  transform: scale(1.06);
}
.appMain .features-section .feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
  color: #3a3a3a;
  font-weight: 600;
  transition: font-size 0.3s ease;
}
.appMain .features-section .feature-card p {
  margin: 0;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.8;
  color: #777;
  transition: font-size 0.3s ease, line-height 0.3s ease;
}
@media (max-width: 1536px) {
  .appMain .features-section {
    padding: 68px 24px 90px;
  }
  .appMain .features-section .features-inner {
    max-width: 1200px;
  }
}
@media (max-width: 1280px) {
  .appMain .features-section {
    padding: 64px 24px 84px;
  }
  .appMain .features-section .features-title {
    font-size: 26px;
  }
  .appMain .features-section .features-grid {
    gap: 36px 28px;
  }
}
@media (max-width: 1024px) {
  .appMain .features-section {
    padding: 56px 20px 76px;
  }
  .appMain .features-section .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .appMain .features-section .feature-card p {
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .appMain .features-section {
    padding: 48px 18px 64px;
  }
  .appMain .features-section .features-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .appMain .features-section .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .appMain .features-section .feature-card h3 {
    font-size: 16px;
  }
  .appMain .features-section .feature-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media (max-width: 640px) {
  .appMain .features-section {
    padding: 40px 16px 56px;
  }
  .appMain .features-section .features-title {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .appMain .features-section .features-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .appMain .features-section .feature-card {
    padding: 6px 8px 0;
  }
  .appMain .features-section .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }
  .appMain .features-section .feature-card h3 {
    font-size: 16px;
  }
  .appMain .features-section .feature-card p {
    max-width: none;
  }
}
.appMain .faq-section {
  width: 100%;
  padding: 70px 24px 110px;
  background: #ffffff;
  transition: padding 0.3s ease, background-color 0.3s ease;
}
.appMain .faq-section .faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  transition: max-width 0.3s ease;
}
.appMain .faq-section .faq-title {
  margin: 0 0 42px;
  text-align: center;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  color: #333;
  transition: font-size 0.3s ease, margin-bottom 0.3s ease;
}
.appMain .faq-section .faq-collapse {
  border: 0;
  background: transparent;
}
.appMain .faq-section .faq-collapse .el-collapse-item {
  border-bottom: 1px solid #ececec;
}
.appMain .faq-section .faq-collapse .el-collapse-item__header {
  height: auto;
  min-height: 64px;
  padding: 18px 12px 18px 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease, font-size 0.3s ease, padding 0.3s ease;
}
.appMain .faq-section .faq-collapse .el-collapse-item__wrap {
  border: 0;
  background: transparent;
}
.appMain .faq-section .faq-collapse .el-collapse-item__content {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #777;
}
.appMain .faq-section .faq-collapse .el-collapse-item__arrow {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.appMain .faq-section .faq-collapse .el-collapse-item__header.is-active {
  color: #111;
}
.appMain .faq-section .faq-content {
  max-width: 1120px;
  padding-right: 30px;
}
@media (max-width: 1536px) {
  .appMain .faq-section {
    padding: 64px 24px 100px;
  }
}
@media (max-width: 1280px) {
  .appMain .faq-section {
    padding: 60px 24px 92px;
  }
  .appMain .faq-section .faq-title {
    font-size: 26px;
  }
  .appMain .faq-section .faq-collapse .el-collapse-item__header {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .appMain .faq-section {
    padding: 56px 20px 84px;
  }
  .appMain .faq-section .faq-content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .appMain .faq-section {
    padding: 48px 18px 72px;
  }
  .appMain .faq-section .faq-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .appMain .faq-section .faq-collapse .el-collapse-item__header {
    min-height: 58px;
    font-size: 16px;
    padding: 14px 10px 14px 0;
  }
  .appMain .faq-section .faq-collapse .el-collapse-item__content {
    padding-bottom: 16px;
    font-size: 13px;
    line-height: 1.8;
  }
}
@media (max-width: 640px) {
  .appMain .faq-section {
    padding: 40px 16px 60px;
  }
  .appMain .faq-section .faq-title {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .appMain .faq-section .faq-collapse .el-collapse-item__header {
    min-height: 54px;
    font-size: 15px;
    padding: 12px 8px 12px 0;
  }
  .appMain .faq-section .faq-collapse .el-collapse-item__content {
    padding-bottom: 14px;
  }
}
