@charset "UTF-8";
@keyframes ani-mainview {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes ani-fadeIn-Y {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ani-fadeIn-Y-rev {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ani-fadeIn-X {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes ani-fadeIn-X-rev {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes ani-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ani-bounce {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes ani-bling {
  0% {
    opacity: 0.2;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.5);
  }
}
@keyframes ani-text-dec {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
html {
  font-size: 10px !important;
  overflow-x: hidden;
  scroll-behavior: auto !important;
}

body {
  font-family: "PingFang TC", "Noto Sans TC", "LiHei Pro", "Microsoft JhengHei",
    "Microsoft YaHei", sans-serif !important;
  line-height: 1.6;
  font-size: 16px;
  color: #fff;
  position: relative;
  background-color: #262626;
  background-image: url("../img/bg_body.jpg");
  background-size: 10%;
  background-repeat: repeat;
  /* overflow-x: hidden; */
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

h1,
h2,
h3 {
  font-weight: bold;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 1.8rem;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

a {
  text-decoration: none !important;
  color: #fff;
}
a:hover {
  color: #8bd6ff;
}

a.link {
  text-decoration: underline !important;
  color: #8bd6ff;
  transition: all 0.3s ease-out;
}

a.link:hover {
  text-decoration: none !important;
}

a,
button,
.form-control {
  outline: none !important;
  border: none;
}
a:focus,
a:active,
button:focus,
button:active,
.form-control:focus,
.form-control:active {
  outline: none !important;
}

.btn {
  font-size: 1.6rem;
  padding: 10px 30px;
  font-weight: 500;
  box-shadow: none;
  transition: all ease-in-out 0.3s;
  border: none !important;
  position: relative;
  border-radius: 50px;
}
.btn:hover {
  transform: translateY(-10px);
}
.btn img {
  display: inline-block !important;
  width: 16px !important;
}
.btn-sm {
  padding: 5px 15px;
  min-width: unset;
  border-radius: 5px;
  font-size: 1.3rem;
}
.btn-sm:hover {
  transform: none;
}
.btn-sm img,
.btn-sm svg {
  height: 14px;
  width: auto;
}
.btn-primary {
  background-color: #246eb7;
  background-image: url("../img/bg_btn_primary1.png");
  background-size: cover;
  border: none;
  box-shadow: 0px 0px 30px rgba(139, 214, 255, 0.5),
    0px -3px 5px rgba(0, 0, 0, 0.5) inset;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
  background-image: url("../img/bg_btn_primary2.png");
  color: #333;
  box-shadow: 0px 0px 30px rgba(113, 242, 217, 0.5),
    0px -3px 5px rgba(0, 0, 0, 0.5) inset;
}
.btn-primary:hover img,
.btn-primary:focus img,
.btn-primary:active img,
.btn-primary:not(:disabled):not(.disabled):active img,
.btn-primary:not(:disabled):not(.disabled).active img {
  filter: invert(100%);
}
.btn-secondary {
  background: #51b670;
  background-image: url("../img/bg_btn_sec1.png");
  background-size: cover;
  border: none;
  color: #fff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
  background-image: url("../img/bg_btn_primary2.png");
  color: #333;
  box-shadow: 0px 0px 30px rgba(113, 242, 217, 0.5),
    0px -3px 5px rgba(0, 0, 0, 0.5) inset;
}
.btn-secondary:hover img,
.btn-secondary:focus img,
.btn-secondary:active img,
.btn-secondary:not(:disabled):not(.disabled):active img,
.btn-secondary:not(:disabled):not(.disabled).active img {
  filter: invert(100%);
}
.btn-default {
  background: #fff;
  color: #000;
  padding: 8px 30px;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default:not(:disabled):not(.disabled):active {
  background: #fff;
  color: #000;
}
.btn-outline-light {
  border: 1px solid #fff !important;
  padding: 8px 30px;
}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light:not(:disabled):not(.disabled):active {
  background: #fff;
  color: #000;
}
.btn i,
.btn img {
  margin: 0 10px;
  vertical-align: middle;
}
.btn img {
  height: 16px;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.6rem;
  }
}

.btn-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 50px;
  background-image: url("../img/bg_btn_blur1_1.png");
  background-size: cover;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.7) inset;
}
.btn-circle.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.btn-circle:hover {
  background-image: url("../img/bg_btn_blur1_2.png");
}
.btn-circle:hover img,
.btn-circle:hover .pic {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .btn-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.btn-group .btn:hover {
  transform: none;
}
@media screen and (max-width: 767px) {
  .btn-group .btn {
    padding: 8px 12px;
  }
}

input.form-control::-moz-placeholder {
  color: #999;
  opacity: 1; /* Firefox */
}

input.form-control::placeholder {
  color: #999;
  opacity: 1; /* Firefox */
}

.form-control {
  border-radius: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  color: #000;
}
.form-control:focus {
  box-shadow: none;
  border-color: #aaa;
}

select.form-control {
  background-image: url("../img/ic_angle.svg");
  background-size: 12px 6px;
  background-repeat: no-repeat;
  background-position: top 17px right 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 30px 0 10px;
  height: 40px;
  width: 100%;
  display: block;
}

textarea.form-control {
  border-radius: 20px;
}

input[type="file"].form-control,
textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 30px;
}
.form-group label {
  color: #fff;
  margin-bottom: 5px;
}
.form-group .text {
  color: #333;
  margin-top: 5px;
}
.form-group.has-error label,
.form-group.has-error .text {
  color: #ff4141 !important;
}
.form-group.has-error .form-control {
  border-color: #ff4141 !important;
}
@media screen and (max-width: 767px) {
  .form-group .form-control {
    padding: 10px;
  }
}

.form-inline {
  display: flex;
  align-items: center;
}
.form-inline .form-check-custom,
.form-inline .form-radio-custom {
  margin-top: 5px;
  margin-bottom: 5px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .form-inline .form-check-custom,
  .form-inline .form-radio-custom {
    width: calc(33.3333333333% - 10px);
  }
}
@media screen and (max-width: 450px) {
  .form-inline .form-check-custom,
  .form-inline .form-radio-custom {
    width: calc(50% - 10px);
  }
}

.form-check-custom,
.form-radio-custom {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0px;
  margin-right: 10px;
  font-size: 16px;
  margin-bottom: 10px;
}
.form-check-custom input,
.form-radio-custom input {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.form-check-custom input:checked + .icon,
.form-radio-custom input:checked + .icon {
  background: #246eb7;
  border-color: #246eb7;
}
.form-check-custom input:checked + .icon::before,
.form-radio-custom input:checked + .icon::before {
  display: block;
}
.form-check-custom .icon,
.form-radio-custom .icon {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #c3c3c3;
  margin-right: 5px;
  position: relative;
  flex-shrink: 0;
}
.form-check-custom .icon::before,
.form-radio-custom .icon::before {
  position: absolute;
  content: "";
  display: none;
}

.form-check-custom .icon {
  border-radius: 2px;
}
.form-check-custom .icon::before {
  top: 4px;
  left: 4px;
  height: 6px;
  width: 10px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}

.form-radio-custom .icon {
  border-radius: 50%;
}
.form-radio-custom .icon::before {
  top: 5px;
  left: 5px;
  height: 8px;
  width: 8px;
  background: #fff;
  border-radius: 50%;
}

.gap {
  margin: 0px 5px;
  color: rgba(255, 255, 255, 0.5);
}

.bg-black {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.article-con p {
  line-height: 1.9;
  margin: 20px 0;
}

.article-con img {
  max-width: 100%;
  height: auto;
  display: block;
}

.article-con p img {
  margin: 0 auto;
}

ol.breadcrumb {
  margin: 20px 0 30px 0;
}
ol.breadcrumb li.breadcrumb-item a {
  color: #aaa;
}
ol.breadcrumb li.breadcrumb-item.active {
  color: #fff;
}

.panel {
  padding: 40px;
  border-radius: 20px;
}
.panel h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .panel {
    padding: 20px;
  }
}

.card {
  background: none;
  border: none;
  border-radius: 20px;
}
.card .pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.card a {
  color: #fff;
  border-radius: 20px;
}
.card .card-header {
  background: none;
  border: none;
}
.card .card-body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.card-live,
.card-news,
.card-show,
.card-msg,
.card-news-sm,
.card-rent,
.card-cast {
  padding: 2px;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.4)
  );
}

.card-news-sm-colorful {
  transition: all 0.3s ease-out;
}
.card-news-sm-colorful .card-body::before {
  display: none !important;
}
.card-news-sm-colorful:hover .card-body .title {
  color: #8bd6ff !important;
}
.card-news-sm-colorful:hover {
  transform: scale(1.02);
}

.card-live a,
.card-news a,
.card-show a,
.card-msg a,
.card-news-sm a,
.card-rent a,
.card-cast a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg_card_live2.png");
  background-size: cover;
}
.card-live .card-body .title,
.card-news .card-body .title,
.card-show .card-body .title,
.card-msg .card-body .title,
.card-news-sm .card-body .title,
.card-rent .card-body .title,
.card-cast .card-body .title {
  margin-top: 20px;
}
.card-live:hover .card-body,
.card-live.active .card-body,
.card-news:hover .card-body,
.card-news.active .card-body,
.card-show:hover .card-body,
.card-show.active .card-body,
.card-msg:hover .card-body,
.card-msg.active .card-body,
.card-news-sm:hover .card-body,
.card-news-sm.active .card-body,
.card-rent:hover .card-body,
.card-rent.active .card-body,
.card-cast:hover .card-body,
.card-cast.active .card-body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /*background-image: url("../img/bg_card_live2.png");*/
}
.card-news .card-body,
.card-show .card-body,
.card-msg .card-body,
.card-rent .card-body,
.card-cast .card-body {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: background-color 0.3s ease-out;
  background-color: rgba(35, 35, 35, 1);
  /*background-image: linear-gradient(#444, #262626);*/
}
.card-news .card-body .tag,
.card-show .card-body .tag,
.card-msg .card-body .tag,
.card-rent .card-body .tag,
.card-cast .card-body .tag {
  position: absolute;
  top: 15px;
  left: 10px;
  background: #ff4141;
  color: #fff;
  border-radius: 8px;
  padding: 2px 5px;
  font-size: 1.2rem;
  z-index: 3;
}
.card-news .card-body .pic,
.card-show .card-body .pic,
.card-msg .card-body .pic,
.card-rent .card-body .pic,
.card-cast .card-body .pic {
  border-radius: 20px;
}
.card-news .card-body .pic,
.card-news .card-body .title,
.card-show .card-body .pic,
.card-show .card-body .title,
.card-msg .card-body .pic,
.card-msg .card-body .title,
.card-rent .card-body .pic,
.card-rent .card-body .title,
.card-cast .card-body .pic,
.card-cast .card-body .title {
  position: relative;
  z-index: 2;
}
.card-news .card-body .icon img,
.card-show .card-body .icon img,
.card-msg .card-body .icon img,
.card-rent .card-body .icon img,
.card-cast .card-body .icon img {
  margin: auto;
  width: 120px;
  height: 60px;
}
.card-news:hover .card-body,
.card-show:hover .card-body,
.card-msg:hover .card-body,
.card-rent:hover .card-body,
.card-cast:hover .card-body,
.card-news.active .card-body,
.card-show.active .card-body,
.card-msg.active .card-body,
.card-rent.active .card-body,
.card-cast.active .card-body {
  /*background-image: url("../img/bg_card_live2.png");*/
  background-color: rgba(35, 35, 35, 0);
}
.card-news:hover .card-body::before,
.card-news:hover .card-body::after,
.card-show:hover .card-body::before,
.card-show:hover .card-body::after,
.card-msg:hover .card-body::before,
.card-msg:hover .card-body::after,
.card-rent:hover .card-body::before,
.card-rent:hover .card-body::after,
.card-cast:hover .card-body::before,
.card-cast:hover .card-body::after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fed700;
  filter: blur(10px);
}
.card-news:hover .card-body::before,
.card-show:hover .card-body::before,
.card-msg:hover .card-body::before,
.card-rent:hover .card-body::before,
.card-cast:hover .card-body::before {
  top: -70px;
  right: -80px;
}
.card-news:hover .card-body::after,
.card-show:hover .card-body::after,
.card-msg:hover .card-body::after,
.card-rent:hover .card-body::after,
.card-cast:hover .card-body::after {
  bottom: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
}
.card-live {
  border-radius: 25px;
}
.card-live .card-body {
  color: #fff;
  font-weight: 600;
  padding: 40px 20px;
  background-color: transparent;
  border-radius: 25px;
}
.card-live .card-body::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: calc(100% - 4px);
  height: calc(100% - 2px);
  left: 2px;
  top: 0px;
  background-image: url("../img/bg_card_live1.png");
  background-size: cover;
  transition: all 0.3s ease-out;
  border-radius: 22px;
}
.card-live.active .card-body::before {
  opacity: 0;
}
.card-live .card-body .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 52px;
  position: relative;
}
.card-live .card-body .card-header .sub-title {
  color: #e3f2fe;
}
.card-live .card-body .card-header .icon {
  flex-shrink: 0;
}
.card-live .card-body .card-header .icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%);
}
.card-live .card-body .title,
.card-live .card-body .text {
  text-align: center;
}
.card-live .card-body .title {
  font-size: 2.4rem;
  margin-top: 10px;
  position: relative;
}
.card-live .card-body .text {
  font-weight: 400;
  position: relative;
}
.card-live.card-live-program .card-body {
  height: 120px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-live.card-live-program .title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .card-live.card-live-program {
    margin-bottom: 15px;
  }
}
.card-live:hover .card-body::before {
  opacity: 0;
}
.card-live:hover .card-body .card-header .sub-title {
  color: #71f2d9;
}
.card-live:hover .card-body .card-header .icon img {
  filter: none;
}
@media screen and (max-width: 450px) {
  .card-live .card-body {
    padding: 40px 20px 60px 20px;
  }
}
.card-live-on {
  border-radius: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  padding: 60px 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
}
.card-live-on .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  opacity: 0;
  transition: all 0.3s ease-out;
  background-image: url("../img/bg_card_live2.png");
  overflow: hidden;
}
.card-live-on .card-body {
  padding: 10px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.card-live-on .card-body .title {
  font-size: 2.4rem;
  font-weight: 600;
}
.card-live-on:hover .overlay {
  opacity: 0.8;
}
.card-live-on:hover .overlay::before,
.card-live-on:hover .overlay::after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fed700;
  filter: blur(10px);
}
.card-live-on:hover .overlay::before {
  top: -70px;
  right: -80px;
}
.card-live-on:hover .overlay::after {
  bottom: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
}
.card-news .card-body {
  padding: 24px;
  /*background-image: linear-gradient(#555, #262626);*/
  background-color: rgba(68, 68, 68, 0.8);
}
.card-news .card-body .pic {
  padding-bottom: 56%;
}
.card-news .card-body .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.card-news .card-body .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}
.card-news-sm .card-body {
  /*border-radius: 8px;*/
  padding: 10px;
  /*background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.65), #262626 50%);*/
  display: flex;
}
.card-news-sm .card-body::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 2px;
  top: 0;
  width: calc(100% - 4px);
  height: calc(100% - 2px);
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.65),
    #262626 50%
  );
  transition: all 0.3s ease-out;
  border-radius: 20px;
}
.card-news-sm:hover .card-body::before {
  opacity: 0;
}
.card-news-sm .card-body .pic {
  padding-bottom: 20%;
  width: 90px;
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
}
.card-news-sm .card-body .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-top: 0px;
  padding-left: 15px;
  height: 52px;
  position: relative;
}
.card-online {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0 0 20px;
}
.card-online .cover {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.card-online .cover .btn-circle {
  width: 65px;
  height: 65px;
  top: calc(50% - 32.5px);
  left: calc(50% - 32.5px);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-online .cover .btn-circle img {
  width: 21px;
  height: 26px;
}
.card-online .cover .dec {
  position: absolute;
  bottom: 0px;
  left: -40px;
  z-index: 2;
}
.card-online .cover .dec img {
  width: 250px;
}
.card-online .card-body {
  padding-left: 60px;
}
.card-online .card-body .content {
  margin-top: 20px;
}
.card-online .card-body .content h4 {
  font-size: 3.2rem;
  font-weight: 600;
}
.card-online .card-body .content ul.list-tag {
  margin-top: 20px;
}
.card-online .card-body .content ul.list-tag li {
  font-size: 1.2rem;
  background: #666;
}
.card-online .card-body .content .text {
  margin: 20px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.card-online .card-body .content .btn + .btn {
  margin-left: 10px;
}
@media screen and (max-width: 1200px) {
  .card-online {
    flex-direction: column;
  }
  .card-online .cover {
    width: 350px;
    height: 350px;
  }
  .card-online .cover .dec img {
    width: 90px;
  }
  .card-online .card-body {
    padding: 0px;
  }
  .card-online .card-body .area-title,
  .card-online .card-body p {
    display: none;
  }
  .card-online .card-body .content h4 {
    text-align: center;
  }
  .card-online .card-body .content .func-tool {
    text-align: center;
  }
}
.card-show {
  margin-bottom: 15px;
}
.card-show .card-body {
  padding: 20px 15px;
  /*background: #262626;*/
}
.card-show .card-body .pic {
  padding-bottom: 75%;
}
.card-show .card-body ul.list-tag {
  margin-top: 20px;
}
.card-show .card-body .title {
  font-weight: 600;
  text-align: left;
  font-size: 2.4rem;
}
.card-show .card-body .text {
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.card-show .card-body .tag {
  left: 10px;
  top: 10px;
}
.card-msg {
  margin-bottom: 15px;
}
.card-msg .card-body {
  /*background: #262626;*/
  padding: 20px 15px;
}
.card-msg .card-body .pic {
  padding: 50px 0;
  text-align: center;
}
.card-msg .card-body .pic .icon img {
  height: 60px;
}
.card-msg .card-body .pic .type {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 20px;
}
.card-msg .card-body .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.card-msg .card-body .date {
  color: #aaa;
  margin-top: 5px;
}
.card-msg .card-body .tag {
  top: 10px;
  left: 10px;
}
.card-circle {
  border: 5px solid rgba(255, 255, 255, 0.3);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  box-shadow: 0px 10px 15px rgba(36, 110, 183, 0.2);
}
.card-circle .card-body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-circle .card-body::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
}
.card-circle .card-body .con {
  transition: all ease-in-out 0.3s;
  background-image: linear-gradient(135deg, #51b670, #246eb7);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.card-circle .card-body .con .title {
  font-size: 2rem;
  font-weight: 600;
}
.card-circle .card-body .con .text {
  font-size: 1.4rem;
  margin-top: 10px;
}
.card-circle:hover .card-body::before {
  background: rgba(0, 0, 0, 0);
}
.card-circle:hover .card-body .con {
  transform: translateY(-100px);
}
@media screen and (max-width: 1200px) {
  .resourceItemsContainer .card-circle {
    width: 220px;
    height: 220px;
  }
  .resourceItemsContainer .card-circle .card-body {
    width: 210px;
    height: 210px;
  }
  .resourceItemsContainer .card-circle .card-body .con {
    width: 160px;
    height: 160px;
  }
  .resourceItemsContainer .card-circle:hover .card-body .con {
    transform: translateY(-80px);
  }
  .owl-resource .card-circle {
    width: 280px;
    height: 280px;
    margin: auto;
  }
  .owl-resource .card-circle .card-body {
    width: 270px;
    height: 270px;
  }
  .owl-resource .card-circle .card-body .con {
    width: 200px;
    height: 200px;
  }
}
.card-rent {
  margin-bottom: 30px;
  transition: all ease-in-out 0.3s;
}
.card-rent .card-body {
  padding: 20px 15px;
  /*background: #262626;*/
}
.card-rent .card-body .pic {
  padding-bottom: 75%;
}
.card-rent .card-body .title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.card-rent:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  .card-rent .card-body .title {
    font-size: 1.8rem;
  }
}
.card-date {
  background-image: linear-gradient(rgba(0, 0, 0, 0), black);
}
.card-date a {
  color: #fff;
  display: block;
  padding: 20px 10px;
}
.card-date a .title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.card-date.active {
  background-image: linear-gradient(
    135deg,
    rgba(81, 182, 112, 0.7),
    rgba(36, 110, 183, 0.7)
  );
}
.card-cast .card-body .pic {
  padding-bottom: 75%;
}
.card-cast .card-body .title {
  font-size: 2rem;
}
.card-cast .card-body .text {
  opacity: 0.7;
}
.card-cast:hover .card-body {
  background-image: none;
}
.card-cast:hover .card-body::before,
.card-cast:hover .card-body::after {
  display: none;
}
.card-album {
  background: #000;
}
.card-album .pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  padding-bottom: 65%;
  transition: all ease-in-out 0.3s;
  opacity: 0.7;
}
.card-album:hover .pic {
  background-size: auto 120%;
  opacity: 1;
}
.card-channel {
  text-align: center;
  margin-bottom: 30px !important;
}
.card-channel .pic {
  padding-bottom: 80%;
  width: 80%;
  margin: auto;
  border-radius: 50%;
  background-size: 100% 100%;
  transition: all ease-in-out 0.3s;
}
.card-channel .title {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
.card-channel .btn {
  margin: 20px auto 0 auto;
  width: 80%;
}
.card-channel .date {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
.card-channel .time {
  color: #71f2d9;
}
.card-channel:hover .pic {
  background-size: 120% 120%;
}
.card-newmedia {
  margin-bottom: 30px;
  transition: all ease-in-out 0.3s;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0px;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 180px;
}
.card-newmedia .con {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8) 50%);
}
.card-newmedia .con .title {
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0px 15px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.card-newmedia .con ul {
  list-style: none;
  margin: 0px;
  padding: 10px 15px 20px 15px;
  height: 100px;
}
.card-newmedia:hover {
  transform: none;
}
@media screen and (max-width: 1400px) {
  .card-newmedia .con ul {
    height: 130px;
  }
}
@media screen and (max-width: 991px) {
  .card-newmedia .con ul {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .card-newmedia .con ul {
    height: auto;
  }
}
.card-member {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.card-member .pic {
  padding-bottom: 100%;
  margin-bottom: 10px;
}
.card-member .title {
  font-size: 1.8rem;
  font-weight: 600;
}
.card-member .text {
  margin-top: 10px;
}
.card-member hr {
  margin: 10px 0;
}
.card-newsletter {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.card-newsletter .pic {
  width: 40%;
  padding-bottom: 25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
}
.card-newsletter .con {
  width: 60%;
}
.card-newsletter .con .date {
  font-size: 1.4rem;
  color: #aaa;
}
.card-newsletter .con .title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.card-newsletter .con .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  margin-top: 10px;
  color: #fff;
}
.card-newsletter .con .more {
  color: #8bd6ff;
  margin-top: 15px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .card-newsletter .con .title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .card-newsletter .con .text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.card-qa {
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 15px;
}
.card-qa .card-header,
.card-qa .card-body {
  padding: 15px;
}
.card-qa .card-header {
  background-size: cover;
  background-image: url(../img/bg_card_live2.png);
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 1.8rem;
  gap: 10px;
}
.card-qa .card-header .icon {
  transition: all ease-in-out 0.3s;
  margin-left: auto;
}
.card-qa .card-header::before {
  content: "Q";
  font-weight: 600;
}
.card-qa .card-body {
  display: none;
  background: rgba(0, 0, 0, 0.2);
}
.card-qa.active .card-header .icon {
  transform: rotate(180deg);
}
.card-qa.active .card-body {
  display: block;
}

.area-title {
  display: flex;
  margin-bottom: 60px;
}
.area-title .pic {
  margin-right: 15px;
}
.area-title .con h2,
.area-title .con h3 {
  font-size: 6.4rem;
}
.area-title .con h2::first-letter,
.area-title .con h3::first-letter {
  color: #8bd6ff;
}
.area-title .con h2 span,
.area-title .con h3 span {
  color: #b6fff1;
}
.area-title .con h3 {
  font-size: 4rem;
}
.area-title .con .text {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .area-title {
    margin-bottom: 40px;
  }
  .area-title .pic img {
    width: 65px;
  }
  .area-title .con h2,
  .area-title .con h3 {
    font-size: 3.2rem;
    margin-bottom: 0px;
    margin-top: 10px;
  }
  .area-title .con h3 {
    font-size: 2.8rem;
  }
  .area-title .con .text {
    margin-left: -65px;
    margin-top: 20px;
  }
}

.area-sub-title {
  display: flex;
  align-items: center;
}
.area-sub-title .con h3 {
  font-size: 1.8rem;
  margin: 0px;
}
.area-sub-title .con h3::first-letter {
  color: #8bd6ff;
}
.area-sub-title .con h3 span {
  color: #b6fff1;
}

.marquee {
  display: flex;
  font-size: 1.8rem;
  font-weight: 600;
  height: 30px;
  overflow: hidden;
}
.marquee .area-sub-title {
  margin-right: 20px;
}
.marquee .inner {
  transition: transform 0.5s ease-in-out;
}
.marquee .inner .text {
  height: 30px;
}
.marquee .inner .text a {
  text-decoration: none !important;
  border-bottom: 1px solid #fff;
}
.marquee .inner .text a:hover {
  color: #b6fff1;
  border-color: #b6fff1;
}

.tab-button::before {
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

ul.pagination {
  margin: 90px 0 70px 0;
  justify-content: center;
}
ul.pagination li.page-item {
  margin: 0 5px;
}
ul.pagination li.page-item a.page-link {
  padding: 0px;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0px;
  text-align: center;
  line-height: 36px;
  color: #fff;
  background: transparent;
}
ul.pagination li.page-item.active a.page-link {
  background: #246eb7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  ul.pagination {
    margin: 50px 0;
  }
}

.modal .modal-dialog .modal-content {
  background: #262626;
  border-radius: 20px;
}
.modal .modal-dialog .modal-content .modal-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal .modal-dialog .modal-content .modal-header .btn-close {
  filter: brightness(0) invert(1);
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 20px;
}

ul.list-tag {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
}
ul.list-tag li {
  padding: 2px 6px;
  border-radius: 8px;
  font-family: 1.2rem;
  color: #fff;
  background: #333;
  margin-right: 10px;
}

ul.list-share {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
}
ul.list-share li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0 0 0 20px;
}
ul.list-share li a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
ul.list-share li a img {
  position: relative;
  left: -1px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%);
}
ul.list-share li:hover {
  border-color: #b6fff1;
}
ul.list-share li:hover img {
  filter: none;
}

ul.list-program {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
ul.list-program li {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  padding: 25px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
ul.list-program li > *,
.list-program-header div {
  flex-shrink: 0;
  padding: 0 15px;
}
ul.list-program li .title,
.list-program-header .title {
  width: 25%;
  flex-grow: 1;
}
ul.list-program li .title a {
  color: #fff;
}
ul.list-program li .title a:hover {
  color: #8bd6ff;
}
ul.list-program li:nth-child(2n + 1) {
  background: rgba(0, 0, 0, 0.2);
}
ul.list-program li .highlight,
.list-program-header .highlight {
  width: 10%;
  text-align: center;
}
ul.list-program li .date,
ul.list-program li .epi,
ul.list-program li .des,
ul.list-program li .cate,
.list-program-header .date,
.list-program-header .epi,
.list-program-header .des,
.list-program-header .cate {
  width: 15%;
  text-align: center;
}
ul.list-program li .cate img {
  width: 30px;
}
ul.list-program li.header {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: none;
}
@media screen and (max-width: 991px) {
  ul.list-program li {
    flex-wrap: wrap;
    padding: 15px 0;
  }
  ul.list-program li .date,
  ul.list-program li .title {
    width: 100%;
    text-align: left;
  }
  ul.list-program li .title {
    margin-bottom: 15px;
  }
  ul.list-program li .highlight {
    width: auto;
  }
  ul.list-program li .epi,
  ul.list-program li .des,
  ul.list-program li .cate {
    width: auto;
    font-size: 1.4rem;
  }
  ul.list-program li .des {
    margin-left: auto;
  }
  ul.list-program li.header {
    display: none;
  }
}

ul.list-service {
  font-size: 1.8rem;
  font-weight: 600;
}
ul.list-service li {
  margin-bottom: 15px;
  color: #71f2d9;
}
ul.list-service li p {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 5px 0;
  color: #fff;
}
ul.list-service li ul {
  list-style: disc;
}
ul.list-service li ul li {
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
}

ul.list-info li {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
ul.list-info li .title {
  width: 100px;
  flex-shrink: 0;
  font-weight: 600;
}
ul.list-info li .text .text-grey {
  font-size: 1.4rem;
  color: #aaa;
  margin-top: 10px;
}
ul.list-info li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 991px) {
  ul.list-info {
    padding: 15px 0;
  }
}

ul.nav.nav-underline {
  justify-content: center;
}
ul.nav.nav-underline li {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 10px;
}
ul.nav.nav-underline li a.nav-link {
  color: rgba(255, 255, 255, 0.6);
  padding: 15px;
}
ul.nav.nav-underline li a.nav-link:hover,
ul.nav.nav-underline li a.nav-link.active {
  color: #fff;
  border-bottom: 1px solid #fff;
}
ul.nav.nav-underline#nav_program_sticky {
  position: sticky;
  top: 75px;
  z-index: 100;
  padding: 10px 0;
  margin-top: 100px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}
ul.nav.nav-underline#nav_program_sticky li {
  font-size: 1.8rem;
}
ul.nav.nav-underline#nav_program_sticky li a.nav-link {
  color: #fff;
}
@media screen and (max-width: 991px) {
  ul.nav.nav-underline {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
  }
  ul.nav.nav-underline li {
    flex-shrink: 0;
  }
  ul.nav.nav-underline li a.nav-link {
    padding: 10px;
  }
}
ul.nav.flex-column .nav-item {
  font-size: 1.6rems;
}
ul.nav.flex-column .nav-item .nav-link {
  color: #fff;
  opacity: 0.7;
  border-left: 3px solid transparent;
}
ul.nav.flex-column .nav-item .nav-link:hover,
ul.nav.flex-column .nav-item .nav-link.active {
  opacity: 1;
  border-left: 3px solid #246eb7;
}
@media screen and (max-width: 767px) {
  ul.nav.flex-column {
    flex-wrap: nowrap;
    flex-direction: row !important;
    overflow-x: auto;
    justify-content: flex-start !important;
  }
  ul.nav.flex-column .nav-item {
    flex-shrink: 0;
  }
  ul.nav.flex-column .nav-item .nav-link {
    border-left: 0px;
    border-bottom: 3px solid transparent;
    padding: 15px 10px;
  }
  ul.nav.flex-column .nav-item .nav-link:hover,
  ul.nav.flex-column .nav-item .nav-link.active {
    opacity: 1;
    border-left: 0px;
    border-bottom: 3px solid #246eb7;
  }
}

.view-gallery .pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh;
  background-color: #262626;
}
.view-gallery .dec {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 2;
}
.view-gallery .dec img {
  width: 100%;
}
.view-gallery .con {
  z-index: 2;
  position: relative;
}
.view-gallery .owl-gallery .owl-item {
  transition: all ease-in-out 1s;
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-nav {
  font-size: 4rem;
  color: #666;
}
.owl-carousel .owl-nav button {
  position: absolute;
  top: calc(50% - 55px);
  outline: none;
  background-color: #262626 !important;
  border: 1px solid #fff !important;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all ease-in-out 0.3s;
}
.owl-carousel .owl-nav button img {
  filter: brightness(0) invert(1);
}
.owl-carousel .owl-nav button:hover {
  border-color: #8bd6ff !important;
  color: #fff;
}
.owl-carousel .owl-nav button:hover img {
  filter: none;
}
.owl-carousel .owl-nav button.disabled {
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav button {
    width: 35px;
    height: 35px;
    top: calc(50% - 20px);
  }
  .owl-carousel .owl-nav button img {
    width: 10px;
  }
}
.owl-carousel .owl-nav .owl-prev {
  left: -80px;
}
@media screen and (max-width: 1200px) {
  .owl-carousel .owl-nav .owl-prev {
    left: -40px;
  }
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav .owl-prev {
    left: 0px;
  }
}
.owl-carousel .owl-nav .owl-next {
  right: -80px;
}
@media screen and (max-width: 1200px) {
  .owl-carousel .owl-nav .owl-next {
    right: -40px;
  }
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav .owl-next {
    right: 0px;
  }
}
.owl-carousel .owl-nav.disabled {
  display: none;
}
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-carousel .owl-dots > * {
  background: rgba(255, 255, 255, 0.2) !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}
.owl-carousel .owl-dots > *.active {
  background: #b6fff1 !important;
}
.owl-carousel.owl-date {
  padding: 50px 0 30px 0;
}
.owl-carousel.owl-date .owl-nav button {
  top: calc(50% - 22px);
}
@media screen and (max-width: 767px) {
  .owl-carousel.owl-date .owl-nav button {
    top: calc(50% - 10px);
  }
  .owl-carousel.owl-date .owl-nav button.owl-prev {
    left: -15px;
  }
  .owl-carousel.owl-date .owl-nav button.owl-next {
    right: -15px;
  }
}

.dec-circle {
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

a.totop {
  opacity: 0;
  bottom: 80px;
  right: 55px;
  width: 65px;
  height: 65px;
  line-height: 1;
  position: fixed;
  z-index: 999;
  color: #000;
  font-weight: bold;
  padding-top: 10px;
  font-size: 1.4rem;
  transition: all ease-in-out 0.3s;
  visibility: hidden;
}
a.totop:hover {
  color: #fff;
}
a.totop.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  a.totop {
    right: 15px;
    bottom: 40px;
  }
}

#scroll_spy {
  position: fixed;
  right: 20px;
  top: calc(50% - 50px);
  z-index: 1000;
}
#scroll_spy ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
#scroll_spy ul li {
  width: 12px;
  height: 12px;
  margin-bottom: 20px;
}
#scroll_spy ul li a {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}
#scroll_spy ul li a.active {
  background-image: linear-gradient(to right, #0096ec, #e3f1ff);
  border: 1px solid #b6fff1;
}
@media screen and (max-width: 767px) {
  #scroll_spy {
    display: none;
  }
}

