@charset "UTF-8";




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

body {
    text-align: center;
    font-family: 'Noto Sans TC', 'Roboto', sans-serif;
    color: #000;
    font-size: 15px;
}



.noto-400 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
}

.noto-500 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
}

.noto-700 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 700;
}

.roboto-400 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.roboto-500 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.roboto-700 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.leishanRed {
    color: #E83820;
}

.leishanRedBg {
    background-color: #E83820;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


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


a:hover {
    opacity: 0.8;
}

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




.type {
    text-align: left;
    position: relative;
    padding-left: 0px;
    /* 调整线条与文字之间的距离 */
    font-size: 18px;
    /* 字体大小 */
    font-weight: 500;
    /* 字重 */
    color: #E83820;
    /* 文字颜色 */
    margin-bottom: 5px;
}


.lineIconForType {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    /* 调整图标与文字之间的间距 */
    /* transform: translateY(-1px); */
    /* 通过translateY微调位置 */
}



.titleSet1 {
    display: inline-block;
    text-align: left;
    margin-bottom: 20px;
}

.line-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    /* 调整图标与文字之间的间距 */
    transform: translateY(2px);
    /* 通过translateY微调位置 */
}

.titleSet1 h2 {
    display: inline-block;
    font-weight: 700;
    margin: 0;
    vertical-align: middle;
}

.titleSet1 a {
    display: inline-block;
    color: #E60012;
    margin-left: 10px;
    /* 调整链接与标题之间的间距 */
    vertical-align: bottom;
}





.myBtn {
    background-color: #E60012;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    /* 设置字体大小 */
    text-align: left;
    /* 文字居中 */
    white-space: nowrap;
    /* 防止换行 */
}

.myBtn.white {
    background-color: white;
    color: #231815;
    width: 100%;
}

.myBtn .arrow-icon {
    margin-left: 30px;
    /* 调整箭头与文字之间的距离 */
    vertical-align: middle;
    /* 使箭头与文字垂直居中对齐 */
    height: 13px;
    /* 根据需要调整图标的高度 */
    width: auto;
    /* 自动调整宽度以保持比例 */
    margin-top: -2px;
}

.myBtn .arrow-icon.share {
    height: 18px;
    width: auto;
    margin-top: -3px;
}

.myBtn.white .arrow-icon {
    margin-left: inherit;
    position: absolute;
    right: 45px;
    top: 22px;
}



a .myBtnSmall {
    background-color: #E60012;
    color: #fff;
    padding: 14px 50px;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    text-align: left;
}






a:focus {
    outline: 0;
}



/************************************* loading *************************************/

/* 設置全屏的 loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* 確保在最上層 */
}

.loading-overlay .loading {
    width: 152px;
    height: 170px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -76px;
    margin-top: -85px;
}

/* 初始化位置並設置動畫 */
.loading-overlay .loading .t1 {
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0;
    animation: t1-move 1s ease-in-out forwards;
    animation-delay: 0s; /* 第一個進場 */
}

.loading-overlay .loading .t2 {
    position: absolute;
    top: -20px;
    left: 100px;
    opacity: 0;
    animation: t2-move 1s ease-in-out forwards;
    animation-delay: 0.2s; /* 第二個進場 */
}

.loading-overlay .loading .t3 {
    position: absolute;
    top: 100px;
    left: -20px;
    opacity: 0;
    animation: t3-move 1s ease-in-out forwards;
    animation-delay: 0.4s; /* 第三個進場 */
}

.loading-overlay .loading .t4 {
    position: absolute;
    top: 100px;
    left: 100px;
    opacity: 0;
    animation: t4-move 1s ease-in-out forwards;
    animation-delay: 0.6s; /* 第四個進場 */
}

.loading-overlay .loading .bottomFont {
    position: absolute;
    top: 158.19px;
    left: 14.97px;
    opacity: 0;
    animation: show-font 1s ease-in-out forwards;
    animation-delay: 0.8s; /* 最後進場 */
    
        
}

