* {
margin:0;
padding:0;
list-style:none;
text-decoration:none;
box-sizing:border-box;
font-family:"微软雅黑",sans-serif;
}

body {
background:#f5f5f5;
}

/* 宽度统一 */
.top, .nav, .main, .banner img {
width:1000px;
margin:0 auto;
}

/* 顶部 */
.top_bg {
background:#fff;
height:90px;
border-bottom:1px solid #eee;
}
.top {
height:90px;
display:flex;
align-items:center;
}
.logo img {
height:70px;
margin-right:20px;
}
.title {
font-size:22px;
font-weight:bold;
color:#333;
}

/* 导航 */
.nav_bg {
background:#005599;
height:50px;
}
.nav {
display:flex;
height:50px;
}
.nav a {
flex:1;
text-align:center;
line-height:50px;
color:#fff;
font-size:16px;
}
.nav a:hover {
background:#003366;
}

/* Banner */
.banner {
margin:10px auto;
text-align:center;
}
.banner img {
width:1000px;
height:260px;
object-fit:cover;
border:1px solid #ddd;
}

/* 主体 */
.main {
display:flex;
justify-content:space-between;
margin-top:10px;
}
.left {
width:670px;
}
.right {
width:310px;
}

/* 模块 */
.box {
margin-bottom:15px;
background:#fff;
border:1px solid #ddd;
}
.tit {
height:40px;
line-height:40px;
padding-left:15px;
background:#f0f5fa;
border-bottom:1px solid #dde6ef;
font-size:16px;
font-weight:bold;
color:#005599;
}
.con {
padding:15px;
line-height:1.8;
color:#333;
font-size:14px;
}

/* 产品列表 */
.pro_list li {
line-height:30px;
border-bottom:1px dashed #eee;
padding-left:5px;
}

/* 新闻 */
.news_list li {
line-height:32px;
border-bottom:1px dashed #eee;
}
.news_list li a {
color:#333;
}
.news_list li a:hover {
color:#005599;
}

/* 联系信息 */
.contact_info p {
margin-bottom:8px;
}

/* 底部 */
.footer {
background:#005599;
color:#fff;
text-align:center;
padding:20px 0;
margin-top:20px;
font-size:14px;
}