        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f0f9ff;
            color: #333;
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../../../sucai/Image/dong.jpg');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .subtitle {
            font-size: 1.5rem;
            max-width: 800px;
            margin-bottom: 30px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .intro {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .intro p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .destination {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 50px;
        }
        
        .destination-header {
            display: flex;
            align-items: center;
            padding: 20px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../../../sucai/Image/winter-dest-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
        }
        
        .destination-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,75,150,0.2);
            z-index: 0;
        }
        
        .destination-title {
            font-size: 2rem;
            margin-right: 20px;
            position: relative;
            z-index: 1;
        }
        
        .destination-time {
            background-color: rgba(255,255,255,0.9);
            color: #0066b8;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }
        
        .destination-content {
            display: flex;
            flex-wrap: wrap;
        }
        
        .destination-text {
            flex: 1;
            min-width: 300px;
            padding: 30px;
        }
        
        .destination-images {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 20px;
        }
        
        .destination-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        
        .destination-image:hover {
            transform: scale(1.03);
        }
        
        .highlight {
            background-color: #e6f4ff;
            padding: 20px;
            border-radius: 5px;
            margin: 20px 0;
            border-left: 4px solid #0066b8;
        }
        
        .highlight-title {
            color: #0066b8;
            margin-bottom: 10px;
            font-weight: bold;
        }

        /* 透明导航栏 */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 20px 0;
            background: rgba();
            backdrop-filter: blur(10px);
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            background: rgba(0,102,184,0.7);
            padding: 15px 0;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        nav a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        
        footer {
            background-color: #0066b8;
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: 50px;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .destination-content {
                flex-direction: column;
            }
            
            .destination-images {
                grid-template-columns: 1fr;
            }
            
            nav {
                flex-direction: column;
                padding: 15px 0;
            }
            
            nav a {
                margin: 5px 0;
                padding: 5px 10px;
            }
        }
        .qinquan p{
                color: black;
                text-align: center;
                font-size: 1.2em;
            }
            .qinquan a {
                color: red;
            }