/* 陕教观察--029edu.com，未经同意，请不要扒皮 */
        .footer {
            height: 230px;
            margin-top: 30px;
            background: #2a60b2;
            border-top: 1px solid #dce5f0;
            border-bottom: 1px solid #dce5f0;
            padding: 0 30px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            font-size: 14px;
            color: #2c3e50;
            box-shadow: 0 -2px 8px rgba(0,0,0,0.02);
        }
        .footer-top {
            flex-shrink: 0;
            padding: 18px 0 8px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .footer-top .links {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 32px;
            align-items: center;
        }
        .footer-top a {
            text-decoration: none;
            color: #d4dff0;
            font-size: 15px;
            font-weight: 450;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .footer-top a:hover {
            color: #fff;
        }
        .footer-middle {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 0;
            padding: 8px 0;
        }
        .contact-info {
            line-height: 1.9;
            font-size: 15px;
            color: #d4dff0;
        }
        .contact-info p {
            margin: 4px 0;
        }
        .circle-group {
            display: flex;
            gap: 40px;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
			margin-right: 10px;
        }
        .circle-item {
            position: relative;
            width: 48px;
            height: 48px;
            flex-shrink: 0;
        }
        .circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #eef2f8;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(0,0,0,0.06);
            transition: background 0.2s, transform 0.1s;
            cursor: default;
        }
        .circle-item:hover .circle {
            background: #e2eaf5;
            transform: scale(1.02);
        }
        .qr-popup {
            display: none;
            position: absolute;
            bottom: 65px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            background: #ffffff;
            border: 1px solid #cfddee;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,20,40,0.15);
            z-index: 100;
            text-align: center;
            padding: 4px 4px;
            font-size: 13px;
            color: #1e2b3c;
            font-weight: 450;
            line-height: 1.3;
            backdrop-filter: blur(2px);
        }
        .qr-popup::before {
            content: "";
            display: block;
            width: 70px;
            height: 70px;
            
            margin: 4px auto 6px auto;
            border-radius: 8px;
            opacity: 0.8;
        }
        .qr-popup span {
            display: block;
            font-size: 12px;
            color: #2A60B2;
            font-weight: 600;
        }
        .circle-item:hover .qr-popup {
            display: block;
        }
        .footer-bottom {
            flex-shrink: 0;
            display: flex;
            gap: 40px;
            align-items: center;
            justify-content: flex-start;
            padding: 12px 0 16px 0;
            border-top: 1px solid #e2e8f0;
        }
        .footer-bottom a {
            text-decoration: none;
            color: #7f8c9a;
            font-size: 15px;
            font-weight: 480;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-bottom span {
            color: #7f8c9a;
            font-size: 14px;
        }
        @media (max-width: 767px) {
    .footer {
        width: 440px !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
    .footer {
        order: 11;
        height: auto;
        padding: 10px;
        background: #2a60b2;
        margin-top: 15px;
    }
    .footer-top, .footer-middle {
        display: none;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        border-top: none;
        padding: 15px 0;
    }
    .footer-bottom a, .footer-bottom span {
        color: white;
        font-size: 14px;
    }
    @media (max-width: 439px) {
        .footer {
            width: 100% !important;
            padding: 10px 8px !important;
        }
        .footer-bottom a, .footer-bottom span {
            font-size: 13px;
        }
    }
}