.checkInput {
  position: absolute;
  opacity: 0;
}

.checkInput + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.checkInput + label:before {
  content: '';
  margin-right: 0.3rem;
  display: inline-block;
  vertical-align: text-top;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 0 1px #D5D5D5;
          box-shadow: inset 0 0 0 1px #D5D5D5;
}

.checkInput:checked + label:before {
  background: #d3e8fc;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkInput:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.checkInput:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}

.checkInput:checked + label:after {
  content: '';
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../../assets/icon/check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.checkInput:focus + label:before {
  -webkit-box-shadow: 0 0 0 2px rgba(36, 140, 238, 0.3);
          box-shadow: 0 0 0 2px rgba(36, 140, 238, 0.3);
}

.switchInput {
  position: absolute;
  opacity: 0;
}

.switchInput + label {
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
}

.switchInput + label:before {
  content: '';
  margin-right: 0.3rem;
  display: inline-block;
  vertical-align: text-top;
  width: 2.5rem;
  height: 20px;
  background-color: #D3E8FC;
  border-radius: 50px;
}

.switchInput + label:after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 50%;
  left: 2px;
  position: absolute;
  background-color: #248dee;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: translateY(-50%) scale(0.9);
          transform: translateY(-50%) scale(0.9);
  border: 2px solid #248dee;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.switchInput:focus + label:before {
  -webkit-box-shadow: inset 0 0 0 2px rgba(36, 140, 238, 0.3);
          box-shadow: inset 0 0 0 2px rgba(36, 140, 238, 0.3);
}

.switchInput:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.switchInput:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}

.switchInput:checked + label:before {
  background-color: #248DEE;
}

.switchInput:checked + label:after {
  left: calc(2.5rem - 16px - 2px);
  background-color: #D3E8FC;
  border-color: #D3E8FC;
}

.classify-container .classify-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.classify-container .classify-head .btn {
  color: #FF3A1E;
  padding: 0.5rem 1rem;
  font-size: 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: bold;
  border-radius: 0;
}

.classify-container .classify-head .btn:focus {
  -webkit-box-shadow: inset 0 0 0 3px rgba(255, 56, 30, 0.3);
          box-shadow: inset 0 0 0 3px rgba(255, 56, 30, 0.3);
}

.classify-container .classify-head .btn i {
  margin-left: 0.5rem;
  font-size: 18px;
}

.classify-container .classify-body {
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem 0;
}

.classify-container .classify-body .item {
  width: 100%;
  padding: 0 1.25rem;
}

.classify-container .classify-body .item:not(:last-child) {
  border-right: 1px solid #ddd;
}

.classify-container .classify-body .item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.25rem;
  font-weight: bold;
}

.classify-container .classify-body .item .title .btn {
  color: #248DEE;
  padding: 0;
  border-radius: 0;
  line-height: 1;
}

.classify-container .classify-body .item .title .btn:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(36, 140, 238, 0.3);
          box-shadow: 0 0 0 3px rgba(36, 140, 238, 0.3);
}

.classify-container .classify-body .item .check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.classify-container .classify-body .item .check-list .check-item {
  margin-right: 1rem;
}

.classify-container .classify-body .item .range-item .slider-range {
  background-color: #C4C4C4;
  margin-bottom: 1.5rem;
}

.classify-container .classify-body .item .range-item .slider-range .ui-slider-range {
  background-color: #ff9c8f;
}

.classify-container .classify-body .item .range-item .slider-range .ui-state-focus {
  -webkit-box-shadow: 0 0 0 2px #ff9c8f;
          box-shadow: 0 0 0 2px #ff9c8f;
}

.classify-container .classify-body .item .range-item .slider-range.ui-slider-disabled .ui-slider-range {
  background-color: #b9b9b9;
}

.classify-container .classify-body .item .range-item .slider-range.ui-slider-disabled .ui-slider-handle {
  background-color: #757575 !important;
  border-color: #757575 !important;
}

