/* 自定义样式 */
.top-nav {
  background: linear-gradient(180deg, #cde8ff 0%, rgba(157, 214, 253, 0) 100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-col-logo {
  flex: 0 0 auto;
}

.nav-col-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-col-login {
  flex: 0 0 auto;
  text-align: right;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
}

/* 个人信息表单样式 */
.personal-info-form {
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: "Source Han Sans", sans-serif;
  font-size: 16px;
  color: #222229;
  margin-bottom: 8px;
}

.form-group input {
  width: 90%;
  height: 40px;
  /* border: 1px solid #dcdfe6; */
  border-radius: 4px;
  padding: 0 15px;
  font-size: 16px;
  color: #606266;
  background-color: #f5f7fa;
}

.form-group input:focus {
  outline: none;
  border-color: #409eff;
}

.form-group input::placeholder {
  color: #c0c4cc;
}

.save-button {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 40px;
  background-color: #409eff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin: 30px auto 0;
}

/* 联系我们页面样式 */
.contact-section {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact-text {
  font-family: "Source Han Sans", sans-serif;
  font-size: 16px;
  color: #666666;
}

.contact-text a {
  color: #409eff;
  text-decoration: none;
}

.feedback-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: "Source Han Sans", sans-serif;
  font-size: 16px;
  color: #222229;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 0px solid #dcdfe6;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 16px;
  color: #606266;
  background-color: #f5f7fa;
  font-family: "Source Han Sans", sans-serif;
}

.form-group input {
  height: 40px;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #409eff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c0c4cc;
}

.submit-button {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 40px;
  background-color: #409eff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin: 30px auto 0;
}

.submit-button:hover {
  background-color: #66b1ff;
}

.section-title {
  font-family: "Source Han Sans", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #222229;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* 联系我们右侧卡片样式，参考关于我们页面 */
.feature-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
  margin-bottom: 30px;
}

.lxwm-feature-card {
  flex: 1;
  background-color: #fff;
  /* border: 1px solid #b9cae4; */
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.lxwm-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-right: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #303133;
  margin-bottom: 8px;
}

.feature-desc {
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 0px;

  color: #999999;
  margin: 0;
}

@media (max-width: 768px) {
  .feature-cards {
    flex-direction: column;
    gap: 16px;
  }
  .feature-card {
    width: 100%;
  }
}

/* 联系我们输入框样式定制 */
.contact-section .form-group input,
.contact-section .form-group textarea {
  width: 871px !important;
  border-radius: 10px !important;
  border: none !important;
  background: #f7f7f7 !important;
}
.contact-section .form-group input {
  height: 45px !important;
}
.contact-section .form-group textarea {
  min-height: 120px;
  height: auto;
}

/* 客服热线卡片专属样式 */
.feature-card.hotline-card {
  width: 875px;
  height: 90px;
  border-radius: 12px;
  background: #ffffff;
}

/* 提交成功弹窗样式 */
.success-modal-mask {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none; /* 默认隐藏 */
  align-items: center;
  justify-content: center;
}

.success-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  text-align: center;
}

.success-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.success-modal-close:hover {
  color: #333;
}

.success-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #222229;
  margin-bottom: 12px;
}

.success-modal-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.success-modal-btn {
  display: block;
  width: 180px;
  height: 48px;
  margin: 0 auto;
  background: #5191ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.success-modal-btn:hover {
  background: #4080ee;
}

/*委托页面样式 */
.entrust-page-container {
  padding: 32px 0;
}

.entrust-main-card {
  background: #fff;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 40px 32px;
}

.entrust-main-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 32px;
}

.entrust-feature-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.entrust-feature-card {
  cursor: pointer;
}

.entrust-feature-card .feature-icon {
  margin-bottom: 15px;
}

.entrust-feature-card .feature-icon img {
  width: 56px;
  height: 56px;
}

.entrust-form-group {
  margin-bottom: 24px;
}

