.navbar {
  padding: 20px 0;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .link {
  margin: 0;
}

.navbar .link li{
  display: inline-block;
}

.navbar .link li:not(:first-child){
  margin-left: 80px;
}

.navbar .link li a:hover{
  color: #1ac388;
}

.navbar .logo {
  width: 32px;
  height: 32px;
}

/* banner */
.banner {
  width: 100%;
  min-width: 1200px;
  margin-top: 80px;
  height: 635px;
  background-image: url(../img/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner .container {
  position: relative;
}

.banner .banner__qrcode {
  padding: 18px;
  border-radius: 10px;
  background-color: #fff;
  position: absolute;
  left: 84px;
  top: 258px;
}

/* 统计 */
.statistics .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  height: 160px;
  padding: 0 160px;
  background-color: #fff;
  border-radius: 8px;
  transform: translateY(-50%);
  box-shadow: 0 0 10px 0px rgba(243, 243, 243, 0.6);
}

.statistics .container .statistics-item .statistics-item__count {
  position: relative;
}

.statistics .container .statistics-item .statistics-item__count::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 24px;
  height: 2px;
  background-color: #1ac388;
}

/* 预约 */

.reservation .reservation-step {
  margin-left: 48px;
}

.reservation .reservation-step li:not(:last-child){
  margin-bottom: 40px;
}

.reservation .reservation-step__img {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reservation .reservation-step__title {
  padding: 0 36px;
  height: 40px;
  border-radius: 20px;
  background-color: rgba(26, 195, 136, .1);
  color: #1ac388;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation .reservation-step__desc {
  width: 440px;
  margin: 14px 0 0 66px;
  color: #777;
  font-size: 16px;
  line-height: 22px;
}

/* 合作 */
.cooperation {
  margin-top: 153px;
}

.cooperation .cooperation-container {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.cooperation .cooperation-item {
  width: 372px;
  box-sizing: border-box;
  border: 1px solid #ededed;
}

.cooperation .cooperation-item .cooperation-item__header {
  padding: 60px 0 30px;
  position: relative;
  text-align: center;
}

.cooperation .cooperation-item .cooperation-item__title {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
}

.cooperation .cooperation-item .cooperation-item__desc {
  margin: 0 30px;
  padding: 30px 0 50px;
  border-top: 1px solid #E5E5E5;
  font-size: 16px;
  line-height: 22px;
  color: #777;
}

/* 特点 */
.feature {
  margin-top: 77px;
  min-width: 1200px;
  background-color: #202A2C;
}

.feature .feature-container{
  display: flex;
  justify-content: space-between;
}

.feature .feature-container .feature-item{
  height: 110px;
  display: flex;
  align-items: center;
  color: #fff;
}

/* 底部 */
.footer {
  color: #fff;
  min-width: 1200px;
  background-color: #2E383A;
}

.footer .container {
  padding: 60px 0;
  display: flex;
}

.footer .container ul:first-child {
  width: 320px;
  border-right: 1px solid #5A5A5A;
  margin-right: 122px;
}

.footer .container ul li {
  color: #aaa;
  font-size: 16px;
}

.footer .container ul li:not(:last-child) {
  margin-bottom: 24px;
}

.footer .container ul .title{
  font-size: 18px;
  color: #fff;
}

.footer .container .qrcode {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  margin: 4px 0 0 auto;
}
.footer .footer-record {
  height: 84px;
  line-height: 84px;
  border-top: 1px solid #5A5A5A;
}