/* quick Menu */
.quick_box {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translate(0%,-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.quick_box li {
    list-style: none;
    margin-bottom: 8px;
}
.quick_box li a span {
    position: absolute;
    color: #000 !important;
    margin-bottom: 25px;
    margin-left: 17px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
}
.quick_box .contactus_icon {
    width: 64px;
    height: 64px;
    background-color: #fff;
    border: 1px solid #999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 3px 8px rgba(0 0 0 / 0.15);
}
.quick_box .contactus_red {
    border: 1px solid #db4c64;
}
.quick_box .movetotop {
    width: 64px;
    height: 64px;
    background-color: #fff;
    border: 1px solid #999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 3px 8px rgba(0 0 0 / 0.15);
}
.quick_box .contactus_icon:hover {
    border: 1px solid #000;
    transition: 0.3s;
}
.quick_box .movetotop:hover {
    border: 1px solid #000;
    transition: 0.3s;
}
.quick_box .quick_30year_m {
    display: none;
    margin-top: 10px;
    filter: drop-shadow(0 0 5px rgba(255 255 255 / 1));
}
.quick_box .quick_30year_m img {
    filter: drop-shadow(0 0 5px rgba(255 255 255 / 1));
}
.quick_box .quick_30year_m:hover {
    border: none;
}
.quick_30year {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;
}
.quick_30year a {
    position: absolute;
    bottom: 0;
    filter: drop-shadow(0 0 15px rgba(255 255 255 / 0.7));
}
.quick_30year a div {
    filter: drop-shadow(0 0 10px rgba(255 255 255 / 1));
}
.quick_30year a img {
    filter: drop-shadow(0 0 5px rgba(255 255 255 / 1));
}

@media screen and (max-width:1600px) {
    .quick_box .quick_30year_m {
        display: block;
    }
    .quick_30year {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .quick_box {
        right: 10px;
    }

    .quick_box .contactus_icon {
        width: 50px;
        height: 50px;
    }

    .quick_box .movetotop {
        width: 50px;
        height: 50px;
    }

    .quick_box li a span {
        margin-bottom: 21px;
        margin-left: 13px;
        font-size: 12px;
    }

    #btn_quatation{
        margin-bottom: 21px !important;
        margin-left: 13px !important;
        font-size: 12px !important;
    }

    .quick_30year {
        max-width: 150px;
    }

    .quick_box .quick_30year_m {
        margin-top: 5px;
    }

    .quick_box .quick_30year_m img {
        max-width: 80px;
    }
}
/* quick Menu End */


/* newsletter button  */

.btn-news-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* 這將為子元素之間提供一些間距 */
}


.btn-news {
    padding: 8px 0;
    text-decoration: none;
    background-color: #73AAE3;
    width: 180px;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.btn-news:hover {
    transition: 0.5s;
    background-color: #0066cc;
    color: #fff;
}

.btn-newsList {
    position: absolute;
    top:35%;
    padding: 8px 0;
    text-decoration: none;
    background-color: #ffffff;
    width: 160px;
    min-height: 50px;
    border-radius: 2px;
    color: #333333;
    font-size: 16px;
    text-align: center;
    margin: 23px 15px 15px 0px;
}

.btn-newsList:hover {
    transition: 0.5s;
    background-color: #0066cc;
    color: #fff;
}
@media screen and (max-width:990px) {
    .btn-newsList {
        display: none;
    }
}