.entrust-form-group label {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.entrust-form-input {
  width: 100%;
  height: 44px;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 16px;
}

/* 户型选择按钮样式 */
.entrust-house-type-buttons {
  display: flex;
  gap: 12px;
  align-items: flex-start; /* 左对齐 */
}

.entrust-house-type-button {
  width: 80px; /* 固定宽度 */
  height: 44px;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  background: #fff;
  color: #606266;
  cursor: pointer;
  transition: all 0.3s ease;
}

.entrust-house-type-button.active {
  border-color: #51a5ff;
  background-color: #deecff;
  color: #51a5ff;
}

/* 提交按钮样式 */
.entrust-submit-button {
  width: 400px;
  height: 60px;
  border-radius: 6px;
  background: #5191ff;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0 auto; /* 居中 */
  display: block; /* 确保居中生效 */
}

.entrust-submit-button:hover {
  background: #4080ee;
}

/* 委托页面原型图样式 */
.entrust-type-selector {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  width: 100%;
}

.entrust-type-item {
  display: flex;
  align-items: center;
  width: calc(25% - 12px);
  padding: 16px;
  margin: 0 12px;
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.entrust-type-item.active {
  background: #deecff;

  box-sizing: border-box;
  border: 1px solid #51a5ff;
  box-shadow: 0 0 10px rgba(64, 158, 255, 0.2);
}

.entrust-type-item-icon {
  width: 56px;
  height: 56px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.entrust-type-item-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.entrust-type-item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.entrust-type-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #303133;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.entrust-type-item-desc {
  font-size: 14px;
  color: #909399;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.entrust-form-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.entrust-form-row {
  margin-bottom: 24px;
}

.entrust-form-row label {
  display: block;
  font-size: 16px;
  color: #303133;
  margin-bottom: 8px;
}

.entrust-house-type-buttons {
  display: flex;
  gap: 12px;
}

.entrust-house-type-button {
  height: 44px;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  background: #fff;
  color: #606266;
  cursor: pointer;
  transition: all 0.3s ease;
}

.entrust-house-type-button.active {
  border-color: #409eff;
  background-color: #409eff;
  color: #fff;
}

.entrust-form-input {
  width: 95%;
  height: 44px;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 16px;
  color: #606266;
}

.entrust-form-input::placeholder {
  color: #c0c4cc;
}

.entrust-submit-button {
  width: 50%;
  height: 48px;
  background-color: #409eff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.entrust-submit-button:hover {
  background-color: #66b1ff;
}

/* 区域下拉样式 */
.area-dropdown-container {
  position: relative;
  width: 100%;
}

.area-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: #ffffff;
  border: 1px solid #e4e7ed;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.area-dropdown li {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.area-dropdown li:hover {
  background-color: #f5f7fa;
}

.area-dropdown li:last-child {
  border-radius: 0 0 6px 6px;
}

/* 登录页面样式 */
.dl-login-page {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/loginbg.png);
  background-size: cover;
  background-position: center;
}

.dl-login-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: right;
  align-items: center;
}

.dl-login-form-wrapper {
  position: relative;
  z-index: 2;
  width: 400px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px;
  box-sizing: border-box;
  margin-bottom: 120px;
}

.dl-login-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.dl-login-form-header h2 {
  font-size: 24px;
  color: #222229;
  margin-bottom: 8px;
}

.dl-login-form-header p {
  font-size: 16px;
  color: #666666;
}

.dl-login-form-tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 2px solid #f0f0f0;
}

.dl-login-tab {
  flex: 1;
  padding: 12px 0;
  background-color: transparent;
  border: none;
  color: #666666;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  text-align: center;
}

.dl-login-tab.active {
  color: #5191ff;
  font-weight: 600;
}

.dl-login-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #5191ff;
}

.dl-login-form {
  display: none;
  flex-direction: column;
}

.dl-form-group {
  margin-bottom: 20px;
}

.dl-form-group label {
  display: block;
  font-size: 16px;
  color: #222229;
  margin-bottom: 8px;
}

.dl-form-group input {
  width: 90%;
  height: 44px;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 16px;
  color: #606266;
  transition: border-color 0.3s ease;
}

.dl-form-group input:focus {
  outline: none;
  border-color: #5191ff;
}

.dl-verification-code-container {
  display: flex;
  gap: 10px;
}

.dl-verification-code-container input {
  flex: 1;
}

.dl-verification-code-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dl-verification-code-input-container {
  display: flex;
  align-items: center;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  background-color: #ffffff;
  height: 44px;
}

