@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap');

body,
html,
nav,
article {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
    color: #333;
}

article.default {
    background-color: #f9f9f9;
}

article h2,
article h3 {
    letter-spacing: 0.1em;
}

article p {
    letter-spacing: 0.15em;
    line-height: 1.8;
}

/* ----------------------- */
/*         navbar
-------------------------- */
@media (min-width: 1200px){
    .navbar .container{
        width: 90%;
    }
}

.navbar {
    background-color: #fff;
}

.navbar-brand img {
    margin-top: 50px;
}

.navbar-nav li a {
    font-size: 18px;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    color: #474747;
}

.navbar-nav li a::after {
    content: '';
    width: 0;
    height: 0;
    background: linear-gradient(to right, #e0bd5e, #e0be5f, #ca9909);
    position: absolute;
    bottom: 6px;
    left: 50%;
    right: -50%;
    opacity: 0;
    transition: .4s;
}

.navbar-nav li a:hover::after {
    width: 100%;
    height: 3px;
    left: 0;
    right: 0;
    opacity: 1;
}

ul.nav_section {
    text-align: right;
    margin-top: 20px;
    margin-bottom: 5px;
}

ul.nav_section li {
    display: inline-block;
    margin: 0 10px;
}

ul.nav_section li.link{
    font-size: 18px;
    font-weight: 600;
    margin: 5px 16px;
}

@media screen and (max-width:768px) {
    ul.nav_section li.link{
        margin: 5px 10px;
    }
}

@media screen and (max-width:414px) {
    ul.nav_section li {
        margin: 0 2.5px;
    }

    ul.nav_section li.link{
        margin: 5px 3px;
    }
}

ul.nav_section li.link a{
    color: #264682;
    vertical-align: middle;
}

ul.nav_section li.link a:hover,
ul.nav_section li.link a:focus{
    color: #264682;
    text-decoration: none;
}

@media (max-width: 768px) {
    .navbar-brand img {
        margin-top: 0;
    }

    ul.nav_section {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .navbar-toggle {
        background-color: #1a234c;
        margin-top: 25px;
        margin-right: 27px;
    }

    .navbar-toggle .icon-bar {
        background-color: #fff;
    }
}

/* ----------------------- */
/*      selection01
-------------------------- */
.selection01 .service_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 100px 0 80px 0;
}

.selection01 .service_item {
    flex-basis: 250px;
    margin: 10px;
    background-color: #fff;
    text-align: center;
    box-shadow: 3px 3px 10px #ccc;
    overflow: hidden;
}
@media(max-width:1366px){
    .selection01 .service_item{
        flex-basis: 200px;
        margin: 10px 15px;
    }
}


.selection01 .service_img {
    background: linear-gradient(to right bottom, #cc9d11, #eacd83, #cd9f15);
    height: 215px;
    display: block;
}

.selection01 .service_item:hover .service_img {
    background: #264682;
}

.selection01 .service_img01,
.selection01 .service_img02,
.selection01 .service_img03,
.selection01 .service_img04,
.selection01 .service_img05 {
    position: relative;
}

.selection01 .service_img01::before,
.selection01 .service_img02::before,
.selection01 .service_img03::before,
.selection01 .service_img04::before,
.selection01 .service_img05::before {
    content: '';
    background-size: cover;
    width: 115px;
    height: 115px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.selection01 .service_img01::before {
    background-image: url(../../images/icon_Blue_01.png);
}

.selection01 .service_img02::before {
    background-image: url(../../images/icon_Blue_02.png);
}

.selection01 .service_img03::before {
    background-image: url(../../images/icon_Blue_03.png);
}

.selection01 .service_img04::before {
    background-image: url(../../images/icon_Blue_04.png);
}

.selection01 .service_img05::before {
    background-image: url(../../images/icon_Blue_05.png);
}

.selection01 .service_item:hover .service_img01::before {
    background-image: url(../../images/icon_white_01.png);
}

.selection01 .service_item:hover .service_img02::before {
    background-image: url(../../images/icon_white_02.png);
}

.selection01 .service_item:hover .service_img03::before {
    background-image: url(../../images/icon_white_03.png);
}

.selection01 .service_item:hover .service_img04::before {
    background-image: url(../../images/icon_white_04.png);
}

.selection01 .service_item:hover .service_img05::before {
    background-image: url(../../images/icon_white_05.png);
}

.selection01 .service_txt {
    position: relative;
    padding: 30px 20px;
    width: 100%;
    display: block;
}

.selection01 .service_txt::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-left: 126px solid #fff;
    border-right: 125px solid #fff;
    transform: translateY(-100%);
    left: 50%;
    transform: translateX(-50%);
}

.selection01 .service_txt h3 {
    font-size: 16px;
}

.selection01 .service_btn a {
    text-decoration: none;
    color: rgba(39, 39, 39, 0.502);
}

.selection01 .service_btn a:hover {
    text-decoration: none;
    color: #264682;
}

@media (max-width: 1180px) {
    .selection01 .service_item {
        flex-basis: 200px;
        margin: 10px 15px;
    }
    .selection01 .service_img{
        height: 160px;
    }

    .selection01 .service_img01::before,
    .selection01 .service_img02::before,
    .selection01 .service_img03::before,
    .selection01 .service_img04::before,
    .selection01 .service_img05::before {
        width: 80px;
        height: 80px;
    }

    .selection01 .service_txt::before {
        border-left: 105px solid #fff;
        border-right: 105px solid #fff;
    }
}


@media (max-width: 768px) {
    .selection01 .service_box {
        margin: 30px 0 50px 0;
    }
}


/* ----------------------- */
/*      selection02
-------------------------- */
.selection02 {
    margin-top: 20px;
    margin-bottom: 200px;
    position: relative;
    z-index: 1;
}

.selection02::after {
    content: '';
    width: 100%;
    height: 400px;
    background-color: #eceff5;
    position: absolute;
    left: 0;
    bottom: -200px;
    z-index: -1;
}

.selection02 .about_box {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.selection02 .about_img {
    position: absolute;
    left: 15%;
    bottom: -24%;
    z-index: 1;
}

.selection02 .about_info {
    width: 60%;
    height: 450px;
    padding: 45px 0 30px 200px;
    background-color: #264682;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.selection02 .about_info::after {
    content: '';
    background-image: url(../../images/icon_about.png);
    background-size: cover;
    width: 170px;
    height: 185px;
    position: absolute;
    right: 15%;
    bottom: -20px;
}

.selection02 .about_txt {
    width: 65%;
}

.selection02 .about_txt h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.selection02 .about_txt h2::after {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #face09, #fffcdb, #ca9909);
    position: absolute;
    left: 0;
    bottom: 0;
}

.selection02 .about_txt p {
    font-size: 16px;
    text-align: justify;
}

.selection02 .about_btn {
    margin-top: 28px;
}

.selection02 .about_btn a {
    text-decoration: none;
    background: linear-gradient(to right, #cc9d12, #e9cc81, #c89500);
    color: #333;
    font-size: 14px;
    padding: 8px 18px;
    transition: .4s;
}

.selection02 .about_btn a:hover {
    background: linear-gradient(to right, #f3d58b, #e0ac10, #f0d38a);
}

@media (max-width: 1720px) {
    .selection02 {
        margin-bottom: 280px;
    }

    .selection02::after {
        height: 450px;
        bottom: -280px;
    }

    .selection02 .about_img {
        left: 5%;
    }
}

@media (max-width: 1300px) {
    .selection02 .about_img {
        left: 0;
        bottom: -30px;
    }

    .selection02 .about_info {
        height: 500px;
        padding: 35px 0 30px 200px;
    }
}

@media (max-width: 1180px) {
    .selection02 .about_img {
        left: 6%;
        bottom: -5%;
    }

    .selection02 .about_img img {
        width: 70%;
    }

    .selection02 .about_info {
        height: 450px;
        padding: 25px 0 30px 135px;
    }

    .selection02 .about_txt {
        width: 80%;
    }

    .selection02 .about_txt p {
        font-size: 14px;
    }
}

@media (max-width: 820px) {
    .selection02 {
        margin-bottom: 0;
    }

    .selection02::after {
        display: none;
    }

    .selection02 .about_box {
        flex-direction: column;
    }

    .selection02 .about_img {
        position: initial;
    }

    .selection02 .about_img img {
        width: 100%;
    }

    .selection02 .about_info {
        width: 100%;
        height: auto;
        padding: 15px 15px 45px 15px;
    }

    .selection02 .about_info::after {
        width: 150px;
        height: 165px;
        right: 6%;
    }

    .selection02 .about_txt {
        width: 100%;
    }

    .selection02 .about_txt h2 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .selection02 .about_txt p {
        font-size: 14px;
    }
}


/* ----------------------- */
/*     selection03
-------------------------- */
.selection03 {
    background-color: #eceff5;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.selection03::before {
    content: '';
    background-image: url(../../images/icon_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 504px;
    height: 624px;
    position: absolute;
    top: -25%;
    left: -5%;
    z-index: -1;
}

.selection03_item #rwdnews_list {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}

.selection03_item #rwdnews_list .newscontent {
    width: 90%;
    background-color: #fff;
    padding: 12px 20px;
}
.selection03_item #rwdnews_list .newscontent p{
    display: none;
}
.selection03_item #rwdnews_list ul {
    width: calc(100% / 3);
    margin: 15px 0;
    position: relative;
}

.selection03_item ul::after {
    content: '';
    background-image: url(../../images/icon_morebtn.png);
    background-size: cover;
    width: 12px;
    height: 39px;
    position: absolute;
    top: 25px;
    right: 65px;
}

.selection03_item #rwdnews_list .pic {
    display: none;
}

.selection03_item #rwdnews_list span.ctydate {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.selection03_item #rwdnews_list span.ctydate .newsDate {
    font-size: 16px;
    margin-right: 7px;
    color: #27272780;
}

.selection03_item #rwdnews_list .newscontent h4 {
    width: calc(95% - 80px);
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.selection03_item #rwdnews_list .newscontent h4 a {
    text-decoration: none;
    color: #333;
}

