* {
  margin: 0;
  padding: 0;
}
.container {
  margin: 0 auto;
  max-width: 1920px;
  min-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.banner {
  width: 100%;
  max-width: 1920px;
  min-width: 1200px;
  height: 718px;
  background: url(../img/product_banner.png) no-repeat center;
}
.content {
  width: 1200px;
  min-width: 1200px;
  padding-bottom: 144px;
}
.navigation {
  margin-top: 110px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.navigation-left {
  height: 45px;
  padding-left: 8px;
  border-left: 3px solid #7f5654;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.navigation-left p {
  font-size: 22px;
  color: #7f5654;
  line-height: 1;
}
.navigation-left span {
  font-size: 14px;
  color: rgba(102, 102, 102, 0.5);
  line-height: 1;
}
.navigation-right {
  font-size: 16px;
  color: #7f7f7f;
  line-height: 1;
}
.product {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product .item {
  margin-bottom: 24px;
  position: relative;
}
.product .item img {
  width: 590px;
  height: 433px;
}
.product .item div {
  width: 100%;
  height: 96px;
  background-color: #eee;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 22px;
  color: #333;
  padding: 0 30px 0 54px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product .item div p {
  width: 41px;
  height: 41px;
  background: url(../img/index/product_icon_hui.png) no-repeat center / 100% 100%;
}
.product .item:hover {
  color: #7f5654;
}
.product .item:hover div {
  background-color: #edc32f;
}
.product .item:hover div p {
  background: url(../img/index/product_icon.png) no-repeat center / 100% 100%;
}