.dl-verification-code-icon {
  padding: 0 15px;
  color: #c0c4cc;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-verification-code-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dl-verification-code-input-container input {
  flex-grow: 1;
  border: none;
  height: 100%;
  padding: 0 15px;
  background-color: transparent;
}

.dl-get-verification-code {
  width: 100%;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  color: #5191ff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-align: center;
}

.dl-get-verification-code:hover {
  background-color: #f5f7fa;
  border-color: #5191ff;
}

.dl-get-verification-code img {
  width: 45px;
  height: 45px;
  vertical-align: middle;
  margin-right: 6px;
}

.dl-login-extra-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dl-remember-me {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666666;
}

.dl-remember-me input {
  margin-right: 8px;
  width: auto;
  height: auto;
}

.dl-forgot-password {
  color: #5191ff;
  text-decoration: none;
  font-size: 14px;
}

.dl-login-submit-button {
  width: 100%;
  height: 48px;
  background-color: #5191ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dl-login-submit-button:hover {
  background-color: #4080ee;
}

.dl-login-form-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #666666;
}

.dl-register-link {
  color: #5191ff;
  text-decoration: none;
  margin-left: 8px;
}

.dl-login-form-footer .agreement {
  color: #666666;
  font-size: 12px;
  margin-top: 16px;
}

.dl-login-form-footer .agreement input {
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .dl-login-form-wrapper {
    width: 90%;
    max-width: 400px;
    margin: 0 20px;
  }
}

/* 版权信息样式 */
.copyright-footer {
  background: #e7e7e7;
  padding: 30px 0;
  margin-top: 0;
  /* margin-top: 40px; */
  text-align: center;
}

.copyright-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.copyright-links {
  margin-bottom: 15px;
}

.copyright-links a {
  color: #666666;
  text-decoration: none;
  margin: 0 10px;
}

.copyright-links a:hover {
  color: #409eff;
}

.copyright-text {
  margin-bottom: 10px;
}

/* 浏览足迹页面样式 */
.browse-history-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.browse-history-header {
  text-align: center;
  margin-bottom: 32px;
}

.browse-history-header h2 {
  font-size: 24px;
  color: #303133;
  margin-bottom: 12px;
}

.browse-history-header p {
  font-size: 16px;
  color: #666666;
}

.browse-history-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.browse-history-item {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.browse-history-image {
  flex: 0 0 220px;
  position: relative;
  margin-right: 20px;
}

.browse-history-image img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.browse-history-time {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.browse-history-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.browse-history-item-title {
  font-size: 16px;
  font-weight: 600;

  color: #303133;
  margin-bottom: 5px;
  line-height: 1.4;
}

.browse-history-item-desc {
  font-size: 14px;
  color: #606266;
  margin-top: 16px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browse-history-info {
  display: flex;

  align-items: center;
  gap: 16px;
  color: #666666;
  margin-bottom: 0;
}

.browse-history-info span {
  background-color: #f7f8fa;
  color: #606266;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.browse-history-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.browse-history-price .price {
  font-size: 20px;
  color: #5191ff;
  font-weight: 600;
}

.browse-history-price .location {
  color: #666666;
  font-size: 14px;
}

.browse-history-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 20px;
}

.browse-history-action-btn {
  width: 100px;
  height: 40px;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  background-color: #ffffff;
  color: #5191ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.browse-history-action-btn:hover {
  background-color: #5191ff;
  color: #ffffff;
}

.browse-history-action-btn.delete {
  background-color: #ffffff;
  color: #ff4d4f;
  border-color: #ff4d4f;
}

.browse-history-action-btn.delete:hover {
  background-color: #ff4d4f;
  color: #ffffff;
}

/* 浏览足迹分页样式 */
.lljz-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 10px;
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.lljz-pagination-btn {
  padding: 8px 16px;
  border: 1px solid #e4e7ed;
  background-color: #ffffff;
  border-radius: 4px;
  color: #606266;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lljz-pagination-btn:hover:not(:disabled) {
  color: #5191ff;
  border-color: #5191ff;
}

.lljz-pagination-btn:disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}

.lljz-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lljz-pagination-number {
  width: 32px;
  height: 32px;
  border: 1px solid #e4e7ed;
  background-color: #ffffff;
  border-radius: 4px;
  color: #606266;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lljz-pagination-number:hover:not(.active) {
  color: #5191ff;
  border-color: #5191ff;
}

.lljz-pagination-number.active {
  background-color: #5191ff;
  color: #ffffff;
  border-color: #5191ff;
}

.lljz-pagination-ellipsis {
  color: #606266;
  margin: 0 4px;
}

/* 浏览足迹标签页样式 */
.section-header {
  display: flex;
}

.apartment-tab {
  font-size: 16px;
  color: #606266;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.apartment-tab:hover {
}

.apartment-tab-active {
  font-weight: 600;
}

.apartment-tab-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #5191ff;
}

