@charset "utf-8";

/*=============== 全部共用區 ===============*/
:root {
    --primary: #0095a6;
    --primaryLight: #16ccd9;
    --secondary: #a6425e;
    --secondaryLight: #f06997;
    --light: #f7f3f0;
    --dark: #262321;
}
body {
    font-family:
        "Noto Sans TC",
        sans-serif,
        Helvetica,
        Arial,
        sans-serif,
        "微軟正黑體",
        Heiti TC,
        "メイリオ";
}
input, button, a {
    outline: none;
}
/*----------  標題 Start ----------*/
.titleOne {
    position: relative;
    display: inline-block;
    font-size: 42px;
    line-height: 1.5;
    font-weight: 700;
    color: #03343f;
}
.titleOne span {
    position: absolute;
    display: inline-block;
    width: 46px;
    height: auto;
    top: -20px;
    right: -42px;
}
.middleTitle {
    margin-bottom: 16px;
    padding: 0 0 2px 10px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: transparent;
    border: 1px solid transparent;
    border-width: 0 0 0 4px;
    border-image: linear-gradient(to bottom, #50c5b7 0%, #9ece9a 100%);
    border-image-slice: 1;
    background: linear-gradient(to top, #784080 0%, #c197d2 100%);
    -webkit-background-clip: text; /* 背景裁剪成文字的前景色 */
    background-clip: text;
}
.subTitle {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #a45c40;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
}
@media screen and (min-width: 768px) and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
    .titleOne {
        font-size: 32px;
    }
    .titleOne span {
        width: 40px;
        top: -16px;
        right: -36px;
    }
}
/*----------  標題 End ----------*/

.blank24 {
    height: 24px;
}
.blank36 {
    height: 36px;
}
.blank48 {
    height: 48px;
}
.blank56 {
    height: 56px;
}
/*----------  頁面載入動畫 Spinner  ----------*/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*----------  頁面載入動畫 Spinner End  ----------*/

/*----------- input placeholder設定 -----------*/
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #8f8985;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
input[type="text"]:hover::-webkit-input-placeholder,
input[type="password"]:hover::-webkit-input-placeholder,
textarea:hover::-webkit-input-placeholder {
    color: #0095a6;
    opacity: 1;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
input[type="text"]:focus::-webkit-input-placeholder,
input[type="password"]:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
/*----------- input placeholder設定 end -----------*/

/*----------- 美化的Select下拉框設定 -----------*/
.nice-select {
    position: relative;
    display: inline-block;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left !important;
    font-weight: 300;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 3px rgba(51, 51, 51, 0.3);
    transition: all 0.3s ease-in-out;
}
.nice-select:after {
    position: absolute;
    display: block;
    top: 50%;
    content: "\f0d7";
    font-family: FontAwesome;
    color: #594a43;
    font-weight: normal;
    text-align: center;
    pointer-events: none;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nice-select.open:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.nice-select.open .list {
    opacity: 1;
    background-color: #fff;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}
.nice-select.wide {
    width: 100%;
}
.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}
.nice-select .list {
    position: absolute;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    color: #594a43;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    -moz-transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    z-index: 10;
}
.nice-select .list:hover .option:not(:hover) {
    color: #594a43;
    background-color: transparent !important;
}
.nice-select .option {
    min-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    list-style: none;
    line-height: 40px;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    color: #fff;
    background-color: #9374c2;
}
.nice-select .option.selected {
    color: #fff;
    background-color: #9374c2;
}
.selectOne {
    border-radius: 10px;
    height: 47px;
    font-size: 18px;
    line-height: 45px;
    color: #594a43;
    border: 1px solid #ba9790;
    background-color: #fff;
}
.selectOne.nice-select.wide .list {
    left: 0;
    right: 0;
}
.selectOne .nice-select:hover {
    color: #363e59;
    border: 1px solid #ba9790;
}
.selectOne .nice-select:active,
.selectOne .nice-select.open,
.selectOne .nice-select:focus {
    color: #363e59;
    border: 1px solid #ba9790;
    background-color: #fafafa;
}
.selectOne.nice-select:after {
    color: #363e59;
    width: 20px;
    height: 47px;
    font-size: 24px;
    line-height: 45px;
    margin-top: -23px;
    right: 8px;
}
.selectOne.nice-select.open:after {
    color: #363e59;
}
.selectOne.nice-select .list {
    top: 100%;
    left: 0;
    margin-top: 0;
    border: 1px solid #ba9790;
    background-color: #fff;
}
.selectOne.nice-select .option:hover,
.selectOne.nice-select .option.focus,
.selectOne.nice-select .option.selected.focus {
    background-color: #30cbf2;
}
.selectOne.nice-select .option.selected {
    color: #fff;
    background-color: #594a43;
}
/*----------- 美化的Select下拉框設定 end -----------*/

/*----------  表單按鈕設定 Button  ----------*/

.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}
.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}
.btn.btn-primary {
    background: var(--primaryLight) !important;
    color: var(--bs-white) !important;
    border: none;
    font-size: 20px;
    font-weight: 400;
    transition: 0.5s;
}
.btn.btn-secondary {
    background: var(--secondary) !important;
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
}
.btn.btn-primary:hover,
.btn.btn-secondary:hover {
    background: var(--secondaryLight) !important;
    color: var(--bs-white) !important;
}
.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    /*   font-family: "Roboto", sans-serif;*/
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    border: none;
    font-size: 18px;
    font-weight: 400;
    transition: 0.5s;
}
.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 99;
}
.btnMoreA,
.btnMoreB {
    position: relative;
    display: flex;
    justify-content: center !important;
    width: 220px;
    height: 58px;
    font-size: 20px;
    font-weight: 500;
    line-height: 53px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}
