* {
  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(1) {
  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: 100%;
  margin-top: 10px;
  margin: 0 auto;
  margin-top: 30px;
}
main .section1 {
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0 10px #8f8d8d;
  background-color: white;
}
main .section1 .left {
  width: 74%;
  border: 1px solid #aaa7a7;
  float: left;
  box-shadow: 0 0 5px #dcd9d9;
}
main .section1 .left .head {
  height: 40px;
  line-height: 40px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #333;
  padding: 0 10px;
}
main .section1 .left .content {
  padding: 10px;
  overflow: hidden;
}
main .section1 .left .content h3 {
  text-align: center;
}
main .section1 .left .content .imgWrap {
  width: 300px;
  height: 200px;
  border-radius: 5px;
  float: left;
}
main .section1 .left .content .imgWrap img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
main .section1 .left .content p {
  color: #333;
  font-size: 16px;
  line-height: 2rem;
  float: right;
  width: 400px;
  text-indent: 2rem;
}
main .section1 .left .address {
  padding: 0 20px;
  overflow: hidden;
}
main .section1 .left .address .title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}
main .section1 .left .address p {
  text-indent: 2rem;
  color: #333;
  font-size: 16px;
  line-height: 2rem;
  float: left;
  width: 400px;
}
main .section1 .left .address .addressImg {
  width: 280px;
  float: right;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}
main .section1 .left .address .addressImg img {
  width: 100%;
  height: 100%;
}
main .section1 .right {
  width: 25%;
  border: 1px solid #999;
  box-shadow: 0 0 10px #8f8d8d;
  color: #333;
  float: right;
}
main .section1 .right .head {
  height: 40px;
  line-height: 40px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #333;
  padding: 0 10px;
}
main .section1 .right .img-warp {
  width: 100%;
  margin-bottom: 10px;
}
main .section1 .right .img-warp li {
  padding: 10px 10px;
  border-radius: 10px;
  overflow: hidden;
  height: 152px;
  width: 250px;
}
main .section1 .right .img-warp li img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
main .section2 {
  width: 1500px;
  margin: 0 auto;
  margin-top: 20px;
  background: #ffffff;
  padding: 10px;
  margin-bottom: 30px;
}
main .section2 .content {
  width: 100%;
  background: white;
}
main .section2 .content .head {
  height: 50px;
  display: flex;
  padding: 0 10px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #999 dotted;
}
main .section2 .content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 20px 10px;
}
main .section2 .content ul li:nth-child(6) {
  border: none;
}
main .section2 .content ul li {
  border: 1px solid #999;
  padding: 2px;
  width: 22%;
  height: 130px;
}
main .section2 .content ul li img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
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;
}
