.foot{height:245px;width:100%;min-width:1110px;background:#f2f2f2}.foot_logo{float:left;width:215px;height:52px;margin:33px 0 0;background:#eee url() no-repeat}.c-textHide{text-indent:-1000px;overflow:hidden}
.foot_small_logo{width:36px;height:36px;display:inline-block;margin:42px 0 0 26px;background:url('../images/wen.png') no-repeat}
.foot_text{float:right;margin-top:32px;text-align:right}.foot_text p{margin-bottom:10px}.foot_text a,.foot_text p{color:#333}.foot_text a,.foot_text span{margin-left:35px}
.thinScreen .foot .wrap{width:1110px}
.friend-links {
    text-align: center; /* 让内容居中 */
    margin: 20px 0; /* 上下外边距 */
}

.friend-links h2 {
    font-size: 15px; /* 标题字体大小 */
    margin-bottom: 20px; /* 标题底部外边距 */
}

.friend-links ul {
    list-style: none; /* 移除默认的列表样式 */
    padding: 0; /* 移除默认的列表内边距 */
    display: inline-flex; /* 让列表项水平显示并且居中 */
    justify-content: center; /* 水平居中列表项 */
}

.friend-links li {
    margin:1px; /* 列表项之间的间距 */
}

.friend-links a {
    text-decoration: none; /* 移除链接的下划线 */
    color: #333; /* 链接文字颜色 */
    padding: 5px 10px; /* 链接内边距 */
    border: 1px solid #ccc; /* 链接边框 */
    border-radius: 4px; /* 链接边框圆角 */
    transition: background-color 0.3s ease; /* 添加背景色过渡效果 */
}

.friend-links a:hover {
    background-color: #f5f5f5; /* 鼠标悬停时的背景色 */
}