@charset "UTF-8";

/****header****/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 999;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transition: opacity .4s ease-in-out;
}

.navbar {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-end;
    justify-content: flex-end;
    width: calc(100% - 60px);
    height: 100%;
    margin: 0 auto;
}

/****logo****/
.logo {
    display: block;
    width: 75px;
    margin: 0 auto 0 0;
    transform-origin: top left;
    transform: scale(1.4);
    transition: transform .4s ease-in-out;
    flex: 0 0 auto;
}

/****主選單深色背景****/
.mainMenuBoxBg {
    display: none;
}

/****主選單****/
.mainMenuBox {
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 0 0 290px;
    flex: 0 1 auto;
}

.mainMenu {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mainMenu::-webkit-scrollbar {
    width: 6px;
}

.mainMenu::-webkit-scrollbar-thumb {
    background: #11330a;
}

.mainMenu__item {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    margin: 0 35px;
}

.mainMenu__item-pad {
    display: none;
}

.mainMenu__item::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: calc(50% - 15px);
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s ease-in-out;
    overflow: hidden;
}

.mainMenu__item.active::before {
    opacity: 1;
}

.mainMenu__item.j-dropdown {
    cursor: pointer;
}

.mainMenu__item.j-dropdown::after {
    content: '';
    position: relative;
    display: block;
    width: 10px;
    height: 5px;
    background: url(../../images/common/icon_arrow_bottom.svg) center no-repeat;
    background-size: contain;
    margin: 0 0 0 10px;
}

.mainMenu__item.active.j-dropdown::after {
    transform: scaleY(-1);
}

.mainMenu__item__link__icon {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: calc(-17.5px - .5em) 10px calc(-17.5px - .5em) 0;
    border-radius: 50%;
    border: 1px solid #efefef;
    flex: 0 0 auto;
}

.mainMenu__item__link__icon img {
    object-fit: contain;
    object-position: center;
    width: 50%;
    height: 50%;
}

.mainMenu__item__link {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    line-height: 1;
    color: #2e2825;
}

.mainMenu__item__link__icon {
    display: none;
}

/**第二層選單**/
.mainMenu__item__list {
    position: absolute;
    top: 130px;
    left: calc(50% - 300px);
    width: 600px;
    height: 500px;
    max-height: calc(100vh - 150px);
    padding: 20px;
    background: #fff;
    transition: opacity .4s ease-in-out;
    cursor: auto;
    overflow: hidden;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.mainMenu__item__list::-webkit-scrollbar {
    width: 0;
}

.mainMenu__item__list::-webkit-scrollbar-thumb {
    background: #11330a;
}

.mainMenu__item__list::before {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% - .5px);
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    background: #e1e1e1;
    z-index: 10;
}

.mainMenu__item__list::after {
    content: '';
    position: sticky;
    left: 0;
    bottom: -20px;
    display: block;
    width: 100%;
    height: 75px;
    margin: 0 0 -75px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
    pointer-events: none;
    z-index: 20;
}

.mainMenu__item.active .mainMenu__item__list {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.mainMenu__item__list__item {
    width: calc(50% - 20px);
}

.mainMenu__item__list__item__link {
    display: block;
    width: 100%;
    padding: 20px 40px 20px 20px;
    font-size: 15px;
    line-height: 1;
    color: #2e2825;
    font-family: "NotoSansTC-M";
}

.mainMenu__item__list__item.j-dropdown .mainMenu__item__list__item__link::after {
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    display: block;
    width: 5px;
    height: 10px;
    background: url(../../images/common/icon_arrow_next.svg) center no-repeat;
    background-size: contain;
}


.mainMenu__item__list__item.active .mainMenu__item__list__item__link,
.mainMenu__item__list__item__link:hover {
    color: #fff;
    background: #11330a;
}

.mainMenu__item__list__item:hover .mainMenu__item__list__item__link::after,
.mainMenu__item__list__item.active .mainMenu__item__list__item__link::after {
    filter: brightness(0) invert(1);
}

/**第三層選單**/
.mainMenu__item__list__item__list {
    display: none;
    width: 100%;
}

.mainMenu__item__list__item__list__item {
    display: block;
    width: 100%;
}

.mainMenu__item__list__item__list__item__link {
    display: block;
    width: 100%;
    padding: 15px 30px;
    font-size: 15px;
    line-height: 1;
    color: #2e2825;
}

.mainMenu__item__list__item__list__item__link:hover {
    background: #f3f6f1;
}

/**PC版容器第三層選單容器**/
.j-el-dropdown-cloneBox {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: calc(50% - 45px);
    height: calc(100% - 40px);
    overflow: hidden;
    overflow-y: auto;
}

.j-el-dropdown-cloneBox::-webkit-scrollbar {
    width: 0;
}

.j-el-dropdown-cloneBox::-webkit-scrollbar-thumb {
    background: #11330a;
}

.j-el-dropdown-cloneBox .mainMenu__item__list__item__list {
    display: block;
    padding: 0 0 75px 0;
}

/****主選單切換鈕****/
.navbt {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 45px;
    height: 30px;
    margin: 0 0 0 40px;
    cursor: pointer;
    overflow: hidden;
    z-index: 20;
    flex: 0 0 auto;
}

.navbt span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 2px;
    background: #7d7d70;
    transform-origin: center;
    transition: transform .4s ease-in-out;
}