/* 删除确认模态框样式 */
.confirm-delete-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.confirm-delete-modal .modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  width: 400px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.confirm-delete-modal h3 {
  font-size: 20px;
  color: #303133;
  margin-bottom: 16px;
}

.confirm-delete-modal p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 24px;
}

.confirm-delete-modal .modal-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.confirm-delete-modal .modal-btn {
  width: 120px;
  height: 44px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirm-delete-modal .modal-btn.cancel {
  background-color: #ffffff;
  border: 1px solid #e4e7ed;
  color: #666666;
}

.confirm-delete-modal .modal-btn.cancel:hover {
  background-color: #f5f7fa;
}

.confirm-delete-modal .modal-btn.confirm {
  background-color: #ff4d4f;
  border: none;
  color: #ffffff;
}

.confirm-delete-modal .modal-btn.confirm:hover {
  background-color: #ff7875;
}

/* 成交量页面样式 */
.cjl-user-info-bar {
  background-color: #f5f7fa;
  padding: 20px 0;
}

.cjl-user-info {
  display: flex;
  align-items: center;
}

.cjl-user-avatar {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.cjl-user-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.cjl-user-status {
  font-size: 16px;
  color: #333;
}

.cjl-user-menu {
  display: flex;
  gap: 30px;
}

.cjl-user-menu-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #666;
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s;
}

.cjl-user-menu-item:hover {
  background-color: #e6f2ff;
  color: #5191ff;
}

.cjl-user-menu-item.active {
  background-color: #e6f2ff;
  color: #5191ff;
}

.cjl-user-menu-item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.cjl-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cjl-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.4;
}

.cjl-tabs {
  display: flex;
  margin-bottom: 30px;
  gap: 15px;
  justify-content: flex-start;
}

.cjl-tab {
  padding: 10px 20px;
  font-size: 16px;
  color: #606266;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  background-color: #f5f5f5;
  border-radius: 4px;
  border: none;
  text-align: center;
}

.cjl-tab:hover {
  background-color: #e6f2ff;
}

.cjl-tab.active {
  color: #ffffff;
  font-weight: 600;
  background-color: #5191ff;
}

.cjl-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  /* border: 1px solid #f0f0f0; */
}

.cjl-section-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
  line-height: 1.4;
}

.cjl-search-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cjl-date-range {
  justify-content: flex-start;
}

.cjl-date-picker {
  position: relative;
  flex: 1;
  max-width: 80%;
  min-width: 200px;
}

.cjl-date-range .cjl-date-picker {
  max-width: 38%;
  margin-right: 20px;
}

.cjl-btn-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
}

.cjl-search-btn {
  height: 40px;
  padding: 0 20px;
  background-color: #5191ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  min-width: 80px;
}

.cjl-search-btn:hover {
  background-color: #4080ee;
}

.cjl-custom-date-select {
  width: 100%;
  height: 40px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 14px;
  color: #606266;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cjl-custom-date-select:hover {
  border-color: #c0c4cc;
}

.cjl-date-text {
  color: #909399;
  font-size: 14px;
}

.cjl-date-text.has-value {
  color: #303133;
}

.cjl-arrow-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
  opacity: 0.6;
}

.cjl-custom-date-select.active .cjl-arrow-icon {
  transform: rotate(180deg);
}

.cjl-date-input-hidden {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: -1;
}

/* 成交量数据图表样式 */
.cjl-chart-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.cjl-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cjl-chart-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.cjl-chart-legend {
  display: flex;
  gap: 20px;
}

