/*------------------------------------*\
    Components
\*------------------------------------*/

.banner {
  height: 280px;
  top: 0;
  left: 0;
  background-image: url("/image/year/bg-lg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}

.banner .image-left {
  background-image: url("/image/year/red-circle-lg.png");
  height: 220px;
  width: 220px;
  top: 122px;
  left: -112px;
}

.banner .image-right {
  background-image: url("/image/year/flower-right.png");
  top: 40px;
  right: -54px;
}

@media (max-width: 768px) {
  .banner {
    background-image: url("/image/year/bg-sm.png");
    height: 230px;
  }
}

/* section-1 */

.btn.btn-primary {
  color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#22cbd9),
    to(#39afd1)
  );
  background-image: -webkit-linear-gradient(right, #22cbd9, #39afd1);
  background-image: -o-linear-gradient(right, #22cbd9, #39afd1);
  background-image: linear-gradient(to left, #22cbd9, #39afd1);
}

.btn.btn-secondary {
  color: #f35f64;
  border-radius: 25px;
  background-color: #ffffff;
}

/* number-of-people */
.number-of-people {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  color: #353452;

  margin-bottom: 16px;
}

.number-of-people span {
  color: #ff6f7d;
  border-bottom: 2px solid #ff6f7d;
}

/* TA*/
.section-1 .ta {
  padding-top: 48px;
}

.section-1 .ta .title {
  font-size: 22px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.6px;
  color: #353452;
}

.section-1 .ta .icon-row {
  margin-bottom: 8px;
}

.section-1 .section-card .icon-container {
  width: 100%;
  padding-top: 100%;
  margin-bottom: 8px;
}

.section-1 .ta .icon-row .para {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #494949;
  white-space: nowrap;
  margin-bottom: 40px;
}

.section-1 .ta .icon-row .para-b {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
}

.section-1 .section-card .icon-container {
  margin: 0 auto;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 8px;
}

.section-card .icon-container .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 769px) {
  .section-1 .section-card .icon-container {
    width: 60%;
    padding-top: 60%;
  }
}

/* form */
.form {
  max-width: 400px;
  margin: 0 auto;
}

.form__container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #bababa;
  border-radius: 4px;
  padding: 4px 24px;
  line-height: 32px;
}

.form__label {
  color: #000;
  margin-right: 16px;
}

.form__input {
  display: inline-block;
  width: 100%;

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;
  border: 1px solid #fff;
  line-height: 32px;
  background-color: transparent;
  color: #000;
  border-radius: 4px;
  padding: 0 8px;
  outline: none;
}

.form__input:focus {
  border: 1px solid #4fbdcb;
}

.form .para {
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #494949;
  margin-bottom: 20px;
}

/*
.section-1 .btn-lg{
	padding: 12px 108px;
}*/
/*dropdown*/
.droptext {
  color: #bababa;
}

.dropdown-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 3px;
  background: #fff;
  padding: 0 8px;
  text-align: left;
  position: relative;
}

.dropdown-container ul {
  list-style-type: none;
  padding: 0;
}

.dropdown-container label {
  position: relative;
  display: block;
  width: 100%;
  line-height: 32px;
  cursor: pointer;
  color: #bababa;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-right: 10px;
}

.dropdown-container label:after {
  content: "\203A";
  position: absolute;
  font-size: 32px;
  right: 0;
  padding-left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.dropdown-container .content {
  height: 0;
  max-height: 0px;
  margin: 0;
  text-align: left;
  overflow: hidden;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  position: absolute;
  z-index: 999;
  background: #fff;
  -webkit-box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.3);
}

.dropdown-container .content li {
  padding: 3px 10px;
}

.dropdown-container .content li:first-child {
  padding-top: 10px;
}

.dropdown-container .content li:last-child {
  padding-bottom: 10px;
}

.dropdown-container #drop {
  display: none;
}

.dropdown-container #drop:checked ~ .content {
  height: auto;
  width: 100%;
  max-height: 900px;
  -webkit-transition: max-height 1s ease-in;
  -o-transition: max-height 1s ease-in;
  transition: max-height 1s ease-in;
  overflow: hidden;
}

/*comment*/

.evaluation-container {
  text-align: center;
  margin-bottom: 20px;
}

.evaluation {
  color: #353452;
  font-size: 16px;
}