.navbt span:nth-child(2) {
    margin: 12px 0;
}

/****選單展開樣式****/
#mainmenuCheck:checked~.mainMenuBoxBg {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

#mainmenuCheck:checked~.navbt span:nth-child(1) {
    transform: rotate(45deg) translate(1px, 1px);
}

#mainmenuCheck:checked~.navbt span:nth-child(2) {
    display: none;
}

#mainmenuCheck:checked~.navbt span:nth-child(3) {
    transform: rotate(-45deg) translate(1px, -1px);
}

/****選單共用按鈕樣式****/
.menuBt {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: auto;
    height: 100%;
    margin: 0 0 0 30px;
    cursor: pointer;
    flex: 0 0 auto;
}

.menuBt::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s ease-in-out;
    overflow: hidden;
}

.menuBt__text {
    display: block;
    width: auto;
    font-size: 15px;
    line-height: 1;
    color: #2e2825;
    font-family: "Rallisaguen-B";
    flex: 0 0 auto;
}

.menuBt__icon {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 0 0 10px;
    border-radius: 50%;
    border: 1px solid #efefef;
    flex: 0 0 auto;
}

.menuBt__icon img {
    object-fit: contain;
    object-position: center;
    width: 50%;
    height: 50%;
}

/****搜尋框****/
.mainMenuBox__search {
    position: fixed;
    top: 130px;
    right: 285px;
    display: block;
    width: 540px;
    background: #fff;
    box-shadow: 16px 16px 40px rgb(5, 19, 2, .15);
    transition: opacity .4s ease-in-out;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.mainMenuBox__search__form {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 35px 10px 25px;
}

.mainMenuBox__search__form__input {
    width: 100%;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    color: #2e2825;
    border: none;
    flex: 0 1 auto;
}

.mainMenuBox__search__form__input::placeholder {
    color: #d5d5d5;
}

.mainMenuBox__search__form__submit {
    width: 130px;
    margin: 0 0 0 10px;
    flex: 0 0 auto;
}

.mainMenuBox__search__form__close {
    margin: 0 0 0 20px;
    flex: 0 0 auto;
}

/**搜尋框展開**/
#searchCheck:checked~.menuBt-search::after {
    opacity: 1;
}

#searchCheck:checked~.mainMenuBox .mainMenuBox__search {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

/****購物車****/
.headCart {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    flex: 0 0 auto;
}

/**購物車切換鈕**/
.headCart__bt {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: auto;
    height: 100%;
    margin: 0 0 0 30px;
    cursor: pointer;
}

.headCart__bt::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: calc(50% - 15px);
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s ease-in-out;
    overflow: hidden;
}

.headCart__bt__icon {
    display: none;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #efefef;
    overflow: hidden;
}

.headCart__bt__icon img {
    object-fit: contain;
    object-position: center;
    width: 50%;
    height: 50%;
}

.headCart__bt__text {
    display: block;
    width: auto;
    font-size: 15px;
    line-height: 1;
    color: #2e2825;
    font-family: "Rallisaguen-B";
}

.headCart__bt__count {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 0 0 10px;
    padding: .125em .25em 0 0;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    background: #0e3305;
    font-family: "Rallisaguen-SB";
    border-radius: 50%;
    flex: 0 0 auto;
    overflow: hidden;
}

/**深色背景**/
.headCart__bg {
    display: none;
}

