/* CSS Reset - 去掉浏览器默认样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* 移动端自适应字体大小 */
@media (max-width: 749px) {
  html {
    font-size: calc(100vw / 23.4375); /* 基于375px设计稿: 375/16=23.4375 */
    font-size: clamp(12px, calc(100vw / 23.4375), 18px);
  }
}

/* 大屏移动设备 */
@media (min-width: 414px) and (max-width: 749px) {
  html {
    font-size: calc(100vw / 25.875); /* 基于414px设计稿: 414/16=25.875 */
    font-size: clamp(14px, calc(100vw / 25.875), 18px);
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: Noto Sans S Chinese, Noto Sans S Chinese;
  background-color: #f0f2f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.page-container {
  width: 100%;
  min-height: 100vh;
  padding-top: 80px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

/* Hero Section */
.hero-section {
  background: url("/wp-content/uploads/assets/images/shopify/imgs/pcBanner.png") no-repeat;
  background-size: cover;
  color: white;
  height: 380px;
  display: flex;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-button {
  background: #ffff00;
  color: #1f2937 !important;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Users Section */
.users-section {
  padding: 4rem 0rem;
  background: #f3f5ff;
}

.users-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #353535;
}

.users-grid {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.user-item {
  width: 359px;
  text-align: center;
}
.user-icon img {
  height: 210px;
}
.user-icon {
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.875rem;
  color: #2b2b2b;
}

.user-item p {
  color: #353535;
  font-size: 14px;
}

/* Advantages Section */
.advantages-section {
  padding: 4rem 0rem;
  background: white;
}

.advantages-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #1f2937;
}

.advantages-grid {
  /* max-width: 1200px;
  margin: 0 auto;
 */
  display: flex;
}
.advantage-item {
  width: 290px;
  margin-right: 12px;
  /* flex: 1; */
  background: #ffffff;
  box-shadow: 0px 0px 8px 4px rgba(0, 67, 171, 0.1);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
}

.advantage-icon {
  height: 190px;
  margin: 0 auto 20px;
}

.advantage-item h3 {
  font-size: 24px;
  color: #2b2b2b;
  font-weight: bold;
  margin-bottom: 12px;
}

.advantage-item p {
  font-size: 14px;
  color: #353535;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 2rem 0rem;
  background: #f3f5ff;
}

.services-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.services-subtitle {
  text-align: center;
  color: #353535;
  margin-bottom: 3rem;
  padding: 0 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.service-row-1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 190px;
}
.service-img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  bottom: auto;
  right: auto;
  transform: translate(-50%, -50%);
  height: auto;
  object-fit: contain;
}

.service-row-2 {
  position: relative;
  top: -30px;
  display: flex;
  justify-content: space-between;
}
.service-content {
  width: 360px;
  color: #333;
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 1rem;
  border-bottom: solid 1px #0366ff;
}

.service-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Process Section */
.process-section {
  padding: 4rem 0rem;
  background: white;
}

.process-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #1f2937;
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step-item {
  padding: 1.5rem;
}

.step-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #2b2b2b;
}

.step-description {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.step-description p {
  color: #353535;
  font-size: 14px;
  margin: 0;
  padding: 0;
  position: relative;
}

/* PC Responsive */
@media (min-width: 751px) {
  .advantages-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }
  .mobile-service-img {
    display: none;
  }
  .mobile-contact-form {
    display: none;
  }
  /* Contact Section */
  .contact-section {
    padding-bottom: 64px;
  }

  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .dot {
    width: 24px;
    height: 24px;
    background-color: #0366ff;
    border-radius: 50%;
    margin-right: 16px;
  }
  .contact-info {
    display: flex;
    align-items: center;
  }
  .contact-info h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0366ff;
    font-weight: bold;
    font-size: 20px;
    color: #0366ff;
    margin-right: 24px;
  }

  .contact-form {
    display: flex;
    align-items: center;
  }

  .contact-form form {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .form-label {
    font-weight: 400;
    margin: 0 12px 0 17px;
    font-size: 18px;
    color: #000000;
  }
  .form-group {
    margin: 0;
  }

  .form-input {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #0366ff;
    border-radius: 0.25rem !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-image: linear-gradient(180deg, #edf4ff 0, #ffffff 100%);
    font-size: clamp(0.875rem, 0.844rem + 0.16vw, 1rem);
  }

  .form-input:focus {
    border-color: #0366ff;
    box-shadow: 0 0 0 3px rgba(3, 102, 255, 0.1);
  }

  .form-input::placeholder {
    color: #9ca3af;
    font-size: 14px;
  }
  .verification-code {
    width: 132px;
    height: 40px;
    background: #fcefcf;
  }
  .refresh-icon {
    width: 24px;
    height: 24px;
  }
  .submit-btn {
    background-color: #0366ff;
    color: #333;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
  }
}
/* PC Responsive */
@media (max-width: 1210px) {
  .service-img {
    zoom: 0.8;
  }
}
/* PC Responsive */
@media (max-width: 1110px) {
  .service-img {
    zoom: 0.7;
  }
}
/* PC Responsive */
@media (max-width: 1100px) {
  .service-img {
    zoom: 0.6;
  }
}
/* PC Responsive */
@media (max-width: 1100px) {
  .service-img {
    zoom: 0.5;
  }
}
/* PC Responsive */
@media (max-width: 920px) {
  .service-img {
    zoom: 0.4;
  }
}
/* Mobile Responsive */
@media (max-width: 750px) {
  .page-container {
    padding-top: 58px;
  }

  .contact-container {
    display: none;
  }
  .service-img {
    display: none;
  }
  .mobile-service-img {
    display: block;
    margin: 0 auto;
    margin-bottom: 32px;
    padding: 20px;
  }
  .hero-section {
    height: 280px;
    background: url("/wp-content/uploads/assets/images/shopify/imgs/mobileBanner.png") no-repeat;
    background-size: cover;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 1.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 80%;
    height: auto;
  }

  .users-section {
    background-color: #fff;
    padding: 2rem 1.5rem;
  }

  .users-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .users-grid {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .user-item {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
  }
  .user-item:last-child {
    border-bottom: none;
  }
  .user-icon img {
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
  }

  .user-item h3 {
    margin-left: 10px;
    font-size: 12px;
    margin-bottom: 0.5rem;
    text-align: left;
    color: #2b2b2b;
  }

  .user-item p {
    margin-left: 10px;
    width: 190px;
    text-align: left;
    font-size: 10px;
    line-height: 1.4;
  }

  .advantages-section {
    background-color: #f3f5ff;
    padding: 2rem 1.5rem;
  }

  .advantages-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .advantages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    padding: 0;
    gap: 12px;
  }
  .advantages-grid2 {
    margin-top: 12px;
  }
  .advantage-icon {
    height: 100px;
  }
  .advantage-item {
    margin-right: 0;
    flex: 1;
    padding: 0.75rem;
  }

  .advantage-item h3 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
  .advantage-item img {
    min-height: 100%;
    max-height: 100%;
    width: 100%;
  }
  .advantage-item p {
    font-size: 0.8rem;
  }

  .services-section {
    padding: 2rem 1.5rem;
    padding-bottom: 0px;
    background-color: #fff;
  }

  .services-section h2 {
    font-size: 1.5rem;
  }
  .services-subtitle {
    padding: 0;
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }

  .service-row-1,
  .service-row-2 {
    display: flex;
    flex-direction: row;
    margin-bottom: 0px;
  }

  .service-content {
    width: 100%;
    padding: 0.75rem;
    text-align: center;
  }

  .service-content h3 {
    font-size: 0.7rem;
  }

  .service-content p {
    flex: 1;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .process-section {
    background-color: #f3f5ff;
    padding: 2rem 1.5rem;
  }

  .process-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .process-steps {
    display: block;
    max-width: 100%;
  }

  .step-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0px 0px 8px 4px rgba(55, 71, 177, 0.25);
    border-radius: 16px 16px 16px 16px;
    padding: 0.5rem 0.5rem;
    margin-bottom: 24px;
  }
  .step-number {
    height: 60px;
    margin-right: 12px;
  }
  .step-number img {
    width: 60px;
    max-width: 120px;
    height: 60px;
  }

  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .step-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.8rem;
    text-align: left;
    margin-top: 0;
  }

  .step-description p {
    font-size: 0.75rem;
    line-height: 1.3;
    position: relative;
    color: #353535;
    margin: 0;
    padding-left: 0.8rem;
    hyphens: none;
  }

  .step-description p::before {
    content: "•";
    color: #353535;
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  /* Contact Section */
  .contact-section {
    padding: 2rem 1.5rem;
    background-color: #ffffff;
  }

  .contact-container {
    display: none;
  }

  .mobile-contact-form {
    display: block;
    background-color: #ffffff;
    border-radius: 0.5rem;
    text-align: center;
    max-width: 100%;
  }

  .mobile-contact-form h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
  }

  .mobile-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .mobile-form-group {
    width: 100%;
  }

  .input-with-icon {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    padding: 0 1rem;
  }

  .input-with-icon img {
    margin-right: 0.75rem;
    width: 0.85rem;
    height: 1, 2rem;
  }

  .input-with-icon input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 1rem 0;
    font-size: 0.9rem;
    background-color: transparent;
  }

  .input-with-icon input::placeholder,
  .verification-group input::placeholder {
    color: #bbbbbb;
  }

  .verification-group {
    display: flex;
    gap: 0.75rem;
  }

  .verification-group input {
    padding: 1rem;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    flex-grow: 1;
  }

  .verification-group button {
    background-color: transparent;
    border: 1px solid #488df8;
    color: #488df8;
    padding: 1rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .mobile-contact-form .submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #488df8;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    margin-top: 0.5rem;
  }

  .contact-info {
    display: none;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .form-label {
    display: none;
  }

  .form-input {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    background-color: #fafafa;
  }

  .verification-code-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .verification-code {
    flex-grow: 1;
  }

  .get-code-btn {
    padding: 1rem;
    font-size: 0.9rem;
    color: #488df8;
    background-color: transparent;
    border: 1px solid #488df8;
    border-radius: 0.375rem;
    cursor: pointer;
    white-space: nowrap;
  }
}
