@charset "UTF-8";
/* 中国人民大学附属中学 - 公共样式 */


* { box-sizing: border-box; }
html, body {
    color: #333;
    font-size: .16rem;
    margin: 0 auto !important;
    text-align: left;
    overflow-x: hidden;
    font-family: SourceHanSansSC;
    -webkit-font-smoothing: antialiased;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, blockquote, p, b, section, nav {
    padding: 0;
    margin: 0;
    font-weight: normal;
    box-sizing: border-box;
}
i, em, b { font-style: normal; }
ol, ul { list-style: none; }
li { list-style-type: none; }
a { text-decoration: none; color: inherit; }
a:focus, div:focus { border: none; outline: none; }
img, input { border: 0; }
input, button { border: none; outline: none; color: inherit; background-color: transparent; }
input[type='text']:focus-visible { outline: none; }

/* ===== 工具类 ===== */
.clear:after { content: ''; display: block; clear: both; }
.fl { float: left; }
.fr { float: right; }
.flex { display: flex; justify-content: space-between; flex-wrap: wrap; }
.flex-left { display: flex; flex-wrap: wrap; }
.flex-center { display: flex; flex-wrap: wrap; justify-content: center; }
.flex-right { display: flex; flex-wrap: wrap; justify-content: flex-end; }
.flex-v-center { display: flex; flex-direction: column; justify-content: center; }
.flex-v { display: flex; align-items: center; justify-content: space-between; }
.eclip { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.l2 { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.l3 { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.zi3 { position: relative; z-index: 3; }
.wp { width: 16rem; margin: 0 auto; max-width: 96%; }
.none { display: none; }
.ar_wap { display: none; }

/* 图片悬停效果 */
.pic { position: relative; overflow: hidden; }
.pic .a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
}
.bg-mask:hover .pic .a { transform: scale(1.08); }
.bg-mask:hover .pic:before { animation: shine .6s; }
@keyframes shine { 100% { left: 115%; } }

/* 下划线动画效果 */
.aline_b {
    position: relative;
    background-image: linear-gradient(#0066b3, #0066b3);
    background-position: 0 100%;
    background-size: 0 2px;
    background-repeat: no-repeat;
    transition: background-size .4s;
}
.alin_b:hover .aline_b { background-size: 100% 2px; color: #0066b3; }

/* ===== PC端 Header ===== */
.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    padding: .25rem 0;
    transition: all .5s;
}
.header:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 1.7rem;
    background: linear-gradient(180deg, rgba(170, 2, 3, .6) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}
.header .wp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}
.header .logo a { display: block; }
.header .logo img {
    display: block;
    height: .72rem;
    max-height: .72rem;
    transition: all .5s;
}

/* 搜索框 */
.header .header-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    border-radius: .25rem;
    padding: 0 0 0 .2rem;
    margin-left: auto;
    border:1px solid rgba(0,0,0,0.15)
}
.header .header-search input {
    width: 2rem;
    height: .42rem;
    font-size: .14rem;
    color: #fff;
    background: transparent;
}
.header .header-search input::placeholder { color: rgba(255,255,255,0.7); }
.header .header-search .search_btn {
    width: .5rem;
    height: .4rem;
    background: #e53935 url('../images/search.png') no-repeat center;
    background-size: .18rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all .3s;
}
.header .header-search .search_btn:hover { background-color: #c62828; }

/* 右侧导航 */
.header .header-nav {
    display: flex;
    align-items: center;
    
}
.header .header-nav a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: .18rem;
    margin-left: .36rem;
    transition: all .3s;
}
.header .header-nav a img {
    width: .24rem;
    height: .24rem;
    margin-right: .1rem;
}
.header .header-nav a:hover { 
    color: #deb668;
 }

/* 搜索图标（平板端显示） */
.header .search-icon {
    display: none;
    margin-left: .2rem;
    cursor: pointer;
}
.header .search-icon img {
    width: .24rem;
    height: .24rem;
}

/* ===== 搜索弹窗 ===== */
.fixed-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    clip-path: inset(0% 0% 100% 0%);
    transition: all .5s;
}
.fixed-search.show { clip-path: inset(0% 0% 0% 0%); }
.fixed-search .close {
    width: .24rem;
    height: .24rem;
    position: absolute;
    right: .6rem;
    top: .6rem;
    z-index: 2;
    cursor: pointer;
    background: url('../images/submit.svg') no-repeat center;
    background-size: contain;
}
.fixed-search .main {
    padding: 2rem 0;
}
.fixed-search .form {
    width: 90%;
    max-width: 8rem;
    margin: 0 auto;
    height: .8rem;
    position: relative;
    border-bottom: 2px solid #e6e6e6;
    transform: translateY(.2rem);
    opacity: 0;
    transition: all .5s linear;
}
.fixed-search.show .form {
    transform: translateY(0);
    opacity: 1;
}
.fixed-search .form input {
    width: calc(100% - .8rem);
    height: 100%;
    padding-left: .2rem;
    font-size: .24rem;
    color: #333;
    background: transparent;
}
.fixed-search .form input::placeholder { color: #999; }
.fixed-search .form button {
    position: absolute;
    right: 0;
    top: 0;
    width: .8rem;
    height: 100%;
    background: url('../images/search.png') no-repeat center;
    background-size: .3rem;
    cursor: pointer;
}

/* ===== 移动端 Header ===== */
.m_header_box {
    display: none;
    height: .7rem;
    position: relative;
    z-index: 1000;
}
.m_header_box header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: .7rem;
    background: #AA0203;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .15rem;
    z-index: 1000;
}
.m_header_box #logo img {
    height: .45rem;
    display: block;
}
#nav_btn_box {
    width: .7rem;
    height: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#nav_btn { cursor: pointer; }
