.pc-page {
  background-color: #f5f5f5;
  max-width: 100%;
}

.banner {
  width: 100%;
  height: 500px;
  background: url("../images/renewal_banner_pc.png") no-repeat center;
  background-size: cover;
}

.container-nopx {
  padding: 40px 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: -38px;
  box-shadow: 0px 0px 16px 0px rgba(45, 45, 45, 0.3);
}

.desc-nopx {
  font-size: 24px;
  color: #333333;
}

.tips-nopx {
  font-size: 16px;
  color: #999999;
  margin-top: 10px;
}

.question-item-nopx {
  padding: 25px 0;
}

.title-nopx {
  font-weight: bold;
  font-size: 18px;
  color: #161616;
}

.is-required {
  color: #f00;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.option-item {
  width: calc(50% - 10px);
  font-size: 16px;
  color: #333;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.option-item:hover {
  background-color: #f0f8ff;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #1e8af9;
}

.contact-nopx {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.input-nopx {
  flex: 1;
  font-size: 16px;
  height: 56px;
  border-radius: 2px;
  background-color: #edf6fc;
  padding: 0 16px;
  border: 1px solid transparent;
  outline: none;
}

.input-nopx:focus {
  border-color: #1e8af9;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.input-nopx::placeholder {
  color: #a9b5bc;
}

.agreement-nopx {
  font-size: 16px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}

.agreement-nopx a {
  color: #1e8af9;
  text-decoration: none;
}

.agreement-nopx a:hover {
  text-decoration: underline;
}

.button-nopx {
  width: 430px;
  height: 56px;
  max-width: 100%;
  font-size: 16px;
  background-color: #1e8af9;
  border: 1px solid #1e8af9;
  color: white;
  border-radius: 28px;
  margin: 15px auto;
  display: block;
  cursor: pointer;
  transition: background-color 0.2s;
}

.button-nopx:hover {
  background-color: #1976d2;
  color: white;
}

.button-nopx:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.text1-nopx {
  font-size: 14px;
  color: #333333;
  text-align: center;
}

.text2-nopx {
  font-size: 14px;
  color: #686868;
  margin-top: 30px;
  text-align: center;
}

.text2-nopx span {
  color: #f00;
}

.text3-nopx {
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 50px;
  text-align: center;
}

.error-msg-nopx {
  font-size: 12px;
  color: #f14c4c;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.loading {
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* 移动端样式 */
@media (max-width: 768px) {
  .pc-page {
    width: 100vw;
  }
  .banner {
    height: 150px;
  }
  .container-nopx {
    width: 100%;
    padding: 20px;
  }
  .desc-nopx {
    font-size: 16px;
  }
  .tips-nopx {
    font-size: 14px;
  }
  .qustion-list {
    margin-top: 20px;
  }
  .question-item-nopx {
    padding: 15px 0;
  }
  .option-list {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
  .option-item {
    width: 100%;
    font-size: 14px;
    padding: 5px;
  }
  .title-nopx {
    font-size: 16px;
  }
  .contact-nopx {
    display: block;
    gap: 10px;
  }
  .contact-nopx .input-nopx {
    width: 100%;
    height: 44px;
    margin-bottom: 10px;
  }
  .button-nopx {
    height: 44px;
  }
  .text3-nopx {
    margin-top: 10px;
  }
}