#circle {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #246eb7;
  top: 100px; /* 初始位置 */
  left: 50%; /* 初始位置在頁面中 */
  z-index: 1000;
}

header {
  border-bottom: 1px solid #585858;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-out;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a.logo img {
  height: 40px;
}
header nav {
  display: flex;
  align-items: center;
}
header nav ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-weight: 300;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
header nav ul li a {
  color: #fff;
  padding: 0 10px;
  height: 70px;
  line-height: 70px;
  position: relative;
  display: block;
}
header nav ul li a .icon {
  display: none;
  position: absolute;
  top: 16px;
  right: 0px;
  transition: all ease-in-out 0.3s;
}
header nav ul li a .icon img {
  width: 14px;
}
header nav ul li {
  position: relative;
}
header nav ul li::after {
  content: "";
  /*display: block;*/
  display: none;
  width: 100%;
  height: 5px;
  background: none;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
header nav ul li:hover::after,
header nav ul li.active::after {
  background-image: url("../img/bg_btn_blur1_1.png");
  display: block;
}
header nav ul li:hover a,
header nav ul li.active a {
  color: #fff;
}
header nav ul li:hover ul.sub-menu {
  /*display: flex;*/
  visibility: visible;
  opacity: 1;
}
header nav ul li ul.sub-menu {
  position: fixed;
  top: 71px;
  left: 0px;
  width: 100%;
  justify-content: center;
  background: rgba(38, 38, 38, 0.9);
  /*display: none;*/
  opacity: 0;
  display: flex;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
header nav ul li ul.sub-menu li {
  font-size: 1.6rem;
  height: 65px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-out;
}
header nav ul li ul.sub-menu li a {
  padding: 10px 16px;
  border-radius: 30px;
  height: auto;
  line-height: 1;
  color: #ccc;
}
header nav ul li ul.sub-menu li.highlight a {
  color: #b6fff1;
}
header nav ul li ul.sub-menu li:hover {
  font-weight: 500;
}
header nav ul li ul.sub-menu li:hover a {
  background: #b6fff1;
  color: #000;
}
header nav ul li ul.sub-menu li::after {
  display: none;
}
header nav .btn-circle {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .btn-circle.btn-menu {
  background-image: url("../img/bg_btn_blur2_1.png");
  box-shadow: none;
  display: none;
  margin-left: 10px;
}
header nav .btn-circle.btn-menu .pic {
  width: 20px;
  height: 20px;
  background-image: url("../img/ic_menu.svg");
}
header nav .header-search {
  margin-left: 40px;
  min-width: 45px;
  display: flex;
  align-items: center;
  position: relative;
}
header nav .header-search input.form-control {
  width: 0px;
  background: #121212;
  border-radius: 45px;
  border: none;
  color: #fff;
  height: 45px;
  padding: 0;
  transition: all ease-in-out 0.3s;
}
header nav .header-search .btn-search {
  position: absolute;
  right: 0px;
  top: 0px;
}
header nav .header-search .btn-search .pic {
  background-image: url("../img/ic_search.svg");
  width: 20px;
  height: 20px;
}
header nav .header-search.active input.form-control {
  width: 200px;
  padding: 0 40px 0 20px;
}
header nav .header-search.active .btn-search .pic {
  background-image: url("../img/ic_close.svg");
}
header.active {
  background: rgba(38, 38, 38, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
header.navopen {
  background: rgba(38, 38, 38, 0.95);
}
@media screen and (max-width: 1199px) {
  header {
    padding: 15px 0;
  }
  header.active {
    background: rgba(38, 38, 38, 0.95);
  }
  header nav ul {
    display: none;
  }
  header nav ul li a .icon {
    display: block;
  }
  header nav .btn-circle.btn-menu {
    display: flex;
  }
  header nav .header-search {
    margin-left: 0px;
  }
  header nav.active ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    z-index: 1000;
    top: 76px;
    left: 0px;
    width: 100%;
    background: rgba(38, 38, 38, 0.95);
    padding: 0 20px 100px 20px;
    height: calc(100vh - 76px);
    overflow-y: auto;
  }
  header nav.active ul li {
    width: 100%;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header nav.active ul li a {
    display: block;
    height: auto;
    line-height: 1;
    padding: 15px 20px;
  }
  header nav.active ul li ul.sub-menu {
    position: static;
    top: auto;
    left: auto;
    height: auto;
    padding: 0 5px 0 40px;
    display: none;
  }
  header nav.active ul li ul.sub-menu li {
    float: left;
    width: 50%;
    align-self: flex-start;
    height: auto;
    font-size: 1.6rem;
    border-bottom: none;
  }
  header nav.active ul li ul.sub-menu li a {
    display: block;
    color: #ccc;
    padding: 15px 0;
    width: 100%;
  }
  header nav.active ul li ul.sub-menu li:hover a {
    background: none;
  }
  header nav.active ul li ul.sub-menu::after {
    clear: both;
  }
  header nav.active ul li.selected a .icon {
    transform: rotate(180deg);
  }
  header nav.active ul li.selected ul.sub-menu {
    display: block;
  }
  header nav.active ul li::after {
    display: none;
  }
  header nav.active .btn-circle.btn-menu .pic {
    background-image: url("../img/ic_close_white.svg");
  }
}

main section.mainview {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  padding-top: 180px;
  /* padding: 150px 0 100px 0;
  height: 650px; */
}
@media (min-width: 768px) {
  #mainview_index {
    min-height: 650px;
  }
}
#mainview_index::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.5);
  animation-name: opacitychange;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}
@keyframes opacitychange {
  100% {
    opacity: 1;
  }
}

main section.mainview .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 48, 45, 0.85);
}
main section.mainview .dec {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 2;
}
main section.mainview .dec img {
  width: 100%;
}

.mainview-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.mainview-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main section.mainview h2 {
  font-size: 2.4rem;
  margin-top: 20px;
}
main section.mainview .container {
  display: flex;
  align-items: center;
}
main section.mainview .con,
main section.mainview .pic,
main section.mainview .scroll-area {
  position: relative;
  z-index: 2;
}
main section.mainview .con,
main section.mainview .pic {
  opacity: 0;
  /* transform: translateY(40px); */
  transition: all ease-in-out 0.3s;
  animation: ani-mainview ease-in 1s forwards;
}
main section.mainview .con {
  z-index: 3;
  animation-delay: 0.5s;
  width: 450px;
}
/*main section.mainview .con img {
  height: 100px;
}*/
main section.mainview .con .text {
  font-size: 18px;
  margin-top: 20px;
  font-weight: 400;
  padding-right: 50px;
}
main section.mainview .con .sub-text {
  margin-top: 10px;
  font-weight: 600;
}
main section.mainview .con ul.list-tag {
  margin-top: 30px;
}
main section.mainview .pic {
  -webkit-mask: url(../img/bg_mainview_crop.webp) no-repeat center center;
  mask: url(../img/bg_mainview_crop.webp) no-repeat center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  flex-shrink: 0;
  width: 70%;
  padding-bottom: 40%;
  margin-left: -50px;
  position: relative;
  overflow: hidden;
}
main section.mainview .pic .pic-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main section.mainview .pic .pic-container img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 768px) and (max-width: 991px) {
  main section.mainview .pic .pic-container img {
    width: 150%;
    height: 150%;
  }
}

