
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #ffffff;
        }
        
        a {
            text-decoration: none;
            color: #0066cc;
        }
        
        a:hover {
            color: #f30;
            text-decoration: underline;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1002px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .top-bar {
            background-color: #f8f8f8;
            padding: 8px 0;
            font-size: 14px;
            border-bottom: 1px solid #e7e7e7;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .welcome {
            color: #666;
        }
        
        .welcome strong {
            color: #060606;
        }
        
        /* å¤´éƒ¨ */
        .header {
            padding: 15px 0;
            background-color: #fff;
            border-bottom: 1px solid #e7e7e7;
        }
        
        .header-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }
        
        .logo img {
            max-height: 60px;
        }
        
        .search-box {
            flex: 1;
            min-width: 250px;
            max-width: 600px;
        }
        
        .search-form {
            display: flex;
        }
        
        .search-form input[type="text"] {
            flex: 1;
            padding: 1px 15px;
            border: 2px solid #cfcfcf;
            border-right: none;
            font-size: 16px;
            outline: none;
        }
        
        .search-form input[type="submit"] {
            background: url(http://nnpmcz.com/style/images/searchico.png) no-repeat;
            width: 41px;
            height: 41px;
            border: 0;
            cursor: pointer;

            border: 2px solid #ff8b00;
        
            color: transparent;
        }
     
        .nav-container {
            background-color: #06F;
            position: relative;
        }
        
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            padding: 10px;
            cursor: pointer;
        }
        
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu > li > a {
            display: block;
            padding: 15px 20px;
            color: white;
            font-weight: bold;
            font-size: 16px;
        }
        
        .nav-menu > li > a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .mobile-app {
            display: flex;
            align-items: center;
            margin-left: auto;
            padding: 0 15px;
            color: white;
        }
        
        /* ä½ç½®å¯¼èˆª */
        .location-bar {
            padding: 10px 0;
            background-color: #ffffff;
            font-size: 16px;
            margin-top: 10px;
        }
        
        /* ä¸»è¦å†…å®¹ */
        .main-content {
            display: flex;
            flex-wrap: wrap;
            margin: 20px 0;
            gap: 20px;
        }
        
        .property-images {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .main-image {
            width: 100%;
            height: 400px;
            background-color: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .thumbnail-gallery {
            display: flex;
            padding: 10px;
            gap: 10px;
            overflow-x: auto;
        }
        
        .thumbnail {
            width: 80px;
            height: 60px;
            border: 2px solid transparent;
            cursor: pointer;
        }
        
        .thumbnail.active {
            border-color: #f30;
        }
        
        .property-info {
            flex: 0 0 350px;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .property-info h1 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .status-badge {
            background-color: #f30;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 14px;
            margin-right: 10px;
        }
        
        .info-list {
            list-style: none;
        }
        
        .info-list li {
            font-size: 15px;
            padding: 1px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
        }
        
        .info-list li span {
            flex: 0 0 100px;
           
        }
        
        .contact-number {
            font-size: 28px;
            color: #f30;
            font-weight: bold;
            margin: 10px 0;
        }
        
    
        .property-description {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .property-description h5 {
            font-size: 20px;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 2px solid #f30;
            color: #333;
        }
        
        .description-content {
            font-size: 18px;
            line-height: 1.8;
        }
        
        .highlight {
            color: #f30;
            font-weight: bold;
        }
  
        .recommendations {
            margin: 30px 0;
        }
        
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 2px solid #060606;
            margin-bottom: 20px;
        }
        
        .section-title h3 {
            font-size: 22px;
            color: #333;
        }
        
        .recommendation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .recommendation-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .recommendation-card:hover {
            transform: translateY(-5px);
        }
        
        .card-image {
            height: 180px;
            background-color: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
          .card-image img{
            height: 180px;
           
        }
        
        .card-content {
            padding: 15px;
        }
        
        .card-content h2 {
            font-size: 18px;
            margin-bottom: 10px;
            height: 50px;
            overflow: hidden;
        }
        
        .property-specs {
            display: flex;
            justify-content: space-between;
            font-size: 16px;
        }
        
        .property-specs b {
            color: #f30;
        }
        
        /* é¡µè„š */
        .footer {
            background-color: #333;
            color: #aaa;
            padding: 30px 0 15px;
            margin-top: 30px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-title {
            color: #fff;
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #555;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            padding: 5px 0;
        }
        
        .footer-links a {
            color: #aaa;
        }
        
        .footer-links a:hover {
            color: #fff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #555;
            font-size: 14px;
        }
        
    
        @media (max-width: 992px) {
            .main-image {
                height: 350px;
            }
            
            .property-info {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #0555cd;
                z-index: 100;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-app {
                margin-left: 0;
                padding: 15px;
                justify-content: center;
            }
            
            .main-image {
                height: 300px;
            }
            
            .contact-number {
                font-size: 24px;
            }
        }
        
        @media (max-width: 576px) {
            .header-content {
                flex-direction: column;
                align-items: stretch;
            }
            
            .logo {
                text-align: center;
            }
            
            .search-box {
                min-width: 100%;
            }
            
            .main-image {
                height: 250px;
            }
            
            .info-list li {
                /* flex-direction: column; */
            }
            
            .info-list li span {
                flex: 0 0 100px;
                /* flex: 1; */
                margin-bottom: 5px;
            }
            
            .description-content {
                font-size: 16px;
            }
        }


       .carousel-container {
            position: relative;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 450px;
        }
        
        .carousel-item {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .carousel-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .carousel-caption h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }
        
        .carousel-caption p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 80%;
            margin: 0 auto;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            background: white;
        }
        
        .page-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: #ecf0f1;
            color: #2c3e50;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1rem;
        }
        
        .page-btn.active {
            background: #3498db;
            color: white;
            transform: scale(1.1);
        }
        
        .page-btn:hover:not(.active) {
            background: #bdc3c7;
        }
        
        .status-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
            background: #f8f9fa;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .auto-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 15px;
        }
        
        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #3498db;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.4; }
            50% { opacity: 1; }
            100% { opacity: 0.4; }
        }
        
        @media (max-width: 768px) {
            .carousel {
                height: 350px;
            }
            
            .carousel-caption h3 {
                font-size: 1.3rem;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .carousel {
                height: 280px;
            }
            
            .carousel-caption h3 {
                font-size: 1.1rem;
            }
            
            .carousel-caption p {
                font-size: 0.85rem;
            }
            
            .page-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            h1 {
                font-size: 1.7rem;
            }
            
            .subtitle {
                font-size: 0.95rem;
            }
        }

    /* 默认隐藏按钮（PC端） */
        .floating-call-button {width: 90%;display: none;position: fixed;bottom: 0px;left: 50%;transform: translateX(-50%);background-color: #ff0000;color: white;padding: 15px 25px;border-radius: 50px;text-align: center;font-weight: bold;font-size: 18px;text-decoration: none;z-index: 1000;}

        /* 移动端显示按钮 */
        @media only screen and (max-width: 768px) {
            .floating-call-button {
                display: block;
            }
        }

        /* 按钮悬停效果 */
        .floating-call-button:hover {
            text-decoration:none;
            color:#ffffff;
            background-color: #e60000;
            box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
        }

        /* 按钮点击效果 */
        .floating-call-button:active {
            transform: translateX(-50%) scale(0.95);
        }

        /* 呼吸动画效果 */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5); }
            70% { box-shadow: 0 0 0 12px rgba(255, 0, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
        }