.selection03_item #rwdnews_list .newscontent h4 a:hover {
    color: #264682;
}

.selection03-1 #rwdnews_list .card-category,
.selection03-2 #rwdnews_list .card-category,
.selection03-3 #rwdnews_list .card-category,
.selection03-4 #rwdnews_list .card-category,
.selection03-5 #rwdnews_list .card-category,
.selection03-6 #rwdnews_list .card-category {
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    letter-spacing: 0.12rem;
}

.selection03-1 #rwdnews_list .card-category {
    background-color: #275bbd;
}

.selection03-2 #rwdnews_list .card-category {
    background-color: #2790bd;
}

.selection03-3 #rwdnews_list .card-category {
    background-color: #2b88dd;
}

.selection03-4 #rwdnews_list .card-category {
    background-color: #bc462d;
}

.selection03-5 #rwdnews_list .card-category {
    background-color: #c67328;
}

.selection03-6 #rwdnews_list .card-category {
    background-color: #924c1a;
}

.selection03_btn {
    text-align: right;
    margin-top: 15px;
    margin-right: 40px;
}

.selection03_btn a {
    text-decoration: none;
    border: 1px solid #333;
    color: #333;
    padding: 5px 15px;
}

.selection03_btn a:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 820px) {
    .selection03::before {
        top: 70px;
    }
}

