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

body {
  font-family: Arial, sans-serif;
}

.container {
  margin: 0 auto;
  padding: 0;
}
.header-wrapper {
  background: #3d7930;
  padding-bottom: 27px;
}
.header {
  display: flex;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.title {
  text-align: center;
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.subtitle {
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-bottom: 20px;
}

.loan-card {
  background: white;
  border-radius: 22px;
  padding: 16px;
  box-sizing: border-box;
  margin: 0 15px;
}

.amount-display {
  text-align: center;
  margin: 20px 0;
}

.amount-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 500;
  font-size: 20px;
  color: #332f21;
}

.control-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.control-btn:hover {
  background: #e0e0e0;
}

.logo {
  width: 100px;
  height: 26px;
  display: flex;
  align-items: center;
}

.logo img {
  width: 100%;
  height: 100%;
}

.header-desc {
  margin-left: 20px;
  color: #cddcc9;
  font-size: 11px;
}

.loan-amount {
  margin-bottom: 30px;
}

.amount-label {
  font-weight: 400;
  font-size: 12px;
  color: #332f21;
  line-height: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  margin-bottom: 10px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: transparent;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: 6px solid #0ec62f;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-progress {
  position: absolute;
  height: 100%;
  background: #0ec62f;
  border-radius: 5px;
  pointer-events: none;
}

.amount-range {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #332f21;
}

.loan-duration {
  margin-bottom: 30px;
}

.duration-label {
  font-size: 12px;
  font-weight: 500;
  color: #332f21;
  margin-bottom: 15px;
}

.duration-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.duration-option {
  flex: 1;
  padding: 10px 5px;
  text-align: center;
  background: #d8d8d8;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  color: #332f21;
  cursor: pointer;
  transition: all 0.3s;
}

.duration-option.active {
  background: #0ec62f;
  color: white;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #ffd600;
  border: none;
  border-radius: 8px;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #ffc400;
}

.requirements {
  text-align: left;
  font-weight: 400;
  font-size: 10px;
  color: #000000;
  line-height: 14px;
  margin-top: 20px;
}

.features {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding: 0 20px;
}

.feature {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
}

.feature img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.steps-section {
  padding: 30px 15px;
  background: #fff;
}

.steps-title {
  font-size: 20px;
  font-weight: 600;
  color: #332f21;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.steps-container {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 24px 16px;
}

.step-item {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  padding: 2px;
  border: 1px dashed #3d7930;
  border-radius: 8px;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #332f21;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 16px;
}

.step-arrow {
  margin-bottom: 24px;
}

.step-arrow img {
  width: 8px;
  height: 14px;
}

.security-section {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.security-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #332f21;
  text-align: left;
  margin-bottom: 8px;
  line-height: 1.3;
}

.security-content {
  gap: 20px;
}

.security-icon {
  flex-shrink: 0;
  width: 103px;
  height: 127px;
  margin-right: 22px;
}

.security-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.security-info {
  flex: 1;
}

.security-text {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 15px;
  margin-bottom: 12px;
}

.security-info ul {
  list-style: none;
}

.security-info li {
  font-weight: 500;
  font-size: 10px;
  color: #000000;
  line-height: 15px;
  margin-bottom: 8px;
}

.steps-section .submit-btn {
  margin: 24px 0;
}

/* 添加新的样式 */
.benefits-section {
  padding: 10px 0px;
  background: #fff;
}

.benefits-title {
  font-size: 20px;
  font-weight: 600;
  color: #332f21;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.3;
}

.benefits-container {
  background: #d1edcb;
  border-radius: 16px;
  padding: 24px 16px;
  margin: 0 16px;
}

.benefit-item {
  text-align: center;
  margin-bottom: 24px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.benefit-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #332f21;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 280px;
}

.credit-check {
  width: 100%;
  margin-top: 24px;
  padding: 24px;
  box-sizing: border-box;
  background: #6fd758;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.credit-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #332f21;
  margin-bottom: 4px;
}

.credit-text p {
  font-size: 14px;
  color: #666;
}

.credit-check .credit-submit-btn {
  padding: 13px;
  box-sizing: border-box;
  background: #fedc06;
  border-radius: 8px;
  border: 2px solid #000000;
  font-weight: 600;
  font-size: 10px;
  color: #000000;
  white-space: nowrap;
}

/* 在文件末尾添加新样式 */
.loan-rates-section {
  padding: 20px 16px;
  background: #fff;
}

.rates-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.rates-table {
  width: 100%;
  overflow: hidden;
  margin-bottom: 12px;
}

.table-row {
  display: flex;
  width: 100%;
}

.table-row.header {
  background: #EDEDED;
  color: #3A3A3A;
}

.table-row:not(.header):nth-child(odd) {
  background: #EDEDED;
}

.table-row:not(.header):nth-child(even) {
  background: #ffffff;
}

.cell {
  flex: 1;
  padding: 10px 5px;
  font-size: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  box-sizing: border-box;
  border-right: 1px solid #e0e0e0;
}

.c-r-bb {
  background-color: #568a4b !important;
}
.c-r-cc {
  background-color: #3d7930 !important;
}

.table-row:not(.header) .cell:first-child {
  background: #3d7930;
  color: #fff;
  font-weight: 500;
}

.cell:last-child {
  border-right: none;
}

.rates-note {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}
/* ser-fn */
.ser-fn {
  width: 100%;
  background-color: #2C5024;
  padding: 12px;
  border-radius: 12px;
  box-sizing: border-box;
}
.ser-fn-t {
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 14px;
  margin-bottom: 12px;
  text-align: center;
}
.ser-fn-s {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 17px;
  margin-bottom: 12px;
}
.ser-fn-info {
  font-weight: 400;
  font-size: 10px;
  color: #FFFFFF;
  line-height: 14px;
}
.ser-fr {
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}
.ser-fr-box {
  width: 100%;
  background: #EDEDED;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
}
.ser-fr-t {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  color: #3D7930;
  margin-bottom: 12px;
}
.ser-fr-t img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.ser-fr-s {
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  line-height: 16px;
}

.info-sections {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.info-section {
  margin-bottom: 24px;
}

.info-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
}

.info-section a {
  color: #1050B1;
}

.info-section a:hover {
  text-decoration: underline;
}

/* 添加底部样式 */
.footer {
  color: #fff;
  box-sizing: border-box;
}

.footer-content {
  background: #2C5024;
  padding: 13px 16px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
}

.copyright {
  font-size: 14px;
  font-weight: 400;
  color: #cddcc9;
  margin-bottom: 16px;
}

.company-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #cddcc9;
  margin-bottom: 24px;
}

.customer-service h3 {
  font-size: 14px;
  font-weight: 400;
  color: #cddcc9;
  margin-bottom: 8px;
}

.customer-service ul {
  list-style: none;
  padding: 0;
}

.customer-service li {
  font-size: 14px;
  font-weight: 400;
  color: #cddcc9;
  line-height: 1.4;
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 16px;
  box-sizing: border-box;
}

.nav-item {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}

.nav-item.active {
  color: #3D7930;
  font-weight: 500;
}

.nav-item:hover {
  color: #3D7930;
}