.btnMoreA {
    border: 1px solid var(--primary);
}
.btnMoreB {
    border: 1px solid var(--secondary);
}
.btnMoreA::after,
.btnMoreB::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 8px);
    height: calc(100% - 6px);
    border-radius: 25px;
    background-color: #fff;
}
.btnMoreA::after {
    border: 1px solid var(--primaryLight);
}
.btnMoreB::after {
    border: 1px solid var(--secondaryLight);
}
.btnMoreA p,
.btnMoreB p {
    position: relative;
    z-index: 1;
}
.btnMoreA p {
    color: #1262b2;
}
.btnMoreB p {
    color: #c85250;
}

.btnMoreA p i,
.btnMoreB p i {
    font-size: 20px;
    line-height: 56px;
    padding-right: 4px;
}
.btnMoreA p i {
    color: #5ca5e5;
}
.btnMoreB p i {
    color: #ff767a;
}
.btnMoreA:hover::after {
    background-color: #1262b2;
    transition: all 0.3s ease-in-out;
}
.btnMoreB:hover::after {
    background-color: #c85250;
    transition: all 0.3s ease-in-out;
}
.btnMoreA:hover p,
.btnMoreA:hover p i,
.btnMoreB:hover p,
.btnMoreB:hover p i {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
}
@media screen and (min-width: 768px) and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
}
/*----------   表單按鈕設定 Button End  ----------*/