/* 定義聚合動畫，移動到指定位置並淡入 */
@keyframes t1-move {
    from {
        top: -20px;
        left: -20px;
        opacity: 0;
    }
    to {
        top: 0.24px;
        left: 0.4px;
        opacity: 1;
    }
}

@keyframes t2-move {
    from {
        top: -20px;
        left: 100px;
        opacity: 0;
    }
    to {
        top: 1.37px;
        left: 78.5px;
        opacity: 1;
    }
}

@keyframes t3-move {
    from {
        top: 100px;
        left: -20px;
        opacity: 0;
    }
    to {
        top: 77.69px;
        left: 1.21px;
        opacity: 1;
    }
}

@keyframes t4-move {
    from {
        top: 100px;
        left: 100px;
        opacity: 0;
    }
    to {
        top: 79.85px;
        left: 83.66px;
        opacity: 1;
    }
}

@keyframes show-font {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}





/************************************* slick *************************************/

.slick-dots {
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dots li {
    width: 60px;
    /* 橫線的長度 */
    height: 3px;
    /* 橫線的高度 */
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    /* 橫線的顏色 */
}

.slick-dots li.slick-active {
    background-color: #fff;
    /* 活動橫線的顏色 */
}

.slick-dots li button {
    display: none;
    /* 隱藏預設的圓點按鈕 */
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}


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


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

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

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


#nav .navs {}

#nav .navs .oneNav {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    color: #E60012;
}

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

#nav .subNav {
    text-align: right;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 15px;
}

#nav .subNav a {
    color: #231815;
    margin-left: 30px;
}

/************************************* header *************************************/


.header {
    /*    height: 97px;*/
    border-top: solid 5px #E83820;
    text-align: left;
}

.header a .logo {
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-bottom: 15px;
}

.header .navTrigger {
    position: absolute;
    right: 15px;
    top: 36px;
    cursor: pointer;
}

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

/************************************* Banner *************************************/

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0px;
}

.slick-prev,
.slick-next {
    position: absolute;
    z-index: 100;
    top: 50%;
    width: 36px;
    height: 36px;
    background-size: cover;
    cursor: pointer;
    transform: translateY(-50%);
}

.slick-prev {
    left: 15px;
    background: url('assets/img/leftArrow.svg') no-repeat;
}

.slick-next {
    right: 15px;
    background: url('assets/img/rightArrow.svg') no-repeat;
}





.oneSliderText {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.oneSliderText h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 68px;
    line-height: 1.4;
}

.oneSliderText p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 10px;

    height: 45px;
}

.oneSliderText a .moreBtn {
    font-family: 'Roboto', sans-serif;
}

.oneSliderText a:hover .moreBtn {
    opacity: 0.5;

}


/************************************* marquee *************************************/


.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
}

.marquee-content img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    /* 在所有裝置上都保持20px間距 */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/************************************* fourPart *************************************/

.fourPart .myPic {
    min-height: 270px;
    background-size: cover;
    background-position: center center;
}


.fourPartText {
    padding: 15px;
    text-align: left;
    color: #fff;

}

.fourPartText h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 68px;
    line-height: 1.4;
}

.fourPartText p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 15px;
    height: 45px;
}

.fourPartText a .moreBtn {
    font-family: 'Roboto', sans-serif;
}

.fourPartText a:hover .moreBtn,
.fourPartText a:hover .moreBtn2 {
    opacity: 0.5;

}


/************************************* section *************************************/

.section {
    text-align: left;
    padding-top: 30px;
    padding-bottom: 0px;
}

.section2 {
    background-color: #E60012;
    color: #fff;
}

.section3 {
    background-color: #231815;
    color: #fff;
}

.section a .oneContent {
    color: #231815;
    margin-bottom: 30px;
}

.section2 a .oneContent,
.section3 a .oneContent {
    color: #fff;
}

.section a .oneContent img {
    margin-bottom: 10px;
}

.section a .oneContent .date {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0px;
}


.section a .oneContent .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 15px;
    height: 45px;
}

