@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
    letter-spacing: 0.12rem;
    color: #333;
}

article img {
    width: 100%;
}

.hp_title {
    font-size: 26px;
    color: #064c6b;
    text-align: center;
    margin-bottom: 30px;
}

/*--------------------------*/
/*        navbar
----------------------------*/
.navbar {
    width: 100%;
    background-color: transparent;
    position: fixed;
    z-index: 100;
}

.navbar-brand {
    width: 32%;
    margin: 0;
    margin-left: -80px;
}

.navbar-right {
    margin-top: 15px;
}

.navbar-nav li a {
    font-size: 16px;
}

@media (max-width: 1440px) {
    .navbar-brand {
        width: 30%;
    }

    .nav>li>a {
        padding: 10px;
    }
}

@media(max-width:985px) {
    .nav>li>a {
        padding: 10px 6px;
    }

    .navbar-brand {
        width: 30%;
        margin-top: 15px;
    }

    .navbar-nav li a {
        font-size: 14px;
    }

    .navbar-right {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        width: 50%;
        margin: 5px 0 0 15px;
    }

    .navbar-nav {
        background: #064c6b;
        margin-top: 0;
    }

    .navbar-nav li {
        border-bottom: 1px solid #fff;
    }

    .navbar-nav li a {
        color: #fff;
        text-align: center;
    }
}

/* nav-js觸發 */
#navbar_h {
    height: 5%;
    position: fixed;
    z-index: -10;
}

nav.bootsnav.navbar-move {
    transition: all 0.2s ease-in;
    background: rgb(108 169 197 / 90%);
    padding: 0px;
}

@media(max-width:768px) {
    nav.bootsnav.navbar-move {
        padding: 10px 20px;
    }
}


/*--------------------------*/
/*        banner
----------------------------*/
.carousel::before {
    content: '';
    background-image: url(../../images/banner_after.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 600px;
    position: absolute;
    bottom: -328px;
    left: 0;
    z-index: 0;
}

/* .carousel::after {
    content: '';
    background-image: url(../../images/planet.png);
    background-repeat: no-repeat;
    background-size: cover;
    filter: drop-shadow(7px 0 10px rgba(0, 0, 0, 0.1));
    width: 380px;
    height: 237px;
    position: absolute;
    bottom: 8px;
    left: 0;
    z-index: 10;
} */

.carousel-control.left,
.carousel-control.right {
    background: transparent;
}

@media (max-width: 1440px) {
    .carousel::before {
        height: 140px;
    }

    /* .carousel::after {
        width: 318px;
        height: 196px;
    } */
}

@media (max-width: 1290px) {
    .carousel::before {
        height: 140px;
        bottom: -26px;
    }
}

/* @media (max-width: 1040px) {
    .carousel::after {
        width: 265px;
        height: 164px;
    }
} */

@media (max-width: 998px) {
    .carousel::before {
        height: 95px;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .carousel::before {
        height: 40px;
    }

    /* .carousel::after {
        width: 131px;
        height: 81px;
        bottom: 45px;
    } */
}


/*--------------------------*/
/*       scroll down
----------------------------*/
article {
    position: relative;
}

.scroll {
    display: flex;
    align-items: center;
    position: absolute;
    top: -16%;
    left: 31%;
    z-index: 50;
}

.scroll p {
    font-size: 22px;
    font-weight: 700;
    color: #575757;
    margin-right: 10px;
}

.background {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-down-icon {
    width: 25px;
    height: 40px;
    border-radius: 100px;
    border: 1.5px solid #575757;
    position: relative;
}

.scroll-down-icon:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 5px;
    background: #575757;
    border-radius: 100px;
    top: 8px;
    left: 10px;
    opacity: 0;
    animation: scroll-down-animation 2.5s infinite;
}

@keyframes scroll-down-animation {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
        height: 5px;
    }

    20% {
        height: 10px;
        top: 8px;
    }

    55% {
        top: 30px;
    }

    60% {
        height: 5px;
    }

    70% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        height: 5px;
        top: 30px;
        opacity: 0;
    }
}

@media (max-width: 1440px) {
    .scroll {
        top: -7%;
    }

    .scroll p {
        font-size: 17px;
    }
}

@media (max-width: 998px) {
    .scroll {
        display: none;
    }
}


/*--------------------------*/
/*        section01
----------------------------*/
.section01 {
    padding: 0px 0 170px 0;
}

@media (max-width: 768px) {
    .section01 {
        padding: 10px 0 20px 0;
    }
}

.section01 .pro_txt_box,
.section01 .on_sale,
.section01 .pro_price span,
.section01 .pro_btn i.fa-list,
.section01 .owl-nav,
.section01 .owl-dots {
    display: none;
}