@media (max-width: 768px) {
    .selection03 {
        padding: 80px 15px;
    }

    .selection03::before {
        width: 325px;
        height: 403px;
        top: 30px;
        left: -20%;
    }

    .selection03_item #rwdnews_list {
        flex-direction: column;
    }

    .selection03_item #rwdnews_list ul {
        width: 100%;
    }

    .selection03_item #rwdnews_list .newscontent {
        width: 100%;
    }

    .selection03_item ul::after {
        right: 25px;
    }

    .selection03_btn {
        margin-right: 0;
    }
}

.selection04{
    background-color: #eceff5;
    padding: 60px 15px 40px 15px;
}


/* ----------------------- */
/*        footer
-------------------------- */
/* .container-fluid .footer_row{
    width: 100%;
    position: absolute;
    top: 100%;
    z-index: 1;
} */

.footer_box {
    background-color: #272727;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px 0;
}

.footer_item {
    margin: 0 22px;
}

.footer_item ul li img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.footer_item h3 {
    font-size: 18px;
    font-weight: 600;
}

.footer_item ul li {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.footer_item h3,
.footer_item h3 a,
.footer_item ul li,
.footer_item ul li a {
    color: #fff;
    letter-spacing: 1px;
}

.copyright_box {
    background-color: #272727;
    color: #fff;
    position: relative;
}

.copyright_box::before {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #face09, #fffcdb, #ca9909);
    position: absolute;
    top: 0;
    left: 0;
}

.copyright_box p {
    margin: 10px 0;
}

@media (max-width: 820px) {
    .footer_item {
        width: 20%;
    }
}

@media (max-width: 768px) {
    .footer_box {
        flex-wrap: wrap;
    }

    .footer_item {
        width: 35%;
    }
    .footer_item:nth-of-type(5),.footer_item:nth-of-type(6){
        width: 100%;
    }
}

/* ----- 跟屁蟲 ----- */
.qklink {
    position: fixed;
    right: 35px;
    bottom: 15%;
    z-index: 100;
    margin-bottom: 5px;
}
@media (max-width: 768px) {
    .qklink {
        right: 8px;
    }
}

.qklink li a {
    font-size: 55px;
    display: block;
    text-align: center;
}

.qklink li a span.fa-facebook-square {
    color: #325aa6;
}

.qklink li a span.fa-line {
    color: #6ec151;
}

.qklink li a img{
    width: 55px;
    height: 55px;
}

/* ----- 回上層 ----- */
#gotop.gotop {
    background: linear-gradient(to right bottom, #a98d46, #e8ca7c);
    z-index: 1;
}

#gotop.gotop:hover {
    background: #264682;
}

