* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 主要内容区域 */
.property-pledge {
  color: #4B5563;
}
.property-pledge .banner {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.property-pledge h1 {
  margin: 70px 0 30px;
  font-size: 32px;
  font-weight: bold;
  color: #3D3D3D;
}
.property-pledge h2.section-title {
  margin: 30px 0;
  padding: 25px 0;
  border-bottom: 2px solid #4B5563;
  font-size: 22px;
  font-weight: bold;
  color: #3D3D3D;
}
.property-pledge .icon-desc {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-right: 20px;
  vertical-align: middle;
  text-align: center;
  background-color: rgba(30,64,175,.1);
}
.property-pledge .icon-desc.icon1 {
  background: url('/node/public/image/property-pledge/icon1.svg') no-repeat center center, rgba(30,64,175,.1);
}
.property-pledge .icon-desc.icon2 {
  background: url('/node/public/image/property-pledge/icon2.svg') no-repeat center center, rgba(30,64,175,.1);
}
.property-pledge .icon-desc.icon-addr {
  background: url('/node/public/image/property-pledge/addr.svg') no-repeat center center, rgba(30,64,175,.1);
}
.property-pledge .icon-desc.icon-phone {
  background: url('/node/public/image/property-pledge/phone.svg') no-repeat center center, rgba(30,64,175,.1);
}
.property-pledge .icon-desc.icon-email {
  background: url('/node/public/image/property-pledge/email.svg') no-repeat center center, rgba(30,64,175,.1);
}
/* 信息公示表格 */
.info-publication {
  overflow: hidden;
}
.table-container {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
  overflow-x: auto;
}
.table-container th, .table-container td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E9ECEF;
}
.table-container tr:hover {
  background-color: #F9FAFB;
}
.table-container th {
  background-color: #F9FAFB;
  color: #6B7280;
  font-weight: normal;
}
.table-container td {
  color: #3B82F6;
}
/* 业务介绍 */
.business-intro {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.intro-item {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  transition: transform .3s ease;
  color: #3D3D3D;
}
.intro-item:hover {
  transform: translateY(-5px);
}
.intro-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}
.intro-content h3 {
  margin: 20px 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: #1F2937;
}
/* 材料清单 */
.materials-list {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.materials-column {
  flex: 1;
  min-width: 300px;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
.materials-column h3 {
  margin-bottom: 10px;
  line-height: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #1F2937;
}
.materials-column h3 i {
  margin-right: 10px;
  font-size: 18px;
}
.materials-list ul {
  list-style: none;
}
.materials-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #E9ECEF;
  position: relative;
  padding-left: 40px;
}
.materials-list li::before {
  width: 16px;
  height: 16px;
  line-height: 16px;
  position: absolute;
  left: 12px;
  top: 12px;
  content: '✔';
  border-radius: 100%;
  text-align: center;
  font-size: 11px;
  color: #FFF;
  background-color: #1E40AF;
}
/* 联系我们和在线预约 */
.contact-and-reservation {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.contact-and-reservation h3 {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: bold;
  color: #3D3D3D;
}
.contact-info, .reservation-form {
  flex: 1;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
}
.form-group {
  position: relative;
  margin-bottom: 15px;
}
.img-verifyCode {
  width: 120px;
  height: 37px;
  position: absolute;
  top: 1px;
  right: 1px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 10px;
}
.img-verifyCode {
  width: 120px;
  height: 37px;
  position: absolute;
  top: 1px;
  right: 1px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 10px;
}
.change-verifyCode {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 2px;
  right: 2px;
  cursor: pointer;
  background: url(/node/public/image/about-us/scroll-screen/refresh.svg) no-repeat center center;
  background-size: 100%;
}
.form-control {
  width: 100%;
  padding: 10px !important;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 15px;
  color: #9CA3AF;
}
textarea.form-control {
  height: 60px;
  resize: vertical;
}
.btn-submit {
  background-color: #1E40AF;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
  margin-top: 10px;
}
.btn-submit:hover {
  background-color: #0056B3;
}
/* 常见问题 */
.faq {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 60px;
  padding: 25px 20px 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
.faq h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #1F2937;
}
.faq p {
  margin-bottom: 10px;
}
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #E9ECEF;
  padding-bottom: 20px;
}
.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .container-in {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .business-intro, .materials-list, .contact-and-reservation {
    flex-direction: column;
  }
  .intro-item, .materials-column, .contact-info, .reservation-form {
    min-width: auto;
  }
}
