.body {
  height: 100%;
  background-color: #F0F3FC;
  font-size: 16px;
}

@media all and (min-width: 576px) {
  .body {
    font-size: 20px;
  }
}

.index__bg--bottom {
  position: fixed;
  background-color: #7987BF;
  top: 0;
  height: 355px;
  width: 100%;
}

@media all and (min-width: 576px) {
  .index__bg--bottom {
    height: 430px;
  }
}

::-webkit-scrollbar {
  width: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: #7987BF;
  border-radius: 5px;
}

.index__content--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 100;
  width: 100%;
  height: 100%;
  font-weight: normal;
  padding: 0 2rem 0;
}

.header {
  color: #2A2A40;
  margin-top: 2rem;
}

.header .title {
  margin-bottom: 1rem;
  font-size: 20px;
}

.header .line {
  padding-top: 8px;
  background: url(../img/line_header.png) left top repeat-x;
}

.header .artical {
  line-height: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  word-break: keep-all;
  font-size: 1rem;
}

@media all and (min-width: 576px) {
  .header .artical {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

.main {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: .9rem;
}

@media all and (min-width: 576px) {
  .main {
    font-size: 1rem;
  }
}

.main-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tab-content {
  width: 100%;
  padding: 10px 5px 10px 10px;
  background: #F0F3FC;
  overflow: hidden;
  border-radius: 10px 10px;
  color: #4C4743;
}

.tab-result {
  color: #4C4743;
  margin: 0 5px;
  width: 100%;
  padding: 0 1rem;
}

.tab-result-txt {
  margin: 15px 0 10px;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: .813rem;
}

@media all and (min-width: 576px) {
  .tab-result-txt {
    line-height: 1.5rem;
    font-size: 1rem;
  }
}

.cardGroup {
  color: #4C4743;
  max-height: 40vmax;
  overflow: auto;
  -ms-grid-columns: (minmax(8rem, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
}

@media all and (min-width: 576px) {
  .cardGroup {
    max-height: 45vmin;
  }
}

.cardGroup input[type="checkbox"] {
  display: none;
}

.cardGroup input[type="checkbox"]:checked + label {
  background-color: #FFFFFF;
}

.cardGroup-item {
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: 80px;
  margin: 5px 5px;
  border-width: 2px;
  border-radius: 10px;
  border: 1.5px solid #00000029;
}

.cardGroup-item-ch {
  text-align: center;
  margin-bottom: 5px;
  font-weight: bold;
}

.cardGroup-item-eg {
  font-size: 14px;
  text-align: center;
}

.resultGroup {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #4C4743;
  width: 100%;
  padding: 3px 0;
  overflow-x: scroll;
  overflow-y: hidden;
}

@media all and (min-width: 768px) {
  .resultGroup {
    display: inline-block;
  }
}

.resultGroup-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 6rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-width: 2px;
  border-radius: 20px;
  margin: 0 5px 15px 5px;
  background-color: #FFFFFF;
  font-size: .813rem;
}

.resultGroup-item input[type="checkbox"] {
  display: none;
}

@media all and (min-width: 576px) {
  .resultGroup-item {
    font-size: 1rem;
    min-width: 8rem;
  }
}

@media all and (min-width: 768px) {
  .resultGroup-item {
    padding: 0.6rem;
  }
}

.resultGroup-item-ch {
  padding: 0.6rem;
  text-align: center;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .resultGroup-item-ch {
    margin-bottom: 5px;
    padding: 0;
  }
}

.resultGroup-item-eg {
  display: none;
}

@media all and (min-width: 768px) {
  .resultGroup-item-eg {
    display: block;
    font-size: 14px;
    text-align: center;
  }
}

.resultGroup-item i {
  cursor: pointer;
}

.copyIcon {
  cursor: pointer;
  font-size: 1.3rem;
}

@media all and (min-width: 576px) {
  .copyIcon {
    line-height: 2rem;
    font-size: 1.6rem;
  }
}

.footer {
  padding: 10px;
  color: lightslategrey;
  font-weight: lighter;
}

.footer p {
  font-size: .8rem;
}

@media all and (min-width: 576px) {
  .footer p {
    line-height: 2rem;
    font-size: 1rem;
  }
}