main section.mainview .pic img {
  width: 100%;
}
main section.mainview .scroll-area {
  display: block;
  position: absolute;
  bottom: -100px;
  left: calc(50% - 49px);
  text-align: center;
  animation: ani-bounce ease-in-out 2s infinite;
  z-index: 100;
}
main section.mainview .scroll-area .btn-circle {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: auto;
}
main section.mainview .scroll-area .title {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #fff;
}
main section.mainview-page {
  /*padding: 180px 0 150px 0;*/
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
}
main section.mainview-page .overlay {
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  background-color: rgba(27, 48, 45, 0.7);
  z-index: 2;
}
main section.mainview-page .container {
  display: block;
  text-align: center;
  z-index: 2;
  position: relative;
}
main section.mainview-page .con {
  width: 100%;
}
main section.mainview-page .con h2 {
  font-size: 4rem;
  letter-spacing: 2px;
}
main section.mainview-page .con .input-group .form-control {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 30px 0 0 30px;
  padding: 10px 15px;
  font-size: 1.8rem;
  height: 44px;
}
main section.mainview-page .con .input-group .form-control:focus {
  border: none;
}
main section.mainview-page .con .input-group .btn:hover {
  transform: none;
}
main section.mainview-page .view-gallery {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
main section.mainview-page .view-gallery .pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-mask: none;
  mask: none;
  -webkit-mask-size: unset;
  mask-size: unset;
  flex-shrink: 0;
  width: 100%;
  min-height: 500px;
  padding-bottom: 0px;
  margin-left: 0px;
  flex-shrink: 0;
  animation: none;
  opacity: 1;
}
main section.mainview-page .view-gallery .pic img {
  width: 100%;
}
main section.mainview-page + .area {
  padding-top: 60px;
}
main section.mainview-page-about {
  border-radius: 0 0 0 400px;
  overflow: hidden;
}
main section.mainview-page-about .view-gallery {
  border-radius: 0 0 0 400px;
}
@media screen and (max-width: 1200px) {
  main section.mainview .pic {
    width: calc(100% - 450px);
    padding-bottom: 30%;
    margin-left: -100px;
  }
}
@media screen and (max-width: 991px) {
  main section.mainview .container {
    flex-direction: column;
  }
  main section.mainview .pic {
    order: 1;
    width: 400px;
    height: 230px;
    margin-left: 0px;
  }

  main section.mainview .con {
    order: 2;
    text-align: center;
    /*margin-top: 30px;*/
    width: 100%;
    /*padding: 0 30px;*/
  }
  main section.mainview .con img {
    height: 70px;
  }
  main section.mainview .con .text {
    padding-right: 0px;
  }
  main section.mainview .con ul.list-tag {
    justify-content: center;
  }
  main section.mainview-page h2 {
    font-size: 3.2rem;
  }
  main section.mainview-page + .area {
    padding-top: 30px;
  }
  main section.mainview-page-about {
    border-radius: 0 0 0 200px;
  }
  main section.mainview-page-about .view-gallery {
    border-radius: 0 0 0 200px;
  }
}
main section.area {
  padding: 150px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  main section.area {
    padding: 50px 0;
  }
  main section.mainview .pic {
    order: 1;
    width: 340px;
    height: 195px;
    margin-left: 0px;
  }
}
main section.area#area_calendar {
  padding-top: 200px;
  padding-bottom: 0px;
}
main section.area#area_calendar .dec-circle {
  top: -200px;
  left: -200px;
  background: #246eb7;
  width: 100px;
  height: 100px;
}
main section.area#area_calendar .container {
  display: flex;
  gap: 30px;
}
main section.area#area_calendar .card-title {
  width: 220px;
}
main section.area#area_calendar .card-title .title {
  display: flex;
  align-items: center;
  color: #71f2d9;
  font-size: 3.2rem;
  font-weight: bold;
}
main section.area#area_calendar .card-title .title img {
  margin-right: 15px;
}
main section.area#area_calendar .card-title .title span {
  color: #8bd6ff;
}
main section.area#area_calendar .card-title .text {
  font-size: 3.2rem;
  margin: 10px 0 20px 0;
  text-align: center;
  font-weight: bold;
}
main section.area#area_calendar .con {
  width: calc(100% - 220px);
}
main section.area#area_calendar .owl-live .owl-nav button.owl-prev {
  left: -30px;
}
main section.area#area_calendar .owl-live .owl-nav button.owl-next {
  right: -30px;
}
@media screen and (max-width: 767px) {
  main section.area#area_calendar .container {
    flex-direction: column;
  }
  main section.area#area_calendar .card-title,
  main section.area#area_calendar .con {
    width: 100%;
  }
  main section.area#area_calendar .card-title .title {
    justify-content: center;
  }
  main section.area#area_calendar .card-title .btn {
    display: inline-block;
    width: auto;
  }
  main section.area#area_calendar .owl-live .owl-nav button.owl-prev {
    left: 0px;
  }
  main section.area#area_calendar .owl-live .owl-nav button.owl-next {
    right: 0px;
  }
  main section.area#area_calendar .owl-live .card {
    height: 230px;
  }
}
main section.area#area_news .dec-circle {
  width: 60px;
  height: 60px;
  right: 400px;
  top: 100px;
  background: #51b670;
}
main section.area#area_news .news-promote {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
main section.area#area_news .news-promote .area-sub-title h3 {
  font-size: 1.8rem;
}
main section.area#area_news .news-promote .share-area {
  display: flex;
  align-items: center;
}
main section.area#area_news .area-sub-title h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 1200px) {
  main section.area#area_news {
    padding-bottom: 80px;
  }
  main section.area#area_news .news-promote {
    flex-direction: column;
  }
  main section.area#area_news .news-promote .area-sub-title .pic,
  main section.area#area_news .news-promote .area-sub-title .con {
    flex-shrink: 0;
  }
  main section.area#area_news .news-promote .area-sub-title .con {
    width: 75px;
  }
  main section.area#area_news .news-promote .marquee .inner .text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  main section.area#area_news .news-promote .share-area {
    margin-top: 20px;
    align-items: center;
  }
  main section.area#area_news .news-promote .share-area ul.list-share {
    flex-wrap: wrap;
    margin-left: 10px;
    gap: 5px;
  }
}
@media screen and (max-width: 767px) {
  main section.area#area_news .news-promote .share-area {
    align-items: flex-start;
  }
  main section.area#area_news .news-promote .share-area ul.list-share {
    gap: 0px;
  }
  main section.area#area_news .news-promote .share-area ul.list-share li {
    margin: 0 0 10px 10px;
  }
}
main section.area#area_online {
  position: relative;
  padding-top: 0px;
}
main section.area#area_online .dec-circle {
  background: #51b670;
  right: 200px;
  top: 50%;
}
main section.area#area_online .area-title {
  margin-bottom: 10px;
  align-items: center;
}
main section.area#area_online .area-title .con h2 {
  font-size: 3.2rem;
}
main section.area#area_online .owl-online .owl-nav button {
  border: none !important;
  background: none !important;
  top: calc(50% - 17.5px);
}
main section.area#area_online .owl-online .owl-nav button img {
  filter: none;
}
main section.area#area_online .owl-online .owl-nav button.owl-prev {
  left: -150px;
}
main section.area#area_online .owl-online .owl-nav button.owl-next {
  right: -150px;
}
@media screen and (max-width: 1200px) {
  main section.area#area_online {
    padding-bottom: 150px;
  }
  main section.area#area_online p {
    margin-top: 20px;
  }
  main section.area#area_online .owl-online {
    margin-top: 20px;
  }
  main section.area#area_online .owl-online .owl-nav button {
    top: 160px;
  }
  main section.area#area_online .owl-online .owl-nav button img {
    width: 80px;
  }
  main section.area#area_online .owl-online .owl-nav button.owl-prev {
    left: 15px;
  }
  main section.area#area_online .owl-online .owl-nav button.owl-next {
    right: 15px;
  }
}
main section.area#area_show {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/bg_show.jpg");
  position: relative;
}
main section.area#area_show .dec-circle {
  background: #246eb7;
  left: 100px;
  top: 0px;
  width: 50px;
  height: 50px;
}
main section.area#area_show .dec {
  position: absolute;
  top: -150px;
  right: -100px;
}
main section.area#area_show .dec img {
  width: 390px;
}
main section.area#area_show .card-show .card-body ul.list-tag,
main section.area#area_show .card-show .card-body .text {
  display: none !important;
}
main section.area#area_show .owl-show .owl-stage {
  display: flex;
}
main section.area#area_show .owl-show .owl-stage .owl-item {
  float: none;
}
main section.area#area_show .owl-show .owl-stage .owl-item .card-show {
  width: 300px;
  transform: scale(0.9);
  margin-top: 90px;
  margin-bottom: 0px;
}
main section.area#area_show .owl-show .owl-stage .owl-item .card-show .title {
  text-align: center;
  font-size: 1.6rem;
}
main section.area#area_show .owl-show .owl-stage .owl-item.active .card-show {
  transform: scale(1);
}
main
  section.area#area_show
  .owl-show
  .owl-stage
  .owl-item.active:last-child
  .card-show {
  transform: scale(0.9);
}
main section.area#area_show .owl-show .owl-stage .owl-item.center .card-show {
  width: 400px;
  margin-top: 0px;
}
main
  section.area#area_show
  .owl-show
  .owl-stage
  .owl-item.center
  .card-show
  .card-body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/bg_card_live2.png");
}
main
  section.area#area_show
  .owl-show
  .owl-stage
  .owl-item.center
  .card-show
  .card-body
  ul.list-tag {
  display: flex;
}
main
  section.area#area_show
  .owl-show
  .owl-stage
  .owl-item.center
  .card-show
  .card-body
  .title {
  text-align: left;
  font-size: 2.4rem;
}
main section.area#area_show .card-show.active .card-body .text {
  display: block;
}
@media screen and (max-width: 767px) {
  main section.area#area_show .dec {
    top: -30px;
    right: -20px;
  }
  main section.area#area_show .dec img {
    width: 100px;
  }
  main section.area#area_show .owl-show .owl-stage {
    display: flex;
  }
  main section.area#area_show .owl-show .owl-stage .owl-item .card-show,
  main section.area#area_show .owl-show .owl-stage .owl-item.center .card-show {
    width: 100%;
  }
}
main section.area#area_msg {
  padding-bottom: 200px;
}
main section.area#area_msg .dec-circle1 {
  background: #246eb7;
  width: 100px;
  height: 100px;
  top: 130px;
  right: 200px;
  z-index: 0;
}
main section.area#area_msg .dec-circle2 {
  background: #51b670;
  width: 70px;
  height: 70px;
  bottom: 80px;
  left: 150px;
  animation: ani-bounce ease-in-out 2s infinite;
}
main section.area#area_source {
  padding-top: 0px;
}
main section.area#area_source .source-gallery-wrapper {
  position: relative;
  padding-top: 300px;
}
main section.area#area_source .area-title {
  margin-bottom: 0px;
}
main section.area#area_source .view-gallery {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  bottom: 0px;
  overflow: hidden;
}
main section.area#area_source .view-gallery .dec img {
  width: 100%;
  height: auto;
}
main section.area#area_source .container {
  position: relative;
  z-index: 2;
}
main section.area#area_source .container .area-title {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
main section.area#area_source .owl-resource .owl-stage-outer {
  padding-top: 70px;
}