@media (max-width: 768px) {
    #gotop.gotop {
        width: 43px;
        height: 43px;
    }

    #gotop {
        right: 8px;
    }
}


/* ----------------------- */
/*       內文 banner
-------------------------- */
.innerBanner {
    background-image: url(../../images/innerBanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 240px;
    /* overflow: hidden;
    position: relative;
    z-index: -1; */
}

/* .page-title {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 10px;
    letter-spacing: 0.25rem;
    position: absolute;
    top: 43%;
    left: 21%;
}

@media (max-width: 767px) {
    .page-title {
        font-size: 20px;
        left: 13%;
    }
} */


/* ----------------------- */
/*       內頁樣式修改
-------------------------- */
.category-wrapper,
.news-wrapper {
    font-family: 'Noto Sans TC', sans-serif;
}

.breadcrumb,
.newsbar {
    background: transparent;
    position: relative;
}

.breadcrumb::after,
.newsbar::after {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #e0bd5e, #e0be5f, #ca9909);
    position: absolute;
    left: 0;
    bottom: 0;
}

.aside-title {
    background-color: #264682;
    color: #fff;
}

aside .nav li a:hover,
aside .nav li a:focus {
    background-color: #264682;
}

aside .nav li a,
.NEWS_type li a {
    border-bottom: 1px solid #333;
}

.news_more:hover,
.news_more:focus {
    background: linear-gradient(to right, #cc9d12, #e9cc81, #c89500);
    color: #333;
}


/* ----------------------- */
/*    內頁上架-樣式修改
-------------------------- */
.DEMO {
    padding: 0 15px;
}

.DEMO p,
.DEMO ul li,
.article-content,
.article-content p,
.article-content ul li {
    font-size: 18px;
    letter-spacing: 0.1rem;
    line-height: 1.8;
}

.DEMO ul li,
.article-content ul li {
    margin: 15px 0;
}

.DEMO ul.ul-disc {
    margin-left: 2rem;
    list-style: disc;
}

.DEMO h3,
.article-content h3 {
    background-color: #eceff5;
    padding: 10px 8px;
    position: relative;
}

.DEMO h3::before,
.article-content h3::before {
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(to right bottom, #cc9d11, #eacd83, #cd9f15);
    position: absolute;
    bottom: 0;
    left: 0;
}

/* -------------news隱藏特定分類---------------- */
/* 活動花絮 */
.hidden-new-list01 #c_2,
.hidden-new-list01 #c_3,
.hidden-new-list01 #c_10,
.hidden-new-list01 #c_11,
.hidden-new-list01 #c_12,
.hidden-new-list01 #Li_4,
.hidden-new-list01 #Li_5,
.hidden-new-list01 #Li_6,
.hidden-new-list01 #Li_7{
    display: none;
}

/* 常見問題 */
.hidden-new-list02 #c_7,
.hidden-new-list02 #c_1,
.hidden-new-list02 #c_2,
.hidden-new-list02 #c_3{
    display: none;
}

/* 最新消息 */
.hidden-new-list03 #c_1,
.hidden-new-list03 #c_2,
.hidden-new-list03 #c_3,
.hidden-new-list03 #c_10,
.hidden-new-list03 #c_11,
.hidden-new-list03 #c_12,
.hidden-new-list03 #Li_4,
.hidden-new-list03 #Li_5,
.hidden-new-list03 #Li_6{
    display: none;
}