/**購物車資訊**/
.headCart__box {
    position: absolute;
    top: calc(100% + 20px);
    right: -10px;
    display: block;
    width: 310px;
    max-height: calc(100vh - 140px);
    padding: 10px 25px 20px 25px;
    background: #fff;
    box-shadow: 16px 16px 40px rgba(5, 19, 2, .15);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .4s ease-in-out;
    overflow: hidden;
    overflow-y: auto;
}

.headCart__box::-webkit-scrollbar {
    width: 6px;
}

.headCart__box::-webkit-scrollbar-thumb {
    background: #11330a;
}

.headCart__box__head {
    display: none;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 25px 0;
    border-bottom: 1px solid rgba(105, 105, 105, .5);
}

.headCart__box__head__title {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    flex: 0 1 auto;
}

.headCart__box__head__title__main {
    display: block;
    width: auto;
    font-size: 15px;
    line-height: 1;
    color: #2e2825;
    font-family: "Rallisaguen-B";
    flex: 0 0 auto
}

.headCart__box__head__title__count {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 0 0 10px;
    padding: .125em .25em 0 0;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    font-family: "Rallisaguen-SB";
    background: #0e3305;
    border-radius: 50%;
}

.headCart__box__head__close {
    flex: 0 0 auto;
}

.headCart__box__inner {
    display: block;
    width: 100%;
    overflow: hidden;
}

.headCart__box__inner::-webkit-scrollbar {
    width: 6px;
}

.headCart__box__inner::-webkit-scrollbar-thumb {
    background: #11330a;
}

.headCart__box__inner__item {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(105, 105, 105, .25);
}

.headCart__box__inner__item__pic {
    display: block;
    width: 90px;
    margin: 0 10px 0 0;
    flex: 0 0 auto;
}

.headCart__box__inner__item__info {
    display: block;
    width: 100%;
}

.headCart__box__inner__item__info__title {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
    color: #655d5b;
    text-align: justify;
    overflow: hidden;
}

.headCart__box__inner__item__info__subTotal {
    display: block;
    width: 100%;
    font-size: 18px;
    margin: 15px 0 0 0;
    line-height: 1;
    color: #655d5b;
    font-family: "Rallisaguen-SB";
}

.headCart__box__inner__item__info__subTotal__count {
    display: inline;
    font-size: 15px;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    vertical-align: middle;
}

.headCart__box__inner__item__info__subTotal__price {
    display: inline;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    vertical-align: middle;
}

.headCart__box__inner__item__del {
    top: 2.5px;
    width: 12px;
    margin: 0 0 0 10px;
    flex: 0 0 auto;
}

.headCart__box__total {
    display: block;
    width: 100%;
    margin: -1px 0 0 0;
    border-top: 1px solid rgba(105, 105, 105, .25);
}

.headCart__box__total:first-child {
    border: none;
    margin: 10px 0 0 0;
}

.headCart__box__total {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 20px 0 0 0;
}

.headCart__box__total__title {
    display: block;
    width: auto;
    margin: 0 10px 0 0;
    font-size: 18px;
    line-height: 1;
    color: #655d5b;
    flex: 0 0 auto;
}

.headCart__box__total__price {
    top: .125em;
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 1;
    color: #655d5b;
    font-family: "Rallisaguen-SB";
    text-align: right;
    flex: 0 1 auto;
}

.headCart__box__link {
    width: 100%;
    max-width: 150px;
    margin: 35px auto 0 auto;
}

.headCart__box__message {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 1.2;
    color: #655d5b;
    text-align: center;
    margin: 10px auto 0 auto;
}

/**購物車展開樣式**/
#cartCheck:checked~.headCart__bt::after {
    opacity: 1;
}

#cartCheck:checked~.headCart__bg {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

#cartCheck:checked~.headCart__box {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/*****選單下下滾動樣式*****/
header.active::before {
    opacity: 1;
}

header.active .logo {
    transform: none;
}

@media screen and (max-width: 1400px) {

    /****主選單****/
    .mainMenuBox {
        margin: 0;
    }

    .mainMenu {
        justify-items: flex-end;
        justify-content: flex-end;
    }

    .mainMenu__item {
        margin: 0 20px;
    }
}