.cjl-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cjl-legend-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.cjl-legend-text {
  font-size: 14px;
  color: #606266;
}

.cjl-chart {
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
}

.cjl-data-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.cjl-summary-item {
  text-align: center;
  flex: 1;
}

.cjl-summary-value {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.cjl-summary-item:nth-child(2) .cjl-summary-value {
  color: #52c41a;
}

.cjl-summary-item:nth-child(3) .cjl-summary-value {
  color: #ff4d4f;
}

.cjl-summary-label {
  font-size: 14px;
  color: #909399;
}

/* 面包屑导航样式 */
.breadcrumb-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.breadcrumb-row span {
  font-size: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
}

.breadcrumb-item {
  font-size: 16px;
}

.breadcrumb-item a {
  color: #409eff;
  text-decoration: none;
  font-size: 16px;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #909399;
  font-size: 16px;
}

/* 房源价格样式 */
.property-price {
  font-size: 24px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 0px;
  color: #f95137;
  margin-bottom: 15px;
  text-align: center;
}

/* 房源比对按钮样式 */
.compare-button {
  display: block;
  width: 100px;
  padding: 8px 0;
  background-color: #f95137;
  border: 1px solid #f95137;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.property-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100px;
  margin-left: 15px;
}

/* 筛选区域样式调整 */
.filter-section {
  margin-bottom: 20px;
  width: 98%;
}

.filter-bar {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.filter-col {
  flex: 1;
  min-width: 120px;
}

.filter-col:first-child {
  flex: 0 0 auto;
}

.filter-col:last-child {
  flex: 0 0 100px;
}

.custom-select {
  width: 100%;
  height: 40px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 14px;
  color: #606266;
  background-color: #fff;
  cursor: pointer;
}

.custom-button {
  width: 100px;
  height: 40px;
  background-color: #f95137;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* 调整browse-history-container样式 */
.browse-history-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* 调整房源比对按钮样式 */
.property-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100px;
  margin-left: 15px;
}

#phone-login-form {
  display: flex;
}

.login-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}
.browse-history-section-header {
  border: 2px dashed #dcdfe6;
  padding: 0px 10px;
}

.mortgage-calc-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 40px 24px 40px;
  max-width: 480px;
  margin: 40px auto 0 auto;
}
.mortgage-calc-title {
  font-size: 22px;
  font-weight: 600;
  color: #222229;
  text-align: center;
  margin-bottom: 24px;
}
.mortgage-calc-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1.5px solid #f0f0f0;
}
.mortgage-calc-tab {
  flex: 1;
  background: none;
  border: none;
  font-size: 16px;
  color: #333;
  padding: 12px 0;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.mortgage-calc-tab.active {
  color: #2a7bff;
  font-weight: 600;
  border-bottom: 2.5px solid #2a7bff;
  background: linear-gradient(90deg, #eaf3ff 0%, #fafdff 100%);
}
.mortgage-calc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mortgage-calc-row {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  margin-bottom: 0;
}
.mortgage-calc-label {
  min-width: 90px;
  color: #222229;
  font-weight: 500;
}
.mortgage-calc-input {
  width: 120px;
  height: 36px;
  border: 1px solid #e4e7ed;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 16px;
  color: #333;
  background: #f8fafd;
}
.mortgage-radio {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #333;
}
.mortgage-calc-btn-row {
  justify-content: center;
  margin-top: 18px;
}
.mortgage-calc-btn {
  width: 100%;
  max-width: 320px;
  height: 48px;
  background: #2a7bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 auto;
  transition: background 0.2s;
}
.mortgage-calc-btn:hover {
  background: #1a5fd0;
}

/* 成交量查询结果表格样式 */
.cjl-results-container {
  margin-top: 30px;
  transition: all 0.3s ease;
}

.cjl-table-container {
  margin-top: 15px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.cjl-table-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='250' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='30' transform='rotate(-15 30 30)' font-family='Arial, sans-serif' font-weight='bold' font-size='24' fill='rgba(81, 145, 255, 0.08)'%3EFindNest找房%3C/text%3E%3C/svg%3E")
      15% 20% no-repeat,
    url("data:image/svg+xml,%3Csvg width='250' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='30' transform='rotate(-15 30 30)' font-family='Arial, sans-serif' font-weight='bold' font-size='24' fill='rgba(81, 145, 255, 0.08)'%3EFindNest找房%3C/text%3E%3C/svg%3E")
      75% 30% no-repeat,
    url("data:image/svg+xml,%3Csvg width='250' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='30' transform='rotate(-15 30 30)' font-family='Arial, sans-serif' font-weight='bold' font-size='24' fill='rgba(81, 145, 255, 0.08)'%3EFindNest找房%3C/text%3E%3C/svg%3E")
      25% 70% no-repeat,
    url("data:image/svg+xml,%3Csvg width='250' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='30' transform='rotate(-15 30 30)' font-family='Arial, sans-serif' font-weight='bold' font-size='24' fill='rgba(81, 145, 255, 0.08)'%3EFindNest找房%3C/text%3E%3C/svg%3E")
      80% 75% no-repeat,
    url("data:image/svg+xml,%3Csvg width='250' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='30' transform='rotate(-15 30 30)' font-family='Arial, sans-serif' font-weight='bold' font-size='24' fill='rgba(81, 145, 255, 0.08)'%3EFindNest找房%3C/text%3E%3C/svg%3E")
      50% 50% no-repeat;
  background-size: 250px 50px;
  z-index: 1;
  pointer-events: none;
}

.cjl-table-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: none;
  z-index: 1;
  pointer-events: none;
}

.cjl-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
  position: relative;
  z-index: 2;
}