.resourceItemsContainer {
  display: flex;
  justify-content: space-around;
  padding-top: 70px;
}
.resourceItemsContainer.items-3 .card:nth-child(1),
.resourceItemsContainer.items-3 .card:nth-child(3) {
  margin-top: 40px;
}
.resourceItemsContainer.items-4 .card:nth-child(1),
.resourceItemsContainer.items-4 .card:nth-child(4) {
  margin-top: 40px;
}
.resourceItemsContainer.items-5 .card:nth-child(1),
.resourceItemsContainer.items-5 .card:nth-child(5) {
  margin-top: 80px;
}
.resourceItemsContainer.items-5 .card:nth-child(2),
.resourceItemsContainer.items-5 .card:nth-child(4) {
  margin-top: 20px;
}


main section.area#area_source #area_mkt_msg {
  padding-top: 30px;
}
main section.area#area_source #area_mkt_msg .area-sub-title {
  margin-bottom: 20px;
}
main section.area#area_source #area_mkt_msg .area-sub-title .con h3 {
  color: #b6fff1 !important;
  font-size: 2.4rem;
}
main section.area#area_source #area_mkt_msg .area-sub-title .con h3 span {
  color: #8bd6ff !important;
}
main section.area#area_source #area_mkt_msg .owl-mkt-msg .owl-nav button {
  width: 45px;
  height: 45px;
  top: calc(50% - 22.5px);
}
main section.area#area_source #area_mkt_msg .owl-mkt-msg .owl-nav button img {
  width: 10px;
}
main
  section.area#area_source
  #area_mkt_msg
  .owl-mkt-msg
  .owl-nav
  button.owl-prev {
  left: -65px;
}
main
  section.area#area_source
  #area_mkt_msg
  .owl-mkt-msg
  .owl-nav
  button.owl-next {
  right: -65px;
}
@media screen and (max-width: 1200px) {
  main section.area#area_source .source-gallery-wrapper {
    padding-top: 100px;
  }
  main section.area#area_source .view-gallery .pic {
    min-height: 800px;
  }
  main section.area#area_source .owl-resource {
    margin-top: 40px;
  }
  main section.area#area_source #area_mkt_msg .owl-mkt-msg .owl-nav button {
    width: 35px;
    height: 35px;
  }
  main section.area#area_source #area_mkt_msg .owl-mkt-msg .owl-nav button img {
    width: 10px;
  }
  main section.area#area_source #area_mkt_msg .owl-mkt-msg .owl-nav .owl-prev {
    left: 0px;
  }
  main section.area#area_source #area_mkt_msg .owl-mkt-msg .owl-nav .owl-next {
    right: 0px;
  }
}
main section.area.area-program h2.area-title {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 30px;
}
main section.area.area-program h2.area-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}
main section.area.area-program h2.area-title.text-center::after {
  margin: 20px auto 0 auto;
}
main section.area.area-program .card {
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  main section.area.area-program h2.area-title {
    font-size: 3.2rem;
  }
}
main section.area#area_program_info,
main section.area.area-program-story {
  position: relative;
  height: 100vh;
}
main section.area#area_program_info .view-gallery,
main section.area.area-program-story .view-gallery {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
main section.area#area_program_info .content,
main section.area.area-program-story .content {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#262626, rgba(38, 38, 38, 0), #262626);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  line-height: 1.9;
}
main section.area#area_program_info .content .inner,
main section.area.area-program-story .content .inner {
  padding: 60px 40px;
  background-image: linear-gradient(to right, #262626, rgba(38, 38, 38, 0));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
main section.area#area_program_info .content p,
main section.area.area-program-story .content p {
  margin: 20px 0;
}
main section.area#area_program_cast,
main section.area.area-program-cast {
  background: rgba(0, 0, 0, 0.1);
}
main section.area#area_program_cast::before,
main section.area.area-program-cast::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  left: 0px;
  top: 0px;
}
main section.area#area_program_cast .area-title,
main section.area.area-program-cast .area-title {
  position: relative;
  z-index: 2;
}
main section.area#area_program_cast .container,
main section.area.area-program-cast .container {
  position: relative;
  z-index: 2;
}
main section.area#area_program_news .card-news-sm .con,
main section.area.area-program-news .card-news-sm .con {
  padding-left: 15px;
}
main section.area#area_program_news .card-news-sm .con .title,
main section.area.area-program-news .card-news-sm .con .title {
  padding: 0px;
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
main section.area#area_program_album,
main section.area.area-program-photos {
  background-color: rgba(0, 0, 0, 0.3);
}

footer {
  padding: 60px 0;
  position: relative;
  font-size: 16px;
}
footer .container {
  position: relative;
}
footer::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-image: linear-gradient(
    to right,
    rgba(85, 85, 85, 0),
    #555555,
    rgba(85, 85, 85, 0)
  );
  position: absolute;
  top: 0px;
  left: 0px;
}
footer a.logo img {
  height: 70px;
}
footer ul.list-contact {
  padding: 0px;
  margin: 30px 0 0 0;
  list-style: none;
}
footer ul.list-contact li {
  margin: 0 0 10px 0;
}
footer ul.list-contact li a.link {
  color: #8bd6ff;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}
footer h3 {
  font-size: 2rem;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer h3 .icon {
  display: none;
  transition: all ease-in-out 0.3s;
}
footer h3 .icon img {
  height: 8px;
}
footer ul.list-menu {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
footer ul.list-menu li {
  margin-bottom: 10px;
}
footer ul.list-menu li a {
  transition: all 0.3s ease-out;
}
footer .copyright {
  font-size: 1.2rem;
  color: #999;
  position: absolute;
  top: 230px;
  left: 0px;
}
@media screen and (max-width: 1200px) {
  footer a.logo {
    display: block;
    text-align: center;
  }
  footer ul.list-contact {
    margin-bottom: 40px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  footer .copyright {
    position: static;
    top: auto;
    left: auto;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 40px 15px;
  }
  footer a.logo img {
    height: auto;
    width: 100%;
    max-width: 315px;
  }
  footer h3 {
    margin-bottom: 0px;
  }
  footer h3 .icon {
    display: flex;
  }
  footer h3.active .icon {
    transform: rotate(180deg);
  }
  footer h3.active + ul.list-menu {
    display: block;
  }
  footer ul.list-contact {
    width: 100%;
  }
  footer ul.list-menu {
    display: none;
    margin-top: 10px;
  }
} /*# sourceMappingURL=main.css.map */

/**************************************************/
/**************************************************/

@media (min-width: 1200px) {
  nav ul > li:hover .sub-menu {
    display: flex !important;
  }
}

.confirm-button {
  border-radius: 29px !important;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  padding: 8px 32px;
  text-wrap: nowrap;
  background-image: radial-gradient(
      80% 120% at 0% 100%,
      #1fd6a8,
      transparent 50%
    ),
    radial-gradient(80% 120% at 100% 0%, #1fd6a8, transparent 50%),
    radial-gradient(#036fda, #003e7b);
  box-shadow: 0rem 2px 1px 0rem rgba(255, 255, 255, 0.25) inset,
    0rem -3px 1px 0rem rgba(0, 0, 0, 0.25) inset,
    0rem 0rem 1px 4px rgba(255, 255, 255, 0.1);
}

.cancel-button {
  border-radius: 29px !important;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  padding: 8px 32px;
  text-wrap: nowrap;
  background-image: radial-gradient(80% 120% at 0% 100%, #666, transparent 50%),
    radial-gradient(80% 120% at 100% 0%, #666, transparent 50%),
    radial-gradient(#474444, #554e4e);
  box-shadow: 0rem 2px 1px 0rem rgba(255, 255, 255, 0.25) inset,
    0rem -3px 1px 0rem rgba(0, 0, 0, 0.25) inset,
    0rem 0rem 1px 4px rgba(255, 255, 255, 0.1);
}

.confirm-button:hover,
.cancel-button:hover {
  filter: brightness(1.2);
}

.tab-button {
  display: flex;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-weight: 700;
  justify-content: center;
  box-shadow: 0 4px 10.3px 5px rgba(34, 119, 119, 0.42);
  transition: transform 0.3s;
  border-radius: 20px !important;
  align-items: center;
  background-image: radial-gradient(
      70% 200% at 0% 100%,
      rgba(47, 109, 197, 0.44),
      transparent 50%
    ),
    radial-gradient(
      100% 140% at 100% 100%,
      rgba(0, 165, 137, 0.44),
      transparent 50%
    ),
    radial-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78));
}
.tab-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3px;
  border-radius: 20px;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.4)
  );
  pointer-events: none;
}
.tab-button.active {
  background-image: radial-gradient(
      50% 200% at 0% 50%,
      rgba(47, 109, 197, 0.63),
      transparent 50%
    ),
    radial-gradient(
      250% 250% at 100% 50%,
      rgba(0, 165, 137, 0.75),
      transparent 50%
    ),
    radial-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78));
}

.t1 {
  font-size: 48px;
}
.t2 {
  font-size: 32px;
}
.t3 {
  font-size: 26px;
}
.t4 {
  font-size: 22px;
}
.t5 {
  font-size: 18px;
}
.t6 {
  font-size: 16px;
}
@media (max-width: 767px) {
  .t1 {
    font-size: 32px;
  }
  .t2 {
    font-size: 24px;
  }
  .t3 {
    font-size: 22px;
  }
  .t4 {
    font-size: 20px;
  }
  .t5 {
    font-size: 16px;
  }
  .t6 {
    font-size: 14px;
  }
}

.my-section h3 {
  margin-bottom: 0 !important;
  font-size: 4rem !important;
}
.my-section h4 {
  margin-bottom: 0 !important;
  font-size: 3.2rem !important;
  font-weight: bold;
}
.my-section p {
  margin-bottom: 0 !important;
}
.my-section ul {
  margin-bottom: 0 !important;
  list-style-type: disc;
}
.my-section .pagination {
  list-style-type: none !important;
}
.my-section a {
  cursor: pointer;
}
@media (max-width: 767px) {
  .my-section h3 {
    font-size: 2.8rem !important;
  }
  .my-section h4 {
    font-size: 2.4rem !important;
  }
}

/** swiper navigation */
.custom-swiper-navigation {
  position: absolute;
  z-index: 10;
  width: 100%;
  left: 0;
  top: 130px;
}
.custom-swiper-navigation button {
  position: absolute;
  top: calc(50% - 55px);
  outline: none;
  background-color: #262626 !important;
  border: 1px solid #fff !important;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}
.custom-swiper-navigation button img {
  filter: brightness(0) invert(1);
}
.custom-swiper-navigation button:hover {
  border-color: #8bd6ff !important;
  color: #fff;
}
.custom-swiper-navigation button:hover img {
  filter: none;
}
.custom-swiper-navigation button.swiper-button-disabled {
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .custom-swiper-navigation button {
    width: 35px;
    height: 35px;
    top: calc(50% - 20px);
  }
  .custom-swiper-navigation button img {
    width: 10px;
  }
}
.custom-swiper-navigation .swiper-btn-prev {
  left: -80px;
}
@media screen and (max-width: 1200px) {
  .custom-swiper-navigation .custom-swiper-navigation {
    left: -40px;
  }
}
@media screen and (max-width: 767px) {
  .custom-swiper-navigation .swiper-btn-prev {
    left: 0px;
  }
}
.custom-swiper-navigation .swiper-btn-next {
  right: -80px;
}
@media screen and (max-width: 1200px) {
  .custom-swiper-navigation .swiper-btn-next {
    right: -40px;
  }
}
@media screen and (max-width: 767px) {
  .custom-swiper-navigation .swiper-btn-next {
    right: 0px;
  }
}
.custom-swiper-navigation.swiper-button-disabled {
  display: none;
}

.custom-swiper-navigation button {
  top: calc(50% - 22px);
}
@media screen and (max-width: 767px) {
  .custom-swiper-navigation button {
    top: calc(50% - 10px);
  }
  .custom-swiper-navigation button.swiper-btn-prev {
    left: -15px;
  }
  .custom-swiper-navigation button.swiper-btn-next {
    right: -15px;
  }
}

/* ========================================
   出租服務相關樣式
   ======================================== */

/* 介紹區塊 */
.rental-intro {
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rental-intro div {
  position: relative;
  padding-right: 20px;
}

.rental-intro div .circle1 {
  position: absolute;
  top: 22px;
  left: 30px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(#073f92, #5194f1);
}

.rental-intro div .circle2 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  outline: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  backdrop-filter: blur(4px);
}

.rental-intro h3 .highlight-1 {
  color: #71f2d9;
}

.rental-intro h3 .highlight-2 {
  color: #8bd6ff;
}

@media (max-width: 48rem) {
  .rental-intro {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .rental-intro div .circle1 {
    width: 24px;
    height: 24px;
    left: 25px;
    top: 14px;
  }

  .rental-intro div .circle2 {
    width: 40px;
    height: 40px;
  }
}

/* 介紹圖片區塊 */
.rental-intro-image {
  overflow: hidden;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
}

.rental-intro-image .image {
  height: 400px;
  background-size: cover !important;
  background-position: center center;
}

.rental-intro-image .description {
  background: #303030;
  padding: 40px 80px;
}

@media (max-width: 48rem) {
  .rental-intro-image .image {
    height: 250px;
  }

  .rental-intro-image .description {
    padding: 20px 32px;
  }
}

.rental-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rental-gallery-item {
  height: 450px;
  border-radius: 1.25rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rental-gallery-item .overlay {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: opacity 0.4s;
  opacity: 0;
}

.rental-gallery-item:hover .overlay {
  opacity: 1;
}

@media (max-width: 48rem) {
  .rental-gallery {
    grid-template-columns: 1fr;
  }

  .rental-gallery-item {
    height: 300px;
  }
}

/* 空間詳情區塊 */
.rental-space-detail {
  font-size: 3rem;
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.rental-space-detail .block {
  flex: 1;
  border-right: 1px solid #ffffff;
  padding: 20px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rental-space-detail .block .value {
  display: flex;
  gap: 20px;
  align-items: end;
  line-height: 1;
  text-align: center;
}

@media (max-width: 48rem) {
  .rental-space-detail {
    padding-top: 20px;
  }

  .rental-space-detail .block {
    border-right: 0;
    font-size: 30px;
    gap: 20px;
  }
}

/* 聯絡區塊 */
.rental-contact {
  font-size: 2.2rem;
  margin-top: 80px;
  border-radius: 1.25rem;
  background-color: rgba(249, 249, 249, 0.43);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.rental-contact .title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rental-contact .title .circle {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: linear-gradient(to right, #073f92, #5194f1);
}

@media (min-width: 48rem) {
  .rental-contact .title {
    border-right: 1px solid #ffffff;
    padding-right: 40px;
  }
}

@media (max-width: 48rem) {
  .rental-contact {
    margin-top: 40px;
    padding: 32px 40px;
    flex-direction: column;
    gap: 20px;
  }

  .rental-contact .title {
    width: 100%;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
    justify-content: center;
  }

  .rental-contact .info {
    display: flex;
    text-align: center;
    flex-direction: column;
  }
}

/* 表格區塊 */
.rental-table {
  display: flex;
  flex-direction: column;
  font-size: 2.6rem;
  text-align: center;
}

.rental-table .item {
  display: flex;
  flex-direction: column;
}

.rental-table .item .title {
  background: rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

.rental-table .item div {
  border-bottom: 1px solid rgba(166, 166, 166, 0.63);
  padding: 16px;
}

@media (max-width: 48rem) {
  .rental-table .item div {
    padding: 12px;
  }
}

/* 設備卡片容器 */
.rental-equipment-card-container {
  margin: 0 auto;
  max-width: calc(4 * 362px + 3 * 20px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  row-gap: 40px;
}

.rental-equipment-card {
  overflow: hidden;
  position: relative;
  width: 362px;
  height: 460px;
  border-radius: 20px;
  background: linear-gradient(to bottom, #ffffff30, #ffffff00);
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rental-equipment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 20px;
  background: linear-gradient(to bottom, #ffffff00, rgba(255, 255, 255, 0.4));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.rental-equipment-card .image {
  flex: 0 0 auto;
  height: 180px;
  border-radius: 20px;
  background-size: cover !important;
  background-position: center center;
}

.rental-equipment-card .description {
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 48rem) {
  .rental-equipment-card-container {
    row-gap: 20px;
  }

  .rental-equipment-card {
    width: 100%;
  }
}

/* 區塊樣式 */
.section-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-block > .title {
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-block > .title > .line {
  flex: 1;
  height: 1px;
  background-color: #a6a6a6;
}

.section-block .title .text {
  border-radius: 1.25rem;
  background-color: #787878;
  padding: 10px 20px;
  text-align: center;
}

.section-block .title .text h4 {
  padding: 0.25rem 0.75rem;
}

@media (min-width: 48rem) {
  .section-block .title .text {
    min-width: 478px;
  }
}

@media (max-width: 48rem) {
  .section-block {
    gap: 20px;
  }

  .section-block > .title {
    padding-top: 60px;
  }

  .section-block .title .text {
    padding: 8px 40px;
  }

  .section-block .title .text h4 {
    padding: 0 0.5rem;
  }
}

/* 表格樣式 */
.section-table {
  width: 100%;
  min-width: 1200px;
}

.section-table :where(th, td) {
  border-bottom: 1px solid rgba(166, 166, 166, 0.63) !important;
  padding: 20px;
}

.section-table :where(thead > tr) {
  background: rgba(0, 0, 0, 0.2);
}

.section-table :where(thead > tr > th):first-child {
  padding-left: 40px !important;
}

.section-table :where(thead > tr > th):last-child {
  padding-right: 40px !important;
}

.section-table :where(tbody > tr):nth-of-type(even) {
  background: rgba(0, 0, 0, 0.2);
}

.section-table :where(tbody > tr > td):first-child {
  padding-left: 40px !important;
}

.section-table :where(tbody > tr > td):last-child {
  padding-right: 40px !important;
}

/* 搜尋列樣式 */
.search-bar {
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 10.2px 3px rgba(39, 118, 189, 0.55);
  padding: 20px;
  display: flex;
  gap: 30px;
  font-size: 2.2rem;
}

.search-bar :where(.form-select) {
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  min-width: 100px;
  line-height: 1;
}

.search-bar :where(.form-control) {
  position: relative !important;
  padding: 10px 0;
  border-radius: 10px !important;
  border: 1px solid #cccccc !important;
  text-align: center;
  line-height: 1 !important;
}

/* 聯絡區塊樣式 */
.contact-section {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 2.2rem;
}

@media (min-width: 1060px) {
  .contact-section {
    margin-left: auto;
    margin-right: auto;
    width: 1060px;
  }
}

.contact-section > .title {
  position: relative;
  margin-bottom: 10px;
  margin-right: auto;
  padding-right: 60px;
  font-weight: bold;
}

.contact-section > div > .title {
  position: relative;
  margin-bottom: 10px;
  margin-right: auto;
  padding-right: 60px;
  font-weight: bold;
}

.contact-section > .control {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-section > .control > .name {
  flex: 0 0 auto;
  width: 110px;
  text-align: right;
}

@media (max-width: 24rem) {
  .contact-section > .control > .name {
    width: 90px;
  }
}

.contact-section > .control > input.form-control {
  border-radius: 29px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  text-align: left !important;
}

@media (min-width: 36rem) {
  .contact-section > .control > input.form-control {
    width: 400px !important;
  }
}

.contact-section > .control > select.form-select {
  border-radius: 29px !important;
  padding: 10px 16px !important;
  text-align: left !important;
  line-height: 1 !important;
}

@media (min-width: 36rem) {
  .contact-section > .control > select.form-select {
    width: 400px !important;
  }
}

.contact-section > .control > textarea.form-control {
  overflow: hidden;
  width: 600px !important;
  min-height: 200px !important;
  border-radius: 29px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  text-align: left !important;
}

/* 聯絡分隔線 */
.contact-divider {
  margin-top: 40px;
  height: 1px;
  background: #a6a6a6;
}

/* 關於卡片樣式 */
.about-card {
  width: 362px;
  height: 200px;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.05);
  padding: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s;
}

@media (max-width: 48rem) {
  .about-card {
    width: 100%;
  }
}

@media (min-width: 48rem) {
  .about-card:hover {
    transform: translateY(-5%);
  }
}

.about-card .title {
  font-weight: bold;
  text-align: center;
  white-space: break-spaces;
}
