.header {
  height: 108px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .home-title {
}

.header .nav {
  width: 100px;
}

.banner {
  height: 300px;
}

.banner img {
  width: 100%;
  height: 100%;
}

.display-product {
  padding-top: 64px;
}

.display-product .product-show-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.product-show-wrapper h3 {
  line-height: 32px;
  margin-bottom: 23px;
}

.products-details {
  margin-top: 32px;
}

.products-details .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-details-wrapper li {
  position: relative;
  overflow: hidden;
  width: 240px;
  height: 160px;
  margin-left: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.products-details-wrapper li:hover .product-details-name {
  transform: translateX(0px);
}

.products-details-wrapper li  img {
  width: 100%;
  height: 100%;
}

.products-details-wrapper .product-details-name {
  position: absolute;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  text-align: center;
  line-height: 40px;
  transition: transform 0.2s;
  transform: translateY(40px);
}

.product-introduce {
  position: relative;
  height: 368px;
  margin-top: 64px;
  background: url('../images/company-introduce-bg.png') no-repeat;
  background-size: 100%;
}

.product-introduce__description {
  position: relative;
  top: 119px;
  box-sizing: border-box;
  width: 1140px;
  padding: 64px 88px 56px 88px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.product-introduce__titile {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.product-introduce__titile h3 {
  line-height: 32px;
  margin-bottom: 23px;
}

.product-introduce__line {
  margin-top: 24px;
  text-indent: 2em;
  line-height: 28px;
}

.contact-us {
  padding: 144px 0 64px 0;
}

.contact-us__titile {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact-us__titile h3 {
  line-height: 32px;
  margin-bottom: 23px;
}

.contact-us__container {
  margin-top: 40px;
}

.contact-us__container ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us__container ul li {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-us__container .name{
  line-height: 24px;
  margin-top: 40px;
}

.contact-us__container .detail{
  line-height: 18px;
  margin-top: 40px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 104px;
  background: url('../images/footer-bg.png') no-repeat;
  background-size: 100%;
}