/*---------------   導覽列與漢堡選單 Start   ---------------*/
.navbar {
    padding: 8px 48px;
    background-color: #fff;
    border-bottom: 1px dashed #bfacac;
}
.navbar-nav .nav-link {
    position: relative;
    /*margin-right: 8px;*/
    outline: none;
    transition: 0.5s;
}
.nav-link {
    color: var(--dark) !important;
    font-size: 16px;
    font-weight: 400;
}
.navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}
.sticky-top {
    position: fixed;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.navbar-nav {
    width: 100%;
    justify-content: space-between;
}
.navLine {
    display: flex;
    justify-content: start;
    padding-top: 4px;
}
.searchBarLine {
    position: relative;
}
.memberLine {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-top: 4px;
}
.searchBarWeb {
    width: 100%;
    height: 47px;
    padding-left: 12px;
    padding-right: 45px;
    font-size: 16px;
    line-height: 43px;
    background-color: #f5f3f2;
    border: 1px solid #f5f3f2;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}
.searchIconWeb {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background-color: #a6425e;
    transition: all 0.3s ease-in-out;
}
.searchIconWeb:hover,
.searchBarLine:hover .searchIconWeb {
    border: none;
    background-color: #0095a6;
    transition: all 0.3s ease-in-out;
}
.searchIconWeb:focus,
.searchIconWeb:active,
.searchBarLine:focus .searchIconWeb,
.searchBarLine:active .searchIconWeb {
    border: none;
    background-color: #a6425e;
    transition: all 0.3s ease-in-out;
}
.searchIconWeb:before {
    position: absolute;
    top: 4px;
    left: 8px;
    content: "\f002";
    font-family: FontAwesome;
    font-size: 16px;
    color: #fff;
    font-weight: normal;
}
.searchBarWeb:hover {
    color: #0095a6;
    background-color: #fffff0;
    border: 1px solid #16ccd9;
    transition: all 0.3s ease-in-out;
}
.searchBarWeb:focus,
.searchBarWeb:active {
    color: #03343f;
    background-color: #fffff0;
    border: 1px solid #cc708f !important;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primaryLight) !important;
}
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}
.navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}
.sticky-top .navbar-brand img {
    max-height: 50px;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    color: #262321;
    font-family: "FontAwesome";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar .dropdown-toggle:hover::after {
    color: var(--primaryLight) !important;
}
.dropdown .dropdown-menu a.dropdown-item {
    padding: 8px 8px 9px;
    color: #595855;
    border-bottom: 1px dashed #bfacac;
}
.dropdown .dropdown-menu a:hover {
    background: var(--primaryLight);
    color: var(--bs-white);
    border-bottom: 1px dashed #fff;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: 0.5s;
    opacity: 1;
}
.navbar .navbar-nav .nav-item.nav-link i,
.navbar .navbar-nav .nav-link i {
    margin-right: 4px;
    font-size: 24px;
}
.shoppingCart{
    position: relative;
    margin-right: 4px;
}
.cartCount{
    position: absolute;
    top: -10px;
    right: -6px;
    width: 20px;
    height: 20px;
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 20px;
    background-color: #ff004c;
    border-radius: 100%;
}
.navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 102%;
    padding: 16px 12px;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 1px solid #bfb7b1;
    border-radius: 12px;
    transition: 0.5s;
    opacity: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1200px) {
    .navbar {
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: none;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }
    .navbar.navbar-expand-xl .navbar-toggler {
        padding: 12px 16px;
        font-size: 28px;
        color: var(--dark);
        background-color: #f7f3f0;
        border: none;
    }
    .navbar.navbar-expand-xl .navbar-toggler:active,
    .navbar.navbar-expand-xl .navbar-toggler:focus {
        color: var(--bs-white);
        background-color: var(--secondary);
    }
    .memberLine .nav-link i {
        font-size: 32px !important;
    }
    .nav-link{
        font-size: 20px;
        font-weight: 300;
    }
    .navbar-collapse {
        margin-top: 12px;
        border-top: 1px dashed #bfacac;
    }
    .navLine {
        display: block;
        padding: 0 0 12px;
    }
    .navbar-nav .navLine .nav-link,
    .sticky-top .navbar-nav .navLine .nav-link {
        display: block;
        padding: 8px 0 9px;
        margin-left: 0;
        border-bottom: 1px dashed #bfacac;
        color: var(--dark) !important;
        transition: all 0.3s ease-in-out;
    }
    .navbar-nav .navLine .nav-link:active,
    .navbar-nav .navLine .nav-link:focus,
    .sticky-top .navbar-nav .navLine .nav-link:active,
    .sticky-top .navbar-nav .navLine .nav-link:focus {
        color: var(--bs-white) !important;
        border-bottom: 1px dashed #fff;
        background: var(--primaryLight);
        transition: all 0.3s ease-in-out;
    }
    .navbar-brand img {
        max-height: 45px;
    }
    .searchBarLine {
        position: static;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .searchPart01 {
        width: 70%;
        padding: 0;
    }
    .searchPart02 {
        width: 30%;
        padding: 0;
    }
    .searchBarM {
        width: 100%;
        padding: 12px;
        font-size: 18px;
        background-color: #f5f3f2;
        border: 1px solid #bfb7b1;
        border-right: none;
        border-radius: 16px 0 0 16px;
        transition: all 0.3s ease-in-out;
    }
    .searchButton {
        width: 100%;
        padding: 12px;
        font-size: 18px;
        color: #fff;
        border: 1px solid #a6425e;
        border-left: none;
        border-radius: 0 16px 16px 0;
        background-color: #a6425e;
        transition: all 0.3s ease-in-out;
    }
    .searchButton:focus,
    .searchButton:active {
        border: 1px solid var(--primary);
        border-left: none;
        background-color: var(--primary);
        transition: all 0.3s ease-in-out;
    }
    .searchBarM:focus,
    .searchBarM:active {
        color: #03343f;
        background-color: #fffff0;
        border: 1px solid #cc708f !important;
        border-right: none;
        outline: none;
        transition: all 0.3s ease-in-out;
    }
    /*-----------   會員選單設定 start   -----------*/ .offcanvas-header{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 5px 0;
        color: #fff;
        background-color: var(--dark) !important;
    }
    .offcanvas-title{
        width: 90%;
        text-align: center;
        font-size: 24px;
        font-weight: 400;
    }
    a.xClose02{
        width: 10%;
        text-align: center;
        display: block;
        text-decoration: none;
        color: #fff;
    }
    a.xClose02 i{
        font-size: 36px;
    }
    .offcanvas-body{
        padding-top: 0;
        padding-bottom: 0;
    }
    .offcanvas-body ul{
        width: 100%;
        list-style-type: none;
        padding-left: 0  !important;
    }
    .offcanvas-body li a{
        display: block;
        padding-left: 10px;
        padding-right: 10px;
        width:100%;
        height: 50px;
        font-size: 20px;
        font-weight: 300;
        text-decoration: none;
        line-height: 50px;
        color: var(--dark) !important;
        border-bottom:1px dashed #bfacac;
        background-color:#fff;
    }
    .offcanvas-body li:active{
        color: var(--primary) !important;
        font-weight: 400;
    }
    .offcanvas-body li a:active{
        color: var(--primary) !important;
        font-weight: 400;
    }
    /*-----------   會員選單設定 End   -----------*/    
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .navbar {
        padding-left: 48px;
        padding-right: 48px;
    }
    .memberLine {
        width: 72%;
    }
    .memberLine .nav-link i {
        padding-left: 32px;
        padding-right: 32px;
    }
    .cartCount{
        position: absolute;
        top: -10px;
        right: 20px;
    }    
    .searchBarLine {
        padding: 104px 48px 16px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .navbar {
        padding-left: 36px;
        padding-right: 36px;
    }
    .memberLine {
        width: 64%;
    }
    .memberLine .nav-link i {
        padding-left: 24px;
        padding-right: 24px;
    }
    .cartCount{
        position: absolute;
        top: -10px;
        right: 16px;
    }      
    .searchBarLine {
        padding: 104px 36px 16px;
    }
}

@media screen and (max-width: 767px) {
    .navbar {
        padding-left: 12px;
        padding-right: 12px;
    }
    .memberLine {
        width: 40%;
    }
    .memberLine .nav-link i {
        padding-left: 16px;
        padding-right: 16px;
    }
    .cartCount{
        position: absolute;
        top: -10px;
        right: 5px;
    }       
    .searchBarLine {
        padding: 104px 12px 16px;
    }
}
/*---------------   導覽列與漢堡選單 End   ---------------*/

/*=============== 全部共用區 end ===============*/

/*---------------  大輪播 start  ---------------*/
.headerPadding {
    padding-top: 135px;
    padding-bottom: 36px;
}
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    margin-right: 1px;
    z-index: 1;
}
.header-carousel .header-carousel-item a {
    display: block;
}
.header-carousel .header-carousel-item img {
    min-height: 635px;
    object-fit: cover;
}
.header-carousel .owl-dots {
    margin-top: -27px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 1px solid var(--primaryLight);
    border-radius: 10px;
    transition: 0.5s;
}
.header-carousel .owl-dot.active {
    width: 30px;
    background: var(--primaryLight);
    border: 1px solid var(--bs-white);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .headerPadding {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .header-carousel .header-carousel-item img {
        object-fit: cover;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .headerPadding {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .header-carousel .header-carousel-item img {
        width: 100%;
        min-height: auto;
        object-fit: contain;
    }
}
@media screen and (max-width: 767px) {
    .headerPadding {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .header-carousel .header-carousel-item img {
        max-width: 100%;
        min-height: auto;
        object-fit: contain;
    }
}
/*---------------  大輪播 End  ---------------*/

/*----------  新聞與知識頭條 start  ----------*/
.newsHeadline {
    margin: 0;
    padding: 0;
    margin-bottom: 16px;
    list-style: none;
}
.newsHeadline li a {
    display: block;
    padding: 8px;
    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
    border-bottom: 1px dashed #bfb7b1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.newsHeadline li:nth-child(odd) a {
    color: #262321;
    background-color: #f7f3f0;
}
.newsHeadline li:nth-child(even) a {
    color: #595855;
    background-color: #fff;
}
.newsHeadline li a:hover {
    color: #0095a6;
    background-color: #fffff0;
    border-bottom: 1px dashed #16ccd9;
}
.headNewsNo {
    display: inline-block;
    margin-right: 8px;
    width: 29px;
    height: 31px;
    font-family: "Plus Jakarta Sans";
    text-align: center;
    font-size: 20px;
    line-height: 31px;
    font-weight: 700;
    color: #fff;
    background-color: #ffa64d;
    border-radius: 5px;
}
.knowHeadline {
    margin: 0;
    padding: 0;
    list-style: none;
}
.knowHeadline li a {
    display: block;
    padding: 8px;
    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
    border-bottom: 1px dashed #bfacac;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.knowHeadline li:nth-child(odd) a {
    color: #2c3c3f;
    background-color: #f7f0f0;
}
.knowHeadline li:nth-child(even) a {
    color: #657585;
    background-color: #fff;
}
.knowHeadline li a:hover {
    color: #1262b2;
    background-color: #fffff0;
    border-bottom: 1px dashed #5ca5e5;
}
.headKnowNo {
    display: inline-block;
    margin-right: 8px;
    width: 29px;
    height: 31px;
    font-family: "Plus Jakarta Sans";
    text-align: center;
    font-size: 20px;
    line-height: 31px;
    font-weight: 700;
    color: #fff;
    background-color: #ff767a;
    border-radius: 5px;
}
/*----------  新聞與知識頭條 End  ----------*/

/*----------  熱銷推薦卡片輪播 Start  ----------*/
.hotSale-carousel.owl-carousel .owl-stage-outer {
    padding: 8px;
}
.hotSale .hotSale-item a {
    display: block;
    text-decoration: none;
}
.hotSale .hotSale-item {
    padding: 12px 12px 20px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px dashed #bfacac;
    transition: all 0.2s;
}
.hotSale .hotSale-item:hover {
    background-color: #fffff0;
    border: 1px solid #ff767a;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}
.hotSale-item .productsThumb {
    position: relative;
    display: block;
    height: 294px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
}
.hotSale-item .productsThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lableRow {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 8px;
    z-index: 10;
}
.productLabel-class {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #5ca5e5;
    border-radius: 10px;
    margin-bottom: 4px;
}
.productLabel-status {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #ffa64d;
    border-radius: 10px;
}
.productName {
    margin: 12px 0 8px;
    height: 48px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--dark) !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.productBrief {
    margin-bottom: 8px;
    height: 48px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #595855;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.hotSale-item:hover .productName {
    color: var(--primary) !important;
    transition: all 0.2s;
}
.productPrice {
    display: flex;
    margin-bottom: 20px;
    align-content: center;
    font-family: "Plus Jakarta Sans";
    line-height: 1.3;
    vertical-align: middle;
}
.specialPrice {
    padding-right: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #ff004d;
}
.originalPrice {
    padding-top: 2px;
    font-size: 16px;
    color: #8f8681;
    text-decoration-line: line-through;
}
.productAddCart {
    width: 100%;
    padding: 12px 24px;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: var(--primaryLight) !important;
    transition: all 0.2s;
}
.hotSale-item:hover .productAddCart {
    background-color: var(--secondaryLight) !important;
    transition: all 0.2s;
}
.productAddCart i {
    padding-right: 4px;
    font-size: 20px;
}
.hotSale-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotSale-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 1px solid var(--primaryLight);
    border-radius: 10px;
    transition: 0.5s;
}

.hotSale-carousel .owl-dot.active {
    width: 30px;
    background: var(--primaryLight);
    border: 1px solid var(--bs-white);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .hotSale-item .productsThumb {
        height: 268px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .hotSale-item .productsThumb {
        height: 272px;
    }
}
@media screen and (max-width: 767px) {
    .hotSale-item .productsThumb {
        height: 242px;
    }
}

/*----------  熱銷推薦卡片輪播 End  ----------*/

/*----------  商品分類 End  ----------*/
a.prodCatsA {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
a.prodCatsA .catsPicA {
    margin-bottom: 8px;
    padding: 8px;
    border: 3px solid #bfacac;
    border-radius: 100%;
    background-color: #fff;
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); */
    overflow: hidden;
}
a:hover.prodCatsA .catsPicA {
    border: 3px solid #ff767a;
}
.catsPicA img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}
a:hover.prodCatsA .catsPicA img{
    -webkit-filter: brightness(110%) saturate(120%);
    filter: brightness(110%) saturate(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;    
}
a.prodCatsA .prodName {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: #595855;
}
a:hover.prodCatsA .prodName {
    color: #a6425e;
}
.prodAmount {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #8f7978;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .prodType {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .prodType::-webkit-scrollbar {
        display: none;
    }    
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .prodType {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;        
    }
    .prodType::-webkit-scrollbar {
        display: none;
    }    
}

@media screen and (max-width: 767px) {
    .prodType {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .prodType::-webkit-scrollbar {
        display: none;
    }    
    
}
/*----------  商品分類 End  ----------*/

/*----------  主題Banner設定 Start  ----------*/
.bannerL01 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.bannerR01 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bannerL02 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}
.bannerR02 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.topBanner,
.buttomBanner {
    border-radius: 10px;
    overflow: hidden;
}
.topBanner a, .buttomBanner a, .bannerM01 a, .bannerOne a, .bannerFour a{
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;    
}
.bannerM01 {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.bannerOne {
    display: block;
    overflow: hidden;
}
.bannerFour {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.topBanner img,
.buttomBanner img,
.bannerM01 img,
.bannerOne img,
.bannerL02 img,
.bannerR02 img,
.bannerFour img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.topBanner a:hover img,
.buttomBanner a:hover img,
.bannerM01 a:hover img,
.bannerOne a:hover img,
.bannerL02 a:hover img,
.bannerR02 a:hover img,
.bannerFour a:hover img {
    -webkit-filter: brightness(110%) saturate(120%);
    filter: brightness(110%) saturate(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.topicBanner-1colB {
    background: #33b3b8 url(../img/bgFillWeb01.png) no-repeat center bottom;
    background-size: contain;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
}

@media screen and (min-width: 768px) and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
    .topicBanner-1colB {
        background: none;
        background-color: #33b3b8;
    }
}
/*----------  主題Banner設定 End  ----------*/

/*----------  有頁籤的寵物新聞 Start  ----------*/
.news ul {
    list-style: none;
    /*overflow: hidden;*/
}
.nav-pills {
    border-bottom: 1px solid #bfb7b1;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* iOS 滾動優化 */
    scrollbar-width: none;  /* Firefox 隱藏 scrollbar */
}
.nav-pills::-webkit-scrollbar {
    display: none;  /* Chrome 隱藏 scrollbar */ 
}
.nav-pills .nav-item {
    flex: 0 0 auto;
}
.nav-pills .nav-link {
    margin-right: 16px;
    margin-top: 4px;
    margin-bottom: -1px;
    padding: 6px 24px 5px;
    border: 1px solid #bfb7b1;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary) !important;
    background-color: #fff;
    border-radius: 32px 8px 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-pills .nav-link::before {
    content: "\f1b0";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 24px;
    color: #e3c144;
    padding-right: 4px;
    vertical-align: baseline;
    transform: rotate(-15deg);
}
.nav-pills .nav-link:hover {
    color: var(--secondary) !important;
    border: 1px solid var(--secondaryLight) !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-pills .nav-link:hover::before {
    color: #ff767a;
}
.nav-pills .nav-link.active {
    color: var(--bs-white) !important;
    border: 1px solid var(--secondary) !important;
    background: var(--secondary) !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-pills .nav-link.active::before {
    color: #fadd78;
}
.nav-pills .nav-link:hover.active {
    color: var(--bs-white) !important;
}
.tab-content ul {
    padding: 0;
    margin: 0;
}
.tab-content {
    margin-top: 24px;
}
.news-carousel.owl-carousel .owl-stage-outer {
    padding: 8px;
}
.news .news-item a {
    display: block;
    text-decoration: none;
}
.news-item {
    padding: 16px 12px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-item:nth-child(odd) .news-item {
    background-color: #fff;
    border: 1px solid rgba(191, 183, 177, 0.4);
}
.owl-item:nth-child(even) .news-item {
    background-color: #f7f3f0;
    border: 1px solid rgba(191, 172, 172, 0.4);
}
.owl-item .news-item:hover {
    background-color: #fffff0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-item:nth-child(odd) .news-item:hover {
    border: 1px solid var(--primaryLight) !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.owl-item:nth-child(even) .news-item:hover {
    border: 1px solid #ff767a !important;
}
.news-item .newsThumb {
    position: relative;
    display: block;
    height: 184px;
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.news-item .newsThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-item:hover .newsThumb img {
    -webkit-filter: brightness(120%) saturate(120%);
    filter: brightness(120%) saturate(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.news-item .newsDateType {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 12px;
    border-radius: 0 20px 0 0;
    overflow: hidden;
    text-align: center;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Plus Jakarta Sans";
    z-index: 10;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.news-item .newsDateType::before {
    content: "\f1b0";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 28px;
    padding-bottom: 4px;
    color: #fff;
    transform: rotate(30deg);
}
.owl-item:nth-child(odd) .news-item .newsDateType {
    color: #2c3c3f;
    background-color: #71d1d1;
}
.owl-item:nth-child(even) .news-item .newsDateType {
    color: #262321;
    background-color: #ebccb0;
}
.owl-item:nth-child(odd) .news-item:hover .newsDateType {
    background-color: #ffb1a3;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-item:nth-child(even) .news-item:hover .newsDateType {
    color: #262321;
    background-color: #9ecc76;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.newsDateType .newsDate {
    font-size: 24px;
}
.newsDateType .newsMonth {
    font-size: 16px;
}
.tagsRow {
    display: flex;
    padding: 12px 0 4px !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.tagsRow::-webkit-scrollbar {
    display: none;
}

.tags {
    margin-right: 4px;
}
.tags a {
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.tagsRow .tags {
    flex: 0 0 auto;
}
.tags:nth-child(1) a {
    background-color: #e3c144;
    border-color: #fadd78;
}
.tags:nth-child(2) a {
    background-color: #cc9f76;
    border-color: #ebccb0;
}
.tags:nth-child(3) a {
    background-color: #e57c6e;
    border-color: #ffb1a3;
}
.tags:nth-child(4) a {
    background-color: #7a5bbd;
    border-color: #9d84db;
}
.tags:nth-child(5) a {
    background-color: #2cb3b8;
    border-color: #71d1d1;
}
.tags:nth-child(6) a {
    background-color: #679e3f;
    border-color: #9ecc76;
}
.tags:nth-child(7) a {
    background-color: #4ca8d9;
    border-color: #8ed1f5;
}
.tags:nth-child(8) a {
    background-color: #26ad6e;
    border-color: #70c299;
}
.tags:nth-child(9) a {
    background-color: #d57c8e;
    border-color: #f0c0c9;
}
.tags:nth-child(1) a:hover {
    background-color: #fadd78;
    border-color: #e3c144;
}
.tags:nth-child(2) a:hover {
    background-color: #ebccb0;
    border-color: #cc9f76;
}
.tags:nth-child(3) a:hover {
    background-color: #ffb1a3;
    border-color: #e57c6e;
}
.tags:nth-child(4) a:hover {
    background-color: #9d84db;
    border-color: #7a5bbd;
}
.tags:nth-child(5) a:hover {
    background-color: #71d1d1;
    border-color: #2cb3b8;
}
.tags:nth-child(6) a:hover {
    background-color: #9ecc76;
    border-color: #679e3f;
}
.tags:nth-child(7) a:hover {
    background-color: #8ed1f5;
    border-color: #4ca8d9;
}
.tags:nth-child(8) a:hover {
    background-color: #70c299;
    border-color: #26ad6e;
}
.tags:nth-child(9) a:hover {
    background-color: #f0c0c9;
    border-color: #d57c8e;
}
.news-item .newsTitle {
    display: block;
    margin: 8px 0;
    height: 48px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-item .newsBrief {
    margin-bottom: 8px;
    height: 68px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-item:nth-child(odd) .newsTitle {
    color: #2c3c3f;
}
.news-item:nth-child(even) .newsTitle {
    color: #262321;
}
.news-item:nth-child(odd) .newsBrief {
    color: #657585;
}
.news-item:nth-child(even) .newsBrief {
    color: #595855;
}
.news-item:hover:nth-child(odd) .newsTitle {
    color: #0095a6;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.news-item:hover:nth-child(even) .newsTitle {
    color: #a6425e;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.news-carousel .owl-dots {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 1px solid var(--primaryLight);
    border-radius: 10px;
    transition: 0.5s;
}

.news-carousel .owl-dot.active {
    width: 30px;
    background: var(--primaryLight);
    border: 1px solid var(--bs-white);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
}

@media screen and (min-width: 768px) and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
}
/*----------  有頁籤的寵物新聞 End  ----------*/

/*----------  寵物種類 Start  ----------*/
.petTypeA {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.petTypeA::-webkit-scrollbar {
    display: none;
}    

a.petKind01,
a.petKind02,
a.petKind03,
a.petKind04,
a.petKind05,
a.petKind06 {
    padding: 12px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: #fff;
    border-radius: 16px;
}
a.petKind01 {
    border: 1px solid #f0c0c9;
}
a:hover.petKind01 {
    border: 1px solid #d57c8e;
    background-color: #d57c8e;
}
a.petKind02 {
    border: 1px solid #9ecc76;
}
a:hover.petKind02 {
    border: 1px solid #679e3f;
    background-color: #679e3f;
}
a.petKind03 {
    border: 1px solid #71d1d1;
}
a:hover.petKind03 {
    border: 1px solid #2cb3b8;
    background-color: #2cb3b8;
}
a.petKind04 {
    border: 1px solid #9d84db;
}
a:hover.petKind04 {
    border: 1px solid #7a5bbd;
    background-color: #7a5bbd;
}
a.petKind05 {
    border: 1px solid #8ed1f5;
}
a:hover.petKind05 {
    border: 1px solid #4ca8d9;
    background-color: #4ca8d9;
}
a.petKind06 {
    border: 1px solid #ebccb0;
}
a:hover.petKind06 {
    border: 1px solid #cc9f76;
    background-color: #cc9f76;
}
a.petKind01 .petPic,
a.petKind02 .petPic,
a.petKind03 .petPic,
a.petKind04 .petPic,
a.petKind05 .petPic,
a.petKind06 .petPic {
    margin-bottom: 8px;
    border-radius: 100%;
    border: 3px solid #fff;
    overflow: hidden;
}
a.petKind01 .petPic {
    background: linear-gradient(to bottom, #f0c0c9 0%, #d57c8e 100%);
}
a.petKind02 .petPic {
    background: linear-gradient(to bottom, #9ecc76 0%, #679e3f 100%);
}
a.petKind03 .petPic {
    background: linear-gradient(to bottom, #71d1d1 0%, #2cb3b8 100%);
}
a.petKind04 .petPic {
    background: linear-gradient(to bottom, #9d84db 0%, #7a5bbd 100%);
}
a.petKind05 .petPic {
    background: linear-gradient(to bottom, #8ed1f5 0%, #4ca8d9 100%);
}
a.petKind06 .petPic {
    background: linear-gradient(to bottom, #ebccb0 0%, #cc9f76 100%);
}
a:hover.petKind01 .petPic,
a:hover.petKind02 .petPic,
a:hover.petKind03 .petPic,
a:hover.petKind04 .petPic,
a:hover.petKind05 .petPic,
a:hover.petKind06 .petPic {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
}
a:hover.petKind01 .petPic {
    border: 3px solid #f0c0c9;
}
a:hover.petKind02 .petPic {
    border: 3px solid #9ecc76;
}
a:hover.petKind03 .petPic {
    border: 3px solid #71d1d1;
}
a:hover.petKind04 .petPic {
    border: 3px solid #9d84db;
}
a:hover.petKind05 .petPic {
    border: 3px solid #8ed1f5;
}
a:hover.petKind06 .petPic {
    border: 3px solid #ebccb0;
}
.petPic img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}
a.petKind01 .petName,
a.petKind02 .petName,
a.petKind03 .petName,
a.petKind04 .petName,
a.petKind05 .petName,
a.petKind06 .petName {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #262321;
}
a:hover.petKind01 .petName,
a:hover.petKind02 .petName,
a:hover.petKind03 .petName,
a:hover.petKind04 .petName,
a:hover.petKind05 .petName,
a:hover.petKind06 .petName {
    color: #fadd78;
}
a.petKind01 .articles,
a.petKind02 .articles,
a.petKind03 .articles,
a.petKind04 .articles,
a.petKind05 .articles,
a.petKind06 .articles {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #595855;
}
a:hover.petKind01 .articles,
a:hover.petKind02 .articles,
a:hover.petKind03 .articles,
a:hover.petKind04 .articles,
a:hover.petKind05 .articles,
a:hover.petKind06 .articles {
    color: #fff;
}
a.petKind01 .prodItems,
a.petKind02 .prodItems,
a.petKind03 .prodItems,
a.petKind04 .prodItems,
a.petKind05 .prodItems,
a.petKind06 .prodItems {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #8f8681;
}
a:hover.petKind01 .prodItems,
a:hover.petKind02 .prodItems,
a:hover.petKind03 .prodItems,
a:hover.petKind04 .prodItems,
a:hover.petKind05 .prodItems,
a:hover.petKind06 .prodItems {
    color: #f7f3f0;
}
/*----------  寵物種類 End  ----------*/

/*----------  寵物專欄 Start  ----------*/
.know {
    background: #fff7e5 url(../img/bgFillWeb07.png) no-repeat center bottom;
    background-size: contain;
}
.knowItem a {
    display: block;
    text-decoration: none;
}
.knowItemL {
    display: flex;
    flex-direction: column;
}
.knowItemR {
    display: flex;
    flex-direction: row;
    align-content: center;
}
.knowItemR:nth-child(1),
.knowItemR:nth-child(2) {
    margin-bottom: 36px;
}
.knowItemL .knowThumb {
    display: block;
    height: 339px;
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.knowItemR .knowThumb {
    display: block;
    height: 164px;
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.knowItemL .knowThumb img,
.knowItemR .knowThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.knowItemL:hover .knowThumb img,
.knowItemR:hover .knowThumb img {
    -webkit-filter: brightness(120%) saturate(120%);
    filter: brightness(120%) saturate(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.knowItemL .knowTitle {
    margin-bottom: 12px;
    height: 56px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--bs-dark);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.knowItemR .knowTitle {
    margin-bottom: 8px;
    height: 80px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--bs-dark);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}
.knowItemL a:hover .knowTitle,
.knowItemR a:hover .knowTitle {
    color: var(--primary);
}
.knowItemL .tagsRow,
.knowItemR .tagsRow {
    padding: 8px 0 12px !important;
}
.knowItemL .knowBrief {
    margin-bottom: 12px;
    height: 68px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #595855;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}
.knowItemL .authorDate,
.knowItemR .authorDate {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.knowItemL .knowAuthor {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 12px;
    font-size: 18px;
    line-height: 1.4;
    color: #8f8681;
}
.knowItemL .authorPic {
    margin-right: 4px;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    overflow: hidden;
}
.knowItemL .authorPic img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}
.knowItemR .knowAuthor {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 12px;
    font-size: 16px;
    line-height: 1.4;
    color: #8f8681;
}
.knowItemR .knowAuthor i {
    margin-right: 4px;
    font-size: 20px;
    color: #ebccb0;
}
.knowItemL a:hover .knowAuthor,
.knowItemR a:hover .knowAuthor {
    color: #a6425e;
}
.knowItemR a:hover .knowAuthor i {
    color: #cc9f76;
}
.knowItemL a:hover .authorPic img {
    -webkit-filter: brightness(120%) saturate(120%);
    filter: brightness(120%) saturate(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.knowItemL .knowDate {
    display: flex;
    flex-direction: row;
    font-family: "Plus Jakarta Sans";
    font-size: 17px;
    line-height: 1.4;
    color: #8f8681;
}
.knowItemL .knowDate i {
    margin-right: 4px;
    font-size: 24px;
    color: #8ed1f5;
}
.knowItemR .knowDate {
    display: flex;
    flex-direction: row;
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    line-height: 1.4;
    color: #8f8681;
}
.knowItemR .knowDate i {
    margin-right: 4px;
    font-size: 20px;
    color: #8ed1f5;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .know {
        background: #fff7e5 url(../img/bgFillM07.png) no-repeat center bottom;
        background-size: contain;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .know {
        background: #fff7e5 url(../img/bgFillM07.png) no-repeat center bottom;
        background-size: contain;
    }
}
@media screen and (max-width: 767px) {
    .know {
        background: #fff7e5 url(../img/bgFillM07.png) no-repeat center bottom;
        background-size: contain;
    }
}

/*----------  寵物專欄 End  ----------*/

/*----------  寵物影音 Start  ----------*/
.video ul {
    list-style: none;
    /*overflow: hidden;*/
}
.video-carousel.owl-carousel .owl-stage-outer {
    padding: 8px;
}
.video .video-item a {
    display: block;
    text-decoration: none;
}
.video-item {
    padding: 16px;
    border-radius: 32px 8px 8px 32px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-item:nth-child(odd) .video-item {
    border: 1px solid #f0c0c9;
}
.owl-item:nth-child(even) .video-item {
    border: 1px solid #71d1d1;
}
.owl-item .video-item:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-item:nth-child(odd) .video-item:hover {
    background-color: #a6425e;
}
.owl-item:nth-child(even) .video-item:hover {
    background-color: #0095a6;
}
.video-item .videoCover {
    position: relative;
    display: block;
    margin-bottom: 16px;
    height: 158px;
    border-radius: 32px 8px 8px 32px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.video-item .videoCover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-item:hover .videoCover img {
    -webkit-filter: brightness(120%) saturate(120%);
    filter: brightness(120%) saturate(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.video-item .video-play-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 20;
}
.video-item .video-play-icon i {
    font-size: 60px;
    color: #fff;
    border-radius: 100%;
    z-index: 20;
}
.video-item .videoPlayBk {
    position: absolute;
    width: 40px;
    height: 30px;
    top: calc(50% - 15px);
    right: calc(50% - 20px);
    background-color: #ff0000;
    z-index: 10;
}
.video-item:hover .video-play-icon i {
    color: #ff0000;
}
.video-item:hover .videoPlayBk {
    background-color: #d9d9d9;
}
.video-item .videoDate {
    display: block;
    margin-bottom: 16px;
    font-family: "Plus Jakarta Sans";
    font-size: 17px;
    line-height: 1.4;
}
.video-item .videoDate i {
    margin-right: 4px;
    font-size: 20px;
}
.owl-item:nth-child(odd) .video-item .videoDate {
    color: #8f7878;
}
.owl-item:nth-child(odd) .video-item .videoDate i {
    color: #e57c6e;
}
.owl-item:nth-child(even) .video-item .videoDate {
    color: #8f8681;
}
.owl-item:nth-child(even) .video-item .videoDate i {
    color: #4ca8d9;
}
.owl-item:nth-child(odd) .video-item:hover .videoDate {
    color: #bfacac;
}
.owl-item:nth-child(odd) .video-item:hover .videoDate i {
    color: #ffb1a3;
}
.owl-item:nth-child(even) .video-item:hover .videoDate {
    color: #bfb7b1;
}
.owl-item:nth-child(even) .video-item:hover .videoDate i {
    color: #8ed1f5;
}
.owl-item .video-item .videoTitle {
    display: block;
    margin-top: 4px;
    margin-bottom: 12px;
    height: 84px;
    font-size: 20px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}
.owl-item:nth-child(odd) .video-item .videoTitle {
    color: #262321;
}
.owl-item:nth-child(even) .video-item .videoTitle {
    color: #2c3c3f;
}
.owl-item:nth-child(odd) .video-item:hover .videoTitle {
    color: #f7f0f0;
}
.owl-item:nth-child(even) .video-item:hover .videoTitle {
    color: #f7f3f0;
}
.video-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 1px solid var(--primaryLight);
    border-radius: 10px;
    transition: 0.5s;
}

.video-carousel .owl-dot.active {
    width: 30px;
    background: var(--primaryLight);
    border: 1px solid var(--bs-white);
}
.modal {
    --bs-modal-width: 650px;
}
.modal-header {
    padding: 5px 0;
    display: flex;
    justify-content: center;
    color: #fff;
    background-color: #262321;
}
.modal-title {
    width: 90%;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}
.modal-body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.modal-footer {
    justify-content: center;
    padding-top: 0;
    border-top: none;
}
.modalVideoTitle {
    margin-bottom: 16px;
    border-left: 5px solid #ffa64d;
    padding-left: 5px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #595855;
}
a.xClose01 {
    width: 10%;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #fff;
}
a.xClose01 i {
    font-size: 36px;
}
@media screen and (max-width: 767px) {
    .modal {
        --bs-modal-width: 360px;
    }
    .modal-header {
        padding: 5px 0;
    }
    .modal-title {
        width: 90%;
    }
    a.xClose01 {
        width: 10%;
    }
    a.xClose01 i {
        font-size: 36px;
    }
}
/*----------  寵物影音 End  ----------*/

/*----------  企業夥伴 Start  ----------*/
.partner ul {
    list-style: none;
}
.partner-carousel.owl-carousel .owl-stage-outer {
    padding: 8px;
}
.partner .partner-item a {
    display: block;
    text-decoration: none;
}
.partner-item {
    padding: 16px 12px 12px;
    border-radius: 32px 12px 12px 32px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-item:nth-child(odd) .partner-item {
    border: 2px dashed #9ecc76;
}
.owl-item:nth-child(even) .partner-item {
    border: 2px dashed #ebccb0;
}
.owl-item .partner-item:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-item:nth-child(odd) .partner-item:hover {
    border: 2px solid #9ecc76;
}
.owl-item:nth-child(even) .partner-item:hover {
    border: 2px solid #ebccb0;
}
.partner-item .partnerLogo {
    display: block;
    margin-bottom: 4px;
    height: 99px;
    border-radius: 32px 8px 8px 32px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.partner-item .partnerLogo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partner-item:hover .partnerLogo img {
    -webkit-filter: brightness(120%) saturate(120%);
    filter: brightness(120%) saturate(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-item .partner-item .partnerName{
    display: flex;
    justify-content: center;
    align-content: center;
    height: 56px;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    vertical-align: middle;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;    
}
.owl-item:nth-child(odd) .partner-item .partnerName {
    color: #595855;
}
.owl-item:nth-child(even) .partner-item .partnerName {
    color: #657585;
}
.owl-item .partner-item:hover .partnerName{
    font-weight: 500;
}
.owl-item:nth-child(odd) .partner-item:hover .partnerName {
    color: #679e3f;
}
.owl-item:nth-child(even) .partner-item:hover .partnerName {
    color: #cc9f76;
}
.partner-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 1px solid var(--primaryLight);
    border-radius: 10px;
    transition: 0.5s;
}
.partner-carousel .owl-dot.active {
    width: 30px;
    background: var(--primaryLight);
    border: 1px solid var(--bs-white);
}
/*----------  企業夥伴 End  ----------*/

/*----------     頁尾 Footer Start    ----------*/
.footer {
    background: #262321 url(../img/footerBG02.png) repeat left top;
    padding: 30px 48px;
}
.footer a{
    text-decoration: none;
}
.footer hr{
    width: 100%;
    size: 1px;
    color: #bfb7b1;
}
.footerBanner{
    margin-bottom: 16px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.footerBanner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
a:hover .footerBanner img{
    -webkit-filter: brightness(110%) saturate(120%);
    filter: brightness(110%) saturate(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.footerLogo{
    margin-bottom: 36px;
}
.footerLogo img {
    max-height: 94px;
}
.contactInfo{
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 300;
    color: #f7f3f0;
}
.contactInfo a{
    color: #f7f3f0;
}
.contactInfo a:hover{
    color: #fadd78;
}
.contactInfo p{
    margin-bottom: 8px;
}
.footerTitle{
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.followUsBox{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 12px;
}
.footerIcon a{ 
    display: block;
    margin-right: 16px;
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 10px;
    background-color: #bfb7b1;
}
.footerIcon a i{
    font-size: 28px;
    line-height: 48px;
    color: #fff;
}
.footerIcon:last-child a{
    margin-right: 0;
}
.footerIcon a:hover.facebook{
    background-color: #1877f2;    
}
.footerIcon a:hover.line{
    background-color: #00c300;    
}
.menuLink{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 16px;
}
.menuLink .footer-link {
    flex: 0 0 auto;
}
.footer-link{
  margin-bottom: 8px;  
}
.footer-link a,
.footer-link span {
    font-size: 18px;
    line-height: 1.4;
    color: #f7f3f0;
    transition: 0.5s;
}
.footer-link::after{
    content: "｜";
    font-size: 18px;
    color: #bfb7b1;
    padding: 0 2px;
}
.footer-link a:hover{
    color: #fadd78;
}
.footer-link:last-child::after{
    display: none;
}
.copyright {
    display: block;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
    color: #bfb7b1;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .footerLogo{
        margin-bottom: 16px;
    }
    .footer {
        padding: 30px 36px;
    } 
    .copyright{
        margin-bottom: 16px;
    }
}
@media screen and (max-width: 767px) {
    .footerLogo{
        margin-bottom: 16px;
    }
    .footer {
        padding: 30px 12px;
    }    
    .copyright{
        margin-bottom: 16px;
    }
}
/*----------     頁尾 Footer End    ----------*/
