@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');


/*////////////////////////////// 首頁 //////////////////////////////*/

html , body{
    overflow-x: hidden;
    font-family:Arial , 'Noto Sans TC', sans-serif ;
    font-weight: 300;
    height: 100%;
}

*{
    /* outline: 1px solid red; */
}


/* 1002 */
.wrapper{
    min-height: 70%;
    display: flex;

    flex-direction: column;
    margin: 0;
    overflow: hidden;

    position: relative;

    background: linear-gradient( to bottom , #E4F9F5 0% , transparent 40% , transparent 80% , #E4F9F5 100% );
    border-top: 1px solid #155C6A;
}

/* 1002 */
.wrapper.home{
    border-top: none;
    background: linear-gradient( to bottom ,transparent  10px , #E4F9F5 10px , transparent 40% , transparent 80% , #E4F9F5 100% );
}

/* 1002 背景 */
.home .main_bg{
    background-image: url(../img/bg_main1.svg) ,url(../img/bg_main2.svg) ,url(../img/bg_main3.svg) ;
    background-repeat: no-repeat;
    background-position: left top , right top , center calc( 100% + 2px);
    background-size: auto , auto , 100%;

    padding-bottom: 40px;
}

/* 1002 浮動按鈕 ↓ */
.floating_btn{
    position: absolute;
    right: 0;
    bottom: 10px;
    z-index: 55;
}

.floating_btn ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.floating_btn li{
    border: 1px solid #fff;
    border-radius: 50px 0 0 50px;
    padding: 2px;
    padding-right: 0;
    margin: 8px 0;
}

.floating_btn li.top_btn{
    display: none;
}

.floating_btn li a{
    display: flex;
    background-color: #fff;
    color: #14635D;
    border: 1px solid #FFD517;
    border-right: none;
    border-radius: 50px 0 0 50px;
    text-align: center;
    padding: 3px;
    font-weight: 400;
    transition: 0.2s;
}

.floating_btn li a p{
    display: block;
    margin: 0 5px;
    width: 100%;
}

.floating_btn li a:hover{
    text-decoration: none;
    background-color: #fffbea;
}

@media (max-width: 991.98px){

    .floating_btn ul li{
        border-radius: 5px 0 0 5px;
    }

    .floating_btn ul li a{
        flex-direction: column;
        align-items: center;
        border-radius: 5px 0 0 5px;
    }

    .floating_btn ul li a img{
        width: 20px;
    }
    
    .floating_btn ul li a p{
        /* display: none; */
        margin: 2px;
        margin-left: 0;
        font-size: 0.9rem;
        writing-mode: vertical-lr;
        /* text-orientation: upright; */
    }

    .floating_btn ul li.top_btn p{
        display: none;
    }
}

/* 1002 浮動按鈕　↑ */




/* 頭 */
nav.navbar{
    background-image: url(../img/bg_head.svg);
    background-repeat: no-repeat;
    background-position: top right;
}


nav.navbar.navbar-expand-lg{
    display: flex;
    flex-direction: column;
}


/* 次選單 */
nav .submenu{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;

    flex-wrap: wrap;
    justify-content: flex-end;
}

nav .submenu li{
    padding-left: 15px;
}

nav .submenu li a{
    color: #206E7E;
    font-weight: 400;
}

nav .submenu .search_box .form-group{
    display: flex;
    margin: 0;

    position: relative;
}

/* 1002 */
nav .submenu .search_box .form-group input{
    border-radius: 50px;
    border: 1px solid #206E7E;
    padding: 0px 12px;
    padding-right: 35px;
    height: initial;
    width: 170px;
}

nav .submenu .search_box .form-group button{
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    padding: 0 7px;  

    border: none;
    background-color: transparent;
    border-radius: 50px;
}

nav .submenu .search_box .form-group button img{
    padding-right: 3px;
    padding-bottom: 3px;
}

nav .submenu .search_box .form-group input::placeholder{
    color: #c4c4c4;
    font-size: 0.9rem;
}


/* 主選單 */
nav .menu{
    display: flex;
    justify-content: space-between;
    width: 100%;
    transform: translateY(24px);
    z-index: 55;
}

nav .menu .nav-item{
    border: 1px solid #155C6A;
    background-color: #fff;
    border-radius: 50px;
    padding: 2px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

nav .menu .nav-item .nav-link{
    display: inline-block;
    background-color: #155C6A;
    color: #fff;
    border-radius: 50px;
    padding: 5px 10px;
    width: 100%;

    transition: 0.2s;
}

nav .menu .nav-item:hover .nav-link{
    text-decoration: none;
    background-color: #228093;
}

/* 下拉選單 */
nav .menu .dropdown-menu{
    background-color: #ffffffec;
    background: linear-gradient( #155C6A 6px , #ffffffec 6px , #ffffffec calc(100% - 6px) , #155C6A  calc(100% - 6px) );
    border-radius: 10px;
    padding: 6px 15px;
    left: 50%;
    top: calc( 100% + 3px);
    transform: translateX(-50%);
}

nav .menu .dropdown-menu .dropdown-item{
    padding: 5px 25px;
    border-radius: 50px;
    text-align: center;
    margin: 10px 0;

    transition: 0.2s;
}

nav .menu .dropdown-menu .dropdown-item:hover{
    background-color: #228093;
    color: #fff;
}



@media (max-width: 991.98px){
    /* 1002 */
    .home .main_bg{
        background-size: 220px , 110px , 100%;
    }

    nav.navbar.navbar-expand-lg{
        padding: 0;
        padding-top: 40px;
        padding-bottom: 0;
    }

    nav.navbar .container{
        position: relative;
        padding: 0 15px;
        padding-bottom: 10px;
        max-width: initial;
    }

    nav.navbar .container:nth-last-child(1){
        padding: 0;
    }

    /* 選單漢堡紐 */
    nav .navbar-toggler{
        width: 38px;
        height: 35px;
        padding: 0;
        position: absolute;
        right: 25px;
        top: -55px;;
    }
    
    nav .navbar-toggler span{
        width: 28px;
        height: 3px;
        border-radius: 50px;
        background-color: #155C6A;
        position: absolute;
        transition: 0.2s;
    }
    
    nav .navbar-toggler .line1{
        top: 7px;
        left: 4px;
        width: 25px;
    }
    
    nav .navbar-toggler .line2{
        top: 15px;
        left: 4px;
        width: 18px;
    }
    
    nav .navbar-toggler .line3{
        top: 24px;
        left: 4px;
    }

    nav .navbar-toggler .line1.add{
        width: 28px;
        top: 15px;
        transform: rotate(45deg);
    }

    nav .navbar-toggler .line2.add{
        opacity: 0;
    }

    nav .navbar-toggler .line3.add{
        top: 15px;
        transform: rotate(-45deg);
    }
    
    /* 1002 */
    nav .navbar-collapse{
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 555;
    }

    nav .submenu{
        position: absolute;
        top: -30px;
        right: 15px;
    }


    /* 主選單 */
    nav .menu{  
        transform: translateY(0px);

        border-top: 5px solid #228093;
        border-bottom: 5px solid #228093;
        background-color: #155C6A;
        padding: 15px 0;
    }

    nav .menu .nav-item{
        border: none;
        background-color: transparent;
        text-align: left;
        padding: 8px 15px;
    }

    nav .menu .nav-item .nav-link{
        background-color: transparent;
        padding: 5px 10px;
    }

    nav .menu .nav-item:hover .nav-link{
        text-decoration: none;
        background-color: #228093;

        background-color: #fff;
        color: #155C6A;
        font-weight: 500;
        border-radius: 5px;
    }

    /* 下拉選單 */
    nav .menu .dropdown-menu{
        background: transparent;
        left: 0%;
        top: 0;
        transform: translateX(0%);
        border: none;
        border-bottom: 1px solid #ffffff3d;
        border-radius: 0px;
    }

    nav .menu .dropdown-menu .dropdown-item{
        margin: 5px 0;
        font-weight: 300;
        text-align: left;
        color: #fff;
        padding: 5px 15px;
        
    }

    nav .menu .dropdown-menu .dropdown-item:hover{
        background-color: #228093;
        color: #fff;
        border-radius: 5px;
    }
}


@media (max-width: 575.98px){

    nav.navbar.navbar-expand-lg{
        padding-top: 40px;

        background-size: contain;
    }

    nav .navbar-toggler{
        right: 15px;
    }

    .navbar-brand{
        padding-top: 2.3125rem;
    }

    nav .submenu li{
        padding-left: 10px;
        font-size: 0.9rem;
    }

    nav .submenu .search_box .form-group input{
        width: 140px;
        padding: 0 12px;
        padding-right: 35px;
        padding-top: 1px;
    }
}



/* banner */
/* 1002 */
.banner .marquee .box{
    /* border-top: 1px solid #155C6A; */
    /* border-bottom: 1px solid #155C6A; */
    /* padding: 8px 0; */
    /* max-height: 500px; */
}

/* 1002 */
.banner .marquee .box a{
    display: block;
    overflow: hidden;

    position: relative;
    width: 100%;
    padding-bottom: 26%; 
}

/* 1002 */
.banner .marquee .box img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    /* object-position: center; */

    transition: 0.2s;
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}

/* 1002 */
.banner .slick-slider{
    border-top: 1px solid #155C6A;
    border-bottom: 1px solid #155C6A;
    padding: 8px 0;
}

.slick-prev{
    left: 15px;
    background-color: #ffffffac;
    z-index: 5;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    top: 50%;
}

.slick-next{
    right: 15px;
    background-color: #ffffffac;
    z-index: 5;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    top: 50%;
}

.slick-prev:before{
    width: 15px;
    height: 15px;
    border-top: 8px solid #155C6A;
    border-right: 8px solid #155C6A;
    border-bottom: 8px solid transparent;
    border-left: 8px solid transparent;
    transform: rotate( -135deg) translateX(-11px) translateY(11px);
}

.slick-next:before{
    width: 15px;
    height: 15px;
    border-top: 8px solid #155C6A;
    border-right: 8px solid #155C6A;
    border-bottom: 8px solid transparent;
    border-left: 8px solid transparent;
    transform: rotate(45deg) translateX(6px) translateY(-6px);
}

/* 1002 ↓ */
@media (max-width: 767.98px){

    .banner .slick-slider{
        padding: 4px 0;
    }

    .slick-prev{
        left: 5px;
        width: 25px;
        height: 25px;
    }
    
    .slick-next{
        right: 5px;
        width: 25px;
        height: 25px;
    }
    
    .slick-prev:before{
        width: 5px;
        height: 5px;
        border-top: 5px solid #155C6A;
        border-right: 5px solid #155C6A;
        border-bottom: 5px solid transparent;
        border-left: 5px solid transparent;
        transform: rotate( -135deg) translateX(-7px) translateY(7px);
    }
    
    .slick-next:before{
        width: 5px;
        height: 5px;
        border-top: 5px solid #155C6A;
        border-right: 5px solid #155C6A;
        border-bottom: 5px solid transparent;
        border-left: 5px solid transparent;
        transform: rotate(45deg) translateX(4px) translateY(-4px);
    }
}
/* 1002　↑ */


/* 圖示按鈕 */
section.btn_box .container{
    max-width: 1000px;
}

/* 1002 */
section.btn_box .list{
    display: flex;
    padding: 0;
    margin: 80px 0;
    /* margin-top: 80px; */
    list-style: none;
    width: 100%;
    justify-content: space-between;
    text-align: center;
    /* flex-wrap: wrap; */
}


section.btn_box .list li a{
    color: #000;
    transition: 0.2s;

    display: flex;
    flex-direction: column;
    align-items: center;
}

section.btn_box .list li img{
    background-color: #FFD517;
    border-radius: 100px;
    padding: 2px;
    transition: 0.2s;
    width: 100%;
}

section.btn_box .list li p{
    margin: 0;
    padding: 5px 0;
    font-weight: 400;
    font-size: 1.1rem;
}

section.btn_box .list li a:hover{
    text-decoration: none;
    color: #155C6A;
}

section.btn_box .list li a:hover img{
    opacity: 0.8;
}



@media (max-width: 767.98px){

    /* 1002 */
    section.btn_box .list{
        justify-content: center;

        margin: 50px 0;
        margin-bottom: 40px;
    }

    section.btn_box .list li img{
        width: 80%;
    }

    section.btn_box .list li p{
        font-size: 1rem;
        width: 100px;
    }
}

@media (max-width: 575.98px){

    section.btn_box .list{
        flex-wrap: wrap;
    }

    section.btn_box .list li img{
        width: 70%;
    }

    section.btn_box .list li p{
        width: 140px;
    }
}




/* 最新消息 */
section.news{
    margin: 20px 0;
}

section.news .container{
    max-width: 1000px;
}

/* 1002 */
.news .title{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

/* 1024 */
.news .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 35px;
    /* padding-top: 10px; */

    background-image: url(../img/title_list_icon1.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 35px;
}

/* 1024 新增 */
.home .news .title h1{
    background-image: url(../img/title_1.svg);
    background-position: center bottom;
    background-size: 100%;
}

/* 20240123　修改 */
.list_1 .news .title h1 , .list_2 .news .title h1{
    background-image: url(../img/title_list_icon1.svg);
    background-position: left bottom;
    background-size: 35px;

    position: relative;
}

/* 1024 */
.news .title .btn_box button{
    background-color: transparent;
    border: none;
    position: relative;
    margin: 0 10px;
    font-size: 1.1rem;
    transform: translateY(1px);
    transition: 0.2s;

    margin-bottom: 5px;
}

.news .title .btn_box button::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 12px;
    border-radius: 50px;
    background-color: #155C6A;
    top: 6px;
    left: -11px;
}

.news .title .btn_box button:nth-child(1):before{
    display: none;
}

.news .title .btn_box button::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    border-radius: 50px;
    background-color: #EEEEEE;
    bottom: 4px;
    left: 0;
    z-index: -1;
    transition: 0.2s;
}

.news .title .btn_box button.active{
    color: #155C6A;
    font-weight: 500;
}

.news .title .btn_box button.active:after{
    background-color: #FFD517;
}

.news .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;
}

.news .list{
    padding: 15px 0;
    margin: 0;
    list-style: none;

    background-color: #fff;
    border-radius: 10px;

    position: relative;

    display: none;
    transition: 0.2s;
}

.news .list.show{
    display: block;
}

.news .list li{
   padding: 15px;
   transition: 0.2s;
}

.news .list li a{
    display: flex;
    position: relative;
}

.news .list li a .img_box{
    flex-basis: 30%;
}

.news .list li a .img{
    border-radius: 5px;
    overflow: hidden;

    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
}

.news .list li a img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    /* object-position: center; */

    transition: 0.2s;
}

