.banner {
  position: relative;
  font-size: 0;
}
.banner img {
  width: 100%;
}
.drink-nav {
  background-color: #fff;
}
.drink-nav ul {
  display: flex;
}
.drink-nav ul li {
  flex: 1;
  text-align: center;
  overflow: hidden;
}
.drink-nav ul li.active {
  background-color: #F7F6F7;
}
.drink-nav ul li a {
  transition: all 0.5s;
  display: block;
  padding: 22px 0;
}
.drink-nav ul li a:hover {
  transform: scale(1.2);
  background: rgba(216, 43, 44, 0.5);
}
.drink-nav ul li .img img {
  width: 84px;
  height: 71px;
}
.drink-nav ul li .p {
  color: #333333;
  font-size: 23px;
  font-family: 'font1';
  margin-top: 5px;
}
.list {
  background: url(../image/drink-bg.png) repeat-y;
  background-size: 100% auto;
}
.list .cont ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list .cont ul li {
  flex: 1;
  width: 31%;
  max-width: 31%;
  min-width: 31%;
  margin-top: 50px;
}
.list .cont ul li a {
  position: relative;
  display: block;
  font-size: 0;
}
.list .cont ul li a img {
  width: 100%;
  height: 326.5px;
}
.list .cont ul li:hover{
	transform: scale(1.1);
}
.list .cont ul li a p {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  color: #ffffff;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
  font-family: 'font1';
}
.list .cont .pages {
  padding: 35px 0 50px;
  text-align: center;
}
.list .cont .pages a {
  display: inline-block;
  border: 1px solid #A0A0A0;
  margin: 0 8px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #545454;
  font-size: 18px;
  border-radius: 3px;
}
.list .cont .pages a.active {
  color: #FFF;
  background-color: #D82B2C;
}
@media screen and (max-width: 1000px){
	.list .cont ul li {
	  flex: 1;
	  width: 48%;
	  max-width: 48%;
	  min-width: 48%;
	  margin-top: 50px;
	}
	.list{
		padding: 0 30px;
	}
}