.classify-container .classify-body .item .range-item .rangeInput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.classify-container .classify-body .item .range-item .rangeInput input[type=number] {
  width: 43%;
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  border-radius: 3px;
  border: 1px solid #ddd;
}

.classify-container .classify-body .item .range-item .rangeInput input[type=number]:focus {
  outline: none;
  border-color: #FF3A1E;
}

.classify-container .classify-body .item .range-item .rangeInput input[type=number]:disabled {
  color: #ddd;
}

.classify-container .classify-body .item .range-item .rangeInput span {
  display: block;
  background-color: #212529;
  height: 2px;
  width: 4%;
}

.Tags__overflow .TagsContainer button:first-of-type {
  margin-left: 0;
}

.editorContent img {
  width: auto !important;
  max-width: 100%;
}
/*# sourceMappingURL=newStyle.css.map */

/*-------------------- Vic 活動報名列表頁新增 CSS 0308--------------------*/

.row .FooterBottom {
    margin-top: 0;
}
/* header 活動報名按鈕 */
.navbar-expand .navbar-nav .btn-sp {
    background: #FF3A1E;
    color: #fff;
    padding: 0.375rem 1.25rem;
}

.sp-cover-slider{
  height: 400px!important;
}

/* 活動卡片 Style */
.sp-outwrapper .card-img{
  height: 230px!important;
}

.sp-outwrapper .sp-title{
  font-size: 16px;
}

.card_sp_date span,.card_sp_time span,.card_sp_pos span{
  font-size: 14px!important;
}

.vic_cta_box{
  margin-top: 0.5rem;
}

.vic_cta_box a{
  text-decoration: none;
}

.vic_cta_box,.vic_sp_time{
  display: flex;
  justify-content: space-between;
}

.vic_cta_box .card-text{
  font-size: 16px;
}

.card_sp_date,.card_sp_time{
  display: inline-flex;
  align-items: center;
}

.card_sp_date::before{
  content:"";
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-right: 5px;
  background: url(../assets/icon/calendar.png);
  background-size: cover;
}

.card_sp_time::before{
  content:"";
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-right: 5px;
  background: url(../assets/icon/clock.png);
  background-size: cover;
}

.card_sp_pos{
  display: inline-flex!important;
}

.card_sp_pos::before{
  content:"";
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-right: 5px;
  background: url(../assets/icon/location-pin.png);
  background-size: cover;
}

.vic_sp_detail{
  background: #FF3A1E;
  color: #fff;
  display: inline-flex;
  font-weight: 400;
}

.vic_sp_enroll{
  background: #fff;
  border: 1px solid #55565A;
  display: inline-flex;
  color: #55565A!important;
  font-weight: 400;
}

.course_card {
    border: 1px solid #DDDDDD;
}

.sp-enroll::before {
    content: "受理報名中";
    display: block;
    background: rgb(0, 208, 133);
    padding: 2px 5px;
    font-size: 14px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    z-index: 99;
}

.sp-stop::before{
  content: "已截止報名";
  display: block;
  background: rgb(255, 89, 80);
  padding: 2px 5px;
  font-size: 14px;
  position: absolute;
  top: 5px;
  right: 5px;
  color:#fff;
  z-index: 99;
}

/*.card.sp-stop .card-img::before{
  content: "已截止報名";
  display: block;
  background: rgb(255, 89, 80);
  padding: 2px 5px;
  font-size: 14px;
  position: absolute;
  top: 5px;
  right: 5px;
  color:#fff;
}*/

.sp-full::before{
  content: "報名已額滿";
  display: block;
  background: rgb(250, 139, 0);
  padding: 2px 5px;
  font-size: 14px;
  position: absolute;
  top: 5px;
  right: 5px;
  color:#fff;
  z-index: 99;
}

.sp-soon::before{
  content: "即將開放報名";
  display: block;
  background: #248DEE;
  padding: 2px 5px;
  font-size: 14px;
  position: absolute;
  top: 5px;
  right: 5px;
  color:#fff;
  z-index: 99;
}