.section a:hover .oneContent {
    opacity: 0.8;
}

.section .periodArea {
    display: flex;
    justify-content: space-between;
}

.section .periodArea .period {
    margin-right: 0px;
    margin-left: 0;
}

.section2 .periodArea .period {
    color: #fff;
}
.section3 .periodArea .period {
    color: #fff;
}

/************************************* togetherArea *************************************/

.togetherArea {
    padding-top: 80px;
    padding-bottom: 45px;
    text-align: left;
    position: relative;
}

.blackObliqueBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #231815;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    /* 左側高，右側低 */
    z-index: 1;
}

.togetherArea .togetherAreaTitle {
    width: 345px;
    height: auto;
}

.togetherArea .table {
    margin-bottom: 20px;
}

.togetherArea .table td {
    font-size: 15px;
}

.togetherArea .text-muted {
    color: #6c757d;
    /* 设置文本为灰色，使用Bootstrap的text-muted类 */
}

.togetherArea .table tr.no-border td {
    border-top: none;
    /* 移除第一条边框 */
}

.togetherArea .table tr:last-child td {
    border-bottom: 1px solid #dee2e6;
}


.togetherArea .oneVideo {
    margin-bottom: 30px;
}


.togetherArea .oneVideo .embed-responsive {
    margin-bottom: 5px;
}

.togetherArea .oneVideo p {
    margin-bottom: 0px;
}


.redObliqueBlock {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #E60012;
    clip-path: polygon(0 0, 100% 100%, 0 100%);

    z-index: 1;
}



/************************************* dream *************************************/

.dream {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: left;
    background-color: #E60012;
    color: #fff;

}

.dream h2 {
    text-transform: uppercase;
    font-size: 44px;
    font-weight: bold;
}

/************************************* footer *************************************/

.footer {
    border-top: 1px solid #bbb;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: left;
    color: #231815;
}

.topButton {
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
}

.topButton:hover {
    opacity: 0.6;
}

.topButton:after {
    content: url(../img/topArrow.svg);
    float: right;
    margin-left: 7px;
}

.footer .footerBottomArea {
    border-top: 1px solid #bbb;
    padding-top: 15px;
}

/************************************* list *************************************/

a .listOneIssue {
    color: #231815;
    margin-bottom: 30px;
    text-align: left;
}

a .listOneIssue img {
    margin-bottom: 10px;
}

a .listOneIssue .date {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0px;
}

a .listOneIssue .type {
    text-align: right;
    font-size: 15px;
}

a .listOneIssue .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 15px;
    height: 45px;
}

a:hover .listOneIssue {
    opacity: 0.8;
}


.periodArea {
    display: flex;
    align-items: center;
}



.periodArea .period {
   margin-left: 20px;
   font-weight: 500;
   color: #231815;
   flex-shrink: 0;
   margin-bottom: 0;
   font-family: 'Roboto', sans-serif;
}
.periodArea .type {
    flex-shrink: 0;
}




.pagination {}

.pagination .pageLeftArrow,
.pagination .pageRightArrow {
    width: 7px;
    height: auto;
    margin-top: -3px;
}

.pagination .page-link {
    color: #231815;
}

.pagination .page-link:hover {
    background-color: #eee;å
    /* 設置 hover 狀態的背景顏色 */
    color: #231815;
    /* 設置 hover 狀態的文字顏色 */
}

.pagination .page-item.active .page-link {
    background-color: #eee;
    /* 設置 active 狀態的背景顏色 */
    color: #231815;
    /* 設置 active 狀態的文字顏色 */
    border: 1px solid #ddd;
    /* 可選的邊框顏色 */
}


/************************************* detail *************************************/




.detail .container p{
    color: #333;
    line-height: 1.8;
}


.detail p.date {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
    color: #918B8A;
}

.detail .periodArea{
    align-items: baseline;
}

.detail .periodArea .period {
    font-size: 18px;
    font-weight: 500;
    color: #918B8A;
   font-family: 'Roboto', sans-serif;

}

