* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
a {
  color: white;
  text-decoration: none;
}
body {
  background-color: #eaebed;
}
header {
  width: 100%;
  background-color: white;
}
header .header-content {
  width: 1000px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-content .img1 {
  height: 60px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
header .header-content .img1 img {
  width: 100%;
  height: 100%;
}
header .header-content .img2 {
  height: 80px;
  line-height: 80px;
  text-shadow: 3px 3px #dad5d5;
  font-size: 32px;
  color: #666;
}
header .header-content .input {
  display: flex;
}
header .header-content .input .text {
  height: 35px;
  border: 1px solid #999;
  width: 230px;
  padding-left: 5px;
}
header .header-content .input .search {
  display: block;
  border: none;
  width: 60px;
  height: 35px;
  background-color: #2172c4;
  color: white;
}
header .header-content span {
  color: orangered;
  line-height: 80px;
  font-size: 24px;
}
header nav {
  width: 100%;
  background-color: #2172c4;
}
header nav ul {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
header nav ul li {
  border-right: 1px solid #999;
  width: 125px;
  text-align: center;
  height: 40px;
  line-height: 40px;
}
header nav ul li:nth-child(8) {
  border: none;
}
header nav ul li:nth-child(3) {
  background-color: #11a9ec;
}
header nav ul li:hover {
  background-color: #11a9ec;
}
.banner {
  margin-top: 10px;
  width: 1500px;
  background-color: white;
  margin: 0 auto;
}
.banner .img-warp {
  width: 1500px;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
}
.banner .img-warp img {
  width: 100%;
}
main {
  width: 1500px;
  margin: 30px auto;
}
main .section1 h2 {
  text-align: center;
  margin: 20px 0;
}
main .section1 .content {
  display: flex;
  justify-content: space-between;
}
main .section1 .content .imgWrap {
  width: 350px;
  height: 500px;
}
main .section1 .content .imgWrap img {
  width: 350px;
}
main .section1 .content p {
  width: 1100px;
  text-indent: 2rem;
  line-height: 35px;
}
main ul {
  display: flex;
  justify-content: space-between;
}
main ul li {
  width: 32%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}
main ul li img {
  width: 100%;
  height: 300px;
}
main ul li h3 {
  padding: 20px;
  font-size: 24px;
}
main ul li p {
  padding: 0 20px;
  line-height: 28px;
  text-indent: 2rem;
}
footer {
  width: 100%;
  background-color: white;
}
footer .content {
  height: 100px;
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer .content .img-warp {
  height: 60px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
footer .content .img-warp img {
  width: 100%;
  height: 100%;
}
footer .content .text {
  height: 80px;
  border-left: 1px solid #a09d9d;
  padding: 0 0 0 20px;
}
footer .content .text a {
  color: #888;
  font-size: 14px;
  line-height: 20px;
}
