/*样式初始化*/
*{
  color:#333;
  font-size:14px;
  margin: 0;
  padding: 0;
}
html,body{
  min-width: 1340px;
}
.headerBox{
  width: 100%;
  background: #6890ae;
}
.headerBox .content{
  width: 1340px;
  color:#fff;
  margin: 0 auto;
  font-size:28px;
  font-weight: bold;
  line-height: 3.0;
}

.mainBox{
  width: 1340px;
  margin: 30px auto;
}
.mainBox .list{
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.mainBox .list:first-child{
  margin-top: 0;
}
.mainBox .list .img{
  width: 50%;
}
.mainBox .list .img img{
  width: 100%;
}
.mainBox .list .text{
  width: 50%;
  padding-left: 20px;
  box-sizing: border-box;
  font-size: 22px;
  line-height: 1.6;
  text-align: justify;
}
.mainBox .list:nth-child(even) .text{
  padding-left: 0;
  padding-right: 20px;
}
.footerBox{
  width: 100%;
  background: #333;
}
.footerBox .content{
  width: 1340px;
  margin: 0 auto;
  line-height: 2.0;
  text-align: center;
  padding:20px 0;
}
.footerBox .content p{
  color:#aaa;
  font-size: 16px;
}
.footerBox .content a{
  color:#eee;
  font-size: 16px;
}
.footerBox .content a:hover{
  color: #fff;
}