128 lines
3.3 KiB
HTML
128 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>重庆社会科学院</title>
|
||
<style>
|
||
/* 页面基础样式 */
|
||
body {
|
||
margin: 0;
|
||
font-family: Arial, sans-serif;
|
||
}
|
||
|
||
/* 顶部导航栏样式 */
|
||
.navbar {
|
||
background-color: #003366;
|
||
color: white;
|
||
padding: 10px 0;
|
||
text-align: center;
|
||
}
|
||
|
||
.navbar a {
|
||
color: white;
|
||
text-decoration: none;
|
||
margin: 0 15px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.navbar a:hover {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
/* 底部信息栏样式 */
|
||
.footer {
|
||
background-color: #f4f4f4;
|
||
padding: 20px 40px;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
|
||
/* 左侧信息部分 */
|
||
.footer-left {
|
||
font-size: 14px;
|
||
color: #333;
|
||
line-height: 1.8;
|
||
}
|
||
|
||
.footer-left h4 {
|
||
margin: 0;
|
||
font-size: 16px;
|
||
font-weight: bold;
|
||
color: #003366;
|
||
}
|
||
|
||
/* 右侧图标和二维码部分 */
|
||
.footer-right {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.footer-right img {
|
||
height: 80px;
|
||
margin-left: 20px;
|
||
}
|
||
|
||
.footer-right .qr-code {
|
||
text-align: center;
|
||
}
|
||
|
||
.footer-right .qr-code span {
|
||
display: block;
|
||
margin-top: 5px;
|
||
font-size: 12px;
|
||
color: #666;
|
||
}
|
||
|
||
/* 底部备案信息 */
|
||
.footer-bottom {
|
||
background-color: #f4f4f4;
|
||
text-align: center;
|
||
padding: 10px 0;
|
||
font-size: 12px;
|
||
color: #666;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<!-- 顶部导航栏 -->
|
||
<div class="navbar">
|
||
<a href="#">友情链接</a>
|
||
<a href="#">政府部门</a>
|
||
<a href="#">省市社科院 ▲</a>
|
||
<a href="#">省市政府发展研究中心 ▲</a>
|
||
<a href="#">省市社科联 ▲</a>
|
||
<a href="#">新闻媒体</a>
|
||
</div>
|
||
|
||
<!-- 底部信息栏 -->
|
||
<div class="footer">
|
||
<!-- 左侧信息 -->
|
||
<div class="footer-left">
|
||
<h4>重庆社会科学院(重庆市人民政府发展研究中心)</h4>
|
||
<p>
|
||
Chongqing Academy of Social Sciences (The Development Research Center of Chongqing Municipal People's Government)<br>
|
||
地址:重庆市江北区桥北村270号<br>
|
||
邮编:400020<br>
|
||
电话:023-67996600 023-67992029
|
||
</p>
|
||
</div>
|
||
|
||
<!-- 右侧图标和二维码 -->
|
||
<div class="footer-right">
|
||
<img src="https://via.placeholder.com/80" alt="图标">
|
||
<div class="qr-code">
|
||
<img src="https://via.placeholder.com/80" alt="二维码">
|
||
<span>官方微信公众号</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 底部备案信息 -->
|
||
<div class="footer-bottom">
|
||
渝ICP备14000458号-2 ◎渝公网安备 50010502000791号
|
||
</div>
|
||
</body>
|
||
</html>
|