@charset "UTF-8";


/* ======================================
   1. 移动端样式 (手机屏幕 ≤767px)
   独立适配，不影响其他设备
====================================== */
@media (max-width: 767px) {
    .site-footer{
        font-size: 13px;
        background-color: #253e89;
        margin-top: 20px;
    }
    /* 底部核心布局：垂直堆叠 */
    .site-footer-content{
        display: flex;
        flex-direction: column;
        padding: 15px 10px;
    }
    .site-footer-left{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 15px;
    }
    .site-footer-left dl{
        margin-right: 0;
        width: 48%;
        margin-bottom: 15px;
    }
    .site-footer-left dt{
        line-height: 24px;
        font-size: 16px;
        color: white;
    }
    .site-footer-left dd{
        margin-top: 5px;
        line-height: 20px;
    }
    .site-footer-left dd a{
        color: #bec5db;
    }
    .site-footer-left dd a:hover{
        color: white;
    }
    /* 底部版权栏垂直排列 */
    .site-info{
        background-color: #253e89;
    }
    .site-info-content{
        border-top: 1px solid #ccc;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .site-info-content .info-links{
        line-height: 20px;
        color: #bec5db;
        padding: 5px 0;
    }
    .use {
        width: 100% !important;
    }
    .footer-text {
        text-align: center;
        background: #223159;
        background-position-x: 0%;
        background-position-y: 0%;
        padding: 10px;
        background-position: center;
        color: #c0c4cc;
        font-size: 12px;
    }
}

/* ======================================
   3. PC 端样式 (屏幕 ≥1200px)
   ✅ 100% 保留你原始代码，无任何修改
====================================== */
@media (min-width: 767px) {
    .container{
        width: 80%;
        margin:0 auto;
    }
    .site-footer{
        font-size: 14px;
        background-color: #253e89;
        color: white;
        margin-top: 20px;
    }
    .site-footer-content{
        display: flex;
        padding: 0 20px 20px 0;
    }
    .site-footer-left{
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .site-footer-left dl{
        margin-right: 100px;
    }
    .site-footer-left dt{
        line-height: 28px;
        font-size: 17px;
        color: white;
    }
    .site-footer-left dd{
        margin-top: 8px;
        line-height: 22px;
    }
    .site-footer-left dd a{
        color: #bec5db;
    }
    .site-footer-left dd a:hover{
        color: white;
    }
    .site-info{
        background-color: #253e89;
    }
    .site-info-content{
        display: flex;
        align-items: center;
        border-top: 1px solid #ccc;
    }
    .site-info-content .info-links{
        color:#bec5db;
        line-height: 22px;
        display: flex;
        margin:0 auto;
        width: 100%;
        justify-content: space-around;
        padding: 15px 0;
    }

    .footer-text {
        text-align: center;
        background: #223159;
        background-position-x: 0%;
        background-position-y: 0%;
        padding: 10px;
        background-position: center;
        color: #c0c4cc;
        font-size: 12px;
        min-width: 1040px;
    }
}
