@charset "UTF-8";


/*



// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900

.source-sans-3-<uniquifier> {
  font-family: "Source Sans 3", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}



// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-tc-<uniquifier> {
  font-family: "Noto Sans TC", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


*/

@font-face {
    font-family: SweiShearLegCJKtc-Medium;
    src: url(https://cdn.jsdelivr.net/gh/max32002/swei-shear-leg@2.1/WebFont/CJK%20TC/SweiShearLegCJKtc-Medium.woff2) format("woff2"), url(https://cdn.jsdelivr.net/gh/max32002/swei-shear-leg@2.1/WebFont/CJK%20TC/SweiShearLegCJKtc-Medium.woff) format("woff");
}


/************************************* 共用設定 *************************************/

body {
    text-align: center;
    font-family: "Noto Sans TC", sans-serif;
    color: #3B2680;
    font-size: 16px;
    background-color: #FBFFE4;

    overflow-x: hidden;
}


h1,
.h1 {
    font-size: 40px;
    font-weight: bold;
}

h2,
.h2 {
    font-size: 32px;
    font-weight: bold;
}

h3,
.h3 {
    font-size: 28px;
    font-weight: bold;
}

h4,
.h4 {
    font-size: 24px;
    font-weight: bold;
}

h5,
.h5 {
    font-size: 20px;
    font-weight: bold;
}

h6,
.h6 {
    font-size: 16px;
    font-weight: bold;
}


hgroup h1 {
    font-family: "SweiShearLegCJKtc-Medium", sans-serif;
    font-weight: 700;

}

hgroup h4 {
    font-family: "Source Sans 3", serif;
    font-weight: bold;
}


a,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
    color: #fff;
}


a:hover {
    opacity: 0.8;
}


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

.img100 {
    width: 100%;
    height: auto;
}

a .myBtn,
.myBtn {
    font-size: 14px;
    font-weight: 700;
    color: #F2FFAA;
    background-color: #3B2680;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 999px;
    cursor: pointer;
}

a .myBtn.long,
.myBtn.long{
    text-align: center;
    display: block;
    width:100%;
     padding: 15px 30px;
}

a .myBtn.long:hover,
.myBtn.long:hover{
    opacity: 0.8;
}


/* CSS 部分 */
.followMe {
    width: 70px;
    text-align: center;
    font-size: 14px;
    color: #333;
    position: fixed;
    z-index: 30;
    right: 15px;
    bottom: 15px;
    opacity: 0;
    /* 預設隱藏 */
    visibility: hidden;
    /* 預設隱藏 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* 添加過渡效果 */
}

.followMe.show {
    opacity: 1;
    visibility: visible;
}

.followMe a img {
    width: 70px;
    height: auto;
    margin-bottom: 5px;
}

.followMe a p {
    margin: 0;
    color: #333;
}


/* 隱藏 Slick 預設箭頭 */
.slick-prev:before,
.slick-next:before {
    display: none;
}


.myPurple{
    color: #3B2680;
}

.oneLineTextLink{
   color: #3B2680;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}
.oneLineTextLink:hover{
    opacity: 0.8;
    
}


.qrcode{
   
    display: none;
    width:100px;
    height: auto;
    margin: 0 auto 15px auto;
}

/************************************* form *************************************/


/* 修改所有 input 的 placeholder 顏色 */
::placeholder {
  color: #737373 !important;
  opacity: 1; /* Firefox 需要這個 */
}

/* For IE */
:-ms-input-placeholder {
  color: #737373 !important;
}

/* For Edge */
::-ms-input-placeholder {
  color: #737373 !important;
}

label.form-label{
/*    font-weight: bold;*/
    color: #000;
}

/************************************* modal *************************************/


.myclose {
    z-index: 1000;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
}

.myclose img {
    width: 23px;
    height: 23px;
}

.modal-dialog {
    margin-top: 53px;
}

.modal-backdrop {
    background-color: #000;
    opacity: 0.7 !important;
    border: none;
}


/************************************* specific Modal *************************************/


#oneVideoModal.modal,
#privacyPolicy.modal{
    background-color: rgba(251, 255, 228, 0.8);
    /* 不透明的 #FBFFE4 */

}

#privacyPolicy .modal-content{
    border: none;
    box-shadow: none;
}


#oneVideoModal .modal-content{
    background-color: transparent;
    border: none;
    box-shadow: none;
}

#oneVideoModal .modal-body{
    background-color: transparent;
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
}

#privacyPolicy .modal-body{
    padding: 30px;
}


.privacyPolicyUl {
    list-style: none;
    /* 移除原有的列表符號 */
    padding-left: 0;
    /* 移除默認的左邊距 */
    text-align: left;
    margin-bottom: 30px;
}

