    :root {
      --primary-color: #3498db;
      --primary-dark: #2980b9;
      --secondary-color: #2c3e50;
      --accent-color: #e74c3c;
      --light-bg: #f8f9fa;
      --text-color: #333;
      --light-text: #f8f9fa;
      --gray-light: #ecf0f1;
      --gray: #bdc3c7;
      --shadow: 0 4px 6px rgba(0,0,0,0.1);
      --transition: all 0.3s ease;
      --radius: 8px;
      --container-padding: 20px;
    }
    
    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--light-bg);
      overflow-x: hidden;
    }
    
    a {
      color: var(--primary-color);
      text-decoration: none;
      transition: var(--transition);
    }
    
    a:hover {
      color: var(--primary-dark);
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    ul, ol {
      list-style-position: inside;
      padding-left: 1rem;
    }
    
    h1, h2, h3, h4, h5, h6 {
      margin-bottom: 1rem;
      font-weight: 600;
      line-height: 1.2;
    }
    
    p {
      margin-bottom: 1rem;
    }
    
    /* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }
    
    /* Header */
    header {
      background-color: #fff;
      box-shadow: var(--shadow);
      position: relative;
      z-index: 100;
    }
    
    .header-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.5rem 1rem;
      text-align: center;
    }
    
    .logo {
      display: block;
      margin-bottom: 1rem;
    }
    
    .logo img {
      max-width: 180px;
      height: auto;
    }
    
    .header-title {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      color: var(--secondary-color);
    }
    
    .header-subtitle {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 1rem;
    }
    
    .city-selector {
      font-size: 1.1rem;
      margin-top: 0.5rem;
      background-color: rgba(52, 152, 219, 0.1);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-weight: 500;
    }
    
    /* Navigation */
    nav {
      background-color: var(--secondary-color);
      position: sticky;
      top: 0;
      z-index: 99;
    }
    
    .nav-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      padding: 0;
    }
    
    .nav-link {
      color: var(--light-text);
      padding: 1rem 1.2rem;
      display: inline-block;
      text-align: center;
      font-weight: 500;
      position: relative;
    }
    
    .nav-link:hover {
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--light-text);
    }
    
    .nav-link i {
      margin-right: 0.5rem;
    }
    
    /* Dropdown Menu */
    .dropdown {
      position: relative;
      display: inline-block;
    }
    
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: var(--secondary-color);
      min-width: 200px;
      box-shadow: var(--shadow);
      z-index: 3;
      border-radius: 0 0 var(--radius) var(--radius);
      overflow: hidden;
    }
    
    .dropdown-content a {
      color: var(--light-text);
      padding: 0.8rem 1.2rem;
      display: block;
      text-align: left;
    }
    
    .dropdown-content a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    /* Mobile Navigation Toggle */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 1rem;
    }
    
    /* Sections */
    section {
      background-color: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      margin: 1.5rem 0;
      padding: 2rem;
    }
    
    section h2 {
      color: var(--secondary-color);
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 0. tenter code here.5rem;
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    /* Hero Section */
    #home {
      text-align: center;
      padding: 4rem 2rem;
      background-image: linear-gradient(to right, rgba(52, 152, 219, 0.8), rgba(44, 62, 80, 0.8)), url('cityscape.jpg');
      background-size: cover;
      background-position: center;
      color: white;
      margin-top: 0;
      border-radius: 0;
    }
    
    #home h1 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }
    
    #home p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .btn {
      display: inline-block;
      padding: 0.8rem 1.8rem;
      background-color: var(--primary-color);
      color: white;
      border-radius: 30px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: var(--transition);
      border: none;
      cursor: pointer;
    }
    
    .btn:hover {
      background-color: var(--primary-dark);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    /* About Section */
    .feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .feature-item {
      display: flex;
      align-items: flex-start;
      padding: 1rem;
      border-radius: var(--radius);
      background-color: var(--light-bg);
      transition: var(--transition);
    }
    
    .feature-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    
    .feature-icon {
      color: var(--primary-color);
      font-size: 1.5rem;
      margin-right: 1rem;
      padding-top: 0.2rem;
    }
    
    .feature-text h4 {
      margin-bottom: 0.5rem;
      color: var(--secondary-color);
    }
    
    /* Search Box */
    .search-box {
      padding: 1.5rem;
      background-color: white;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      margin-bottom: 1.5rem;
    }
    
    .search-form {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
    }
    
    .search-input {
      flex: 1;
      min-width: 200px;
      padding: 0.8rem 1.2rem;
      border: 1px solid var(--gray);
      border-radius: 30px;
      font-size: 1rem;
      outline: none;
      transition: var(--transition);
    }
    
    .search-input:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    }
    
    .search-button {
      padding: 0.8rem 1.5rem;
      background-color: var(--primary-color);
      color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 500;
      transition: var(--transition);
    }
    
    .search-button:hover {
      background-color: var(--primary-dark);
    }
    
    /* Properties Grid */
    #properties {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      padding: 2rem;
    }
    
    .property-card {
      border-radius: var(--radius);
      overflow: hidden;
      background-color: white;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .property-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    }
    
    .property-images {
      position: relative;
      overflow: hidden;
	  width: 100%; /* 确保容器宽度为 100% */
    }
    
    .property-images-scroll {
      display: flex;
      transition: transform 0.3s ease;
      min-height: 200px;
	  width: 100%; /* 确保滑动容器宽度受限 */
    }
    
    .property-images img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      flex-shrink: 0;
	  max-width: 100%; /* 防止图片超出容器 */
    }
    
    .image-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 2;
    }
    
    .property-card:hover .image-nav {
      opacity: 1;
    }
    
    .image-nav.prev {
      left: 10px;
    }
    
    .image-nav.next {
      right: 10px;
    }
    
    .date-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: rgba(255, 255, 255, 0.9);
      color: var(--secondary-color);
      padding: 0.3rem 0.6rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
      z-index: 1;
    }
    
    .property-content {
      padding: 1.2rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .property-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      color: var(--secondary-color);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .property-title a {
      color: var(--secondary-color);
    }
    
    .property-title a:hover {
      color: var(--primary-color);
    }
    
    .property-details {
      margin-top: 0.5rem;
      flex-grow: 1;
    }
    
    .property-detail {
      display: flex;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }
    
    .detail-label {
      font-weight: 500;
      min-width: 90px;
      color: #666;
    }
    
    .detail-value {
      color: var(--text-color);
    }
    
    .property-footer {
      margin-top: 1rem;
      text-align: right;
    }
    
    .view-property {
      padding: 0.5rem 1rem;
      background-color: var(--primary-color);
      color: white;
      border-radius: 20px;
      font-size: 0.9rem;
      display: inline-block;
    }
    
    .view-property:hover {
      background-color: var(--primary-dark);
      color: white;
    }
    
    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      margin: 2rem 0;
      flex-wrap: wrap;
    }
    
    .pagination a, .pagination strong {
      margin: 0.3rem;
      padding: 0.6rem 1rem;
      border-radius: var(--radius);
      text-align: center;
      min-width: 40px;
      transition: var(--transition);
    }
    
    .pagination a {
      background-color: white;
      color: var(--text-color);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .pagination a:hover {
      background-color: var(--primary-color);
      color: white;
    }
    
    .pagination strong {
      background-color: var(--primary-color);
      color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    /* Testimonials */
    #testimonials {
      background-color: var(--light-bg);
      text-align: center;
      position: relative;
    }
    
    .testimonial-slider {
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      max-width: 1000px;
    }
    
    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    
    .testimonial-slide {
      min-width: 100%;
      padding: 0 1rem;
    }
    
    .testimonial-card {
      background-color: white;
      padding: 2rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: left;
      position: relative;
    }
    
    .testimonial-card::before {
      content: '"';
      font-size: 4rem;
      position: absolute;
      top: -0.5rem;
      left: 1rem;
      color: var(--primary-color);
      opacity: 0.2;
      font-family: serif;
    }
    
    .testimonial-quote {
      font-size: 1.1rem;
      font-style: italic;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 1rem;
      object-fit: cover;
    }
    
    .author-info {
      line-height: 1.4;
    }
    
    .author-name {
      font-weight: 600;
      color: var(--secondary-color);
    }
    
    .author-title {
      font-size: 0.9rem;
      color: #666;
    }
    
    .testimonial-dots {
      display: flex;
      justify-content: center;
      margin-top: 1.5rem;
    }
    
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--gray);
      margin: 0 0.3rem;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .dot.active {
      background-color: var(--primary-color);
      transform: scale(1.2);
    }
    
    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .service-card {
      background-color: var(--light-bg);
      border-radius: var(--radius);
      padding: 1.5rem;
      transition: var(--transition);
      height: 100%;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    
    .service-icon {
      color: var(--primary-color);
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .service-title {
      color: var(--secondary-color);
      margin-bottom: 1rem;
    }
    
    /* FAQ */
    .faq-item {
      margin-bottom: 1.5rem;
      border-bottom: 1px solid var(--gray-light);
      padding-bottom: 1.5rem;
    }
    
    .faq-question {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--secondary-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--primary-color);
    }
    
    .faq-answer {
      margin-top: 1rem;
      display: none;
    }
    
    .faq-item.active .faq-question::after {
      content: '-';
    }
    
    .faq-item.active .faq-answer {
      display: block;
    }
    
    /* Contact */
    .contact-methods {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .contact-method {
      display: flex;
      align-items: center;
      background-color: var(--light-bg);
      padding: 1.2rem;
      border-radius: var(--radius);
      transition: var(--transition);
    }
    
    .contact-method:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    
    .contact-icon {
      color: var(--primary-color);
      font-size: 1.8rem;
      margin-right: 1rem;
    }
    
    .contact-info h4 {
      margin-bottom: 0.3rem;
      color: var(--secondary-color);
    }
    
    .contact-form {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1rem;
    }
    
    .form-group {
      margin-bottom: 1rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--secondary-color);
    }
    
    .form-control {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--gray);
      border-radius: var(--radius);
      font-family: inherit;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
      outline: none;
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    .form-row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -0.5rem;
    }
    
    .form-col {
      flex: 1 1 300px;
      padding: 0 0.5rem;
    }
    
    .wechat-container {
      text-align: center;
      margin-top: 2rem;
    }
    
    .wechat-container img {
      max-width: 200px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    
    /* Footer */
    footer {
      background-color: var(--secondary-color);
      color: var(--light-text);
      padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .footer-section h3 {
      color: white;
      margin-bottom: 1.2rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .footer-section h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background-color: var(--primary-color);
    }
    
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    
 adrenal-links a {
      color: var(--gray-light);
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: var(--primary-color);
      padding-left: 5px;
    }
    
    .footer-contact li {
      display: flex;
      margin-bottom: 1rem;
    }
    
    .footer-contact-icon {
      margin-right: 1rem;
      color: var(--primary-color);
    }
    
    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--light-text);
      border-radius: 50%;
      transition: var(--transition);
    }
    
    .social-icon:hover {
      background-color: var(--primary-color);
      color: white;
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Back to Top Button */
    #back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 99;
      font-size: 1.2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border: none;
    }
    
    #back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    #back-to-top:hover {
      background-color: var(--primary-dark);
      transform: translateY(-3px);
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .header-title {
        font-size: 1.5rem;
      }
      
      #home h1 {
        font-size: 2rem;
      }
      
      .nav-container {
        flex-wrap: wrap;
      }
    }
    
    @media (max-width: 768px) {
      :root {
        --container-padding: 15px;
      }
      
      .header-content {
        padding: 1rem;
      }
      
      .header-title {
        font-size: 1.3rem;
      }
      
      #home {
        padding: 3rem 1rem;
      }
      
      #home h1 {
        font-size: 1.8rem;
      }
      
      section {
        padding: 1.5rem;
      }
      
      .nav-toggle {
        display: block;
      }
      
      .nav-container {
        display: none;
        flex-direction: column;
        width: 100%;
      }
      
      .nav-container.show {
        display: flex;
      }
      
      .nav-container.show {
        display: flex;
      }
      
      .nav-link {
        width: 100%;
        text-align: left;
        padding: 0.8rem 1.5rem;
      }
      
      .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        padding-left: 1.5rem;
      }
      
      .dropdown.active .dropdown-content {
        display: block;
      }
      
      .property-card {
        margin: 0 auto;
      }
    }
    
    @media (max-width: 576px) {
      .header-title {
        font-size: 1.2rem;
      }
      
      .search-form {
        flex-direction: column;
      }
      
      .search-input {
        width: 100%;
      }
      
      .property-detail {
        flex-direction: column;
      }
      
      .detail-label {
        margin-bottom: 0.2rem;
      }
      
      .contact-method {
        flex-direction: column;
        text-align: center;
      }
      
      .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
      }
    }
	@media (max-width: 576px) {
    .property-images {
        width: 100%;
        overflow: hidden;
    }

    .property-images-scroll {
        width: 100%;
    }

    .property-images img {
        width: 100%;
        height: 180px; /* 减小小屏幕上的图片高度，防止内容过高 */
        object-fit: cover;
    }

    .property-card {
        width: 100%;
        max-width: 100%; /* 确保卡片宽度不超过屏幕 */
        margin: 0;
    }
}
    
    /* Skeleton loading animation */
    @keyframes shimmer {
      0% {
        background-position: -1000px 0;
      }
      100% {
        background-position: 1000px 0;
      }
    }
    
    .skeleton {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 1000px 100%;
      animation: shimmer 2s infinite linear;
      border-radius: var(--radius);
    }
    
    .skeleton-img {
      height: 220px;
      width: 100%;
    }
    
    .skeleton-text {
      height: 20px;
      margin-bottom: 10px;
      width: 100%;
    }
    
    .skeleton-text.short {
      width: 60%;
    }
    
    /* Timeline styling for onboarding steps */
    .timeline {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      padding: 2rem 0;
    }
    
    .timeline::before {
      content: '';
      position: absolute;
      height: 100%;
      width: 4px;
      background-color: var(--primary-color);
      left: 50px;
      top: 0;
      opacity: 0.3;
    }
    
    .timeline-item {
      display: flex;
      margin-bottom: 2rem;
      position: relative;
    }
    
    .timeline-icon {
      width: 50px;
      height: 50px;
      background-color: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      margin-right: 2rem;
      flex-shrink: 0;
      z-index: 1;
    }
    
    .timeline-content {
      background-color: var(--light-bg);
      padding: 1.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      flex-grow: 1;
    }
    
    .timeline-content h4 {
      color: var(--secondary-color);
      margin-bottom: 0.5rem;
    }
    
    /* Accordion styling */
    .accordion-item {
      margin-bottom: 1rem;
      border: 1px solid var(--gray-light);
      border-radius: var(--radius);
      overflow: hidden;
    }
    
    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      background-color: var(--light-bg);
      cursor: pointer;
      transition: var(--transition);
    }
    
    .accordion-header:hover {
      background-color: rgba(52, 152, 219, 0.1);
    }
    
    .accordion-header h4 {
      margin: 0;
      color: var(--secondary-color);
    }
    
    .accordion-content {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .accordion-item.active .accordion-content {
      max-height: 500px;
      padding: 1.5rem;
    }
    
    .accordion-item.active .accordion-header {
      background-color: rgba(52, 152, 219, 0.1);
    }
    
    .accordion-item.active .accordion-header i.fa-plus::before {
      content: "\f068";
    }
    
    /* City highlights */
    .city-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .highlight-card {
      background-color: var(--light-bg);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
      transition: var(--transition);
    }
    
    .highlight-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    
    .highlight-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
    
    .city-info {
      margin-top: 1.5rem;
      line-height: 1.8;
    }
/* -- 修复：房源卡片图片轮播样式 -- */
.property-images-scroll picture {
  width: 100%;      /* 让每个 picture 元素都占据容器的全部宽度 */
  flex-shrink: 0;   /* 防止 flex 容器压缩 picture 元素的宽度 */
}
/* 放大按钮 */
.fullscreen-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/* 全屏查看器 */
.fullscreen-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fullscreen-viewer.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.fullscreen-image-container {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-image-container img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* 全屏控制按钮 */
.fullscreen-close,
.fullscreen-prev,
.fullscreen-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.fullscreen-close:hover,
.fullscreen-prev:hover,
.fullscreen-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.fullscreen-close {
  top: 20px;
  right: 20px;
}

.fullscreen-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.fullscreen-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.fullscreen-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.fullscreen-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* 图片计数器 */
.fullscreen-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .fullscreen-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .fullscreen-close,
  .fullscreen-prev,
  .fullscreen-next {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .fullscreen-close {
    top: 15px;
    right: 15px;
  }
  
  .fullscreen-prev {
    left: 10px;
  }
  
  .fullscreen-next {
    right: 10px;
  }
  
  .fullscreen-counter {
    bottom: 20px;
    padding: 8px 16px;
    font-size: 14px;
  }
}