*{
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
}

ul,li{
  list-style: none;
  margin: 0;
  padding: 0;
}

.wrap{
  width: 1200px;
  margin: 0 auto;
}

/* head */
.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

/* head-left */

.head .head-left .logo{
  display: flex;

}

.head .head-left .logo img{
  width: 82px;
  height: 56px;
}

.head .head-left .logo span{
  color: #333333;
  font-size: 30px;
  line-height: 1;
  align-self: flex-end;
}

.head .head-left .head-count{
  color: #666666;
  font-size: 12px;
  margin-top: 10px;
}

.head .head-left .head-count span{
  margin-right: 10px;
}

/* head-right */
.head .head-right{
  display: flex;
  align-self: center;
}

.head .head-right a{
  color: #555555;
  font-size: 16px;
  margin-left: 24px;
  text-decoration: none;
  padding: 4px 14px;
}

.head .head-right a.active{
  color: #FFFFFF;
  background-color: #4469B3;
  border-radius: 3px;
}

/* head-search */

.search{
  margin-left: 40px;
  display: flex;
  box-sizing: border-box;
}

.search input{
  width: 300px;
  height: 32px;
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  border-left: 1px solid #DEDEDE;
  border-right: none;
  border-radius: 3px 0 0 3px;
  padding: 0 0 0 9px;
  outline: none;
}

.search input::placeholder{
  color: #999999;
  font-size: 12px;
}

.search button{
  background-color: #4267B5;
  width: 70px;
  height: 32px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #FCFCFC;
  font-size: 16px;
  border-radius: 0 3px 3px 0;
}

/* banner */

.banner {
  background-color: #E6E6E6;
  /* height: 360px; */
  margin-top: 20px;
}

.swiper-container {
  position: relative;
}
.swiper-container .swiper-wrapper img{
  width: 100%;
}

.swiper-container .swiper-text{
  position: absolute;
  width: 100%;
  height: 40px;
  background-color: rgba(176,176,176);
  bottom: 0;
  left: 0;
  z-index: 9;
}

.swiper-container .swiper-text .wrap{
  display: flex;
  justify-content: space-around;
  line-height: 40px;
  box-sizing: border-box;
}

.swiper-container .swiper-text span{
  color: #FFFFFF;
  font-size: 14px;
  cursor: pointer;
}

.swiper-slide {
  text-align: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  box-sizing: border-box;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
