   @charset "utf-8";
.top{
	height: 3rem;
}
.top div{
	position: fixed;
	top: 0px;
	line-height:3rem;
	color:white;
	font-size:1.3rem;
	z-index:31

}
.top .left {
	left:0; 
	border:0px solid transparent;/* 先将空元素的边框大小设置为0，颜色为透明，再将其中一条边的边框大小设置成梯形的高度，并设置边框颜色为梯形的颜色 */
	border-bottom:3rem solid #27aade;
	border-right:40px solid transparent;
	width:calc(50% + 40px)
	        }
.top .right{
	left:50%; 
	border:0px solid transparent;
	border-top:3rem solid #010c80;
	border-left:40px solid transparent;
	width:50% ;
        }
.tel{
	left: 5%;
	}
.tel a:link, .tel a:active, .tel a:visited{
	color:white;
}
.email{
	right: 5%;
}
        :root {
            --primary: #27aade;
            --primary-dark: #010c80;
            --secondary: #FF6B6B;
            --accent: #FFD166;
            --light: #f8f9fa;
            --dark: #333;
            --gray: #6c757d;
            --border: #e6e6e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
            background-color: #fff;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: linear-gradient(135deg, #e0f7fa 0%, #f8f9fa 100%);
        }
        
        .disney-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        .disney-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 25px 0;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .disney-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1596484552834-6a58f850e0a1?q=80&w=1470') center/cover no-repeat;
            opacity: 0.2;
        }
        
        .disney-title {
            font-size: 2.5rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .disney-subtitle {
            font-size: 1.3rem;
            color: white;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .disney-highlight {
            color: var(--accent);
            font-weight: 700;
        }
        
        /* 内容区域 */
        .disney-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        
        .disney-itinerary {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .itinerary-header {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
            padding: 25px 30px;
            color: white;
            text-align: center;
        }
        
        .itinerary-title {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .itinerary-tag {
            background: rgba(255, 255, 255, 0.2);
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin: 0 5px;
        }
        
        .itinerary-body {
            padding: 30px;
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-left: 15px;
        }
        
        .timeline::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 30px;
        }
        
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -10px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid white;
            box-shadow: 0 0 0 2px var(--primary);
        }
        
        .timeline-time {
            font-size: 1.3rem;
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .timeline-content {
            background: var(--light);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .timeline-content h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .timeline-content ul {
            padding-left: 20px;
        }
        
        .timeline-content li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .timeline-content li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 214, 102, 0.1) 0%, rgba(255, 214, 102, 0.2) 100%);
            border-left: 4px solid var(--accent);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        /* 侧边栏 */
        .disney-sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .sidebar-card {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .card-header {
            background: var(--primary);
            color: white;
            padding: 15px 20px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }
        
        .card-header i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .card-body {
            padding: 20px;
        }
        
        .tips-list li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--border);
            display: flex;
            align-items: flex-start;
        }
        
        .tips-list li:last-child {
            border-bottom: none;
        }
        
        .tips-list i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1.1rem;
            min-width: 20px;
        }
        
        .attraction-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .attraction-item {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            height: 100px;
        }
        
        .attraction-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .attraction-item:hover img {
            transform: scale(1.05);
        }
        
        .attraction-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* 服务优势部分 */
        .service-section {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 40px 30px;
            margin: 40px 0;
            text-align: center;
        }
        
        .service-title {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 40px;
            position: relative;
        }
        
        .service-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .service-card {
            background: var(--light);
            border-radius: 12px;
            padding: 25px 20px;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.8rem;
            color: var(--primary);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .service-name {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .disney-content {
                grid-template-columns: 1fr;
            }
            
            .disney-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .disney-title {
                font-size: 1.8rem;
            }
            
            .itinerary-title {
                font-size: 1.6rem;
            }
            
            .timeline-time {
                font-size: 1.2rem;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
            }
            
            .attraction-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .disney-footer {
            text-align: center;
            padding: 20px;
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 40px;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary) 0%, #FF8E53 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
            transition: var(--transition);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
        }




        .wx {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 44vh;
            padding: 10px;

        }
        
        .wx-card {
            position: relative;
            width: 360px;
            text-align: center;
            perspective: 1000px;
        }
        
        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        
        .wx-card:hover .card-inner {
            transform: rotateY(180deg);
        }
        
        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            background: white;
        }
        
        .card-back {
            transform: rotateY(180deg);
            background: linear-gradient(135deg, #07C160 0%, #05a050 100%);
        }
        
        .wx-logo {
            width: 80px;
            height: 80px;
            background: #07C160;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 50px;
            margin-top: -25px;
            animation: pulse 2s infinite;
        }
        
        .wx-logo i {
            font-size: 40px;
            color: white;
        }
        
        .card-title {
            font-size: 22px;
            font-weight: 600;
            color: #333;
		    margin-bottom: 25px;
            margin-top: -25px;
        }
        
        .card-subtitle {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        
        .cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 22px 16px 22px 16px;
            background: #07C160;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }
        
        .cta-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(7, 193, 96, 0.4);
        }
        
        .cta-button:hover::before {
            transform: translateX(0);
        }
        
        .qrcode-container {
            width: 180px;
            height: 180px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px;
        }
        
        .qrcode {
            width: 160px;
            height: 160px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 14px;
            color: #999;
        }
        
        .back-title {
            font-size: 22px;
            font-weight: 600;
        }
        
        .back-text {
            font-size: 16px;
            line-height: 1.6;
        }
        

        

        
        /* 动画效果 */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(7, 193, 96, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(7, 193, 96, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(7, 193, 96, 0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 480px) {
            .wx-card {
                width: 100%;
                max-width: 320px;
            }
        }