.container {
  background: #f5f7fa; /* fallback for old browsers */

 
  width: 100%;
  /* height: 100vh; */
  /* overflow: hidden; */
}

.nav {
  width: 78.5vw;
  margin: 0 auto;
}
.content {
  width: 78.5vw;
  margin: 0 auto;
  color: #333;
}
.content .title {
  font-size: 2.6vw;
  font-weight: bold;
  text-align: center;
  padding: 1.93vw 0;
  position: relative;
}
.title::after {
  content: "";
  height: 6px;
  background-color: #7cd1e1;
  width: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  border-radius: 10px;
}
.description {
  text-align: center;
  font-size: 1.302vw;
  padding-top: 1.5vw;
}
.special {
  text-align: center;
  font-size: 1.7vw;
  padding: 3.2vw 0;
}
.list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10.02vw;
  position: relative;
  flex-direction: column;
}

.list li::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #e4e9ff;
}
.list li:last-child::after {
  content: none;
}
.list li .icon {
  width: 4.55vw;
  height: 4.55vw;
}
.list li .list_text {
  font-size: 1.1vw;
  padding-top: 2vw;
  width: 80%;
  height: 2vw;
  text-align: center;
  line-height: 1.5vw;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery .gallery_item {
  flex: 1;
}

.gallery .gallery_item img {
  width: 90%;
  border-radius: 10px;
  box-shadow: 0px 0px 5px #ccc;
}
.footer{
  padding: 1.4vw 0;
  text-align: center;
  font-size: 1.1vw;
  
}
.footer p {
  line-height: 2vw;
}
.footer a {
  color: #333;
  font-size: 1.1vw;
}