#nav_btn .point {
    display: block;
    width: .28rem;
    height: .2rem;
    position: relative;
}
#nav_btn .navbtn {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    margin-top: -1px;
    transition: all .3s;
}
#nav_btn .navbtn::before,
#nav_btn .navbtn::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    content: '';
    transition: all .3s;
}
#nav_btn .navbtn::before { top: -7px; }
#nav_btn .navbtn::after { top: 7px; }
#nav_btn .point.on .navbtn { background: transparent; }
#nav_btn .point.on .navbtn::before {
    transform: rotate(45deg);
    top: 0;
}
#nav_btn .point.on .navbtn::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===== 移动端导航菜单 ===== */
#m_nav {
    position: fixed;
    top: 0.7rem;
    right: -100vw;
    width: 100%;
    height: 100vh;
    background: rgba(170, 2, 3, 0.85);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: .2rem .2rem .3rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
#m_nav.act {
    right: 0;
    opacity: 1;
    visibility: visible;
}


/* 移动端搜索 */
.wap_search {
    width: 100%;
    margin-bottom: .3rem;
}
.wap_search .header-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    border-radius: .25rem;
    height: .5rem;
    padding: 0 .05rem 0 .2rem;
}
.wap_search .input {
    flex: 1;
    height: 100%;
    font-size: .14rem;
    color: #fff;
    background: transparent;
}
.wap_search .input::placeholder { color: rgba(255,255,255,0.7); }
.wap_search .btn_search {
    width: .4rem;
    height: .4rem;
    background: #deb668 url('../images/search.png') no-repeat center;
    background-size: .2rem;
    border-radius: 50%;
    cursor: pointer;
}

/* 移动端导航列表 */
.list_box_nav_mobile {
    flex: 1;
    overflow-y: auto;
    padding-bottom: .5rem;
}
.list_box_nav_mobile li { border-bottom: 1px solid rgba(255,255,255,0.15); }
.list_box_nav_mobile .con { padding: 0; }
.list_box_nav_mobile .a {
    display: block;
    font-size: .18rem;
    color: #fff;
    line-height: .6rem;
    padding: 0 .1rem;
}
.list_box_nav_mobile .a:hover { background: rgba(255,255,255,0.1); }

/* 导航遮罩 */
.nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    display: none;
}



@media screen and (max-width:1024px) {
    html { font-size: 90px!important; }
}

@media screen and (max-width:900px) {
    html { font-size: 85px!important; }
}

@media screen and (max-width:768px) {
    .m_header_box #logo img { height: .4rem; }
}

@media screen and (max-width:640px) {
    body { font-size: .18rem; }
}

