





        /* 尾 */


             .footer {
            width: 100%;
            height: 600px;
            background: #E7EEF7;
            color: #3A3D3F;
            padding: 50px 10%;
            text-align: left;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 150px;
            margin: 0 10px 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 18px;
            font-size: 14px;
        }
        
        .footer-column ul li a {
            color: #3A3D3F;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #006FFF;
            text-decoration: none;
        }
        
        .logo-column img {
            width: 175px;
            height: 36px;
            margin-bottom: 20px;
        }
        
        .contact-column .qr-code {
            width: 130px;
            height: 130px;
            background-image:url("/img/ewm.png");
            margin: 10px 0;
        }
        
        .contact-column .contact-btn {
            display: inline-block;
            width: 240px;
            height: 36px;
            background: #0052D9;
            color: white;
            text-align: center;
            line-height: 36px;
            border-radius: 4px;
            margin-top: 15px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .contact-column .contact-btn:hover {
            background-color: #006FFF;
            color: #E7EEF7;
        }
        
        .divider {
            width: 100%;
            height: 0px;
            border: 1px solid #D8D8D8;
            margin: 20px 0;
            margin-top: -40px;
        }
        
        .footer-bottom {
            text-align: center;
            color: #707070;
            font-size: 12px;
            line-height: 1.6;
        }
        
        .footer-bottom a {
            color: #707070;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: #006FFF;
            text-decoration: none;
        }
        
        @media (max-width: 1200px) {
            .footer {
                height: auto;
                padding: 40px 5%;
            }
            
            .footer-column {
                min-width: 120px;
                margin: 0 5px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                margin-bottom: 30px;
            }
        }