.sp-cancel::before{
  content: "活動中止";
  display: block;
  background: rgb(92, 92, 92);
  padding: 2px 5px;
  font-size: 14px;
  position: absolute;
  top: 5px;
  right: 5px;
  color:#fff;
  z-index: 99;
}

#divModels .card:hover {
  cursor: pointer;
}

/* 活動類別篩選 Select */
.vic-select{
  display: flex;
  justify-content: flex-end;
  margin: 2rem 0 1rem;
}

.vic-select select {
    width: 16.66667%;
    min-width: 150px;
}

@media screen and (min-width: 992px) and (max-width: 1200px){
  .sp-outwrapper .card-body{
    padding: 10px;
  }
  .sp-outwrapper .card-body .card-text{
    text-align: justify;
  }
  .sp-outwrapper .card-body .btn{
    padding: 0.375rem 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px){
  .vic_cta_box, .vic_sp_time{
    display: block;
  }
  .sp-outwrapper .card-body{
    padding: 10px;
  }
  .sp-outwrapper .card-body .card-text{
    text-align: justify;
  }
  .sp-outwrapper .card-body .btn{
    padding: 0.375rem 1rem;
  }
  .vic_sp_detail{
    display: block;
    text-align: center!important;
  }
  .vic_sp_enroll{
    display: block;
    text-align: center!important;
    margin-top: 0.5rem;
  }
}

/* 活動介紹頁 */
.sp-condition::before{
  position: relative!important;
  top: 0!important;
  right: 0!important;
}
.sp-class-wrap .Body-medium{
  margin-right: 1rem !important;
  min-width: 90px;
}
.sp-class-wrap .Body-regular{
  text-align: left !important;
  overflow: auto;
  overflow-wrap: break-word;
}
.sp-line{
  color: #dee2e6;
  opacity: 1!important;
}
.sp-teacher-link{
  text-decoration: none!important;
}
.sp-text-justify{
  text-align: justify; 
}
.share-btn-small{
  display: none!important;
}
.share-btn-large{
  display: block!important;
}
.sp-enroll-btn:hover{
  text-decoration: none;
}
.sp-teacher-cover{
  /* min-width: 310px; */
}
.icon-external-link:before {
  content:"";
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-right: 5px;
  background: url(../assets/icon/external-link.png);
  background-size: cover;
}
.sp-class-wrap .sp-title{
  font-family: PingFang TC, Roboto;
  color: #212529;
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
}
.icon-fb-share,.icon-line-share{
  cursor: pointer;
}

/*
@media screen and (min-width: 992px) and (max-width: 1200px){
  .share-btn-small{
    display: none!important;
  }
  .share-btn-large{
    display: block!important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px){
  .share-btn-small{
    display: inline-block!important;
  }
  .share-btn-large{
    display: none!important;
  }
}
*/

/* 填寫報名資料 */
.form-input-wrapper{
  width: 800px;
}
.class-item-detail{
  width: 100%;
}
.class-num-box{
  align-items: center;
  justify-content: center;
}
.class-enroll-box{
  align-items: center;
  justify-content: center;
}
.form-input-require{
  color: #cc2e18;
}
#success-enroll .modal-header{
  padding-top: 10px!important;
}
#success-enroll .modal-body .pt-4{
  padding-top: 0!important;
}
#success-enroll .modal-lg{
  max-width: 550px;
}
/* ------------ */
/* foot */
.languageP {
    position: absolute;
    right: 20px;
}

#select_language {
    min-width: 120px;
}
/* top menu */
.newTopMenu {
    width: calc(100% - 180px);
    display: flex;
    justify-content: space-between;
    align-items: center; /* 垂直置中 */
}

/* 購物車按鈕容器需要相對定位 */
.dropdown {
    position: relative;
}