.cjl-data-table th,
.cjl-data-table td {
  padding: 12px 15px;
  text-align: center;
  border: 1px solid #ebeef5;
}

.cjl-data-table th {
  background-color: #f5f7fa;
  font-weight: 600;
  color: #606266;
}

.cjl-data-table .cjl-table-title {
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  background-color: #e6f2ff;
  padding: 15px;
  text-align: center;
}

.cjl-data-table tbody tr:hover {
  background-color: #f5f7fa;
}

.cjl-data-table tfoot {
  font-weight: 600;
  background-color: #f0f2f5;
}

.cjl-data-table tfoot td {
  border-top: 2px solid #dcdfe6;
}

/* 委托表单卡片样式 */
.entrust-form-card-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.entrust-form-card {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(90deg, #e6f2ff 0%, #fafdff 100%);
  border-radius: 12px;
  border: 1px solid #51a5ff;
  box-shadow: 0 4px 12px rgba(81, 165, 255, 0.1);
}

.entrust-form-card-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entrust-form-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.entrust-form-card-text {
  display: flex;
  flex-direction: column;
}

.entrust-form-card-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #303133;
  margin: 0 0 5px 0;
}

.entrust-form-card-text p {
  font-size: 14px;
  color: #5191ff;
  margin: 0;
}

/* 委托需求页面样式 */

/* 委托标签页 */
.entrust-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.entrust-tab {
  padding: 10px 20px;
  margin-right: 5px;
  color: #606266;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  transition: all 0.3s ease;
}

.entrust-tab:hover {
  color: #1890ff;
}

.entrust-tab.active {
  color: #1890ff;
  border-bottom: 2px solid #1890ff;
  font-weight: 500;
}

/* 委托列表样式 */
.entrust-list {
  margin-bottom: 20px;
}

.entrust-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.entrust-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* 委托头部样式 */
.entrust-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.entrust-type {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #303133;
}

.entrust-type img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.entrust-date {
  margin-left: auto;
  margin-right: 20px;
  color: #909399;
  font-size: 13px;
}

.entrust-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}

.entrust-status.pending {
  background-color: #e6f7ff;
  color: #1890ff;
}

.entrust-status.completed {
  background-color: #f6ffed;
  color: #52c41a;
}

/* 委托内容样式 */
.entrust-content {
  padding: 20px;
  background-color: #fff;
}

.entrust-info {
  margin-bottom: 15px;
}

.entrust-info-item {
  margin-bottom: 8px;
  display: flex;
}

.info-label {
  width: 80px;
  color: #909399;
  flex-shrink: 0;
}

.info-value {
  color: #303133;
}

/* 委托联系信息样式 */
.entrust-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.entrust-broker {
  display: flex;
  align-items: center;
}

.broker-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.broker-name {
  font-size: 14px;
  color: #303133;
}

