/* 底部整体容器：控制布局 */

.site-footer {
    width: 100%;
    padding: 0px 20px;
    background-color: #fff;
    /* 背景色兜底 */
    border-top: 1px solid #eee;
    /* 顶部分割线 */
    /* 让内容居中，适配不同屏幕 */
    margin: 5px auto 0;
    display: flex;
    /* 左右布局：左侧文字 + 右侧二维码 */
    flex-wrap: wrap;
    /* 响应式换行 */
    justify-content: space-between;
}
.footerCont{
width:1400px;
margin:0px auto;
}

/* 左侧内容：学会介绍 + 联系信息 */

.footer-left {
    width: 100%;
    /* 占比可调整 */
    padding: 20px 0;
}

.footer-title {
    font-size: 24px;
    color: #157BF2;
    margin-bottom: 10px;
    /* （可选）如果标题左侧有 logo 图标，用背景图切图： */
    /* background: url("logo.png") no-repeat left center; */
    /* padding-left: 30px; */
}

.footer-desc {
width:300px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info{
width:30%;
    display: inline-block;
margin-right:20px

}
.contact-info p {
     font-size:15px;
    color: #999;
    margin: 4px 0;
}
.tel{
font-size:24px;
color:#157BF2;
font-weight:blod;
}

/* 右侧二维码容器：flex 布局让二维码并排 */

.footer-right {
width:30%;
  
    /* 二维码间距 */
    align-items: center;
    padding: 20px 0;
}


/* 二维码切片核心：用 background 做切图 */

.qr {
    width: 80px;
    /* 二维码实际宽高 */
    height: 80px;
    background-repeat: no-repeat;
    background-size: contain;
    /* 让二维码完整显示，适应容器 */
}


/* 微信服务号二维码：切图定位 */

.qr-wechat {
    background-image: url("qr-wechat.png");
    /* 如果是雪碧图，加 background-position: -x -y; */
}


/* 微博订阅号二维码：切图定位 */

.qr-weibo {
    background-image: url("qr-weibo.png");
}


/* 友情链接 + 版权区 */

.footer-links {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.footer-links a {
    color: #999999;
    margin: 0 5px;
    font-size:15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #007bff;
}

.copyright {
    color: #999;
    margin-top: 5px;
}
.erweima{
width: 40%;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #4444;
}
.erweima p{

}
.link{
color:#157BF2;
font-weigth:blod
}