/* common */
.education-hub-container {
  max-width: 1220px;
  margin: 0 auto;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}
.education-hub-container .caption {
  text-align: center;
}
.education-hub-container .caption .title {
  font-size: 30px;
  font-weight: bold;
}


/* 顶部banner */
.banner,
.banner .content {
  height: 312px;
}
.banner {
  width: 100%;
  background-image: url('../img/minitab/educationHub/banner.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.banner .content {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
.banner .content .subtitle,
.banner .content .title {
  color: #fff;
  max-width: 630px;
}
.banner .content .subtitle {
  font-size: 25px;
  margin-top: 20px;
}
.banner .content .title {
  font-size: 35px;
  font-weight: bold;
}

/* Education Hub 简介 */
.education-hub-profile .profile-box {
  padding: 68px 0 78px 0;
  position: relative;
}
.education-hub-profile .profile-box::after {
  content: '';
  display: block;
  position: absolute;
  width: 1240px;
  height: 3px;
  background-color: #E9E9E9;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.profile-tabs {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
}
.profile-tabs .tabs-list {
  width: 860px;
}
.profile-tabs .tabs-list > li {
  display: none;
}
.profile-tabs .tabs-list > li.current {
  display: block;
}
.profile-tabs .tab-content {
  padding: 33px 28px 66px;
  background: #ffffff;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  box-sizing: border-box;
}
.profile-tabs .tab-content .items {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  margin-top: 20px;
}
.profile-tabs .tab-content .items.row-3{
  height: calc(24px * 3);
}
.profile-tabs .tab-content .items > li {
  width: 50%;
  padding-left: 18px;
  box-sizing: border-box;
  position: relative
}
.profile-tabs .tab-content .items > li::before {
  content: '';
  display: block;
  width: 11px;
  height:11px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
  background-color: #E5A414;
}

.profile-tabs .tab-content .pic {
  margin-top: 25px;
}
.profile-tabs .tab-content .pic img {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.profile-tabs .tabs-btns {
  width: 316px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
}
.profile-tabs .tabs-btns > li {
  padding: 20px 17px;
  background-color: #e9e9e9;
  border-radius: 8px;
  font-size: 22px;
  cursor: pointer;
  min-height: 99px;
  box-sizing: border-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
}
.profile-tabs .tabs-btns > li.current {
  background-color: #e5a414;
  color: #fff;
}

/* 自定进度的学习，为成长助力 */
.study {
  padding: 75px 0;
}
.study .content {
  margin-top: 35px;
}
.study .content > p {
  font-weight: bold;
}
.study .content > p + p {
  margin-top: 24px;
}

/* 我们的客户 */
.customer {
  background-color: #F7F7F7;
}
.customer .customer-box {
  padding: 64px 0;
}
.customer .customer-list {
  margin-top: 46px;
  text-align: center;
}
.customer .customer-list > dl + dl {
  margin-top: 75px;
}
.customer .customer-list > dl > dd {
  margin-top: 17px;
  font-weight: bold;
}

/* Education Hub 的优势 */
.advantage .advantage-box {
  padding: 75px 0 100px;
}
.advantage .advantage-items {
  margin: 46px 55px 0;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
}
.advantage .advantage-items > dt,
.advantage .advantage-items > dd {
  padding-left: 18px;
  position: relative;
  box-sizing: border-box;
  margin-top: 20px;
}
.advantage .advantage-items > dt:nth-child(1),
.advantage .advantage-items > dd:nth-child(2) {
  margin-top: 0;
}
.advantage .advantage-items > dt {
  width: 48%;
  padding-right: 30px;
}
.advantage .advantage-items > dd {
  width: 52%
}
.advantage .advantage-items > dt::before,
.advantage .advantage-items > dd::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  background-color: #E5A414;
}


/* 联系我们 */
.contact-us {
  height: 228px;
  background-color: #e5a414;
  color: #fff;
  text-align: center;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
.contact-us .title {
  font-size: 30px;
  font-weight: bold;
}
.contact-us .contact {
  padding-top: 31px;
}
.contact-us .contact a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 0 32px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  border-radius: 18.5px;
  color: #e5a414;
  font-size: 16px;
  background-color: #fff;
}
.contact-us .contact a:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}