.entrust-actions {
  display: flex;
}

.entrust-action-btn {
  padding: 6px 12px;
  margin-left: 10px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.entrust-action-btn.detail {
  background-color: #e6f7ff;
  color: #1890ff;
  border: 1px solid #91d5ff;
}

.entrust-action-btn.detail:hover {
  background-color: #bae7ff;
}

.entrust-action-btn.cancel {
  background-color: #fff2f0;
  color: #ff4d4f;
  border: 1px solid #ffccc7;
}

.entrust-action-btn.cancel:hover {
  background-color: #ffd4d2;
}

/* 买房类型特殊样式 */
.entrust-type.buy {
  color: #1890ff;
}

/* 租房类型特殊样式 */
.entrust-type.rent {
  color: #52c41a;
}

/* 出租类型特殊样式 */
.entrust-type.sell {
  color: #722ed1;
}

/* 卖房类型特殊样式 */
.entrust-type.sale {
  color: #fa8c16;
}

/* 房源比对页面样式 */
.compare-header {
  text-align: center;
  margin-bottom: 25px;
}

.compare-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: #303133;
  margin-bottom: 8px;
}

.compare-header p {
  font-size: 14px;
  color: #606266;
}

.compare-table-container {
  margin-bottom: 30px;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ebeef5;
}

.compare-table th,
.compare-table td {
  border: 1px solid #ebeef5;
  padding: 12px 15px;
  text-align: center;
}

.property-feature {
  width: 120px;
  background-color: #f5f7fa;
  font-weight: 600;
  text-align: left;
}

.property-item {
  min-width: 200px;
}

.property-header {
  padding: 10px;
  text-align: center;
}

.property-image {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.property-title {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.property-price {
  color: #f95137;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.remove-btn {
  padding: 4px 10px;
  background-color: #f56c6c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.remove-btn:hover {
  background-color: #e64242;
}

.feature-name {
  font-weight: 600;
  background-color: #f5f7fa;
  text-align: left;
}

.rating {
  display: inline-flex;
}

.star {
  color: #dcdfe6;
  font-size: 18px;
}

.star.filled {
  color: #f7ba2a;
}

.action-row {
  background-color: #f8f8f8;
}

.detail-btn,
.appointment-btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  margin: 0 5px;
  font-size: 12px;
  text-decoration: none;
}

.detail-btn {
  background-color: #ecf5ff;
  color: #409eff;
  border: 1px solid #d9ecff;
}

.detail-btn:hover {
  background-color: #409eff;
  color: #fff;
}

.appointment-btn {
  background-color: #f95137;
  color: #fff;
  border: 1px solid #f95137;
}

.appointment-btn:hover {
  background-color: #ff6a53;
}

.compare-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.add-property-btn,
.clear-all-btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.add-property-btn {
  background-color: #f5f7fa;
  color: #409eff;
  border: 1px solid #d9ecff;
}

.add-property-btn:hover {
  background-color: #ecf5ff;
}

.clear-all-btn {
  background-color: #fff0f0;
  color: #f56c6c;
  border: 1px solid #fcd3d3;
}

.clear-all-btn:hover {
  background-color: #fde2e2;
}

.compare-suggestions {
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 20px;
}

.compare-suggestions h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #303133;
}

.suggestion-card {
  display: flex;
  background-color: #fff;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.suggestion-icon {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.suggestion-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.suggestion-content {
  flex: 1;
}

.suggestion-content p {
  margin: 0;
  color: #606266;
  line-height: 1.6;
}

/* 预约看房筛选标签页样式 */
.appointment-filters {
  margin-bottom: 25px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.filter-section {
  margin-bottom: 15px;
}

.filter-section:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 14px;
  font-weight: 600;
  color: #303133;
  margin-bottom: 10px;
  display: inline-block;
  min-width: 80px;
}

.filter-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab {
  padding: 6px 16px;
  background-color: #f5f7fa;
  color: #606266;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  background-color: #e6f2ff;
  color: #409eff;
}

.filter-tab.active {
  background-color: #409eff;
  color: #ffffff;
}

/* 预约项目类型标签样式 */
.property-type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.property-type-badge.rent {
  background-color: #5191ff;
}