.e-item-card-recently-viewed_stars {
  color: #555;
  font-size: 18px;
  letter-spacing: 4px;
}

.m-item-card-recently-viewed_stars__orange {
  color: #4fbdcb;
}

.half {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.half > div:first-child {
  overflow: hidden;
  width: 28px;
  z-index: 1;
  color: #bababa;
}

.half > div:last-child {
  position: relative;
  margin-left: -25px;
}

.item {
  text-align: center;
  background-color: #f0f2f9;
  padding: 32px 16px;
}

.avator-theme {
  padding: 0 16px;
}

.avator {
  width: 80px;
  display: inline-block;
  height: 80px;
  border-radius: 50%;
  background-image: url(/image/year/teacher.png);
  background-position: center;
  background-size: cover;
}

.avator-name {
  text-align: center;
  color: #353452;
  margin-bottom: 16px;
}

.avator-description {
  font-size: 14px;
  text-align: justify;
}

/*measuring*/
.measuring {
  padding: 16px 16px;
}

.main-title {
  font-size: 24px;
  font-weight: 600;
  color: #353452;
  text-align: center;
  margin-bottom: 24px;
}

.g-main-title:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #4fbdcb;
  border-radius: 50%;
  margin-right: 8px;
}

.g-main-title:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #4fbdcb;
  border-radius: 50%;
  margin-left: 8px;
}

.section-card .title {
  font-size: 16px;
  color: #353452;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-card .subtitle {
  font-size: 16px;
  color: #4fbdcb;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-card .description {
  font-size: 14px;
  color: #353452;
  margin-bottom: 24px;
  font-weight: 500;
}

.circle-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.circle-text {
  height: 72px;
  width: 72px;
  border-radius: 50%;
  border: solid 1px #4fbdcb;
  color: #4fbdcb;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  margin-right: 8px;
  margin-left: 8px;
}

.circle-text p {
  width: 54px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .circle-text {
    width: 60px;
    height: 60px;
    font-size: 16px;
    margin: 0px 4px;
  }

  .circle-text p {
    width: 44px;
  }
}

/*radio*/

input[type="radio"] {
  position: relative;
  display: inline-block;
  border-radius: 100%;
  outline: none !important;
  -webkit-appearance: none;
  vertical-align: middle;
}

input[type="radio"]::before {
  position: relative;
  display: block;
  content: "";
  background: white;
  border: 1px solid rgba(79, 189, 203, 0.5);
  border-radius: 100%;
  -webkit-box-shadow: inset 0 0.1em 1px -0.1em rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0.1em 1px -0.1em rgba(0, 0, 0, 0.3);
  width: 20px;
  height: 20px;
}

input[type="radio"]:focus {
  outline: 0 !important;
}

input[type="radio"]:active::before {
}

input[type="radio"]:focus::before {
  outline: 0 !important;
}

input[type="radio"]:checked::before {
  background: #fff;
  border-color: #4fbdcb;
}

input[type="radio"]:disabled::before {
  cursor: not-allowed;
  background-color: #eaeaea;
  border-color: rgba(253, 191, 13, 0.2);
}

input[type="radio"]::after {
  position: absolute;
  top: -17px;
  left: 15px;
  display: block;
  content: "";
  background: #4fbdcb;
  border-radius: 100%;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  width: 0;
  height: 0;
}

input[type="radio"]:checked::after {
  -webkit-transition: all ease-in-out 100ms 0;
  -o-transition: all ease-in-out 100ms 0;
  transition: all ease-in-out 100ms 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
}

input[type="radio"]:disabled::after {
  background: #cccccc;
}

.section-1 .section-card .info .subtitle {
  text-align: center;
}

@media (min-width: 767px) {
  .section-1 .section-card .separate {
    border: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .section-1 .section-card .info .title {
    text-align: center;
  }

  .section-1 .section-card .separate {
    margin-bottom: 48px;
  }

  .section-card .icon .icon-row .para:last-of-type {
    margin-bottom: 48px;
  }

  .section-1 .form {
    padding-left: 0px;
  }
}

/* section-2 */
.section-2 .section-card {
  border-radius: 0 0 8px 8px;
}

.section-2 .image-left {
  left: -40px;
  width: 80px;
  height: 88px;
}

/* AD */
.section-2 .ad-card {
  background-color: #f0f2f9;
  border-radius: 8px 8px 0 0;
  padding: 56px 60px 0px 60px;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.14);
  top: 0;
  left: 0;
  overflow: hidden;
}