@media screen and (max-width:480px) {
    html { font-size: 80px!important; }
    .m_header_box #logo img { height: .35rem; }
}

@media screen and (max-width:375px) {
    html { font-size: 80px!important; }
}

@media screen and (max-width:360px) {
    html { font-size: 70px!important; }
}

/* ===== 动画 ===== */
@keyframes o-upfade-top {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ===== 滚动条 ===== */
html::-webkit-scrollbar { width: 4px; height: 8px; background-color: #F5F5F5; }
html::-webkit-scrollbar-track { border-radius: 10px; background-color: #E2E2E2; }
html::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #aa0203; }

/* ===== PC端侧边导航 ===== */
.left-head {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
    display: flex;
}

/* 收起状态 - 红色竖条 */
.left-head-bar {
    width: 0.8rem;
    height: 100%;
    background: linear-gradient(180deg, #aa0203 0%, #a00f28 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0.3rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.left-logo {
    width: 0.56rem;
    height: 0.56rem;
    transition: all 0.3s ease;
}

.left-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.left-nav-btn {
    margin-top: 0.24rem;
    margin-bottom: 0.4rem;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.left-nav-btn span {
    display: block;
    font-size: 0.18rem;
    margin-bottom: 0.28rem;
}

.nav-icon {
    display: block;
    width: 0.2rem;
    height: 0.02rem;
    background: #fff;
    position: relative;
}

.nav-icon::before,
.nav-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 0.3rem;
    height: 0.02rem;
    background: #fff;
}

.nav-icon::before { top: -0.07rem; }
.nav-icon::after { top: 0.07rem; }

/* 展开菜单容器 - 默认隐藏 */
.left-head-menu {
    display: flex;
    width: 0;
    transition: width 0.3s ease;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
}

/* 悬停时展开 */
.left-head.show .leftBox1{
    opacity: 0;
}
.left-head.show .left-head-menu {
    width: 3.8rem;
}

/* 一级菜单 */
.menu-level1 {
    width: 1.8rem;
    min-width: 1.8rem;
    height: 100%;
    background: linear-gradient(180deg, #aa0203 0%, #a00f28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url('../images/left-navBg.png') center center no-repeat;
    background-size: cover;
}
.menu-level1 li{
    width: 100%;
    margin-bottom: 0.3rem;
}
.menu-level1 li:last-child{
    margin-bottom: 0;
}

.menu-level1 li a {
    display: block;
    color: #fff;
    font-size: 0.2rem;
    padding: 0.15rem 0;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'SourceHanSerifCN', serif;
}

.menu-level1 li:hover a,
.menu-level1 li.active a {
    background: #deb668;
    color: #fff;
}

/* 二级菜单容器 */
.menu-level2-wrap {
    width: 2rem;
    height: 100%;
    background: rgba(162, 2, 3, 0.7);
    padding-top: 0;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.menu-level2 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.menu-level2.show {
    display: flex;
}
.menu-level2 li{
    width: 100%;
    margin-bottom: 0.08rem;
    text-align: center;
}
.menu-level2 li:last-child{
    margin-bottom: 0;
}
.menu-level2 li a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.18rem;
    padding: 0.18rem 0;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'SourceHanSerifCN', serif;
    font-weight: 700;
}

.menu-level2 li a:hover {
    color: #deb668;
}
.menu-level2 li a:hover::after{
    position: absolute;
    content: '';
    width: 0.17rem;
    height: 0.17rem;
    top: 50%;
    left: -0.32rem;
    transform: translateY(-50%);
    background: url('../images/left-hover.png') left top no-repeat;
    background-size: 100%;

}

.menu-level2 li.active a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #deb668;
    border-radius: 50%;
    margin-right: 0.1rem;
    vertical-align: middle;
}
.menu-level2-wrap.on{
    opacity:1;
    visibility:visible
}


/* ===== 移动端手风琴菜单 ===== */
.m_navBox {
    flex: 1;
    overflow-y: auto;
}

.m_navBox .list_box_nav_mobile li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.m_navBox .list_box_nav_mobile .a {
    display: block;
    font-size: 0.18rem;
    color: #fff;
    line-height: 0.6rem;
    padding: 0 0.1rem;
    cursor: pointer;
    position: relative;
}

.m_navBox .list_box_nav_mobile .a::after {
    content: '+';
    position: absolute;
    right: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.2rem;
    transition: transform 0.3s;
}

.m_navBox .list_box_nav_mobile li.open .a::after {
    content: '-';
}

.m_navBox .list_box_nav_mobile .con {
    display: none;

}

.m_navBox .list_box_nav_mobile li.open .con {
    display: block;
}

.m_navBox .list_box_nav_mobile .con a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.16rem;
    line-height: 0.5rem;
    padding: 0 0.1rem;
    transition: all 0.3s ease;
    padding-left: 0.3rem;
}

.m_navBox .list_box_nav_mobile .con a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== 响应式样式 ===== */
@media screen and (max-width:1199px) {
    .ar_web { display: none; }
    .ar_wap { display: block; }
    .m_header_box { display: block; }
    .left-head {
        display: none;
    }
    .wp { width: 100%; padding: 0  15px; max-width: 100%; }
}

/* ===== Footer 页脚 ===== */
.footer {
    background: url('../images/foot-bg.png') center center no-repeat;
    background-size: cover;
}

/* 图标轮播区 */
.footer-icons {
    padding: 0.99rem 0 0.31rem;
    position: relative;
}

.footer-icons-wrap {
    display: flex;
    justify-content: center;
    max-width: 16rem;
    margin: 0 auto;
    padding: 0 0.3rem;
}

.footer-prev,
.footer-next {
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.3s;
    margin-top: 0.71rem;
}

.footer-prev:hover,
.footer-next:hover {
    opacity: 0.7;
}

.footer-prev img,
.footer-next img {
    display: block;
    width: 0.4rem;
    height: 0.4rem;
}

.footer-icons-list {
    overflow: hidden;
    flex: 1;
    margin: 0 0.3rem;
}

.footer-icons-inner {
    display: flex;
    transition: transform 0.3s ease;
}

.footer-icon-item {
    flex-shrink: 0;
  
    text-align: center;
    border: 1px solid transparent;
    transition: border 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-icon-item span {
    display: block;
    color: #fff;
    font-size: 0.20rem;
    margin-top: 0.3rem;
}
.footer-icon-item span:first-child{
    padding: 0.15rem;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.footer-icon-item img {
    display: block;
    width: 0.9rem;
    height: 0.9rem;
}
.footer-icon-item:hover span:first-child{
    border: 1px dashed #fff;
}



/* 分割线 */
.footer-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    right: 0;
    top: 1.9rem;
}

/* 信息区 */
.footer-info {
    padding: 0.71rem 0;
}

.footer-info .wp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    display: block;
    height: 0.84rem;
}

.footer-address {
    color: #fff;
    font-size: 0.18rem;
    line-height: 1.8;
    margin-top: 0.12rem;
}

.footer-right {
    display: flex;
    align-items: center;
}

/* 友情链接下拉 */
.footer-links {
    position: relative;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.04rem;
    padding: 0.1rem 0.4rem 0.1rem 0.2rem;
    margin-right: 0.98rem;
    width: 2.38rem;
    height: 0.48rem;
    box-sizing: border-box;
    display: none;
}

.footer-links span {
    color: #fff;
    font-size: 0.16rem;
}

.footer-links .jiantou {
    position: absolute;
    right: 0.15rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.12rem;
    transition: transform 0.3s;
}

.footer-links.open .jiantou {
    transform: translateY(-50%) rotate(180deg);
}

.links-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.04rem;
    display: none;
    max-height: 2rem;
    overflow-y: auto;
    margin-bottom: 0.05rem;
}

.footer-links.open .links-dropdown {
    display: block;
}

.links-dropdown a {
    display: block;
    padding: 0.1rem 0.2rem;
    color: #333;
    font-size: 0.14rem;
    transition: background 0.3s;
}

.links-dropdown a:hover {
    background: rgba(196, 18, 48, 0.1);
    color: #aa0203;
}

/* 二维码 */
.footer-qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-qrcode .li {
   
    margin-left: 0.3rem;
}
.footer-qrcode img {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
  
    border: 1px solid #cb6e6f;
    padding: 0.05rem;
}
.footer-qrcode .li p{text-align:center;color: #fff;line-height: .36rem;font-size: .16rem;}
/* 版权区 */
.footer-copyright {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 0.2rem 0;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.16rem;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-copyright a:hover {
    color: #fff;
}

/* Footer 响应式 */
@media screen and (max-width:1199px) {
    .footer-icon-item {
     
    }

    .footer-info .wp {
        flex-wrap: wrap;
    }
    .footer-icons{
        padding: 0.5rem 0;
    }
    .footer-line{
        top: 1.4rem;
    }

    
}
@media screen and (max-width:1500px) {
.footer-logo img{
    height: .7rem;
}
}
@media screen and (max-width:768px) {
    .footer-right{
        justify-content: space-between;
        margin-top: 0.25rem;
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .footer-icons {
        padding: 0.3rem 0;
    }
    .footer-line{
        top: 1.05rem;
    }

    .footer-icon-item span {
        font-size: 0.14rem;
    }

    .footer-qrcode img {
        /* width: 0.7rem; */
        /* height: 0.7rem; */
    }

    .footer-copyright p {
        font-size: 0.12rem;
        padding: 0 0.15rem;
    }
}
@media screen and (max-width:590px) {
    .footer-logo {
       width: 100%;
       margin-bottom: 0.3rem;
       display: block;
       margin: 0 auto;
    }
.footer-logo img{margin:0 auto;}
    .footer-address {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0.3rem;
        text-align: center;
    }

    .footer-right {
        width: 100%;
        margin-left: 0;
        display: block;
    }
    .footer-links{
        width: 100%;
        margin-left: 0;
        margin-bottom: .3rem;
        }
    .footer-qrcode {
    display: flex;
    align-items: center;
    justify-content: center; 
}
}
@media screen and (max-width:530px) {
    .footer-icon-item span:first-child{
        padding: 0.05rem;
    }
    .footer-icon-item img{
        width: 0.65rem;
        height: 0.65rem;
    }
    .footer-icon-item span{
        margin-top: 0.08rem;
    }
    .footer-prev, .footer-next{
        margin-top: 0.35rem;
    }
    .footer-prev img, .footer-next img{
        width: 0.25rem;
        height: 0.25rem;
    }
    .footer-line{
        top: 0.78rem;
    }

}

@media (min-width:1199px){
    body{
        padding-left: .8rem !important;
    }
    .header{
        margin-left:.8rem
    }

}

@media (max-width: 1400px){
    .footer-links{
        margin-right:.2rem;
    }
    .footer-logo img{
        height: .53rem;
    }
    .footer-qrcode .li{
    margin-left: 0.2rem;
}
   
}
@media (max-width: 1024px){
 .footer-qrcode img{
        width: 1.1rem;
        height: 1.1rem;
    }
}    
@media (max-width:768px){
    .footer-logo{
        /* width:100%; */
        margin-bottom:.2rem;
    }
    .footer-logo img{
        margin:0 auto;
        height: .66rem;
    }
    .footer-address{
        /* font-size:.16rem; */
        /* text-align:center; */
    }
    .footer-links{
        width:100%;
        margin:0;
    }
    .footer-right{
        flex-wrap:wrap;
        gap:.2rem 0
    }
    .footer-qrcode{
        margin:0;
        width:100%;
        justify-content:center;
        gap:0 .2rem;
    }
    .footer-qrcode img{
        /* width:1rem; */
        /* height:1rem; */
        /* margin:0; */
    }
    .footer-address{
        margin:0;
    }
    .footer-info{
    padding: 0.31rem 0;
}
}

@media (max-width:420px){
    .footer-logo{
        width:100%;
        margin: .2rem 0;
    }
    .footer-logo img{
        margin:0 auto;
    }
    .footer-address{
        font-size:.16rem;
        text-align:center;
    }
    .footer-links{
        width:100%;
        margin:0;
    }
    .footer-right{
        flex-wrap:wrap;
        gap:.2rem 0
    }
    .footer-qrcode{
        margin:0;
        width:100%;
        justify-content:center;
        gap:0 .2rem;
    }
    .footer-qrcode img{
        /* width:1rem; */
        /* height:1rem; */
        /* margin:0; */
    }
    .footer-address{
        margin:0;
    }
}