@media screen and (max-width: 1150px) {

    /****logo****/
    .logo {
        transform: none;
    }

    /****主選單深色背景****/
    .mainMenuBoxBg {
        display: block;
    }

    /****主選單****/
    .mainMenuBox {
        position: fixed;
        left: 100%;
        right: auto;
        max-width: 500px;
        padding: 30px 0 0 0;
        background: #fff;
        transition: transform .4s ease-in-out;
        z-index: 10;
    }

    .mainMenu {
        display: block;
        height: calc(100% - 79px);
        padding: 0 0 60px 0;
        overflow: hidden;
        overflow-y: auto;
    }

    .mainMenu__item {
        display: block;
        height: auto;
        margin: 0;
    }

    .mainMenu__item.j-dropdown::after {
        position: absolute;
        top: calc(.5em + 22.5px);
        right: 45px;
        margin: 0;
    }

    .mainMenu__item-pad {
        display: flex;
    }

    .mainMenu__item__link {
        justify-items: flex-start;
        justify-content: flex-start;
        width: calc(100% - 60px);
        margin: 0 30px;
        padding: 25px 45px 25px 15px;
        font-size: 16px;
        border-top: 1px solid #e6e7e6;
    }

    .mainMenu__item__link__icon {
        display: flex;
    }

    .mainMenu__item:last-child .mainMenu__item__link {
        border-bottom: 1px solid #e6e7e6;
    }

    /**第二層選單**/
    .mainMenu__item__list {
        position: relative;
        top: 0;
        left: 0;
        display: none;
        width: 100%;
        height: auto;
        max-height: none;
        padding: 0;
        background: #0e3305;
        opacity: 1;
        pointer-events: all;
        visibility: visible;
    }

    .mainMenu__item__list::before,
    .mainMenu__item__list::after {
        display: none;
    }

    .mainMenu__item__list__item {
        width: 100%;
    }

    .mainMenu__item__list__item__link {
        width: calc(100% - 60px);
        margin: 0 auto;
        padding: 25px 45px 25px 30px;
        color: #fff;
        border-bottom: 1px solid #425c3c;
    }

    .mainMenu__item__list__item:last-child .mainMenu__item__list__item__link {
        border: none;
    }

    .mainMenu__item__list__item.j-dropdown .mainMenu__item__list__item__link::after {
        top: calc(.5em + 22.5px);
        right: 35px;
        width: 10px;
        height: 5px;
        background-image: url(../../images/common/icon_arrow_bottom.svg);
        filter: brightness(0) invert(1);
    }

    .mainMenu__item__list__item.active .mainMenu__item__list__item__link::after {
        transform: scaleY(-1);
    }

    /**第三層選單**/
    .mainMenu__item__list__item__list {
        display: none;
        background: #f3f6f1;
    }

    .mainMenu__item__list__item__list__item {
        width: 100%;
    }

    .mainMenu__item__list__item__list__item__link {
        width: calc(100% - 120px);
        font-size: 15px;
        line-height: 1;
        color: #2e2825;
        padding: 15px 0;
        margin: 0 auto;
    }

    /**PC版容器第三層選單容器**/
    .j-el-dropdown-cloneBox {
        display: none;
    }

    /****選單共用按鈕樣式****/
    .menuBt::after {
        display: none;
    }

    .menuBt-search {
        display: none;
    }

    /****選單展開樣式****/
    #mainmenuCheck:checked~.mainMenuBox {
        transform: translateX(-100%);
    }

    /****主選單切換鈕****/
    .navbt {
        display: flex;
    }

    /****搜尋框****/
    .mainMenuBox__search {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 160px);
        margin: 0 0 30px 30px;
        box-shadow: 0 40px 144px rgba(5, 19, 2, .15);
        opacity: 1;
        pointer-events: all;
        visibility: visible;
    }

    .mainMenuBox__search__form__submit {
        width: 20px;
        height: 20px;
        padding: 0;
        color: transparent;
        background: url(../../images/common/icon_magnifier.svg) center no-repeat;
        background-size: contain;
    }

    .mainMenuBox__search__form__close {
        display: none;
    }

    /****購物車****/
    /**深色背景**/
    .headCart__bg {
        display: block;
    }

    /**購物車切換鈕**/
    .headCart__bt::after {
        display: none;
    }

    /**購物車資訊**/
    .headCart__box {
        position: fixed;
        top: 0;
        right: 100%;
        width: 100%;
        max-width: 500px;
        height: 100vh;
        max-height: none;
        box-shadow: none;
        transition: transform .4s ease-in-out;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        z-index: 50;
        overflow: hidden;
    }

    .headCart__box__head {
        display: flex;
    }

    .headCart__box__inner {
        height: calc(100% - 86px);
        overflow-y: auto;
    }

    .headCart__box__inner__item {
        padding: 40px 10px;
    }

    .headCart__box__inner__item__del {
        margin: 0 0 0 30px;
    }

    .headCart__box__total {
        padding: 20px 10px 0 10px;
    }

    .headCart__box__link {
        max-width: none;
    }

    /**購物車展開樣式**/
    #cartCheck:checked~.headCart__box {
        transform: translateX(100%);
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {

    /****logo****/
    .logo {
        width: 50px;
        transform: translateY(5px);
    }

    /****header****/
    header {
        height: 60px;
    }

    .navbar {
        width: calc(100% - 20px);
    }

    /****主選單****/
    .mainMenuBox {
        padding: 15px 0 0 0;
    }

    .mainMenu {
        height: calc(100% - 75px);
    }

    .mainMenu__item.j-dropdown::after {
        top: calc(.5em + 17.5px);
        right: 30px;
    }

    .mainMenu__item__link {
        width: calc(100% - 40px);
        font-size: 15px;
        margin: 0 20px;
        padding: 20px 35px 20px 10px;
    }

    .mainMenu__item__link__icon {
        width: 30px;
        height: 30px;
        margin: calc(-15px - .5em) 10px calc(-15px - .5em) 0;
    }

    /**第二層選單**/
    .mainMenu__item__list__item__link {
        width: calc(100% - 40px);
        padding: 20px 40px 20px 25px;
        font-size: 14px;
    }

    .mainMenu__item__list__item.j-dropdown .mainMenu__item__list__item__link::after {
        top: calc(0.5em + 17.5px);
        right: 25px;
    }

    /**第三層選單**/
    .mainMenu__item__list__item__list__item__link {
        width: calc(100% - 88px);
        font-size: 14px;
    }

    /****主選單切換鈕****/
    .navbt {
        width: 25px;
        height: 20px;
        margin: 0 0 0 25px;
    }

    .navbt span {
        height: 1px;
    }

    .navbt span:nth-child(2) {
        margin: 7.5px 0;
    }

    /****選單展開樣式****/
    #mainmenuCheck:checked~.navbt span:nth-child(1) {
        transform: rotate(45deg) translate(.5px, .5px);
    }

    #mainmenuCheck:checked~.navbt span:nth-child(3) {
        transform: rotate(-45deg) translate(.5px, -.5px);
    }

    /****選單共用按鈕樣式****/
    .menuBt {
        margin: 0 0 0 15px;
    }

    .menuBt__text {
        display: none;
    }

    .menuBt__icon {
        width: 30px;
        height: 30px;
        margin: 0;
    }

    /****搜尋框****/
    .mainMenuBox__search {
        width: calc(100% - 110px);
        margin: 0 0 35px 20px;
    }

    .mainMenuBox__search__form {
        padding: 10px 15px;
    }

    .mainMenuBox__search__form__input {
        font-size: 14px;
    }

    /****購物車****/
    /**購物車切換鈕**/
    .headCart__bt {
        margin: 0 0 0 15px;
    }

    .headCart__bt__icon {
        display: flex;
    }

    .headCart__bt__text {
        display: none;
    }

    .headCart__bt__count {
        position: absolute;
        top: calc(50% - 20px);
        right: -5px;
        width: 15px;
        height: 15px;
        margin: 0;
        font-size: 12px;
    }

    /**購物車資訊**/
    .headCart__box {
        padding: 10px 10px 20px 10px;
    }

    .headCart__box__head {
        padding: 5px 0 15px 0;
    }

    .headCart__box__head__title__count {
        width: 30px;
        height: 30px;
    }

    .headCart__box__inner {
        height: calc(100% - 61px);
    }

    .headCart__box__inner__item {
        padding: 35px 10px;
    }

    .headCart__box__inner__item__del {
        margin: 0 0 0 15px;
    }

    .headCart__box__inner__item__info__title {
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
    }

    .headCart__box__inner__item__info__subTotal {
        margin: 10px 0 0 0;
    }

    .headCart__box__total__title {
        font-size: 16px;
    }

    .headCart__box__link {
        margin: 20px auto 0 auto;
    }

    .headCart__box__message {
        font-size: 16px;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {
    @media screen and (max-width: 991px) {
        .headCart__box__inner {
            height: calc(100% - 126px);
        }
    }

    @media screen and (max-width: 575px) {
        .headCart__box__inner {
            height: calc(100% - 141px);
        }
    }
}