@charset "UTF-8";
/*=============================================
mixin
=============================================*/
/* 斷點 */
/* 文字行距 */
/* 單行省略 */
/* 多行省略 */
/* Flex */
/*基本設定*/
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

.text-29 {
  color: #292929;
}

.text-54 {
  color: #545454;
}

.text-7e {
  color: #7e7e7e;
}

.text-a9 {
  color: #a9a9a9;
}

.text-org {
  color: #ff7800;
}

.text-blue {
  color: #1654b9;
}

.pointer {
  cursor: pointer;
}

.pre-line {
  white-space: pre-line;
  word-break: break-all;
}

.custom-checkbox {
  position: relative;
  margin: 0;
  vertical-align: middle;
}

.custom-checkbox .checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #a9a9a9;
  position: relative;
  display: inline-block;
  top: 2px;
  transition: all 0.15s ease-in-out;
  border-radius: 4px;
}

.custom-checkbox .checkbox::before {
  position: absolute;
  top: 1px;
  left: 4px;
  box-sizing: content-box;
  width: 4px;
  height: 7px;
  content: '';
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.15s ease-in-out;
}

.custom-checkbox input[type='checkbox'] {
  visibility: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  width: 16px;
  height: 16px;
  outline: 0;
  margin-right: 5px;
}

.custom-checkbox input[type='checkbox']:checked ~ .checkbox {
  background-color: #ff7800;
  border: 1px solid #ff7800;
}

.custom-checkbox input[type='checkbox']:checked ~ .checkbox::before {
  opacity: 1;
}

.custom-checkbox input[type='checkbox'][disabled] ~ .checkbox {
  background-color: #eee;
}

.custom-checkbox input[type='radio'] {
  visibility: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  width: 16px;
  height: 16px;
  outline: 0;
  margin-right: 5px;
}

.custom-checkbox input[type='radio']:checked ~ .checkbox {
  background-color: #ff7800;
  border: 1px solid #ff7800;
}

.custom-checkbox input[type='radio']:checked ~ .checkbox::before {
  opacity: 1;
}

.custom-checkbox input[type='radio'][disabled] ~ .checkbox {
  background-color: #eee;
}

.custom-inputText {
  font-size: 14px;
  color: #292929;
  padding-left: 12px;
  width: 100%;
  line-height: 44px;
  border-radius: 4px;
  border: solid 1.5px #eee;
  background-color: #eee;
}

.custom-inputText:focus {
  border: solid 1.5px #ff7800;
  outline: none;
}

.custom-dropdown {
  width: 100%;
}

.custom-dropdown .dropdown-toggle {
  background-color: #eee;
  width: 100%;
  height: 44px;
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  color: #292929;
}

.custom-dropdown .dropdown-toggle::after {
  border: 0;
  content: '';
  background: url(../img/icon-word-down.svg) center center no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-dropdown.show > .btn-secondary.dropdown-toggle {
  color: #292929;
  background-color: #f3f3f3;
  border: solid 1.5px #ff7800;
}

.custom-dropdown .dropdown-menu.show {
  width: 100%;
  border: solid 1.5px #ff7800;
  padding: 0;
  overflow: hidden;
  top: -4px !important;
}

@media screen and (max-width: 1023px) {
  .custom-dropdown .dropdown-menu.show {
    width: 100%;
  }
}

.custom-dropdown .active .dropdown-item {
  color: #ff7800;
  font-weight: bold;
}

.custom-dropdown .dropdown-item {
  line-height: 44px;
  font-size: 16px;
  height: 44px;
  padding: 0 24px 0 12px;
}

/* 所有條件文字內容區塊 */
.rowContent {
  margin-bottom: 16px;
}

.rowContent .rowContent__item {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  padding: 4px 0;
}

.rowContent .rowContent__item .label {
  width: 80px;
  font-size: 16px;
  font-weight: bold;
  color: #292929;
  line-height: 1.75;
  flex-shrink: 0;
}

.rowContent .rowContent__item .text {
  font-size: 16px;
  line-height: 1.75;
  flex-grow: 1;
}

.rowContent.hide-content {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.rowContent.hide-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, white 90%);
}

/*課程選單*/
/* 2大選單 padding */
@media (max-width: 1023px) {
  .classMenu-top {
    padding: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1365px) {
  .classMenu-top {
    padding: 0 24px;
  }
}

@media (min-width: 1366px) and (max-width: 1679px) {
  .classMenu-top {
    padding: 0 40px;
  }
}

@media (min-width: 1680px) {
  .classMenu-top {
    padding: 0 64px;
  }
}

.classMenu {
  margin: 0;
  padding: 0;
  width: 100%;
}

.classMenu .list-inline-item {
  width: 96px;
  height: 56px;
  text-align: center;
  border-bottom: 4px solid transparent;
}

.classMenu .list-inline-item.active {
  color: #ff7800;
  border-bottom: 4px solid #ff7800;
}

.classMenu .list-inline-item.active a {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #ff7800;
}

.classMenu .list-inline-item a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  padding: 14px 16px;
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #292929;
}