.news .list li a .tag_box{
    display: flex;
    position: absolute;
    top: -12px;
    left: 5px;
}

.news .list li a .tag_box div{
    padding: 1px 8px;
    margin-right: 5px;
    background-color: #155C6A;
    border-radius: 5px;
    color: #fff;
    z-index: 55;
}

.news .list li a .tag_box .tag{
    background-color: #D32666;
}

/* 1024 */
.news .list li a .text{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 70%;

    background-image: url(../img/paw_icon.svg);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 50px;

    transition: 0.2s;
}

/* 1024 新增 */
.news .list li a:hover .text{
    background-image: url(../img/paw_icon_2.svg);
    background-size: 60px;
}

.news .list li a .text p{
    margin: 0;
    color: #000;
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 2px;

    transition: 0.2s;
}

.news .list li a .text .time{
    font-size: 1rem;
    position: relative;
}

.news .list li a .text .time::after{
    content: "";
    width: 40%;
    height: 1px;
    background-color: #155C6A;

    position: absolute;
    bottom: 0;
    left: 0;
}

.news .list li a:hover{
    text-decoration: none;
}

.news .list li:hover{
    background-color: #eeeeee4e;
}

.news .list li a:hover .text p{
    font-weight: 500;
    color: #155C6A;
}

.news .list li a:hover img{
    transform: scale(1.05);
}

/* MORE */
.news .list .more_btn{
    position: absolute;
    right: 0;
    bottom: -14px;
}

/* 1024 */
.news .list .more_btn button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 10px;
    width: 200px;

    transition: 0.2s;
}