.section01 .owl-carousel .item {
    position: relative;
    background-color: #fff;
    border-radius: 10px 10px 15px 15px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    /* transform: translateY(0); */
    transition: .4s;
    padding-bottom: 1px;
    overflow: hidden;
}

.section01 .idec-slide-demo .pro_item {
    overflow: hidden;
}

.section01 .idec-slide-demo .pro_item img {
    width: 100%;
}

.section01 .owl-carousel {
    width: 100%;
    height: 415px;
    display: flex;
}

.section01 .owl-carousel .item img {
    transform: scale(1);
    transition: .4s;
}

.section01 .owl-carousel .item:hover img {
    transform: scale(1.1);
}

/* .section01 .owl-carousel .item:hover {
    transform: translateY(-10px);
} */

.section01 .owl-carousel .item::before {
    content: 'BEST SALES';
    width: 85px;
    height: 55px;
    background-color: rgba(108, 169, 197, 0.9);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding-top: 3px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.section01 .pro_main {
    padding: 0 10px;
}

.section01 .pro_sale {
    padding: 0 20px 0 10px;
    margin: 5px 0 15px 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.section01 .pro_price {
    font-size: 19px;
    font-weight: 700;
    color: #6ca9c5;
    margin: 0;
    padding: 0;
    display:none;
}

.section01 a.pro_btn {
    text-decoration: none;
    border: 1px solid #3d454d;
    border-radius: 16px;
    color: #3d454d;
    text-align: center;
    padding: 5px 20px;
    transition: .4s;
}

.section01 a.pro_btn:hover {
    background-color: #3d454d;
    color: #fff;
}

@media (max-width: 1040px) {
    .section01 .owl-carousel {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .section01 .owl-carousel {
        height: 465px;
    }

    .section01 .pro_main h3 {
        font-size: 20px;
    }

    .section01 .pro_sale {
        flex-direction: column;
    }

    .section01 a.pro_btn {
        font-size: 14px;
        padding: 5px 8px;
        margin-top: 15px;
    }
}

@media (max-width: 484px) {
    .section01 .owl-carousel {
        height: 400px;
    }
}


/*--------------------------*/
/*        section02
----------------------------*/
.section02 {
    background-color: #6ca9c5;
    position: relative;
}

.section02_img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.section02_img img {
    width: 32%;
    filter: drop-shadow(7px 0 10px rgba(0, 0, 0, 0.1));
}

.section02 .hp_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.section02 .hp_btn-item {
    margin: 0 15px;
    cursor: pointer;
}

.section02 .btn_icon {
    background-repeat: no-repeat;
    background-size: cover;
    width: 115px;
    height: 115px;
    margin: auto;
    transform: translateY(0);
    transition: .3s;
}

.section02 .hp_btn-item:hover .btn_icon {
    transform: translateY(-15px);
}

.section02 a,
.section02 p {
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 1440px) {
    .section02_img img {
        width: 30%;
    }
}

@media (max-width: 1290px) {
    .section02_img img {
        width: 20%;
        height: auto;
    }
}

@media (max-width: 980px) {
    .section01 {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .section02 .hp_btn-item {
        width: 35%;
    }

    .section02_img {
        display: none;
    }
}


/*--------------------------*/
/*        section03
----------------------------*/
.section03 {
    margin-top: 50px;
}

.section03 .pic {
    display: none;
}

.section03 .newscontent {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    border-bottom: 1px solid #333;
    position: relative;
    cursor: pointer;
}

.section03 .newscontent::after {
    content: '';
    background-image: url(../../images/arrow-right-circle.png);
    background-size: cover;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 7px;
    bottom: 7px;
    transition: .3s;
}

.section03 .newscontent:hover::after {
    background-image: url(../../images/arrow-right-circle-hover.png);
    right: 0;
}

.section03 .newscontent .ctydate {
    width: 95px;
    margin-right: 30px;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #1e6a8c;
    text-align: center;
    border-radius: 5px;
}

.section03 .newscontent .ctydate .card-category {
    display: none;
}

.section03 .newscontent h4 {
    width: calc(90% - 95px);
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.section03 .newscontent h4 a {
    text-decoration: none;
    color: #3d454d;
}

.section03 .newscontent p {
    display: none;
}

@media (max-width: 1200px) {
    .section03 {
        margin-bottom: 20px;
    }

    .section03 .newscontent {
        padding: 2px 10px;
    }

    .section03 .newscontent .ctydate {
        width: 75px;
        margin-right: 10px;
        padding: 3px 0;
        font-size: 12px;
    }

    .section03 .newscontent h4 a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section03 {
        margin-top: 20px;
    }

    .section03 .newscontent {
        padding: 5px 10px;
    }

    .section03 .newscontent .ctydate {
        width: 70px;
        font-size: 12px;
        margin-right: 8px;
    }

    .section03 .newscontent::after {
        width: 25px;
        height: 25px;
    }
}


/*--------------------------*/
/*         footer
----------------------------*/
.footerwrap {
    width: 100%;
    height: auto;
    background-color: #3d454d;
}

.footerwrap footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.footerwrap footer p {
    font-size: 15px;
    color: #fff;
}

.footerwrap .footer_logo {
    width: 50%;
    margin-right: 15px;
}

.footerwrap .footer_logo img {
    width: 80%;
}

.footerwrap .footer_info {
    width: 40%;
    margin-right: 15px;
}

.footerwrap .footer_info p a {
    color: #fff;
}

.footerwrap .footer_line {
    width: 10%;
    margin-right: 15px;
}

.footerwrap .footer_line a,
.footerwrap .footer_line a p {
    text-decoration: none;
    color: #88d921;
    text-align: center;
}

.footerwrap .footer_line a img {
    width: 100%;
}

.footer_copyright p {
    margin: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .footerwrap footer {
        flex-direction: column;
    }

    .footerwrap .footer_logo {
        width: 100%;
    }

    .footerwrap .footer_logo img {
        width: 80%;
        margin: auto;
        display: block;
    }

    .footerwrap .footer_info {
        width: 100%;
        margin: 15px 0;
        text-align: center;
    }

    .footerwrap .footer_line {
        width: 100%;
        margin: 0;
    }

    .footerwrap .footer_line a img {
        width: 35%;
        margin: auto;
        display: block;
    }
}


/*--------------------------*/
/*       內頁 banner
----------------------------*/
.page-banner {
    padding-top: 300px;
    background-image: url(/rwd1826/store/F1/inside_banner_new.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-banner .banner-title {
    margin: 0 auto;
    font-size: 30px;
    letter-spacing: 3px;
    font-weight: 600;
    position: absolute;
    top: 160px;
    left: 21%;
    right: 0;
    color: #333;
}

@media (max-width: 1440px) {
    .page-banner {
        padding-top: 227px;
    }

    .page-banner .banner-title {
        top: 135px;
    }
}

@media (max-width: 1090px) {
    .page-banner {
        padding-top: 165px;
    }

    .page-banner .banner-title {
        top: 95px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding-top: 136px;
    }

    .page-banner .banner-title {
        font-size: 24px;
        top: 85px;
    }
}


/*--------------------------*/
/*        內頁樣式
----------------------------*/
.breadcrumb,
.aside-title,
.newsbar {
    background-color: #6ca9c5;
    color: #fff;
}

ol.breadcrumb li a {
    color: #fff;
}

.category-wrapper aside .nav li a:hover,
.category-wrapper aside .nav li a:focus {
    background-color: #3d454d;
}

aside .nav li a:hover,
aside .nav li a:focus,
.news_more:hover,
.news_more:focus {
    background-color: #487311;
}

.badge {
    background-color: #487311;
}

.category-wrapper .li-item {
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 8px;
}

.category-wrapper .li-item h4 {
    font-size: 18px;
    color: #3d454d;
}

.category-wrapper .li-item .btn {
    width: 100%;
    padding: 4px 0;
}

.category-wrapper .li-item .btn-default {
    color: #487311;
    border-color: #487311;
}

.category-wrapper .li-item .features-box a.btn-default:hover,
.category-wrapper .li-item .features-box a.btn-default:focus {
    background-color: #487311;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover {
    background-color: #3d454d;
}

.category-wrapper .product-price {
    margin: 10px 0;
}

.normal-price,
.normal-price-s {
    color: #487311;
}


/*--------------------------*/
/*       內文上架樣式
----------------------------*/
.CONTENT_DEMO h3,
.COMPANY_INFO h3 {
    color: #1e6a8c;
    font-weight: 700;
}

.CONTENT_DEMO h4,
.COMPANY_INFO h4 {
    color: #487311;
    font-size: 20px;
}

.CONTENT_DEMO table tbody tr th {
    background-color: #e5f0f4;
    font-size: 16px;
}

.CONTENT_DEMO table tbody tr td {
    font-size: 16px;
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid #adadad;
}

.CONTENT_DEMO ul {
    list-style-type: disc;
    margin-left: 2rem;
}

.CONTENT_DEMO ul li,
.CONTENT_DEMO p,
.CONTENT_DEMO a,
.COMPANY_INFO ul li,
.COMPANY_INFO p {
    text-decoration: none;
    font-size: 17px;
    line-height: 1.8;
}

.CONTENT_DEMO img,
.COMPANY_INFO img {
    width: 100%;
}


/*--------------------------*/
/*         跟屁蟲
----------------------------*/
#gotop.gotop {
    background: rgb(72 115 17 / 80%);
}

#gotop.gotop:hover {
    background: #487311;
}