.privacyPolicyUl li {
    padding-left: 30px;
    /* 為 icon 預留空間 */
    position: relative;
    /* 為絕對定位的 icon 建立參考點 */
    margin-bottom: 15px;
    /* li 之間的間距，可調整 */
    color: black;
}

.privacyPolicyUl li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    /* icon 的寬度，可依實際 icon 調整 */
    height: 15px;
    /* icon 的高度，可依實際 icon 調整 */
    background-image: url("../img/what/what2Icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



/************************************* #nav *************************************/


#nav.modal {
    background-color: rgba(251, 255, 228, 1);
    /* 不透明的 #FBFFE4 */

}

#nav .modal-dialog {
    max-width: 100%;
    margin: 0;
    margin-top: 53px;
    /*
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
*/
}


#nav .modal-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

#nav .modal-body {
    background-color: transparent;
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
}

#nav .navForM {
    font-family: "SweiShearLegCJKtc-Medium", sans-serif;
    font-weight: 700;
}

#nav .navForM a .oneNav,
#nav .navForM .oneNav {
    color: #3B2680;
    text-align: left;
    font-size: 16px;
    margin-bottom: 50px;
}

#nav .navForM a:hover .oneNav {
    opacity: 0.7;
}

#nav .navForM .oneNav ul {
    margin-top: 10px;
    list-style-type: none;
    padding-left: 0px;
}

#nav .navForM .oneNav ul li {
    display: inline-block;
    margin-right: 10px;
}

#nav .navForM .oneNav ul li a {
    color: #3B2680;
    list-style-type: none;
}

#nav a .btnForModalNav,
#nav .btnForModalNav{
    cursor: pointer;
    display: inline-block;
    border-radius: 999px;
    font-family: "SweiShearLegCJKtc-Medium", sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 15px;
    background-color: #3B2680;
    color: #FBFFE4;
}




/************************************* nav *************************************/



/* 修改 nav 的樣式 */
.nav {
    position: relative;
    background-color: rgba(59, 38, 128, 0.8);
    height: 56px;
    width: 100%;
    z-index: 1000;
    /* 確保導航列在最上層 */
    transition: all 0.3s ease;
    /* 添加平滑過渡效果 */
}

/* 新增固定導航列的樣式 */
.nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* 為了防止固定導航列時頁面內容突然跳動，添加一個占位符 */
.nav-placeholder {
    height: 56px;
    display: none;
}

.nav-placeholder.show {
    display: block;
}

/* 其他原有樣式保持不變 */
.nav .logo {
    cursor: pointer;
}

.nav .navTrigger {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 18px;
}

.nav .navTrigger:hover {
    opacity: 0.8;
}





/************************************* footer *************************************/
.footer {
    text-align: left;
    position: relative;
    background-color: #E6FF59;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 1.7;
}


.footer .logoForBottomBar {
    width: 94px;
    height: auto;
    margin-bottom: 25px;
}

.footer .shareArea {
    float: right;
    text-align: right;
}

.footer a .oneShare {
    margin-left: 15px;
}

.footer a:hover .oneShare {
    opacity: 0.7;
}

.footer .footerNavs {
    margin-bottom: 10px;
}


.footer .footerNavs a .oneNav {
    display: inline-block;
    margin-right: 25px;
    margin-bottom: 10px;
    color: black;
    font-weight: bold;
    font-size: 16px;
}

.footer .footerNavs a:hover .oneNav {
    opacity: 0.7;
}


.footer .appStoreWhite,
.footer .googlePlayWhite {
    max-width: 152px;
    height: auto;
    margin-bottom: 30px;
}

.footer .greyLine {
    height: 1px;
    border-top: 1px solid #949494;
    width: 100%;
    margin-bottom: 30px;
}

.footer .copyrightText {
    font-size: 12px;
    color: #949494;
    margin-bottom: 0px;
}




/************************************* pagination *************************************/
/* 基本數字樣式 */
.pagination .page-link {
    border: none;
    background: none;
    color: #000;
    padding: 0.5rem 0.75rem;
    font-size: 18px;
}

/* 特別設定箭頭大小 */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-size: 28px;  /* 放大箭頭 */
    line-height: 1;   /* 調整垂直對齊 */
    padding-top: 0.3rem;  /* 微調上下位置 */
}

/* 其他樣式保持不變 */
.pagination .page-item.active .page-link {
    background: none;
    color: #3B2680;
    font-weight: bold;
}

.pagination .page-item.disabled .page-link {
    background: none;
    color: #6c757d;
}

.pagination .page-link:hover {
    background: none;
    color: #3B2680;
}

.pagination .page-link:focus {
    box-shadow: none;
    background: none;
}