.section-2 .ad-card .image-right {
  position: absolute;
  right: -44px;
  top: -112px;
}

.section-gary {
  background-color: #f0f2f9;
}

.section-2 .ad-card .para {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.57;
  letter-spacing: normal;
  color: #353452;
  padding-top: 5%;
  padding-left: 10%;
  padding-bottom: 56px;
}

.main-teacher {
  background-image: url(/image/year/teacher.png);
  display: inline-block;

  width: 100px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  top: 0px;
  right: 0px;

  z-index: 500;
}

/* focus */
.focus .section-title {
  text-align: center;
  position: relative;
  z-index: 500;
}

.section-2 .section-title:before,
.section-3 .section-title:before {
  content: "";
  display: inline-block;
  background-image: url("/image/year/title-bg.png");
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.section-2 .poster {
  text-align: center;
  margin-bottom: 32px;
}

.section-2 .section-card .icon-container {
  width: 60px;
  padding-top: 60px;
  margin: 0 auto;
  margin-bottom: 8px;
}

.focus .title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  color: #353452;
}

.focus .intro {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #353452;
}

.focus .intro:last-of-type {
  margin-bottom: 40px;
}

.section-2 .poster .title {
  position: relative;
  z-index: 500;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #f35f64;

  -webkit-transform: translateY(50%);

  -ms-transform: translateY(50%);

  transform: translateY(50%);
}

.section-2 .poster .title span {
  background-color: #ffffff;
  padding-left: 16px;
  padding-right: 16px;
}

.section-2 .poster .subtitle {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  color: #494949;
  border: 1px solid #f35f64;
  border-radius: 50px;
  padding: 12px 20px;
}

/* section-3 */
.section-3 .image-left {
  width: 120px;
  height: 120px;
  bottom: 0;
  left: -40px;
}

.section-3 .image-right {
  right: -60px;
  top: -112px;
  width: 120px;
  height: 120px;
}

.section-3 .section-card .icon-container {
  width: 100%;
  padding-top: 100%;
  margin: 0 auto;
  margin-bottom: 8px;
}

.section-3 .section-title {
  z-index: 300;
}

.section-3 .chart .icon {
  width: 80%;
  height: 80%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.section-3 .chart .title,
.section-3 .calendar .title {
  text-align: center;
  white-space: nowrap;
  margin-bottom: 12px;
}

.section-3 .chart .title span,
.section-3 .calendar .title span {
  background-color: #f0f2f9;
  border-radius: 12px;
  padding: 4px 12px;
}

.section-3 .chart .intro,
.section-3 .calendar .intro {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.4px;
  text-align: center;
  color: #353452;
}

@media (max-width: 769px) {
  .section-3 .section-card .icon-container {
    width: 40%;
    padding-top: 40%;
  }
}

/*@media (min-width:767px){
	.section-3 .section-card .icon-container{
		width: 60%;
		padding-top: 60%;
	}
}*/
/* section-4 */
/*teacher*/
.image-container {
  width: 100%;
  display: block;
}

.image-container:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 120%;
}

.image-ratio-2-3:before {
  padding-top: 150%;
}

.image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.teacher .info {
  margin-top: 10px;
  text-align: left;
}

.teacher .info .title {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  margin-top: 17px;
  margin-bottom: 20px;
}

.teacher .info .para {
  font-size: 18px;
  font-weight: 500;
}

/* section-5 */
.section-5 .section-card .section-intro .title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #494949;
}

.section-5 .section-card .section-intro .subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #494949;
  margin-bottom: 20px;
}

.section-5 .section-card .section-intro .para {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #494949;
  padding-left: 10%;
  padding-right: 10%;
  margin-bottom: 32px;
}

.section-5 .section-card .section-intro .para span {
  color: #4fbdcb;
}

.section-5 .section-card .comment-card {
  background-color: #fff1ec;
}

.section-5 .section-card .comment-card .user-image-container {
  width: 33.33333%;
  padding-top: 33.33333%;
  border: 3px solid #fff;
  border-radius: 50%;
}

.section-5 .test {
  margin-bottom: 80px;
}

.alert-text {
  color: #4fbdcb;
}
