* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
.container {
  min-height: 100vh;
  max-width: 768px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

.cta-top {
  padding: 1rem;
  background: #fff;
}
.cta-top-title {
  padding: 0.5rem;
  font-weight: bold;
  border-radius: 10px;
  border: 2px solid #e4004b;
}
.cta-top-box {
  margin-top: 2rem;
  border-radius: 15px;
  padding: 1rem;
  font-weight: bold;
}
.cta-top-text-t {
  color: #192630;
}
.c-e4004b {
  color: #e4004b;
  font-weight: bold;
}
.cta-top-text-btn {
  text-align: center;
  padding: 1rem;
}
.cta-top-text-btn button {
  padding: 1rem;
  width: 100%;
  background: #1160d9;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  animation: zoom2 1s infinite linear;
}
@keyframes zoom2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.features-box {
  padding: 1rem;
  background: #f3f9ff;
}
.bgc-fff {
  background-color: #fff;
}
.features-title-box {
  font-size: 1.2rem;
  font-weight: bold;
}
.features-title-box span {
  color: #082986;
}
.features-title-box-ms {
  margin: 1rem 0;
}
.features-text-box {
  display: flex;
}
.features-text-con {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #435868;
}
.features-text-img {
  flex: 1;
}

.features-describe {
  color: #435868;
}
.features-describe p {
  margin: 1rem 0;
}

.mm {
  margin: 0.8rem 0;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
}
.features-list-item {
  flex: 1 0 calc(45%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 1rem;
  border: 2px solid #145ed3;
  border-radius: 10px;
  color: #145ed3;
  font-weight: bold;
  margin: 0.5rem;
}

.features-descriptions {
  padding: 1rem;
  color: #314254;
}
.features-descriptions-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e6e7eb;
}
.features-descriptions-item:last-child {
  border-bottom: none;
}
.features-descriptions-item p {
  font-weight: bold;
}

.features-bottom-text {
  margin-top: 2rem;
  border: 3px solid #145ed3;
  border-radius: 10px;
  padding: 1rem;
  font-weight: bold;
  color: #082986;
}
.features-bottom-btn {
  padding: 1rem;
}
.features-bottom-btn button {
  padding: 1rem;
  width: 100%;
  background: #145ed3;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  animation: zoom3 1s infinite linear;
  margin: 1rem 0;
}
@keyframes zoom3 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}
.features-bottom-ts {
  font-weight: bold;
  color: #e4004b;
}
.features-bottom-matter-title {
  margin: 1rem 0;
  font-weight: bold;
  color: #e4004b;
  display: flex;
  align-items: center;
}
.features-bottom-matter img {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.features-bottom-matter-text {
  color: #314254;
}
.footer {
  color: #fff;
  background: #082986;
  padding: 2rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
}
.footer-top {
  text-align: center;
}
.footer-top a {
  display: inline-block;
  color: #fff;
}
.footer-top a:nth-child(2) {
  margin: 0 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 240px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 241px) and (max-width: 320px) {
  html {
    font-size: 14px;
  }
}