/*新式搜尋功能  */
    .searchList h1 {
        font-size: 25px;
        letter-spacing: 2px;
        border-bottom: 2px solid #2f88b0;
        padding-bottom: 10px;
        color: #2f88b0;
        font-weight: bold;
    }

    .searchList {
        font-size: 16px;
        line-height: 1.6em;

    }

    span.srhtitle,
    span.srhKeyTitle {
        font-size: 18px;
        font-weight: bold;
        line-height: 50px;
    }

    .srhProdClass,
    .srhCtyClass,
    .srhNewsClass {
        border: 1px solid #0086b8;
        font-weight: bold;
        font-size: 20px;
        font-size: 18px !important;
        border-radius: 8px;
        color: #3f51b5;
        line-height: 1.6em;
        display: none !important;
    }

    ul#clist a {
       font-size: 16px;
    height: 21px;
    overflow: hidden;
    display: block;
    margin-top:-3px;
    margin-bottom: 7px;
    }

    .pidsw {
        display: none;
    }

    .cidsw {
        display: none;
    }

    .pdcph {
      width: 55px;
       max-height: 55px;
    display: inline-block;
    vertical-align: middle;
        margin-right: 10px
    }
    .listview-list img{
       max-height: 100% !important;
    width: 100% !important;
    height: auto !important;
    }

    #clist {
        padding-bottom: 30px
    }

    #clist li {
        position: relative;
        padding:15px 10px;
            border-bottom: solid 1px #e8e8e8;
    }

    .pdcls,
    .newsDcls,
    .ctycls{
    max-height: 50px;
    overflow: hidden;
    line-height: 23px;
    display: inline-block;
    width: calc(100% - 80px);
    vertical-align: middle;
    }
    #clist .srhOthClass{
    font-weight: 600;
    font-size: 18px;
}

