body {
  margin: 0;
  background: #FAFAFA;
  font-family: Arial, sans-serif;
}
h2 {
  margin-block-start: 0;
  margin-block-end: 0;
}
p {
  margin-block-start: 0;
  margin-block-end: 0;
}
.header {
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px 0px rgba(41, 0, 0, 0.1);
  position: sticky;
  top: 0;
}
.header .inner {
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .inner .left {
  display: flex;
  align-items: center;
}
.header .inner .left .logo {
  width: 40px;
  height: 40px;
  background-image: url(../images/logo.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.header .inner .left .name {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-left: 20px;
}
.header .inner .download {
  width: 240px;
  height: 40px;
  background: #F5222D;
  box-shadow: 0px 2px 4px 0px rgba(111, 0, 6, 0.3);
  border-radius: 7px;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  color: #FFFFFF;
  font-size: 16px;
  display: block;
  text-decoration: none;
}
.main {
  max-width: 1100px;
  margin: 0 auto;
}
.main .section {
  background: #FFFFFF;
  box-shadow: 0px 2px 6px 0px rgba(41, 0, 0, 0.06);
  margin-top: 50px;
  padding: 30px;
  border-radius: 10px;
}
.main .section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
}
.main .section p {
  font-size: 14px;
  color: #626262;
  line-height: 24px;
  margin-top: 20px;
}
.main .section p b {
  color: #333333;
}
.main .section .showcase-mobile {
  display: none;
}
.main .section .showcase {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.main .section .showcase .img {
  width: 174px;
  height: 308px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.main .section .sub-section {
  padding: 20px;
  margin: 20px 0 0 0;
  background: #FAFAFA;
  line-height: 25px;
}
.main .section .sub-section p {
  margin-top: 0;
  line-height: 24px;
}
.footer {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  color: #626262;
  box-shadow: 0px -1px 3px 0px rgba(41, 0, 0, 0.1);
  margin-top: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 12px;
}
.footer a {
  color: #F5222D;
}
@media (max-width: 768px) {
  .header {
    width: 100%!important;
    padding: 2vw 4vw;
    height: auto!important;
  }
  .header .inner{
    height: auto!important;
  }
  .header .logo {
    width: 10vw!important;
    height: 10vw!important;
  }
  .header .name {
    font-size: 4vw!important;
    margin-left: 2.6vw !important;
  }
  .header .download {
    position: fixed;
    left: 50%;
    bottom: 8vh;
    width: 68.6vw !important;
    height: 11.2vw !important;
    line-height: 11.2vw !important;
    font-size: 4vw!important;
    transform: translate(-50%);
  }
  .main {
    max-width: 92vw!important;
  }
  .main .section {
    margin-top: 4vw!important;
    padding: 5vw!important;
  }
  .main .section .sub-section {
    padding: 1vw 3vw!important;
    line-height: 5.3vw !important;
    margin: 2.67vw 0 0 0 !important;
  }
  .main .section h2 {
    font-size: 4vw!important;
    line-height: 6vw!important;
  }
  .main .section p {
    font-size: 3.7vw !important;
    margin-top: 2vw!important;
  }
  .main .showcase {
    display: none!important;
  }
  .main .showcase-mobile {
    display: block!important;
    height: 45.6vw;
    width: 100%;
    overflow: scroll;
    margin-top: 2.6vw;
  }
  .main .showcase-mobile .inner {
    width: 115vw;
    height: 45.6vw;
    display: flex;
    justify-content: space-between;
  }
  .main .showcase-mobile .inner .img {
    width: 25.7vw;
    height: 45.6vw;
    background-size: 100%;
  }
  .footer {
    height: 13.3vw !important;
    line-height: 13.3vw !important;
    font-size: 2.67vw !important;
  }
}