.property-type-badge.second-hand {
  background-color: #f95137;
}

.property-type-badge.office {
  background-color: #722ed1;
}

.property-type-badge.new {
  background-color: #52c41a;
}

/* 预约状态样式扩展 */
.appointment-status.accepted {
  background-color: #e6f7ff;
  color: #1890ff;
}

.appointment-status.visited {
  background-color: #f9f0ff;
  color: #722ed1;
}

.appointment-status.completed {
  background-color: #f6ffed;
  color: #52c41a;
}

/* 修改图片容器为相对定位，便于放置标签 */
.appointment-image {
  position: relative;
}

/* 我的收藏页面样式 */
.favorite-container {
  width: 100%;
  margin: 0 auto;
}

.favorite-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.select-all-container {
  display: flex;
  align-items: center;
}

.select-all-checkbox {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.batch-actions {
  display: flex;
  gap: 10px;
}

.batch-action-btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.batch-action-btn.delete-selected {
  background-color: #ff4d4f;
  color: white;
}

.batch-action-btn.add-to-compare {
  background-color: #1890ff;
  color: white;
}

.batch-action-btn.create-collection {
  background-color: #52c41a;
  color: white;
}

.favorite-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.favorite-item {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.favorite-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.favorite-checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background-color: #f9f9f9;
}

.favorite-checkbox {
  width: 16px;
  height: 16px;
}

.favorite-item-image {
  position: relative;
  width: 220px;
  height: 160px;
  flex-shrink: 0;
}

.favorite-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorite-item-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.favorite-item-tags {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.favorite-tag {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  color: white;
  font-weight: 600;
}

.favorite-tag.hot {
  background-color: #ff4d4f;
}

.favorite-tag.new {
  background-color: #1890ff;
}

.favorite-tag.discount {
  background-color: #fa8c16;
}

.favorite-tag.school {
  background-color: #722ed1;
}

.favorite-tag.promotion {
  background-color: #52c41a;
}

.favorite-item-details {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
}

.favorite-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #303133;
  margin-bottom: 10px;
}

.favorite-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.favorite-item-attrs,
.favorite-item-location,
.favorite-item-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.favorite-item-attrs span,
.favorite-item-location span,
.favorite-item-features span {
  font-size: 13px;
  color: #606266;
  background-color: #f5f7fa;
  padding: 2px 8px;
  border-radius: 4px;
}

.favorite-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}

.favorite-time {
  font-size: 13px;
  color: #909399;
}

.favorite-buttons {
  display: flex;
  gap: 10px;
}

.action-btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.action-btn.view-detail {
  background-color: #f5f7fa;
  color: #1890ff;
  border: 1px solid #e8e8e8;
}

.action-btn.book-visit {
  background-color: #1890ff;
  color: white;
}

.action-btn.remove-favorite {
  background-color: #f5f7fa;
  color: #ff4d4f;
  border: 1px solid #e8e8e8;
}

.action-btn:hover {
  opacity: 0.8;
}

/* 验证码输入样式 */
.verify-code-container {
    display: flex;
    align-items: center;
    width: 98%;
}

.verify-code-input {
    flex-grow: 1;
    margin-right: 10px;
    width: 100%;
    height: 44px;
    border: 1px solid #e4e7ed;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 16px;
    color: #606266;
}

.get-verify-code {
    width: auto;
    min-width: 100px;
    height: 44px;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0 15px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.get-verify-code:hover {
    background-color: #45a049;
}

.get-verify-code:active {
    background-color: #3e8e41;
}

/* 经纪人信息卡片样式 */
.broker-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.broker-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.broker-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.broker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.broker-info h4 {
    font-size: 18px;
    color: #303133;
    margin: 0 0 8px 0;
}

.broker-info p {
    font-size: 14px;
    color: #909399;
    margin: 0;
}

.broker-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.broker-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.broker-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #606266;
}

.broker-contact-item img {
    width: 20px;
    height: 20px;
}

.broker-service-tag {
    display: flex;
    gap: 10px;
}

.broker-service-tag span {
    background-color: #f0f7ff;
    color: #5191ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.broker-card-footer {
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.broker-card-footer p {
    font-size: 14px;
    color: #909399;
    margin: 0;
}