.news .list .more_btn button::after{
    content: "";
    display: inline-block;
    background-image: url(../img/news_icon.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 60px;
    height: 40px;

    position: absolute;
    right: -15px;
    top: -28px;
}

.news .list .more_btn button:hover{
    background-color: #228093;
}


@media (max-width: 767.98px){

    .news .list{
        padding-bottom: 20px;
    }
 
    .news .list li a{
        flex-direction: column;
    }

    .news .list li a .img_box{
        max-width: 450px;
    }

    .news .list li a .text{
        padding: 10px 5px;
    }
}

/* 1002 */
@media (max-width: 575.98px){
    
    .news .title h1{
        font-size: 1.4rem;
    }

    .news .title .btn_box button{
        font-size: 1rem;
        margin: 0 8px;
        margin-top: 5px;
    }

    .news .list li a .text p{
        font-size: 1rem;
    }
}




/* 常用服務 */
/* 1002 */
section.service{
    margin: 80px 0;
    /* margin-bottom: 40px; */
}

section.service .container{
    max-width: 1000px;
}

.service .title{
    display: flex;
    align-items: flex-end;
}

/* 1024 */
.service .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 35px;
    /* padding-top: 10px; */

    background-image: url(../img/title_1.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
}

/* 大區塊 */
/* 1024 */
.service .box{
    display: flex;

    position: relative;
}

/* 1024 新增 */
.service .box::after{
    content: "";
    display: inline-block;
    width: 150px;
    height: 160px;
    background-image: url(../img/service_bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150px;

    position: absolute;
    top: -40px;
    right: -130px;
    z-index: -1;
}

/* 左邊 */
.service .box .block_1{
    width: 65%;
    margin-right: 20px;
}

/* 右邊 */
.service .box .block_2{
    width: 35%;
}

/* 內容 */
.service .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;
    padding-top: 5px;

    position: relative;
}

.service .box .block_1 .bg{
    height: 100%;
}

.service .box .block_2 .bg:nth-child(1){
    margin-bottom: 20px;
}

/* 小標 */
.service .box p{
    margin: 0;
    margin-left: 10px;
    background-color: #E4F9F5;
    color: #14635D;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 10px 10px 0 10px;
    transform: translateY(10px);
    font-size: 1.1rem;
}

/* 按鈕列表 */
.service .list{
    background-color: #fff;
    border-radius: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 10px 0;

    height: calc( 100% - 35px);
}

.service .box .block_1 .list{
    display: flex;
}

.service .box .block_1 .list div{
    width: 100%;
}

.service .box .block_1 .list div:nth-child(1){
    border-right: 1px solid #E0F6F2;
}

.service .list li{
    margin: 10px 0;
    padding: 5px 10px;
}

.service .list li a{
    color: #000;
    font-weight: 400;
    position: relative;
    padding: 5px 30px;
    z-index: 0;
    font-size: 1.1rem;

    background-repeat: no-repeat;
    background-position: -10px;
    background-size: 15px;

    transition: 0.5s;
}

.service .list li a:after{
    content: "";
    width: 0%;
    height: 7px;
    border-radius: 50px;
    background-color: transparent;

    position: absolute;
    left: 10%;
    bottom: 3px;
    z-index: -1;

    transition: 0.5s;
}

.service .list li a:hover{
    color: #14635D;
    font-weight: 500;
    text-decoration: none;

    background-image: url(../img/arrow.svg);
    background-position: left center;

}

.service .list li a:hover::after{
    width: 90%;
    background-color: #C6EAE3;
}

/* 圖 */
.service .bg > img{
    position: absolute;
}

.service .bg .img_2{
    width: 120px;
    bottom: 18px;
    right: 30px;
}

.service .bg .img_1{
    width: 40px;
    top: -32px;
    right: 5px;
}

.service .bg .img_3{
    width: 45px;
    bottom: 10px;
    left: 0;
}

@media (max-width: 767.98px){
    /* 1002 */
    section.service{
        margin: 50px 0;
    }

    .service .box{
        flex-direction: column;
    }

    .service .box .block_1{
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .service .box .block_2{
        width: 100%;
    }

    .service .bg .img_1{
        top: initial;
        bottom: 20px;
    }
}

@media (max-width: 575.98px){

    /* 1002 */
    .service .title h1{
        font-size: 1.4rem;
    }

    .service .box .block_1 .list{
        flex-direction: column;
    }

    .service .list li{
        margin: 5px 0;
    }

    .service .bg .img_2{
        width: 80px;
        bottom: 10px;
        right: 10px;
    }
}




/* 相關連結 */
/* 1002 */
section.link_box{
    margin: 80px 0;
    /* margin-bottom: 40px; */
}

section.link_box .container{
    max-width: 1000px;
}

.link_box .title{
    display: flex;
    align-items: flex-end;
}

/* 1024 */
.link_box .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 35px;
    /* padding-top: 10px; */

    background-image: url(../img/title_1.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
}

/* 1024 */
.link_box .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;

    position: relative;
}

/* 1024 新增 */
.link_box .bg::before{
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(../img/link_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;

    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 1;
}

.link_box .marquee_link{
    background-color: #fff;
    border-radius: 10px;
}

.link_box .marquee_link .box{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin: 15px 0;
}

.link_box .marquee_link .box a img{
    width: 100%;
}

.link_box .marquee_link .slick-prev{
    left: -15px;
    background-color: #14635D;
    width: 30px;
    height: 30px;
}


.link_box .marquee_link .slick-next{
    right: -15px;
    background-color: #14635D;
    width: 30px;
    height: 30px;
}

.link_box .marquee_link .slick-prev:before{
    width: 11px;
    height: 11px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    transform: rotate( -135deg) translateX(-8px) translateY(8px);
    opacity: 1;
}

.link_box .marquee_link .slick-next:before{
    width: 11px;
    height: 11px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    transform: rotate(45deg) translateX(5px) translateY(-5px);
    opacity: 1;
}

/* 1002 */
@media (max-width: 767.98px){

    section.link_box{
        margin: 50px 0;
    }
}

/* 1002 */
@media (max-width: 575.98px){

    .link_box .title h1{
        font-size: 1.4rem;
    }
}


/* 胖頁尾 */
.footer_menu{
    background-color: #82C4B7;
    border-radius: 10px 10px 0 0;
    padding: 20px 8px 12px 8px;
    position: relative;
    /* margin-top: 50px; */

    transition: 0.2s;
}

.footer_menu::before{
    content: "";
    width: 100%;
    height: 50px;
    background: linear-gradient( to right , #FFD517 50%  ,#155C6A 50%);
    
    position: absolute;
    top: 0;
    z-index: -1;
}

.footer_menu::after{
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(../img/footer_icon.svg);
    background-repeat: no-repeat;
    background-size: cover;

    position: absolute;
    top: -20px;
    right: 100px;
}

.footer_menu.add{
    padding: 13px 8px 5px 8px;
}

.footer_menu .btn{
    background-color: #82C4B7;
    border-radius: 50px;
    padding: 15px 30px;

    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);

    cursor: pointer;
}

.footer_menu .btn div{
    background-color: #fff;
    width: 20px;
    height: 1px;
    border-radius: 5px;

    transition: 0.2s;
}

.footer_menu .btn .line1.add{
    transform: rotate(90deg) translateX(2px);
    height: 2px;
}

.footer_menu .btn .line2.add{
    height: 2px;
}

.footer_menu .bg{
    background-color: #fff;
    border-radius: 10px;
}

.footer_menu .list{
    margin: 0 -10px;
    padding: 20px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_menu .list li{
    display: flex;
    flex-direction: column;
    width: calc(100% / 8);
    padding: 0 10px;
}

.footer_menu .list li .title{
    font-weight: 500;
    margin: 10px 0;
    border-bottom: 1px solid #155C6A;
    width: 100%;
}

.footer_menu .list li .title:hover{
    color: #000;
}

/* 1002 */
.footer_menu .list li a{
    color: #000;
    padding: 3px 0;
    margin-bottom: 10px;
    font-weight: 400;
}

.footer_menu .list li a:hover , .footer_menu .list li .title_btn:hover{
    text-decoration: none;
    color: #155C6A;
    font-weight: 500;
}

@media (max-width: 991.98px){

    .footer_menu .container{
        max-width: 1000px;
    }

    .footer_menu .list li{
        width: calc(100% / 4);
    }
}

/* 1002 */
@media (max-width: 767.98px){
    
    .footer_menu .list li{
        width: calc(100% / 2);
    }
}

@media (max-width: 575.98px){

    /* 1002 */
    .footer_menu::after{
        width: 40px;
        height: 40px;
        top: -17px;
        right: 50px;
    }

    .footer_menu .list li{
        width: calc(100% / 2);
    }
}




/* 頁尾 */
footer{
    background-color: #E4F9F5;
}

footer .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* max-width: 1000px; */
    padding: 30px 15PX;
}

footer .text_box{
    margin-right: 10px;
}

footer .text_box .logo_box img{
    max-width: 300px;
}

footer .text_box p{
    margin: 0;
    margin: 10px 0;
    margin-top: 20px;
    font-size: 1.1rem;
}

footer .text_box .btn{
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 10px;
}

footer .text_box .btn li{
    padding-right: 15px;
}

footer .text_box .btn li a{
    transition: 0.2s;
}

footer .text_box .btn li a:hover{
    opacity: 0.8;
}

footer  .information_box{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

footer  .information_box .img_box img{
    margin: 10px 0;
    margin-left: 10px;
}

footer  .information_box  button{
    border: none;
    border-radius: 3px;
    background-color: #12476F;
    color: #fff;
    padding: 4px 35px;
    padding-top: 5px;
    margin: 5px 0;
    font-weight: 300;
    transition: 0.2s;
}

footer  .information_box  button:hover{
    background-color: #2c74aa;
}

footer  .information_box + p{
    margin: 0;
    margin-top: 10px;
}

footer .bottom{
    text-align: center;
    background-color: #155C6A;
    padding: 3px 0;
    color: #fff;
}

footer .bottom p{
    margin: 0 10px;
}

@media (max-width: 991.98px){
    
    footer .container{
        max-width: 1000px;
    }
}


@media (max-width: 767.98px){
    footer .text_box p{
        font-size: 1rem;
    }

    footer  .information_box  button{
        padding: 4px 25px;
    }
}

@media (max-width: 575.98px){

    footer .text_box{
        margin: 0;
    }

    /* 1002 */
    footer .text_box p{
        font-size: 0.9rem;
    }

    /* 1002 */
    footer .information_box{
        align-items: flex-start;
        width: 100%;
        order: 3;
        margin-top: 10px;
    }

    footer .information_box .img_box{
        order: 3;
    }

    /* 1002 */
    footer .information_box .img_box img{
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 10px; 
    }

    footer .information_box button{
        width: 100%;
    }

    footer .information_box + p{
        margin-top: 0;
        font-size: 0.9rem;
    }

    /* 1002 */
    footer .bottom p{
        font-size: 0.8rem;
    }
}




/* 1002 內頁們 */

/* 背景 */
.main_bg{
    background-image: url(../img/bg_main1.svg) ,url(../img/bg_main2.svg) ,url(../img/bg_main3.svg) ;
    background-repeat: no-repeat;
    background-position: left top , right top , center calc( 100% + 2px);
    background-size: 230px , 130px , 100%;

    padding-bottom: 40px;
}

@media (max-width: 1199.98px){

    .main_bg{
        background-position: -50px top , right top , center calc( 100% + 2px);
        background-size: 150px , 80px , 100%;
    }
}


/* 麵包屑 */
.breadcrumb_box .container{
    max-width: 960px;
}
.breadcrumb_box .breadcrumb{
    background-color: transparent;
    margin: 40px 0;
    padding: 0 5px;
}

.breadcrumb_box .breadcrumb .breadcrumb-item a{
    display: inline-block;
    color: #000;
    font-weight: 300;
    transition: 0.2s;
}

.breadcrumb_box .breadcrumb .breadcrumb-item a:hover{
    text-decoration: none;
    color: #155C6A;
    font-weight: 400;
}

.breadcrumb-item.active{
    color: #155C6A;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before{
    content: ">";
}

@media (max-width: 1199.98px){
    .breadcrumb_box .breadcrumb{
        margin-right: 7px;
    }
}

@media (max-width: 991.98px){
    .breadcrumb_box .breadcrumb{
        margin-right: 37px;
    }
}

@media (max-width: 767.98px){
    .breadcrumb_box .breadcrumb .breadcrumb-item a{
        font-size: 0.9rem;
        transform: translateY(-3px);
    }

    .breadcrumb-item.active{
        font-size: 0.9rem;
    }
}


/* 頁碼 */
.pagination{
    /* display: flex; */
    justify-content: center;
    width: 100%;
    margin: 0;
    margin: 30px 0;
}

.pagination .page-link{
    background-color: transparent;
    border: none;
    color: #000;
    padding:  4px 10px;
    padding-top: 5px;
    margin: 0 5px;

    transition: 0.2s;
}

.pagination .page-link:hover{
    background-color: #155C6A;
    color: #fff;
    border-radius: 50px;
}

.pagination .page-link.active{
    background-color: #155C6A;
    color: #fff;
    border-radius: 50px;
}







/* 圖文列表頁 */
.list .main_bg{
    /* background-size: 230px , 130px , 100%; */
}

.list section.news{
    margin-top: 0;
    padding-top:30px;
    padding-bottom: 30px;
}

/* 列表頁 */
.list_2 .news .list li{
    padding: 15px 30px;
}

.list_2 .news .list li a .tag_box{
    top: 0;
}
.list_2 .news .list li a .text{
    flex-basis: 100%;
    padding: 0px 5px;
    padding-top: 30px;
}

/* 標題列表頁 各區動物之家 */
.list_3 .news .title h1{
    background-size: 35px;
    background-position: left bottom;
    background-image: url(../img/title_list_icon1.svg);
}

.list_3 .news .list.show{
    display: flex;

    background-size: 80px;
    background-repeat: no-repeat;
    background-position: 98% 101%;
    background-image: url(../img/service_icon2.svg);
}

.list_3 .news .list li{
    padding: 10px 20px;
    margin: 10px 0;
}

.list_3 .news .list li:hover{
    background-color: transparent;
}

.list_3 .news .list a{
    display: block;
    text-align: center;
    padding: 5px 5px;

    border: 1px solid #FFD517;
    border-radius: 50px;
    background-color: #ffffffe9;
    color: #155C6A;
    font-weight: 500;
    font-size: 1.1rem;

    transition: 0.3s;

    position: relative;
    z-index: 1;
}

.list_3 .news .list a p{
    display: inline-block;
    margin: 0;
    padding: 10px 0;
    padding-left: 40px;

    background-image: url(../img/list_main_icon2.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: left center;

    position: relative;
    z-index: 0;

    transition: 0.3s;
}

.list_3 .news .list a:hover{
    transform: scale(1.15);
}

.list_3 .news .list a:hover p{
    background-image: url(../img/arrow.svg);
    background-size: 22px;
    background-position: right 14px;

    padding-left: 0;
    padding-right: 30px;
}

.list_3 .news .list a:before{
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50px;
    border-color: #FFD517;
    transform-origin: center;
    transform: scale(1);
}
  
  .list_3 .news .list a:hover:before{
    transition: all 0.75s ease-in-out;
    transform-origin: center;
    transform: scale(1.5);
    border: 4px solid #FFD517;
    opacity: 0;
}

/* 圖文 108年評鑑優良店家 list_4 */
.list_4 section.main .container{
    max-width: 1000px;
    padding-bottom: 50px;
}

.news .title{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

/* 1024 */
.list_4  .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 30px;
    /* padding-top: 10px; */

    background-repeat: no-repeat;
    background-size: 35px;
    background-position: left bottom;
    background-image: url(../img/title_list_icon1.svg);
}

.list_4 .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;
}

.list_4 .bg .box{
    background-color: #fff;
    border-radius: 10px;
}

.list_4 .main .search_box{
    margin: 0 5px;
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}

.list_4 .main .search_box .form-group{
    margin: 0;
    margin-right: 10px;
}

.list_4 .main .search_box .form-group .form-control{
    min-width: 150px;
}

.list_4 .main .search_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 0px 25px;
    border-radius: 5px;

    cursor: pointer;
    transition: 0.2s;
}

.list_4 .main .search_box button:hover{
    background-color: #228093;
}
  
.list_4 .main .list{
    margin: 0;
    padding: 0;
    list-style: none;
}

.list_4 .main .list li{
    margin: 10px 0;
}

.list_4 .main .list li a{
    display: flex;
    padding: 20px 15px;
    transition: 0.2s;
}

.list_4 .main .list li a:hover{
    text-decoration: none;
    background-color: #e9e9e983;
}

.list_4 .main .list li a .img_box{
    flex-basis: 50%;
    position: relative;
}

.list_4 .main .list li a .img_box::before{
    content: "";
    display: inline-block;
    width: 60px;
    height: 70px;
    background-image: url(../img/list_4_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;

    position: absolute;
    top: -10PX;
    left: -5PX;
    z-index: 5;

    transform: rotate(-5deg);
}

.list_4 .main .list li a .img{
    border-radius: 10px;
    overflow: hidden;

    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
}

.list_4 .main .list li a img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    /* object-position: center; */

    transition: 0.2s;
}

.list_4 .main .list li a:hover img{
    transform: scale(1.05);
}

.list_4 .main .list .text_box{
    flex-basis: 50%;
    color: #000;

    background-image: url(../img/service_icon2.svg);
    background-repeat: no-repeat;
    background-position: right calc(100% + 1px);
    background-size: 70px;

    position: relative;
}

.list_4 .main .list .text_box::after{
    content: "";
    display: inline-block;
    width: 50%;
    height: 1px;
    background:linear-gradient(to right , transparent 0% , #155C6A 100%) ;
    position: absolute;
    bottom: 0;
    right: 15px;
}

.list_4 .main .list .text_box .address{
    margin: 10px;
    border-bottom: 1px solid #155C6A;
    padding-bottom: 5px;
}

.list_4 .main .list .text_box .address h2{
    font-weight: 400;
    font-size: 1.5rem;
    color: #155C6A;
}

.list_4 .main .list .text_box .address p{
    font-weight: 400;
    font-size: 1.2rem;
    color: #155C6A;
    padding-left: 25px;

    background-image: url(../img/activity_main_icon1.svg);
    background-repeat: no-repeat;
    background-position: left 3px;
    background-size: 22px;
}

.list_4 .main .list .text_box p{
    margin: 0;
    line-height: 1.6em;
}

.list_4 .main .list .text_box .telephone{
    padding: 10px;
    padding-top: 0;

    font-weight: 400;
    font-size: 1rem;
}



@media (max-width: 1199.98px){

    .list section.news{
        padding-top:0px;
    }
}

@media (max-width: 767.98px){

    .list_4 .main .list li a{
        display: flex;
        flex-direction: column;
    }

    .list_4 .main .list li a .img_box{
        width: 80%;
    }
}

@media (max-width: 575.98px){

    .list_2 .news .list li{
        padding: 15px;
    }

    .list_4 .main .search_box{
        flex-direction: column;
    }

    .list_4 .main .search_box .form-group{
        margin-bottom: 10px;
        margin-right: 0;
    }

    .list_4 .main .search_box button{
        padding: 5px ;
    } 

    .list_4 .main .list .text_box{
        background-image: none;
    }

    .list_4 .main .list li a .img_box{
        width: 100%;
    }

    .list_4 .main .list li a .img_box::before{
        width: 50px;
        height: 60px;
        background-size: 50px;
    
        position: absolute;
        top: -10PX;
        left: -5PX;
        z-index: 5;
    
        transform: rotate(-5deg);
    }
}



/* 列表內頁 */
.list_main .container{
    max-width: 1000px;
}

/* 1024 新增 */
.list_main .main{
    margin-bottom: 170px;
}

.list_main .title h1{
    font-size: 1.5rem;
    margin: 0;
    padding-top: 10px;
    padding-left: 30px;
    
    background-image: url(../img/list_main_icon1.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 25px;

    border-bottom: 1px solid #000;
}

.list_main .link_box{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0;
}

.list_main .link_box .time{
    margin: 0;
    font-size: 1.1rem;
}

.list_main .link_box .link{
    display: flex;
    padding: 0;
    margin: 0px 0;
    list-style: none;
}

.list_main .link_box .link li{
    padding-left: 10px;
}

.list_main .link_box .link li a{
    transition: 0.2s;
}

.list_main .link_box .link li a:hover{
    opacity: 0.8;
}

.list_main .link_box .link li a img{
    width: 25px;
}

/* 輪播 */
.list_main .marquee_main{
    width: 600px;
    margin: 20px auto;
}

.list_main .marquee_main .box a{
    display: block;
    overflow: hidden;

    position: relative;
    width: 100%;
    padding-bottom: 56.25%;  
}

.list_main .marquee_main .box img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    /* object-position: center; */

    transition: 0.2s;
}

.list_main .marquee_main .slick-dotted.slick-slider{
    margin-bottom: 0;
}

.list_main .marquee_main .slick-slider{
    border-top: 1px solid #155C6A;
    border-bottom: 1px solid #155C6A;
    padding: 8px 0;
}

.list_main .marquee_main .slick-dots{
    transform: translateY(0);
    text-align: right;
}

.list_main .marquee_main .slick-dots li{
    margin: 0;
}

.list_main .marquee_main .slick-dots li button:before{
    color: #FFD517;
    opacity: 1;
}

.list_main .marquee_main .slick-dots li.slick-active button:before{
    color: #155C6A;
    opacity: 1;
}

/* 文字 */
.list_main .taxt{
    margin: 20px 0;
}

.list_main .taxt p{
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8em;
}

/* 下載 */
.list_main .download_box h2{
    font-size: 1.2rem;
    margin: 0;
    padding-top: 10px;
    padding-left: 30px;
    
    background-image: url(../img/list_main_icon3.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 25px;

    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

/* 1024 */
.list_main .download_box{
    /* padding-bottom: 150px; */
}

.list_main .download_box .list{
    padding: 0;
    margin: 0;
    list-style: none;
}

.list_main .download_box .list li{
    margin: 15px 0;
}

.list_main .download_box .list li a{
    color: #000;
    padding-left: 30px;
    padding-right: 10px;
    position: relative;
    z-index: 1;

    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 5px center;

    transition: 0.2s;
}

.list_main .download_box .list li a:before{
    content: "";
    width: 0%;

    transition: 0.2s;
}

.list_main .download_box .list li a:hover:before{
    content: "";
    width: 100%;
    height: 5px;
    background-color: #FFD517;
    border-radius: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.list_main .download_box .list li a:after{
    content: "";
    width: 0px;
    right: 20px;

    transition: 0.2s;
}

.list_main .download_box .list li a:hover:after{
    content: "";
    width: 15px;
    height: 5px;
    background-color: #FFD517;
    border-radius: 50px;
    position: absolute;
    bottom: 0;
    right: -25px;
    z-index: -1;

    transition: 0.2s;
}

.list_main .download_box .list li a:hover{
    text-decoration: none;
    color: #000;

    background-image: url(../img/list_main_icon2.svg);
    background-position: 5px center;
}


@media (max-width: 767.98px){

    .list_main .marquee_main{
        width: 100%;
        margin: 0 auto;
    }

    .list_main .download_box{
        padding-bottom: 80px;
    }
}




/* 活動內容 activity_main */
.activity_main .container{
    max-width: 1000px;
}

.activity_main .title h1{
    font-size: 1.5rem;
    margin: 0;
    padding-top: 10px;
    padding-left: 30px;
    
    background-image: url(../img/list_main_icon1.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 25px;

    border-bottom: 1px solid #000;
}

.activity_main .link_box{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0;
}

.activity_main .link_box .time{
    margin: 0;
    font-size: 1.1rem;
}

.activity_main .link_box .link{
    display: flex;
    padding: 0;
    margin: 0px 0;
    list-style: none;
}

.activity_main .link_box .link li{
    padding-left: 10px;
}

.activity_main .link_box .link li a{
    transition: 0.2s;
}

.activity_main .link_box .link li a:hover{
    opacity: 0.8;
}

.activity_main .link_box .link li a img{
    width: 25px;
}

/* 封面 活動資訊 */
.activity_main .container > .box{
    display: flex;
    margin: 30px 0;
}

.activity_main .cover_img{
    flex-grow: 1;
    flex-basis: 100px;
    display: flex;
}

.activity_main .cover_img .img_box{
    border-radius: 5px;
    overflow: hidden;

    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
}

.activity_main .cover_img .img_box img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    /* object-position: center; */

    transition: 0.2s;
}

.activity_main .information{
    flex-basis: 320px;
    margin-left: 20px;
    padding-left: 20px;
    padding-top: 2px;
    border-left: 1px solid #155C6A;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    background-image: url(../img/service_icon1.svg) , url(../img/service_bg.svg);
    background-repeat: no-repeat;
    background-position: right calc(100% - 30px) , 95% 90%;
    background-size: 40px , 120px;
}

.activity_main .date{
    padding: 0;
    margin: 0;
    list-style: none;
}

.activity_main .date li{
    display: flex;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.activity_main .date li p{
    margin: 0;
    font-size: 1.2rem;
    flex-basis: calc( 100% - 130px);
}

.activity_main .date li p.title{
    flex-basis: 130px;
    font-weight: 500;
}

.activity_main .date li p img{
    width: 25px;
    margin-right: 3px;
    transform: translateY(-3px);
}

/* 按鈕 */
.activity_main .information .btn_box{
    text-align: right;
    width: 100%;
}

.activity_main .information .btn_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    width: 100%;    
    transition: 0.2s;
}

.activity_main .information .btn_box button:hover {
    background-color: #228093;
}

/* 活動內容 */
/* 1024 */
.activity_main .text h2{
    font-size: 1.5rem;
    margin: 0;
    padding-top: 10px;
    padding-left: 30px;
    
    background-image: url(../img/list_main_icon3.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 25px;

    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.activity_main .text p{
    margin: 0;
    font-size: 1.1rem;
}

/* 報名 */
.activity_main .apply_box h2{
    font-size: 1.5rem;
    margin: 0;
    padding-top: 10px;
    padding-left: 30px;
    
    background-image: url(../img/list_main_icon3.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 25px;

    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.activity_main .apply_box{
    margin: 30px 0;
    padding-bottom: 100px;
}

/* 1024 */
.activity_main .apply_box .box{
    /* max-width: 500px; */
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
}

/* 1024 */
.activity_main .apply_box .box .form-group{
    display: flex;
    align-items: center;
    margin: 20px 10px;
    width: calc( 100% / 2 - 20px);
}

/* 1024 新增 */
.activity_main .apply_box .box .form-group.code_box{
    width: 100%;
}

.activity_main .apply_box .box .form-group label{
    flex-basis: 120px;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

.activity_main .apply_box .box .form-group label span{
    display: inline-block;
    color: #D32666;
    padding: 0 2px;
    font-size: 1.1rem;
    transform: translateY(-3px);
}

.activity_main .apply_box .box .form-group input{
    border: 1px solid #00000013;
    box-shadow: inset 1px 1px 3px #00000013;
}

.activity_main .apply_box .box .form-group input::placeholder{
    color: #737373;
    font-weight: 300;
}

/* 1024 */
.activity_main .apply_box .box .btn_box{
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

.activity_main .apply_box .box .btn_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    width: 150px;
    transition: 0.2s;
}

.activity_main .apply_box .box .btn_box button:hover {
    background-color: #228093;
}



@media (max-width: 991.98px){

    .activity_main .information{
        background-image: url(../img/service_icon1.svg) ,none;
    }
}

@media (max-width: 767.98px){

    .activity_main .container > .box{
        flex-wrap: wrap;
        margin: 30px 80px;
    }

    .activity_main .information{
        flex-basis: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 20px;
        margin-left: 5px;
        margin-right: 5px;

        /* background-image: none; */
    }

    .activity_main .date li{
        margin-bottom: 15px;
    }

    .activity_main .information .btn_box{
        position: relative;
    }

    .activity_main .information .btn_box::before{
        content: "";
        position: absolute;
        width: calc( 100% - 160px);
        height: 1px;
        background-color: #155C6A;
        /* border-bottom: 1px solid #155C6A; */

        top: 15px;
        left: 0;
    }

    .activity_main .information .btn_box button{
        width: 150px;
    }

    .activity_main .text{
        margin: 30px 80px;
    }

    .activity_main .apply_box{
        margin: 30px 80px;
    }

    .activity_main .apply_box .box{
        max-width: initial;
        margin: 20px 0;
    }

    /* 1024 新增 */
    .activity_main .apply_box .box .form-group{
        width: 100%;
    }
    
}

@media (max-width: 575.98px){

    .activity_main .container > .box{
        margin: 10px 0px;
    }

    .activity_main .date li p{
        font-size: 1rem;
        flex-basis: calc( 100% - 115px);
    }

    .activity_main .date li p.title{
        flex-basis: 115px;
    }

    .activity_main .text{
        margin: 30px 0px;
    }

    .activity_main .apply_box{
        margin: 10px 0px;
    }

    /* 1024 */
    .activity_main .apply_box .box .form-group{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 10px;
    }

    .activity_main .apply_box .box .form-group label{
        flex-basis: initial;
        margin-bottom: 5px;
        margin-left: 5px;
    }
}




/* 活動訊息 activity_list */
.activity_list .news .search_box{
    margin: 0 5px;
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}

.activity_list .news .search_box .form-group{
    display: flex;
    align-items: center;
    margin: 0;
    flex-grow: 1;
}

.activity_list .news .search_box .form-group label{
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    margin: 0 5px;
}

.activity_list .news .search_box .form-group input{
    flex-basis: 200px;
    flex-grow: 1;
    margin: 0 5px;
}

.activity_list .news .search_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 0px 25px;
    border-radius: 5px;
    margin-left: 10px;

    cursor: pointer;
    transition: 0.2s;
}

.activity_list .news .search_box button:hover{
    background-color: #228093;
}

.activity_list .news .list .text div{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.activity_list .news .list li a .text div p{
    margin-right: 10px;
    color: #155C6A;
    font-size: 1rem;
}

.activity_list .news .list .text div img{
    width: 22px;
    height: initial;
    position: initial;
    margin-right: 5px;
    transform: translateY(-1px);
}

.activity_list  .news .list li a .text p{
    font-weight: 500;
    font-size: 1.3rem;
}

.activity_list  .news .list li a .text p:nth-last-child(1){
    font-size: 1rem;
    font-weight: 300;
}





@media (max-width: 991.98px){
    .activity_list .news .search_box{
        flex-direction: column;
    }

    .activity_list .news .search_box .form-group{
        margin-bottom: 10px;
    }

    .activity_list .news .search_box .form-group label{
        flex-basis: 40px;
        margin: 0;
        text-align: center;
        margin-right: 5px;
    }

    .activity_list .news .search_box .form-group input{
        margin: 0;
    }

    .activity_list .news .search_box button{
        margin-left: 0;
        padding: 5px ;
    }

}

@media (max-width: 575.98px){

    .activity_list .news .search_box .form-group{
        flex-wrap: wrap;
    }

    .activity_list .news .search_box .form-group label{
        text-align: left;
        margin-bottom: 10px;
    }

    .activity_list .news .search_box .form-group input{
        flex-basis: initial;
        flex-grow: initial;
        flex-basis: calc( 100% - 45px);
        margin-bottom: 10px;
    }
}


/* 寵物樹葬  tree_burial */
.tree_burial .container {
    max-width: 1000px;
}
/* 標題 */
.tree_burial .title{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap; 
}

/* 1024 */
.tree_burial .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 35px;
    /* padding-top: 10px; */
    background-image: url(../img/title_1.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
}

/* 背景 */
.tree_burial .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;
    margin-bottom: 100px;
}

.tree_burial .bg .box{
    background-color: #fff;
    border-radius: 10px;
}

/* 主要按鈕 */
.tree_burial .btn_box{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.tree_burial .btn_box li{
    margin: 0px 20px;
    width: 50%;
}

.tree_burial .btn_box a{
    display: inline-block;
    width: 100%;

    color: #155C6A;
    font-weight: 400;
    font-size: 1.3rem;
    text-align: center;

    transition: 0.5s;

    position: relative;

    border: 1px solid #82C4B7;
    border-radius: 10px;
    
    padding: 40px 10px;
    margin: 0;
}

.tree_burial .btn_box a::before{
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 160px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid #82C4B7;
    border-left-color: transparent;
    border-right-color: transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: 0.5s;
  }

.tree_burial .btn_box a:hover{
    text-decoration: none;

    transition: 0.5s;
    transform:  scale(1.1);
    border: none;
}

.tree_burial .btn_box a:hover:before{
    border: 5px solid #FFD517;
}

.tree_burial .btn_box a img{
    width: 20px;
    margin-right: 8px;
    transform: translateY(-2px);
    transform: 0.5s;
}

.tree_burial .btn_box a:hover img{
    display: none;
    transition: 0.5s;
}

/* 介紹文字框 */
.tree_burial .text_box{
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 0 20px;
    padding-bottom: 20px;
}

.tree_burial .text_box li{
    display: flex;
}

.tree_burial .text_box li .text{
    flex-basis: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tree_burial .text_box li h2{
    font-size: 1.4rem;
    text-align: left;
    margin: 0 10px;

    background-image: url(../img/list_main_icon2.svg);
    background-repeat: no-repeat;
    background-position: left 1px;
    padding-left: 30px;
}

.tree_burial .text_box li hr{
    border-top: 1px solid #155C6A;
    margin: 5px 5px;
}

.tree_burial .text_box li h3{
    font-size: 1.1rem;
    font-weight: 400;
    margin: 8px 10px;
}

.tree_burial .text_box li p{
    margin: 0;
    padding: 0 10px;
}

.tree_burial .text_box li .img_box{
    flex-basis: 50%;
    border-radius: 10px;
    overflow: hidden;
    /* margin: 0 20px; */
}

.tree_burial .text_box li img{
    width: 100%;
}

/* 樹葬表單 */
/* 步驟 */
.tree_burial .step_box{
    margin: 0;
    padding: 0;
    list-style: none;    

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    margin-bottom: 20px;
}

.tree_burial .step_box li::before{
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #fff;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -13px;

    z-index: 0;
}

.tree_burial .step_box li:nth-last-child(1):before{
    display: none;
}

.tree_burial .step_box li{
    padding: 0 10px;
    z-index: 1;
    position: relative;
}

.tree_burial .step_box li.add div{
    background-color: #155C6A;
    color: #fff;
    border: 2px solid #fff;
    padding: 2px 20px;

    width: initial;
    height: initial;
}

.tree_burial .step_box li div{
    border-radius: 50px;
    width: 15px;
    height: 15px;
    padding: 0;
    background-color: #fff;
    color: #fff;
    overflow: hidden;
}

/* 上傳檔案 file_box */
.tree_burial .box .file_box{
    padding: 20px 30px;
}

.tree_burial .box .file_box p{
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 1.1rem;
    font-weight: 400;
}

.tree_burial .box .custom_file{
    width: 100%;
    border: 2px dashed #A1A1A1;
    border-radius: 10px;

    position: relative;
}

.tree_burial .box .custom_file.add{
    border: none;
    display: flex;
    flex-direction: column;
}

.tree_burial .box .custom_file input{
    width: 100%;
    height: 0;
    padding-bottom: 200px;
    border: 1px dashed #000;
    border-radius: 10px;
    opacity: 0;
}

.tree_burial .box .custom_file.add .aa{
    position: relative;
    transition: 0.2s;
}

.tree_burial .box .custom_file .aa:hover{
    opacity: 0.8;
}

.tree_burial .box .custom_file.add input{
    padding-bottom: 175px;
}

.tree_burial .box .custom_file.add .text{
    height: 100%;
    padding: 40px 15px;
    border: 2px dashed #A1A1A1;
    border-radius: 10px;
}

.tree_burial .box .custom_file .text{
    position: absolute;
    top: 50%;
    /* left: 50%; */
    transform: translateY(-50%);
    width: 100%;
    padding: 15px;
    text-align: center;

    pointer-events: none;
}

.tree_burial .box .custom_file .text img{
    border: 1px dotted #E76418;
    border-radius: 10px;
    padding: 5px;
}

.tree_burial .box .custom_file .text .upload{
    font-size: 1rem;
    margin: 5px 0;
    color: #155C6A;
    font-weight: 400;
}

.tree_burial .box .custom_file .text p{
    font-size:0.9rem;
    color:#737373 ;
    margin: 0;
}

.tree_burial .box .custom_file .text .btn{
    background-color: #155C6A;
    color: #fff;
    border-radius: 5px;
    padding: 2px 20px;
    margin-top: 20px;
}

.tree_burial .box .custom_file #preview_progressbarTW_imgs img{
    width: 50%;
    padding: 5px;
}

.tree_burial .box hr{
    border-top: 1px solid #155C6A;
    margin: 10px 20px;
}

.tree_burial .box .form{
    padding: 20px 10px;
    display: flex;
    flex-wrap: wrap;
}

.tree_burial .box .form-group{
    display: flex;
    align-items: center;
    width: 50%;
    padding: 10px 20px;
    position: relative;
}
/* 1023 修改.form-group.full */
.tree_burial .box .form-group.full:nth-last-child(1){
    margin-bottom: 0;
}

.tree_burial .box .form-group.full{
    width: 100%;
}

.tree_burial .box .form-group label{
    font-weight: 400;
    color: #000;
    flex-basis: 100px;
    font-size: 1.1rem;
    margin: 0;
}

.tree_burial .box .form-group  .form-control{
    border: 1px solid #00000013;
    box-shadow: inset 1px 1px 3px #00000013;
    color: #545454;
    font-weight: 300;

    flex-basis: calc(100% - 100px);
}

.tree_burial .box .form-group .form-control::placeholder{
    color: #545454;
    font-weight: 300;
}

.tree_burial .box .btn_box{
    text-align: center;
    padding: 20px 0;
    padding-bottom: 40px;
    justify-content: center;
}

.tree_burial .box .btn_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    width: 150px;
    margin: 0 10px;
    transition: 0.2s;
}

.tree_burial .box .btn_box button:hover {
    background-color: #228093;
}

/* 上傳檔案 upload_img */
.tree_burial .box h2{
    display: inline-block;
    font-size: 1.4rem;
    margin: 0px 30px;
    margin-top: 20px;
    color: #155C6A;
    text-align: center;

    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: left 2px;

    padding-left: 35px;
    
}

.tree_burial .box .upload_img{
    width: 50%;
    padding: 0 20px;
}

.tree_burial .box .upload_img:hover{
    opacity: 0.9;
}

.tree_burial .box .upload_img > p{
    font-weight: 400;
    color: #000;
    flex-basis: 100px;
    font-size: 1.1rem;
    margin: 0;
    margin-bottom: 5px;
}

.tree_burial .box .upload_img .custom_file{
    border-radius: 5px;
    overflow: hidden;

    position: relative;
    width: 100%;

    border: 1px dashed #A1A1A1;
}

.tree_burial .box .upload_img .custom_file input{
    cursor: pointer;
}

.tree_burial .box .upload_img .custom_file img{
    opacity: 0;
    pointer-events: none;

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover; 

    z-index: 1;
}

.tree_burial .box .upload_img .custom_file p{
    font-size: 0.9rem;
    color: #737373;
    padding: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.tree_burial .box .upload_img .custom_file .upload_btn{

    background-color: #155C6A;
    color: #fff;
    border-radius: 8px;
    padding: 3px 15px;
    padding-top: 6px;
    width: 35%;
    text-align: center;
    
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);

    transition: 0.3s;

    pointer-events: none;
    z-index: 1;
}

.tree_burial .box .done{
    text-align: center;
    position: relative;
}

.tree_burial .box .done > img{
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-46%);
    width: 420px;
}

.tree_burial .box .done p{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: #155C6A;

    margin: 100px 20px;
    position: relative;
}

.tree_burial .box .done p img{
    position: absolute;
    top: -20px;
    right: -55px;
    width: 50px;
    z-index: 2;
}

/* 查詢 search */
.tree_burial.search .title{
    justify-content: center;
}

/* 1024 */
.tree_burial.search .title h1{
    padding: 0 65px;
    padding-top: 20px;
    padding-bottom: 10px;

    background-position: center -10px;
}

.tree_burial.search .box{
    padding: 20px 0;
}

.tree_burial.search .box .form{
    max-width: 600px;
    display: block;
    margin: 0 auto; 
}

.tree_burial.search .box .form p{
    text-align: center;
    color: #155C6A;
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.tree_burial.search .box .form p img{
    margin-right: 8px;
    transform: translateY(-2px);
}

.tree_burial.search .box .form-group{
    width: 100%;
}

.tree_burial.search .box .captcha{
    text-align: center;
    margin: 20px 0;
}

/* 1023 修改驗證碼 */
.code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.code a{
    margin-left: 10px;
}



@media (max-width: 991.98px){

    .tree_burial .box .form-group{
        width: 100%;
        padding: 10px 15px;
    }

    .tree_burial .text_box li{
        flex-direction: column;
        margin-bottom: 30px;
    }

    .tree_burial .text_box li:nth-child(2) .img_box{
        order: 2;
    }

    .tree_burial .text_box li:nth-child(2) .text{
        order: 1;
    }
}

@media (max-width: 767.98px){

    .tree_burial .box .upload_img{
        width: 100%;
        margin-bottom: 20px;
    }
}


@media (max-width: 575.98px){
    .tree_burial .step_box::before{
        width: 150px;
    }
    
    .tree_burial .box .form-group{
        flex-direction: column;
        align-items: flex-start;
    }

    .tree_burial .box .form-group label{
        flex-basis: initial;
        margin-bottom: 5px;
        margin-left: 2px;
    }

    .tree_burial .box .upload_img .custom_file .upload_btn{
        width: 150px;
    }

    .tree_burial .box .btn_box.aa{
        flex-direction: column;
    }

    .tree_burial .btn_box.aa li{
        width: 100%;
        margin: 0;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .tree_burial .box .done > img{
        /* width: 250px; */
        display: none;
    }
}




/* 生命教育 */
.education .container {
    max-width: 1000px;
}

.education .title{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap; 
}

/* 1024 */
.education .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 35px;
    /* padding-top: 10px; */
    background-image: url(../img/title_1.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
}

/* 背景 */
.education .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;
    margin-bottom: 100px;
}

.education .bg .box{
    background-color: #fff;
    border-radius: 10px;
}

/* 課程 */
.education .box .course{
    display: flex;
    padding: 15px;
}

.education .box .img_box{
    flex-basis: 45%;
}

.education .box .img_box .img{
    border-radius: 5px 5px;
    overflow: hidden;

    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
}

.education .box .img_box img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    /* object-position: center; */

    transition: 0.2s;
}

.education .box .text_box{
    flex-basis: 55%;
    padding: 10px 0px;
    padding-left: 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 1024 改class */
.education .box .text_box .text h2{
    font-size: 1.4rem;
    text-align: left;
    margin: 0 10px;
    background-image: url(../img/list_main_icon2.svg);
    background-repeat: no-repeat;
    background-position: left 1px;
    padding-left: 30px;
}

.education .box .text_box hr{
    border-top: 1px solid #155C6A;
    margin: 5px 5px;
}

.education .box .text_box p{
    margin: 0;
    padding: 0 10px;
}

.education .box .text_box .number{
    background-image: url(../img/eye_icon.svg);
    background-repeat: no-repeat;
    background-position: left 5px;
    background-size: 22px;
    padding-left: 28px;

    color: #155C6A;
    margin: 5px 10px;

    float: left;
}

.education .box .text_box .btn_box{
    justify-content: center;
    float: right;
    padding: 0;
}

.education .box .text_box .btn_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    width: 150px;
    margin: 0 10px;
    transition: 0.2s;
}

.education .box .text_box .btn_box button:hover{
    background-color: #228093;
}

/* 步驟列 */
.education .step_box{
    margin: 0;
    padding: 0;
    list-style: none;    

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    margin-bottom: 20px;
}

.education .step_box li::before{
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #fff;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -13px;

    z-index: 0;
}

.education .step_box li:nth-last-child(1):before{
    display: none;
}

.education .step_box li{
    padding: 0 10px;
    z-index: 1;
    position: relative;
}

.education .step_box li.add div{
    background-color: #155C6A;
    color: #fff;
    border: 2px solid #fff;
    padding: 2px 20px;

    width: initial;
    height: initial;
}

.education .step_box li div{
    border-radius: 50px;
    width: 15px;
    height: 15px;
    padding: 0;
    background-color: #fff;
    color: #fff;
    overflow: hidden;
}

.education .box hr{
    border-top: 2px solid #155C6A;
    margin: 10px 20px;
}

.education .bg .box h2{
    font-size: 1.2rem;
    margin: 0;
    margin-top: 15px;
    margin-left: 30px;
    transform: translateY(5px);
    
    color: #155C6A;
    /* text-align: center; */
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left 5px;
    padding-left: 28px;
}

/* 表單選項 */
.education .box .form{
    padding: 20px 10px;
    display: flex;
    flex-wrap: wrap;
}

.education .box .form-group{
    display: flex;
    align-items: center;
    width: 50%;
    padding: 10px 20px;
    position: relative;
}

.education .box .form-group:nth-last-child(1){
    margin-bottom: 0;
}

.education .box .form-group.full{
    width: 100%;
}

.education .box .form-group label{
    font-weight: 400;
    color: #000;
    flex-basis: 110px;
    font-size: 1.1rem;
    margin: 0;
}

.education .box .form-group  .form-control{
    border: 1px solid #00000013;
    box-shadow: inset 1px 1px 3px #00000013;
    color: #545454;
    font-weight: 300;

    flex-basis: calc(100% - 100px);
}

.education .box .form-group .form-control::placeholder{
    color: #545454;
    font-weight: 300;
}

/* 地址 */
.education .box .form-group .address{
    display: flex;
    width: calc( 100% - 100px);
}

.education .box .form-group .address .form-control{
    flex-basis: 20%;
    margin-right: 15px;
    
}

.education .box .form-group .address input.form-control{
    flex-basis: 60%;
    margin-right: 0;
}

/* 新增寵物 */
/* 分隔線 */
.education .box .pet_box hr{
    border-top: 2px dotted #155C6A;
    margin: 0px 10px;
    margin-top: 20px;
    width: 100%;

    display: none;
}

.education .box .pet_box hr.add{
    display: inline-block;
}

.education .box .pet_box:nth-last-child(1) hr{
    display: none;
}

/* 新增按鈕 */
.education .box .add_pet{
    position: relative;
}

.education .box .add_pet .btn_box{
    position: absolute;
    bottom: -28px;
    padding: 0;
    width: 100%;
    justify-content: flex-start;
    margin-left: 10px;
}

.education .box .add_pet button.add{
    background-color: #fff;
    color: #155C6A;
    border: 1px solid #155C6A;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 10px;
    width: 100px;
    margin: 0 10px;

    transition: 0.2s;
    cursor: pointer;

    background-image: url(../img/add_icon.svg);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 15px;
    padding: 5px 15px;
    padding-left: 29px;
    width: initial;
}

.education .box .add_pet button.add:hover{
    background-color: #FFD517;
    color: #155C6A;
    border: 1px solid #FFD517;

    background-image: none;
    background-position: 20px 8px;
    padding: 5px 22px;
}

/* 取消按鈕 */
.education .box .add_pet .cancel_btn{
    background-color: #fff;
    color: #155C6A;
    border: 1px solid #155C6A;
    border-radius: 5px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 10px;
    width: 100px;

    cursor: pointer;
    transition: 0.2s;
    z-index: 55;
    
    display: none;
}

.education .box .add_pet .cancel_btn:hover{
    background-color: #FFD517;
    color: #155C6A;
    border: 1px solid #FFD517;
}

/* 按鈕 */
.education .box .btn_box{
    text-align: center;
    padding: 50px 0;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;

    position: relative;
}

.education .box .btn_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    width: 150px;
    margin: 0 10px;
    transition: 0.2s;

    cursor: pointer;
}

.education .box .btn_box button:hover{
    background-color: #228093;
}

/* 觀看影片 */
.education .box{
    padding-top: 1px;
}
.education .box .iframe_box{
    margin: 20px;
    margin-bottom: 0;
    margin-top: 25px;

    position: relative;
    padding-bottom: 56%; // This is the aspect ratio
}

.education .box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    
    border-radius: 10px;
}

.education .box .btn_box .countbox.add{
    pointer-events: none;
    background-color: #545454;
}

/* 回答問卷 */
.education .box .test{
    margin: 30px 0;
}

.education .box .test .form-group{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    /* border-bottom: 1px dotted #155C6A; */
    margin: 0;
}

/* 1024 */
.education .box .test .form-group label{
    flex-basis: initial;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.education .box .test .form-group .form-check input{
    position: absolute;
    opacity: 0;
}

/* 1024 */
.education .box .test .form-group .form-check label{
    width: 120px;
    padding: 2px 10px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    text-align: center;
    margin: 10px 0;

    position: relative;

    z-index: 0;

    font-size: 1.1rem;
}

/* 1024 */
.education .box .test .form-group .form-check input[type="radio"]:checked+label:before{
    content: "";
    height: 100%;
    width: 100%;
    text-align: center;
    display: inline-block;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #FFD517; */
    /* border: 1px solid #FFD517; */
    z-index: -1;

    border: 2px solid #155C6A;
    background-color: #155C6A;
}

.education .box .test .form-group .form-check input[type="radio"]:checked+label{
    color: #fff;

}

.education .box .test hr{
    border-top: 1px dotted #155C6A;
    margin: 0 20px;
    margin-bottom: 10px;
}

/* 完成 */
.education .box .done{
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.education .box .done > img{
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-48%);
    width: 380px;
}

.education .box .done p{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    color: #155C6A;

    margin: 55px 20px;
    position: relative;
}

.education .box .done .text p{
    font-size: 1.2rem;
    font-weight: 300;
    margin: 20px;
}


@media (max-width: 991.98px){

    .education .box .course{
        flex-direction: column;
        padding: 20px;
    }

    .education .box .img_box .img{
        border-radius: 10px;
    }

    .education .box .text_box{
        padding: 0;
        padding-top: 30px;
    }

    .education .box .text_box .text{
        margin-bottom: 30px;
    }

    .education .box .form-group{
        width: 100%;
        padding: 10px 15px;
    }

    .education .box .form-group.space{
        display: none;
    }
}

@media (max-width: 767.98px){  
    .education .box .form-group .address{
        flex-wrap: wrap;
    }

    .education .box .form-group .address .form-control{
        flex-basis: 35%;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .education .box .form-group .address .form-control:nth-child(1){
        margin-right: 16px;
    }
    
    .education .box .form-group .address input.form-control{
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px){
    .education .step_box::before{
        width: 150px;
    }
    
    .education .box .form-group{
        flex-direction: column;
        align-items: flex-start;
    }

    .education .box .form-group label{
        flex-basis: initial;
        margin-bottom: 5px;
        margin-left: 2px;
    }

    .education .box .form-group .address{
        width: 100%;
        flex-wrap: wrap;
    }

    .education .box .form-group .address .form-control{
        flex-basis: calc( 50% - 8px);
    }


    .education .box .done > img{
        width: 250px;
    }

    .education .box .done p{
        margin: 35px 20px;
        font-size: 1.2rem;
    }
}







/* 下載專區 download_list */
/* 搜尋 */
.download_list .news .search_box{
    margin: 0 5px;
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}

.download_list .news .search_box .form-group{
    margin: 0;
    margin-right: 10px;
}

.download_list .news .search_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 0px 25px;
    border-radius: 5px;

    cursor: pointer;
    transition: 0.2s;
}

.download_list .news .search_box button:hover{
    background-color: #228093;

}

/* 列表表格 */
.download_list .list.show{
    padding-bottom: 0;
    padding: 15px 10px;
}

.download_list .list table{
    width: 100%;
}

/* 標題標籤 */
.download_list .list table thead th{
    border-bottom: 1px solid #82C4B7;
    font-weight: 500;
    padding: 5px 10px;
    color: #155C6A;
}

/* 條列內容 */
.download_list .list tr{
    border-bottom: 1px dotted #82C4B7;
    display: flex;
    align-items: center;
}

.download_list .list tbody tr:hover{
    background-color: #fafafa83;
}

.download_list .list td{
    padding: 10px 10px;
    font-size: 1.1em;
}

.download_list .list td a{
    display: inline-block;
    width: 100%;
    color: #000;
    padding: 20px 0;

    transition: 0.2s;
}

.download_list .list td a:hover{
    text-decoration: none;
    border-radius: 10px;
    background-color: #155C6A;
    color: #fff;
    padding-left: 10px;
}

/* 每個項目寬度 */
.download_list .list td ,.download_list .list th{
    flex-basis: 250px;
    flex-grow: 1;
}

.download_list .list .basis_100{
    flex-basis: 140px;
    flex-grow: 0;
}

.download_list .list .basis_150{
    flex-basis: 180px;
    flex-grow: 0;
}



@media (max-width: 767.98px){
    .download_list .news .search_box{
        flex-direction: column;
    }

    .download_list .news .search_box .form-group{
        margin-bottom: 10px;
        margin-right: 0;
    }

    .download_list .news .search_box button{
        padding: 5px ;
    }

    .download_list thead{
        display: none;
    }

    .download_list .list tr{
        flex-direction: column;
        align-items: initial;
        border-bottom: 2px solid #82C4B7;
    }

    .download_list .container .list td{
        flex-basis: initial;
        border-bottom: 1px solid #e2e4e7;
        padding: 15px 10px;
        padding-left: 90px;
        position: relative;
        display: flex;
        align-items: center;
        min-height: 57px;
    }

    .download_list .container .list td:before{
        content: attr(data-th)"";
        font-weight: 500;
        color: #155C6A;
        width: 90px;
        font-size: 1rem;
        position: absolute;
        left: 5px;
    }
}









/* qna 問答錦集 */
.qna .list .box{
    margin: 15px 0;
}

.qna .list .box h2{
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: #155C6A;

    background-image: url(../img/list_main_icon3.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 30px;
    padding:0 35px;

    border-bottom: 1px dotted #155C6A;
    padding-bottom: 5px;
}

.qna .list .box .answer{
    display: none;
    position: relative;
}

.qna .list .box .answer::after{
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;

    background-image: url(../img/list_main_icon2.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    /* background-position: right bottom; */
    position: absolute;
    right: 10px;
    bottom: -24px;
}

.qna .list .box .answer p{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6em;
    padding: 0 35px;
    margin-top: 8px;
}

@media (max-width: 575.98px){

    .qna .list .box h2{
        font-size: 1.1rem;
        padding:0 10px;
        padding-right: 10px;
        background-image: none;
    }

    .qna .list .box .answer p{
        font-size: 0.9rem;
        padding: 0 10px;
        padding-right: 10px;
    }
}





/* 寵物業資格考試系統 登入 login_test */
.login_test .main .container{
    max-width: 500px;
}

.login_test .title{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

/* 1024 */
.login_test .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 35px;
    /* padding-top: 10px; */

    background-repeat: no-repeat;
    background-size: 35px;
    background-position: left bottom;
    background-image: url(../img/title_list_icon1.svg);
}

.login_test .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;
}

.login_test .box{
    padding: 15px 0;
    background-color: #fff;
    border-radius: 10px;
}

.login_test .box .login{
    padding: 30px 40px;
    text-align: center;
}

.login_test .box .login h2{
    font-size: 1.5rem;
    color: #155C6A;
    border-bottom: 1px solid #155C6A;
    padding-bottom: 5px;
}

.login_test .box .login .form-group{
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.login_test .box .login .form-group label{
    font-weight: 400;
    color: #000;
    flex-basis: 50px;
    font-size: 1.1rem;
    margin: 0;
    text-align: left;
}

.login_test .box .login .form-group .form-control{
    border: 1px solid #00000013;
    box-shadow: inset 1px 1px 3px #00000013;
    color: #545454;
    font-weight: 300;
    flex-basis: calc(100% - 50px);
}

.login_test .box .login .btn_box button{
    background-color: #155C6A;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    width: 150px;

    transition: 0.2s;
}

.login_test .box .login .btn_box button:hover{
    background-color: #228093;
}

.login_test .box .text{
    padding: 30px 0px;
    padding-top: 0;
    border-top: 1px solid #155C6A;
    margin: 0 40px;
    padding-top: 30px;
}

.login_test .box .text h3{
    font-size: 1.2rem;
    color: #155C6A;
    font-weight: 400;
}

.login_test .box .text p{
    margin: 0;
    font-weight: 400;
    line-height: 1.6em;
}

/* 個人資料 login_test_personal */
.login_test .box .login.personal .form-group label{
    flex-basis: 115px;
}

/* 寵物資格考試 開始測驗 login_test_starts */
.login_test .box .login.starts .text{
    margin: 0 0px;
    border-top: none;
    padding: 20px 0;
    padding-top: 15px;
}

.login_test .box .login.starts .text p:nth-child(1){
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px dotted #155C6A;
    
    text-align: center;
}

.login_test .box .login.starts .text p{
    text-align: left;
}


.login_test .box .login.starts .form-check{
    padding-left: 0;
    margin-bottom: 30px;
}

.login_test .box .login.starts .form-check label{
    font-size: 1.1rem;
    color: #155C6A;
    font-weight: 400;
}

.login_test .box .login.starts .btn_box button{
    margin: 0 8px;
    margin-bottom: 10px;
}

/* 寵物資格考試 login_test_question */
/* 1024 */
.login_test_question.education .title h1{
    padding: 5px 35px;

    background-size: 35px;
    background-position: left bottom;
    background-image: url(../img/title_list_icon1.svg);
}

.login_test_question.education .box .test{
    margin: 0;
    margin-top: 30px;   
}

/* 1024 */
.login_test_question.education .bg .box h2{
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    transform: none;
    /* background-position: left 5px; */


    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left 5px;
    padding-left: 28px;
    text-align: left;
}

.login_test_question .box .test.choose .form-group{
    padding: 20px 20px;
}

.login_test_question .box .test.choose .form-group > div{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
}
.login_test_question .box .test.choose .form-group > div .form-check{
    flex-basis: calc(100% / 2 - 0.75rem);
}

.login_test_question .box .test.choose .form-group .form-check label{
    width: 100%;
    text-align: left;
    padding: 6px 10px;
}

/* 1024 */
.login_test_question .box .test .form-group .form-check label{
    /* border: 1px solid #cccccc; */
}

/* 1024 修改  增加class .test.choose */
.login_test_question .box .test.choose .form-group .form-check input[type="radio"]:checked+label:before{
    border: 1px solid transparent;
    background-color: #fff;
    border: 2px solid #155C6A;
}

/* 1024 新增 */
.login_test_question .box .test.choose .form-group .form-check label span{
    border: 1px solid #155C6A;
    color: #155C6A;
    border-radius: 50px;
    padding: 3px 6px;
    margin-right: 8px;
    font-size: 1rem;
    font-weight: 600;
}

/* 1024 新增 */
.login_test_question .box .test.choose .form-group .form-check input[type="radio"]:checked + label{
    color: #155C6A;
    font-weight: 500;
}

/* 1024 新增 */
.login_test_question .box .test.choose .form-group .form-check input[type="radio"]:checked + label span{
    background-color: #155C6A;
    color: #fff;
}

.login_test_question.education .box .btn_box{
    padding: 40px 0;
    padding-top: 20px;
}

/* 歷史成績 */
.login_test_list.login_test .main .container{
    max-width: 1000px;
}

/* 列表表格 */
.login_test_list .list{
    padding-bottom: 0;
    padding: 15px 10px;
}

.login_test_list .list table{
    width: 100%;
}

/* 標題標籤 */
.login_test_list .list table thead tr{
    border-radius: 10px;
    overflow: hidden;
}

.login_test_list .list table thead th{
    background-color: #155C6A;
    color: #fff;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 8px 10px;
    border-right: 1px solid #fff;
}

.login_test_list .list table thead th:nth-last-child(1){
    border-right: none;
}

/* 條列內容 */
.login_test_list .list tr{
    border-bottom: 1px dotted #82C4B7;
    display: flex;
    align-items: center;
}

.login_test_list .list tbody tr:hover{
    background-color: #fafafa83;
}

.login_test_list .list td{
    padding: 10px 10px;
    font-size: 1.1em;
}

/* 1024 */
.login_test_list .list td a{
    display: inline-block;
    width: 100%;
    color: #000;
    padding: 10px 0;
    transition: 0.2s;

    font-weight: 500;
    color: #155C6A;
}

.login_test_list .list td a:hover{
    text-decoration: none;
    border-radius: 10px;
    background-color: #155C6A;
    color: #fff;
}

/* 每個項目寬度 */
.login_test_list .list td ,.login_test_list .list th{
    flex-basis: 250px;
    flex-grow: 1;
}

.login_test_list .list .basis_100{
    flex-basis: 160px;
    flex-grow: 0;
}

.login_test_list .list .basis_150{
    flex-basis: 200px;
    flex-grow: 0;
}

.login_test_list .list .center{
    text-align: left;
    padding: 8px 20px;
}

.login_test_list .box .login .btn_box button{
    margin-top: 20px;
}

.login_test_list .container .list td.none{
    padding: 20px 0;
    color: #155C6A;
    width: 100%;
    justify-content: center;
}

/* login_test_done 完成 合格/不合格 */
.login_test_done .bg .box h2{
    background-image: none;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    font-size: 1.3rem;
}

.login_test_done .bg .box .aa{
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_test_done .bg .box .done .fail{
    width: 20px;
    height: 20px;
    position: relative;
}

.login_test_done .bg .box .done .line{
    display: inline-block;
    width: 25px;
    height: 5px;
    background-color: #b90303;
    border-radius: 50px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.login_test_done .bg .box .done .line:nth-child(1){
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.login_test_done .bg .box .done .circle{
    width: 22px;
    height: 22px;
    border-radius: 50px;
    border: 3px double #b90303;

    position: absolute;
    top: 50%;
    left: 48%;
    transform: translateX(-50%) translateY(-50%);
}

.login_test_done .bg .box .done .aa p{
    color: #b90303;
    font-size: 1.5rem;
    margin: 0;
    padding: 55px 0;
    margin-left: 5px;
}

.login_test_done .bg .box .text{
    border-top: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.login_test_done .bg .box .text p{
    font-size: 1.2rem;
    margin: 0;
    font-weight: 300;
    margin-top: 20px;
}

@media (max-width: 767.98px){

    .login_test_list .list{
        padding-top: 0;
    }

    .login_test_list thead{
        display: none;
    }

    .login_test_list .list tr{
        flex-direction: column;
        align-items: initial;
        margin: 30px 0;
        border-bottom: none;
    }

    .login_test_list .container .list td{
        flex-basis: initial;
        border-bottom: 1px solid #e2e4e7;
        padding: 15px 10px;
        padding-left: 165px;
        position: relative;
        display: flex;
        align-items: center;
        min-height: 57px;
        text-align: left;
    }

    .login_test_list .container .list td:nth-child(1){
        border-top: 1px solid #e2e4e7;
    }

    .login_test_list .container .list td:before{
        content: attr(data-th)"";
        font-weight: 500;
        width: 150px;
        font-size: 1rem;
        position: absolute;
        left: 5px;

        background-color: #155C6A;
        color: #fff;
        border-radius: 5px;
        padding: 15px 10px;
    }

    .login_test_list .container .list td.none:before{
        content: none;
    }

    .login_test_list .list td a {
        width: initial;
        padding: 0 0px;
        color: #155C6A;
        font-weight: 500;
    }
    
    .login_test_list .list td a:hover {
        padding: 0 20px;
        font-weight: 300;
    }
}

@media (max-width: 575.98px){
    /* 1024 新增 */
    .login_test .title h1{
        font-size: 1.4rem;
    }

    .login_test .box .login{
        padding: 20px 20px;
    }

    .login_test .box .text{
        padding: 20px 0px;
        margin: 0 20px;
    }

    .login_test .box .login.personal .form-group{
        flex-direction: column;
        align-items: flex-start;
    }

    .login_test .box .login.personal .form-group label{
        flex-basis: initial;
        margin-bottom: 5px;
    }

    .login_test .box .login.starts .btn_box button{
        width: 100px;
        padding: 5px;
    }

    .login_test_question .box .test.choose .form-group > div .form-check{
        flex-basis: 100%;
    }
}




/* 網站導覽 sitemap */
.sitemap .main .container{
    max-width: 1000px;
    margin-bottom: 100px;
}

.sitemap .title{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

/* 1024 */
.sitemap .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 35px;
    /* padding-top: 10px; */

    background-image: url(../img/title_1.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
}

.sitemap .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;
}

.sitemap .box{
    padding: 15px 0;
    background-color: #fff;
    border-radius: 10px;
}

.sitemap .box .text{
    padding: 20px 30px;
}

.sitemap .box .text h2{
    font-size: 1.3rem;
    color: #155C6A;
    font-weight: 400;
    border-bottom: 1px solid #155C6A;
    padding-bottom: 3px;
    margin-bottom: 10px;
}

.sitemap .box .text p{
    margin: 0;
    font-weight: 400;
    line-height: 1.6em;
}

.sitemap .box hr{
    border-top: 1px solid #155C6A;
    margin: 10px 30px;
    margin-bottom: 20px;
}

.sitemap .box .list{
    margin: 0;
    padding: 0;
    list-style: none;

    margin: 0 20px;

    display: flex;
    flex-wrap: wrap;
}

.sitemap .box .list li{
    flex-basis: calc(100% / 4);
    padding: 10px;
}

.sitemap .box .list li a{
    display: flex;
    color: #000;
    padding: 8px 10px;
    margin: 2px 0;
    border-radius: 10px;
    font-weight: 400;

    transition: 0.3s;
}

.sitemap .box .list li a:hover{
    text-decoration: none;
    background-color: #e3faf5;
    color: #155C6A;
    /* font-weight: 500; */
    padding: 8px 15px;
}

.sitemap .box .list li a.title{
    background-color: #155C6A;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 10px;
    padding: 5px 10px;
    padding-top: 6px;
}

.sitemap .box .list li a.title:hover{
    padding: 5px 15px;
    padding-top: 6px;
    background-color: #228093;
}




@media (max-width: 991.98px){
    .sitemap .box .list li{
        flex-basis: calc(100% / 3);
    }
}


@media (max-width: 767.98px){

    .sitemap .box .list li{
        flex-basis: calc(100% / 2);
    }
}


@media (max-width: 575.98px){
    .sitemap .title h1{
        font-size: 1.4rem;
    }
    .sitemap .box .list li{
        flex-basis: 100%;
    }
}






/* 1024 飼養寵物認證卡 pet_certification_card */
.pet_certification_card .main .container{
    max-width: 500px;
}

.pet_certification_card .title{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.pet_certification_card .title h1{
    display: inline-block;
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 35px;

    background-repeat: no-repeat;
    background-size: 35px;
    background-position: left bottom;
    background-image: url(../img/title_list_icon1.svg);
}

.pet_certification_card .bg{
    border-radius: 10px;
    background-color: #82C4B7;
    padding: 25px 5px;
    margin-bottom: 50px;
}

.pet_certification_card .box{
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
}

.pet_certification_card .box .img_box{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.pet_certification_card .box .img_box input{
    position: absolute;
    border: none;
    text-align: right;
    font-size: 1.5rem;
    padding: 2px 8px;
    height: initial;
}

.pet_certification_card .box .img_box.front input{
    width: 150px;
    right: 20px;
    bottom: 20px;
    background-color: transparent;
}

.pet_certification_card .box .img_box.back input{
    width: 70%;
    right: 20px;
    bottom: 40px;
    background-color: #ffffffd0;
}

.pet_certification_card .box .img_box input::placeholder{
    color: #000;
    letter-spacing: 2px;
}



@media (max-width: 575.98px){
    
    .pet_certification_card .box .img_box.front input{
        right: 5vw;
        bottom: 3vw;
        padding: 0 2px;
        font-size: 5vw;
    }

    .pet_certification_card .box .img_box.back input{
        right: 5vw;
        bottom: 8.5vw;
        padding: 0 2px;
        font-size: 5vw;
    }
}

/* 20240109 字體 */
html , body{
    font-family: Microsoft JhengHei;
}

.service .box p{
    font-weight: 600;
}

/* 20240109 常用服務 */
.service .list li{
    padding: 8px 10px;
    position: relative;
}

.service .list li::after{
    content: "";
    display: inline-block;
    background-color: #82C4B7;
    height: 1px;
    width: 80%;

    position: absolute;
    bottom: 0;
    left: 10%;
}

.service .list li a{
    padding: 5px 20px; 
}

.service .list li a:hover::after{
    width: 80%;
}


/* 20240109 頁碼樣式 */
.page-item.disabled .page-link{
    background-color: transparent;
    font-weight: 600;
}














@media (max-width: 575.98px){}

@media (max-width: 767.98px){}

@media (max-width: 991.98px){}

@media (max-width: 1199.98px){}


































/* 20240119 新增<P>文字說明 */

.list_main .marquee_main .box p{
    position: absolute;
    bottom: 0;
    background-color: #0000007d;
    width: 100%;
    padding: 5px;
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-size: 0.95rem;
}

.activity_list  .news .list li a{
    align-items: center;
}

/* 20240123 　新增*/
.list_1 .news .title h1::after , .list_2 .news .title h1::after{
    content: "";
    display: inline-block;
    width: 35px;
    height: 36px;

    background-image: url(../img/title_list_icon1.svg);
    background-position: left bottom;
    background-size: 35px;
    transform: rotateY(180deg);
    position: absolute;
    bottom: 0;
}