/* 購物車計數徽章樣式 */
.shoppingCarCount {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    z-index: 10;
}


@media screen and (max-width: 1100px) {
    .newTopMenu {
        width: auto;
        flex-direction: row-reverse;
        align-items: center; /* 在響應式版本中也保持垂直置中 */
    }
}


@media screen and (max-width: 650px) {
    .navbar-expand .navbar-nav .btn-sp {
        padding-right: 0;
        padding-left: 0;
        padding: 0.375rem 0.3rem;
    }
}


@media (min-width: 800px) and (max-width: 1080px) {
    .navbar > .container-fluid {
        justify-content: space-between;
        border: 0px solid red;
        flex-wrap: wrap;
    }

    .navbar-expand .navbar-nav {
        margin-right: 0 !important;
    }
}

@media (max-width: 1000px) {
    .navbar > .container-fluid {
        justify-content: space-between;
        border: 0px solid red;
    }
}

.rwdMenu {
}


.navbar > .container-fluid.mRwdMenu {
    display: none;
}

    .navbar > .container-fluid.mRwdMenu .topMenuLine {
        display: flex;
    }

@media (max-width: 1030px) {
    header .nav-item {
        margin-right: 0;
    }

    .navbar > .container-fluid #navbarSupportedContent {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-expand .navbar-nav {
        margin-right: 0 !important;
        gap: 10px;
    }

    .navbar > .container-fluid form {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

/* home search */

@media (max-width: 850px) {
    .HomeProducts .container .submenu .col,
    .SearchResult .container #divModels .row .col {
        width: 50%;
    }

    .stepShortcut {
        flex-direction: column;
        align-items: center;
    }

    .thirdParty .col-2 {
        width: 33.33334%;
    }
}

@media (max-width: 900px) {
    .searchBlock {
        width: 80%;
    }
}

@media (max-width: 550px) {
    .HomeProducts .container .submenu .col,
    .SearchResult .container #divModels .row .col {
        width: 90%;
    }
    .HomeProducts .container .submenu .row,
    .SearchResult .container #divModels .row {
        justify-content: center;
    }

    .thirdParty {
        flex-direction: column;
    }

    .thirdParty .col-2 {
        width: 100%;
    }
}

.editorContent {
  overflow-wrap: break-word;
}

@media (max-width: 900px) {

    .classify-container .classify-body {
        flex-direction: column;
        border-right: 1px solid #ddd;
        padding: 0;
    }

    .classify-container .classify-body .item:not(:last-child) {
        padding: 1.25rem;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .classify-container .classify-body .item:last-child {
        padding: 1.25rem;
        }

    .Product .productInfo {
        flex-direction: column;
    }
    .Product .productInfo .col-8,
    .Product .productInfo .col-4 {
        width: 100%;
    }
}

.card-body .pt-3 {
    gap: 5px;
}

.card-body .pt-3 .viewsAndDLs {
    display: flex;
    gap: 10px;
}

.card-body .pt-3 .viewsAndDLs .pe-5 {
    padding-right: 0px !important;
}
.card-body .pt-3 .dropdown .ms-6 {
    margin-left: 0 !important;
}

@media (max-width: 900px) {
    .card-body .pt-3 {
        gap: 20px;
        flex-direction: column;
    }

    .card-body .pt-3 .dropdown .btn {
        width: 100%;
        margin: 0 auto !important;
    }
}

/* member menu */
.modelRWD {

}

.modelModelRWD {

}

.courseDetailCard {
  overflow-wrap: break-word;
}

/* course Detail */
@media (max-width: 900px) {
    .courseDetailCard {
        flex-direction: column;
    }

    .courseDetailCard .col-8,
    .courseDetailCard .col-4 {
        width: 100%;
    }
}

/* 主題專區圓形圖片樣式 - 確保包括 onerror 圖片都保持正圓居中且響應式 */
.HomeCommonSection-widget-cover.rounded-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.HomeCommonSection-widget-cover.rounded-pill {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}