@media (max-width: 1023px) {
  .classMenu {
    display: flex;
  }
  .classMenu .list-inline-item {
    width: 50%;
    height: 48px;
    text-align: center;
    padding: 10px 0;
    border-bottom: 4px solid transparent;
    margin-right: 0;
  }
  .classMenu .list-inline-item.active {
    width: 50%;
    border-bottom: 4px solid #ff7800;
    margin-right: 0;
  }
  .classMenu .list-inline-item.active a {
    width: 100%;
    height: 100%;
    display: block;
    color: #ff7800;
  }
  .classMenu .list-inline-item a {
    width: 100%;
    height: 100%;
    line-height: 1.75;
    padding: 0;
    display: inline-block;
    color: #292929;
  }
}

/*上方logo+slogn*/
.classTop {
  width: 100%;
  height: 336px;
  background: url(../img/hahow-bg.png) center center no-repeat;
  background-size: cover;
  margin-bottom: -115px;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .classTop {
    margin-bottom: 16px;
  }
}

.classTop-banner {
  width: 100%;
  height: 336px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .classTop-banner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.classTop-banner::before {
  content: '';
  position: absolute;
  top: 38px;
  right: -70px;
  width: 600px;
  height: 300px;
  background: url(../img/img-mascot.png) center center no-repeat;
  background-size: 600px 300px;
}

@media screen and (max-width: 1023px) {
  .classTop-banner::before {
    top: 180px;
    right: -120px;
    width: 520px;
    height: 264px;
    background-size: 520px 264px;
  }
}

.classTop-logo {
  width: 348px;
  margin-top: 68px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1023px) {
  .classTop-logo {
    width: 80%;
  }
}

.classTop-slogn {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .classTop-slogn {
    font-size: 20px;
    line-height: 1.5;
  }
}

/*課程總覽影片區塊*/
.classArea {
  min-width: 100%;
  background-color: #fff;
  border-radius: 4px;
  z-index: 1;
}

.classArea-catalog {
  border-bottom: 1px solid #eee;
}

.classArea-catalog:last-of-type {
  border-bottom: 0;
}

.classArea-titleBox {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  margin-bottom: 8px;
  height: 44px;
}

@media screen and (max-width: 1023px) {
  .classArea-titleBox {
    justify-content: unset;
    flex-direction: column;
    height: auto;
    padding: 32px 4px 0;
  }
}

.classArea-dropdown {
  order: 2;
}

@media screen and (max-width: 1023px) {
  .classArea-dropdown {
    order: 1;
  }
}

.classArea-dropdown .dropdown-toggle {
  background-color: #eee;
  width: 196px;
  height: 44px;
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  color: #292929;
}

@media screen and (max-width: 1023px) {
  .classArea-dropdown .dropdown-toggle {
    width: 100%;
    margin-bottom: 16px;
  }
}

.classArea-dropdown .dropdown-toggle::after {
  border: 0;
  content: '';
  background: url(../img/icon-word-down.svg) center center no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.classArea-dropdown.show > .btn-secondary.dropdown-toggle {
  color: #292929;
  background-color: #F3F3F3;
  border: solid 1.5px #ff7800;
}

.classArea-dropdown .dropdown-menu.show {
  width: 196px;
  border: solid 1.5px #ff7800;
  padding: 0;
  overflow: hidden;
  top: -4px !important;
  -webkit-filter: drop-shadow(2px 0px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(2px 0px 5px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 1023px) {
  .classArea-dropdown .dropdown-menu.show {
    width: 100%;
  }
}

.classArea-dropdown .active .dropdown-item {
  color: #ff7800;
  font-weight: bold;
}

.classArea-dropdown .dropdown-item {
  line-height: 44px;
  font-size: 16px;
  height: 44px;
  padding: 0 24px 0 12px;
}

.classArea-title {
  order: 1;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .classArea-title {
    order: 2;
    width: 100%;
  }
}

.classArea-title.flexEnd {
  align-self: flex-end;
}

/*錯誤頁*/
.errorBlock {
  display: flex;
  flex-direction: row;
  justify-content: flex-center;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 960px;
  width: 100%;
  height: 472px;
  margin: 0 auto;
  padding: 99px 129px 99px 109px;
  border-radius: 4px;
  border: solid 1px #eeeeee;
  background-color: #ffffff;
}

.errorBlock__img {
  width: 370px;
  height: 274px;
  margin-right: 52px;
}

.errorBlock__info .title {
  color: #292929;
  font-size: 20px;
  margin: 4px 0;
  line-height: 1.4;
}

.errorBlock__info .info {
  font-size: 14px;
  color: #7e7e7e;
  margin-bottom: 16px;
  line-height: 1.43;
}

.errorBlock__info .link {
  font-size: 14px;
  color: #1654b9;
}

@media screen and (max-width: 1023px) {
  .errorBlock {
    width: 100%;
    height: 100vh;
    padding: 64px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
  }
  .errorBlock__info {
    text-align: center;
  }
  .errorBlock__info .title {
    margin-bottom: 10px;
  }
  .errorBlock__img {
    width: 186px;
    height: 144px;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

/*=============================================
可共用區塊
=============================================*/
.whitePanel {
  min-width: 100%;
  background-color: #fff;
  border-radius: 4px;
  clear: both;
  overflow: hidden;
  margin-bottom: 16px;
}

.whitePanel.whitePanel__borderRadius {
  border-radius: 0 0 4px 4px;
}

.whitePanel__top {
  border-bottom: 1px solid #f3f3f3;
}

.whitePanel__title {
  padding: 12px 0;
  color: #292929;
  font-size: 18px;
  font-weight: bold;
}

ul.tabs {
  width: 100%;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.tabs .tab-item.active .tab-link {
  color: #ff7800;
  border-bottom: 4px solid #ff7800;
}

ul.tabs .tab-link {
  display: block;
  color: #292929;
  padding: 20px 16px 16px 16px;
  border: none;
  border-color: transparent;
  font-weight: bold;
}

/*=============================================
性格/職能潛力區塊
=============================================*/
.softStatus_summary {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 22px 16px;
  border-radius: 4px;
  background-color: #fff6ee;
}

.softStatus_summary .status {
  text-align: center;
  width: 184px;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}

.softStatus_summary .info {
  font-size: 14px;
  line-height: 20px;
}

@media screen and (max-width: 1023px) {
  .softStatus_summary {
    flex-direction: column;
  }
  .softStatus_summary .status {
    margin-bottom: 8px;
  }
  .softStatus_summary .info {
    text-align: center;
  }
}

.softStatus_chart {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.softStatus_chart .info {
  font-size: 14px;
  line-height: 20px;
  color: #7e7e7e;
}

.softStatus_chart .chartArea {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.softStatus_chart .chartArea .progress {
  width: 150px;
  height: 150px;
}

.softStatus_chart .chartArea .progress .progress-bar {
  border-width: 11px;
}

.softStatus_chart .chartArea .progress .p12.text-7e {
  font-size: 16px;
  line-height: 22px;
}

.softStatus_chart .chartArea .progress .p36.text-arial {
  font-size: 48px;
}

.softStatus_chart .chartArea .bd-green .progress::after {
  border-width: 11px;
}

@media screen and (max-width: 1023px) {
  .softStatus_chart .chartArea {
    flex-direction: column;
  }
}

.softStatus_chart .chartArea .barChart {
  margin: 0 20px;
  max-width: 550px;
  height: 250px;
  width: 100%;
}

.softStatus_chart .chartArea .barChart > div {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .softStatus_chart .chartArea .barChart {
    padding: 0;
    margin: 0 auto;
  }
}

.SKR-overview .nabiStatus_list {
  margin: 24px 0;
}

.SKR-overview .nabiStatus_list li {
  font-size: 16px;
  line-height: 1.7em;
}

@media screen and (max-width: 1023px) {
  .SKR-overview .whitePanel__top.my-padding {
    padding: 0;
  }
  .SKR-overview ul.tabs .tab-item {
    flex: 1;
    text-align: center;
  }
  .SKR-overview ul.tabs .tab-link {
    padding: 16px 14px;
    font-size: 14px;
  }
}

/*職能潛力標題*/
.whitePanel__top .potentialTitle .info {
  color: #7e7e7e;
  font-size: 14px;
  margin-left: 16px;
}

@media screen and (max-width: 1023px) {
  .whitePanel__top .potentialTitle .info {
    display: block;
    margin-left: 28px;
    margin-top: 4px;
  }
}

/*Slick滑動影片區塊*/
.carousel-video {
  max-width: 1000px;
}

.carousel-video .slick-list {
  overflow: initial !important;
}

.carousel-video .slick-next {
  right: 0;
}

.carousel-video .slick-prev {
  left: 0;
}

.carousel-video .custom-arrow {
  z-index: 10;
  width: 24px;
  height: 24px;
  font-size: 24px;
  box-shadow: 0 2px 8px 0 rgba(41, 41, 41, 0.2);
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-video .custom-arrow .icon {
  font-size: 16px;
  font-weight: bold;
}

.carousel-video .slick-prev:before,
.carousel-video .slick-next:before {
  display: none;
}

@media (max-width: 1680px) {
  .carousel-video {
    max-width: 900px;
  }
}

@media (max-width: 1365px) {
  .carousel-video {
    max-width: 690px;
  }
}

@media (max-width: 1023px) {
  .carousel-video {
    max-width: 100%;
  }
  .carousel-video .slick-list {
    overflow: hidden;
  }
  .carousel-video .slick-slide {
    padding: 0 5px;
  }
  .skill-box .card {
    margin-right: auto;
    margin-left: auto;
    border-radius: 4px;
    border: solid 1px #eeeeee;
  }
}

/*影片區標題*/
.softMovTitle {
  display: flex;
  flex-wrap: wrap;
}

.softMovTitle .badges {
  margin-left: auto;
}

.sideBar-item {
  padding: 16px;
  position: relative;
  background-color: #fff;
  margin: 0 24px 24px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sideBar-item.active {
  background-color: rgba(57, 200, 208, 0.16);
}

.sideBar-item:hover {
  background-color: rgba(243, 243, 243, 0.6);
  cursor: pointer;
}

.sideBar-item .label {
  font-weight: bold;
  line-height: 28px;
  color: #292929;
}

@media (max-width: 1023px) {
  .sideBar-item {
    margin: 24px 0 0 0px;
  }
}

.skillSideBar {
  width: 220px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  margin-right: 24px;
  border-radius: 4px;
}

@media screen and (max-width: 1023px) {
  .skillSideBar {
    width: 100%;
    margin: 0;
  }
}

.skillSideBar-item {
  padding: 16px 24px;
  color: #292929;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  line-height: 28px;
  cursor: pointer;
}

.skillSideBar-item.active {
  background-color: rgba(57, 200, 208, 0.16);
}

@media screen and (max-width: 1023px) {
  .skillSideBar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.skillSideBar-tip {
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.skillSideBar-tip__text {
  font-size: 14px;
  line-height: 1.43;
  color: #7e7e7e;
  vertical-align: middle;
}

.skillSideBar-tip__question {
  margin-top: 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #1654b9;
  vertical-align: middle;
}

@media screen and (max-width: 1023px) {
  .skillSideBar-tip__question {
    float: right;
    margin-top: 0;
  }
}

.skillSideBar-tip i {
  vertical-align: middle;
}

.skillSideBar-select {
  padding: 8px 16px;
}

.skillSideBar-list {
  border-bottom: 1px solid #eee;
}

.skillSideBar-list__label {
  font-weight: bold;
  font-size: 14px;
  padding: 8px 16px;
  color: #7e7e7e;
}

.skillSideBar-list__label i {
  font-size: 16px;
  margin-right: 0.25em;
}

.skillSideBar-list__item {
  display: block;
  color: #292929;
  cursor: pointer;
  padding: 12px 24px;
}

.skillSideBar-list__item:hover {
  color: #292929;
}

.skillSideBar-list__item.active {
  background-color: rgba(57, 200, 208, 0.16);
}

.skillSideBar-list__item .thumbnail {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  flex: 0 0 auto;
  margin-right: 16px;
}

.skillSideBar-list__item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.skillSideBar-list__item .info {
  flex: 1;
}

.skillSideBar-list__item .info .name {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  margin-bottom: 4px;
}

.skillSideBar-list__item .info .status {
  font-size: 12px;
  line-height: 1.5;
}

.skillSideBar-list__item .info .fill {
  color: #a9a9a9;
}

@media screen and (max-width: 1023px) {
  .skillSideBar-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .skillSideBar-list__item:hover {
    background-color: rgba(243, 243, 243, 0.6);
  }
  .skillSideBar-item:hover {
    background-color: rgba(243, 243, 243, 0.6);
  }
}

@media screen and (max-width: 1023px) {
  .more-btn {
    width: 100%;
  }
}

.reportModal .modal-body {
  padding: 0 60px;
}

@media screen and (max-width: 1023px) {
  .reportModal .modal-body {
    padding: 0 16px;
  }
}

.reportModalForm__jobInfo {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.reportModalForm__jobInfo .pic {
  margin-right: 16px;
}

.reportModalForm__jobInfo .pic img {
  width: 80px;
  height: 80px;
}

.reportModalForm__jobInfo .info {
  font-size: 14px;
  margin: 0.5em;
}

.reportModalForm__row {
  margin-bottom: 24px;
}

.reportModalForm__row .title {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.reportModalForm__row .checkboxs .custom-checkbox {
  margin-right: 24px;
  margin-bottom: 12px;
  font-size: 16px;
}

.reportModalForm__row .checkboxs .custom-checkbox .checkbox {
  width: 24px;
  height: 24px;
}

.reportModalForm__row .checkboxs .custom-checkbox .checkbox::before {
  top: 2px;
  left: 7px;
  width: 6px;
  height: 11px;
}

.reportModalForm__row .checkboxs .custom-checkbox span {
  vertical-align: bottom;
}

.NFImodal-modal-content {
  position: relative;
  border: none;
}

.NFImodal-modal-content .dec01 {
  position: absolute;
  width: 236px;
  height: 380px;
  left: -235px;
}

.NFImodal-modal-content .dec02 {
  position: absolute;
  width: 162px;
  height: 126px;
  right: -120px;
  top: 0;
}

.NFImodal-carousel {
  position: relative;
  width: 90%;
}

.NFImodal-carousel__image img {
  width: 95%;
  margin: 0 auto;
  height: auto;
}

.NFImodal-carousel .custom-arrow {
  z-index: 10;
  width: 24px;
  height: 24px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.NFImodal-carousel .custom-arrow .icon {
  font-size: 24px;
}

.NFImodal-carousel .slick-dots {
  position: static;
}

.NFImodal-carousel .slick-prev:before,
.NFImodal-carousel .slick-next:before {
  display: none;
}

.NFImodal-carousel .slick-dots li button:before {
  color: #ddd;
  opacity: 1;
}

.NFImodal-carousel .slick-dots li.slick-active button:before {
  color: #ff7800;
}

.certifyRelatedArea {
  display: flex;
  margin: 0 -12px;
}

@media screen and (max-width: 1023px) {
  .certifyRelatedArea {
    flex-direction: column;
  }
}

.certifyRelated {
  border-radius: 4px;
  padding: 16px;
  flex: 1;
  margin: 0 12px;
  background-repeat: no-repeat;
  background-size: cover;
}

.certifyRelated-certify {
  background-image: url(../img/bg-certifyRelated-certify-w.svg);
}

.certifyRelated-skill {
  background-image: url(../img/bg-certifyRelated-skill-w.svg);
}

.certifyRelated-tool {
  background-image: url(../img/bg-certifyRelated-tool-w.svg);
}

@media screen and (max-width: 1023px) {
  .certifyRelated {
    margin: 12px;
  }
  .certifyRelated-certify {
    background-image: url(../img/bg-certifyRelated-certify.svg);
  }
  .certifyRelated-skill {
    background-image: url(../img/bg-certifyRelated-skill.svg);
  }
  .certifyRelated-tool {
    background-image: url(../img/bg-certifyRelated-tool.svg);
  }
}

.certifyRelated__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 16px;
}

.certifyRelated__title i {
  margin-right: 0.25em;
}

.certifyRelated__item .name {
  display: flex;
  align-items: center;
  line-height: 1;
}

.certifyRelated__item .name::before {
  content: '。';
  font-size: 24px;
  color: #7e7e7e;
  vertical-align: middle;
  display: inline-block;
  width: 1em;
  margin-left: -0.25em;
}

.certifyRelated__item .name a {
  color: #1654b9;
  font-weight: bold;
}

.certifyRelated__item .info {
  font-size: 14px;
  line-height: 1.43;
  color: #7e7e7e;
}

.certifyRelatedJob {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}

@media screen and (max-width: 1023px) {
  .certifyRelatedJob {
    flex-direction: column;
  }
}

.certifyRelatedJob__item {
  flex: 0 0 calc(33.33% - 24px);
  margin: 6px 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}

/*====== 2021/04/14新增classroom功能 ====*/
/* 關注區塊 */
.focusArae {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .focusArae {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.focus-box {
  width: calc((100% - 48px) / 3);
  flex-shrink: 0;
  margin-right: 24px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1023px) {
  .focus-box {
    width: 100%;
  }
}

.focus-box:nth-child(3n) {
  margin-right: 0;
}

.focus-img {
  margin-bottom: 8px;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
}

.focus-img img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.focus-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.focus-info {
  flex-grow: 1;
  overflow: hidden;
}

.focus-class {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.focus-class > a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  color: #292929;
}

.focus-btnBox {
  flex-shrink: 0;
  padding-left: 12px;
}

.focus-btn {
  min-width: 76px;
  height: 32px;
  border: 1px solid transparent;
  padding: 6px 12px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  border-radius: 4px;
  background-color: #ff7800;
  color: #fff;
  cursor: pointer;
}

.focus-btn.done {
  color: #ff7800;
  border-color: #ff7800;
  background-color: transparent;
}

.focus-data {
  font-size: 14px;
  line-height: 1.43;
  color: #7e7e7e;
}

/* 貼文列表 */
.postArea {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .postArea {
    flex-direction: column;
    flex-wrap: unset;
  }
}

.postArea .my-padding {
  width: 50%;
}

@media screen and (max-width: 1023px) {
  .postArea .my-padding {
    width: 100%;
  }
}

.postArea .post-box {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
}

@media screen and (max-width: 1023px) {
  .postArea .post-box {
    display: block;
  }
}

.postArea .post-img {
  margin-right: 20px;
  flex-shrink: 0;
}

@media screen and (max-width: 1023px) {
  .postArea .post-img {
    margin-right: 0;
    margin-bottom: 4px;
    width: 100%;
    flex-shrink: unset;
  }
}

.postArea .post-img img {
  width: 112px;
  height: 112px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1023px) {
  .postArea .post-img img {
    width: 100%;
    height: 184px;
  }
}

.postArea .post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.postArea .post-label {
  margin-bottom: 4px;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /*! autoprefixer: ignore next */
}

.postArea .post-label > a {
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  color: #292929;
}

.postArea .post-comeFrom {
  margin-bottom: 16px;
}

.postArea .post-comeFrom > a {
  font-size: 14px;
  line-height: 1.43;
  color: #7e7e7e;
}

.postArea .post-tagStar {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.postArea .post-star .jb_icon_favor_filled {
  color: #ff9100;
  cursor: pointer;
}

.postArea .post-star .jb_icon_favor_line {
  color: #7e7e7e;
  cursor: pointer;
}

.tag-textOverFlow {
  max-width: 300px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 4px;
  margin-right: 4px;
}

/* 影片獨立頁 */
.mv-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .mv-area {
    flex-direction: column;
    justify-content: unset;
  }
  .mv-area .whitePanel {
    border-radius: 0;
  }
}

.mv-mian {
  width: calc(66.667% - 11px);
}

@media screen and (max-width: 1023px) {
  .mv-mian {
    width: 100%;
  }
}

.mv-mian .whitePanel__content {
  padding: 24px;
}

@media screen and (max-width: 1023px) {
  .mv-mian .whitePanel__content {
    padding: 0;
  }
}

.mv-mian .embed-responsive {
  margin-bottom: 16px;
}

.mv-mian .mv-label {
  margin-bottom: 14px;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /*! autoprefixer: ignore next */
}

.mv-mian .mv-label a {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  color: #292929;
}

@media screen and (max-width: 1023px) {
  .mv-mian .mv-label {
    padding: 0 16px;
    margin-bottom: 4px;
  }
}

.mv-mian .mv-recordGroup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 1023px) {
  .mv-mian .mv-recordGroup {
    align-items: unset;
    flex-direction: column;
    margin-left: 16px;
    margin-right: 16px;
  }
}

.mv-mian .mv-view {
  font-size: 14px;
  line-height: 1.43;
  color: #7e7e7e;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media screen and (max-width: 1023px) {
  .mv-mian .mv-view {
    margin-bottom: 8px;
  }
}

.mv-mian .mv-status {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media screen and (max-width: 1023px) {
  .mv-mian .mv-status {
    justify-content: flex-end;
  }
}

.mv-mian .mv-status__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #7e7e7e;
  cursor: pointer;
  padding-right: 12px;
  padding-left: 12px;
  border-left: 1px solid #ddd;
}

.mv-mian .mv-status__item:first-child {
  border-left: 0;
}

.mv-mian .mv-status__item:last-child {
  padding-right: 0;
}

.mv-mian .mv-status__item img,
.mv-mian .mv-status__item .jb_icon_favor_line {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.mv-mian .mv-info__txt {
  font-size: 14px;
  line-height: 1.43;
  color: #7e7e7e;
}

.mv-mian .mv-info__txt > a {
  color: #1654b9;
}

@media screen and (max-width: 1023px) {
  .mv-mian .mv-info {
    padding: 0 16px;
  }
}

.mv-mian .mv-creator {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #292929;
  margin-bottom: 2px;
}

.mv-mian .mv-publishDate {
  font-size: 14px;
  line-height: 1.43;
  color: #7e7e7e;
  margin-bottom: 12px;
}

@media screen and (max-width: 1023px) {
  .mv-mian .allTag {
    padding: 16px;
  }
}

.mv-mian .btn-detail {
  display: none;
}

@media screen and (max-width: 1023px) {
  .mv-mian .btn-detail {
    display: block;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.43;
    color: #7e7e7e;
  }
}

.mv-side {
  width: calc(33.333% - 11px);
}

@media screen and (max-width: 1023px) {
  .mv-side {
    width: 100%;
  }
}

.mv-side .whitePanel__content {
  padding: 12px 16px;
}

.mv-side .mv-subTitle {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  color: #292929;
  margin-bottom: 14px;
}

.mv-side .mv-item {
  width: 100%;
  display: flex;
  margin-bottom: 18px;
}

.mv-side .mv-img {
  width: 136px;
  height: 77px;
  margin-right: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.mv-side .mv-img > img {
  width: 136px;
  height: 77px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-side .mv-info__sm {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}

.mv-side .mv-label__sm {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /*! autoprefixer: ignore next */
  margin-bottom: auto;
}

.mv-side .mv-label__sm a {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #292929;
}

.mv-side .mv-creator__sm {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.mv-side .mv-creator__sm a {
  font-size: 12px;
  line-height: 1.5;
  color: #7e7e7e;
}

.mv-side .mv-view__sm {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.5;
  color: #7e7e7e;
}

/*====== 2021/04/19新增 人才邦頁面 ====*/
/* 人才邦專區 */
.backPage {
  display: none;
}

@media screen and (max-width: 1023px) {
  .backPage {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.33;
    color: #292929;
    display: block;
    width: 100%;
    padding: 16px;
  }
}

.tb-area {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 4px;
  background-color: rgba(0, 175, 184, 0.2);
  flex-grow: 0;
  flex-shrink: 0;
}

.tb-area .tb-top {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  height: 148px;
  border-radius: 4px 4px 0 0;
  background: url(../img/bg-visual-talent-booster.svg) no-repeat center center/cover;
}

@media screen and (max-width: 1023px) {
  .tb-area .tb-top {
    display: block;
    height: 195px;
    border-radius: 0;
  }
}

.tb-area .tb-slogn {
  margin-left: 48px;
}

@media screen and (min-width: 1366px) and (max-width: 1679px) {
  .tb-area .tb-slogn {
    margin-left: 40px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .tb-area .tb-slogn {
    margin-left: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .tb-area .tb-slogn {
    margin-left: 16px;
    padding-top: 16px;
  }
}

.tb-area .tb-slogn__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 4px;
}

@media screen and (max-width: 1023px) {
  .tb-area .tb-slogn__title {
    max-width: 212px;
  }
}

.tb-area .tb-slogn__txt {
  font-size: 16px;
  line-height: 1.43;
  color: #eee;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .tb-area .tb-slogn__txt {
    max-width: 290px;
  }
}

@media screen and (max-width: 1023px) {
  .tb-area .tb-slogn__txt {
    max-width: 212px;
  }
}

.tb-area .tb-img {
  width: 366px;
  position: absolute;
  right: 6%;
  bottom: 0;
}

@media screen and (max-width: 1023px) {
  .tb-area .tb-img {
    width: 246px;
    bottom: 0;
    right: 0;
  }
}

.tb-area .tb-img > img {
  width: 100%;
}

.tb-area .tb-content {
  width: 100%;
  padding-top: 53px;
  padding-bottom: 53px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .tb-area .tb-content {
    padding-top: 16px;
    padding-bottom: 8px;
  }
}

.intro-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 0;
  width: calc((100% - 48px) / 4);
  margin-right: 16px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 175, 184, 0.2);
}

@media screen and (max-width: 1023px) {
  .intro-card {
    width: calc((100% - 8px) / 2);
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .intro-card:nth-of-type(2n) {
    margin-right: 0;
  }
}

.intro-card:last-of-type {
  margin-right: 0;
}

.intro-card .intro-top {
  border-radius: 4px 4px 0 0;
  padding-top: 12px;
  max-height: 168px;
  text-align: center;
  flex-shrink: 0;
  background: linear-gradient(to bottom, white 0%, white 50%, #f2f2f2 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.intro-card .intro-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56;
  color: #292929;
}

.intro-card .intro-txt {
  font-size: 14px;
  line-height: 1.43;
  color: #7e7e7e;
  margin-bottom: 8px;
}

.intro-card .intro-img {
  max-width: 180px;
  margin: auto;
}

.intro-card .intro-img > img {
  width: 100%;
}

.intro-card .intro-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 8px 12px;
}

.intro-card .intro-item {
  padding-top: 6px;
  padding-bottom: 6px;
}

.intro-card .intro-item a {
  display: flex;
  align-items: center;
  color: #292929;
}

.intro-card .intro-item p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  margin-bottom: 0;
  margin-right: 4px;
  flex-grow: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.intro-card .intro-footer {
  flex-shrink: 0;
  margin-left: 12px;
  margin-right: 12px;
  text-align: center;
  border-top: 1px solid #eee;
}

.intro-card .intro-footer .intro-btn {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #7e7e7e;
  display: block;
}

/*====== 2021/04/20新增 人資頁面 ====*/
/* 人資 (調整原區塊css) */
.hrEvent {
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hrEvent__top {
  background: url(../img/bg-blue-hr.svg) no-repeat center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 148px;
  border-radius: 4px 4px 0 0;
}

@media screen and (max-width: 1023px) {
  .hrEvent__top {
    height: 195px;
    border-radius: 0;
  }
}

.hrEvent__top::before {
  content: "";
  position: absolute;
  background: url(../img/img-worker.png) no-repeat center;
  width: 240px;
  height: 172px;
  right: 20%;
  bottom: 0;
  background-size: 100% auto;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .hrEvent__top::before {
    right: 22%;
  }
}

@media screen and (max-width: 1023px) {
  .hrEvent__top::before {
    right: 0;
    width: 218px;
    height: 172px;
    background-position: left center;
    background-size: auto 100%;
    overflow: hidden;
  }
}

.hrEvent__top hgroup {
  position: relative;
  margin-left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1023px) {
  .hrEvent__top hgroup {
    margin-left: 16px;
    top: 24px;
    transform: unset;
    width: 164px;
  }
}

.hrEvent__top hgroup h3 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 4px;
}

.hrEvent__top hgroup h4 {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
}

@media screen and (max-width: 1023px) {
  .hrEvent__top hgroup h4 {
    display: none;
  }
}

.hrEvent__top .guideInfo {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
}

@media screen and (min-width: 1366px) and (max-width: 1679px) {
  .hrEvent__top .guideInfo {
    right: 40px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .hrEvent__top .guideInfo {
    right: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .hrEvent__top .guideInfo {
    top: 93px;
    left: 16px;
    transform: unset;
  }
}

.hrEvent__top .guideInfo p {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.hrEvent__top .guideInfo p strong {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  display: block;
  padding-top: 4px;
}

.hrEvent__top .guideInfo .personalLink {
  font-size: 24px;
  color: #fff;
  font-weight: normal;
  margin-right: 12px;
}

.hrEvent__middle {
  padding: 32px 24px;
  background-color: rgba(57, 200, 208, 0.05);
}

@media screen and (max-width: 1023px) {
  .hrEvent__middle {
    padding: 24px 16px;
  }
}

.hrEvent__middle h5 {
  font-size: 18px;
  font-weight: bold;
  color: #292929;
  padding-bottom: 12px;
}

.hrEvent__middle p {
  font-size: 16px;
  color: #292929;
  line-height: 1.75;
  margin-bottom: 0;
}

.hrEvent__bottom {
  border-radius: 0 0 4px 4px;
  padding-bottom: 24px;
}

.hrEvent__bottom .contain {
  margin: 0 auto;
  max-width: 680px;
  padding: 32px 8px;
}

@media screen and (max-width: 1023px) {
  .hrEvent__bottom .contain {
    padding: 32px 16px 0;
  }
}

.hrEvent__bottom .contain > h5 {
  font-size: 18px;
  font-weight: 700;
  color: #292929;
  padding-bottom: 12px;
}

.hrEvent__bottom .contain > h5:nth-of-type(2) {
  margin-top: 12px;
}

@media screen and (max-width: 1023px) {
  .hrEvent__bottom .contain > h5:nth-of-type(2) {
    margin-top: 64px;
  }
}

.hrEvent__bottom .contain > p {
  font-size: 16px;
  line-height: 1.75;
  color: #292929;
}

.hrEvent__bottom .contain > p:nth-of-type(2) {
  margin-bottom: 64px;
}

.hrEvent__bottom .contain > img {
  width: 100%;
}

.hrEvent__bottom .contain > a {
  font-size: 14px;
  font-weight: 700;
  color: #1654b9;
  display: block;
}

.hrProcess {
  width: 100%;
  margin-bottom: 64px;
}

.hrProcess .hrProcess-item {
  border-radius: 4px;
  border: solid 1px #ddd;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.hrProcess .hrProcess-item:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .hrProcess .hrProcess-item {
    flex-wrap: wrap;
  }
}

.hrProcess .hrProcess-item > p {
  flex-grow: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #292929;
}

.hrProcess .hrProcess-level {
  width: 48%;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .hrProcess .hrProcess-level {
    width: 100%;
    margin-bottom: 20px;
  }
}

.hrProcess .hrProcess-label {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 20px;
}

.hrProcess .hrProcess-label.started {
  background-color: #39c8d0;
}

.hrProcess .hrProcess-label.basic {
  background-color: #4e91ff;
}

.hrProcess .hrProcess-label.advanced {
  background-color: #1654b9;
}

.hrProcess .hrProcess-label.high-level {
  background-color: #78269f;
}

.hrProcess .hrProcess-jobName {
  flex-grow: 1;
  padding-right: 20px;
}

.hrProcess .hrProcess-jobName > p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  color: #292929;
  margin: 0;
}

.hrMap {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .hrMap {
    margin-bottom: 48px;
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

.hrMap .hrMap-card {
  width: calc((100% - 24px) / 2);
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 24px;
  border-radius: 4px;
  border: solid 1px #ddd;
  display: flex;
  flex-direction: column;
  margin-right: 24px;
}

.hrMap .hrMap-card:nth-of-type(2n) {
  margin-right: 0;
}

@media screen and (max-width: 1023px) {
  .hrMap .hrMap-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.hrMap .hrMap-top {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: url(../img/bg-hr-head.jpg) no-repeat center;
  background-size: cover;
  padding: 15px 16px;
  border-radius: 4px 4px 0 0;
  flex-grow: 0;
  flex-shrink: 0;
  height: 48px;
}

.hrMap .hrMap-body {
  flex-grow: 1;
  padding: 16px;
}

.hrMap .hrMap-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #292929;
}

.hrMap .hrMap-body p:last-of-type {
  margin: 0;
}

.hrMap .hrMap-body p strong {
  display: block;
}

.hrMap .hrMap-footer {
  margin-right: 16px;
  margin-left: 16px;
  border-top: 1px solid #eee;
  flex-grow: 0;
  flex-shrink: 0;
}

.hrMap .hrMap-footer .hrMap-more {
  display: block;
  text-align: center;
  padding: 8px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  color: #7e7e7e;
}

/*====== 2021/04/30新增 熱門證照樣式 ====*/
/* 熱門證照區塊 */
.whitePanel__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  margin-bottom: 0;
  font-size: 0%;
}

.tag > li {
  width: auto;
  height: 24px;
  padding: 5px 8px;
  font-size: 14px;
  border-radius: 20px;
  line-height: 1;
  vertical-align: baseline;
  color: #39c8d0;
  text-align: center;
  cursor: pointer;
  border: 1px solid #39c8d0;
}

.tag > li.active {
  background-color: #39c8d0;
  color: #fff;
}

.hotLicense {
  padding: 32px;
  display: flex;
  background-color: #fff2e7;
  margin-right: 24px;
  margin-left: 24px;
  border-radius: 4px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .hotLicense {
    padding: 16px;
    margin-right: 16px;
    margin-left: 16px;
    flex-direction: column;
  }
}

.hotLicense .hotLicense-course {
  width: 50%;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .hotLicense .hotLicense-course {
    overflow: hidden;
  }
}

@media screen and (max-width: 1023px) {
  .hotLicense .hotLicense-course {
    width: 100%;
    padding-right: 0;
    margin-bottom: 18px;
  }
}

.hotLicense .hotLicense-course > p {
  line-height: 1.43;
}

.hotLicense .hotLicense-course > a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #1654b9;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.hotLicense .hotLicense-course a + a {
  margin-top: 8px;
}

.hotLicense .hotLicense-logo {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .hotLicense .hotLicense-logo {
    width: 100%;
    padding-bottom: 12px;
  }
}

.hotLicense .hotLicense-logo img {
  width: 355px;
  max-width: 90%;
}
