@charset "UTF-8";

/**按鈕樣式**/
[class^="c-bt"] {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    margin: 0;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    font-family: 'NotoSansTC';
    background: #0e3305;
    border: none;
    border-radius: 2px;
    padding: 17.5px 10px;
    transition: opacity .4s ease-in-out;
    cursor: pointer;
    outline: none;
    overflow: hidden;
}

[class^="c-bt"]:hover {
    opacity: .8;
}

[class^="c-bt"] input[type="submit"],
[class^="c-bt"] input[type="reset"],
[class^="c-bt"] button,
[class^="c-bt"] span {
    display: block;
    width: auto;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

[class^="c-bt"] input[type="submit"],
[class^="c-bt"] button {
    display: block;
    border: none;
    background: none;
}

[class^="c-bt"] input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

[class^="c-bt"] button {
    width: 100%;
    text-align: center;
}

/**white樣式**/
[class^="c-bt"][class*="-white"] {
    color: #151912;
    background: #fff;
    border: 1px solid #b2bfaf;
}

/**lightGreen樣式**/
[class^="c-bt"][class*="-lightGreen"] {
    padding: 22.5px 10px;
    color: #151912;
    background: #f3f6f1;
    border: none;
}

/**prev樣式**/
[class^="c-bt"][class*="-prev"]::after {
    content: '';
    position: relative;
    display: block;
    width: 5px;
    height: 10px;
    margin: 0 15px 0 0;
    background: url(../../images/common/icon_arrow_next.svg) center no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
    transform: scaleX(-1);
    order: -10;
}

[class^="c-bt"][class*="-white"][class*="-prev"]::after {
    filter: none;
}

/**next樣式**/
[class^="c-bt"][class*="-next"]::after {
    content: '';
    position: relative;
    display: block;
    width: 5px;
    height: 10px;
    margin: 0 0 0 15px;
    background: url(../../images/common/icon_arrow_next.svg) center no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
}

[class^="c-bt"][class*="-white"][class*="-next"]::after {
    filter: none;
}

/**list樣式**/
[class^="c-bt"][class*="-list"]::after {
    content: '';
    position: relative;
    display: block;
    width: 25px;
    height: 17px;
    margin: 0 20px 0 0;
    background: url(../../images/common/icon_list_white.svg) center no-repeat;
    background-size: contain;
    order: -10;
}

/**select樣式**/
[class^="c-bt"][class*="-select"] {
    justify-items: flex-start;
    justify-content: flex-start;
    padding: 22.5px 30px;
}

[class^="c-bt"][class*="-select"]::after {
    content: '';
    position: relative;
    display: block;
    width: 22px;
    height: 15px;
    margin: 0 0 0 10px;
    background: url(../../images/common/icon_select_black.svg) center no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
}

[class^="c-bt"][class*="-select"][class*="-white"]::after {
    filter: none;
}

/**order樣式**/
[class^="c-bt"][class*="-order"] {
    padding: 21.5px 10px;
}

[class^="c-bt"][class*="-order"]::after {
    content: '';
    position: relative;
    display: block;
    width: 30px;
    height: 15px;
    margin: 0 0 0 20px;
    background: url(../../images/common/icon_order_black.svg) center no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
}

[class^="c-bt"][class*="-order"][class*="-white"]::after {
    filter: none;
}

/**square樣式**/
[class^="c-bt"][class*="-square"]::after {
    content: '';
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin: 2.5px 15px 2.5px 0;
    background: url(../../images/common/icon_square_white.svg) center no-repeat;
    background-size: contain;
    flex: 0 0 auto;
    order: -10;
}

/**send樣式**/
[class^="c-bt"][class*="-send"]::after {
    content: '';
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    margin: 7.5px 10px 7.5px 0;
    background: url(../../images/common/icon_send_white.svg) center no-repeat;
    background-size: contain;
    flex: 0 0 auto;
    order: -10;
}

/**cart樣式**/
[class^="c-bt"][class*="-cart"]::after {
    content: '';
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin: 2.5px 20px 2.5px 0;
    background: url(../../images/common/icon_cart_black.svg) center no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
    flex: 0 0 auto;
    order: -10;
}

/**like樣式**/
[class^="c-bt"][class*="-like"]::after {
    content: '';
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin: -7.5px 15px -7.5px 0;
    background: url(../../images/common/icon_like_gray.svg) center no-repeat;
    background-size: contain;
    flex: 0 0 auto;
    order: -10;
}

[class^="c-bt"][class*="-like"].active::after {
    background-image: url(../../images/common/icon_like_green.svg);
}

/**facebook樣式**/
[class^="c-bt"][class*="-fb"]::after {
    content: '';
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin: 1.5px 10px 1.5px 0;
    background: url(../../images/common/icon_fb_circle_blue.svg) center no-repeat;
    background-size: contain;
    flex: 0 0 auto;
    order: -10;
}

/**google樣式**/
[class^="c-bt"][class*="-google"]::after {
    content: '';
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin: 1.5px 10px 1.5px 0;
    background: url(../../images/common/icon_google.svg) center no-repeat;
    background-size: contain;
    flex: 0 0 auto;
    order: -10;
}

/**line樣式**/
[class^="c-bt"][class*="-line"]::after {
    content: '';
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin: 1.5px 10px 1.5px 0;
    background: url(../../images/common/icon_line_green.svg) center no-repeat;
    background-size: contain;
    flex: 0 0 auto;
    order: -10;
}

/****刪除紐****/
.c-del {
    display: block;
    width: 100%;
    transition: opacity .4s ease-in-out;
    cursor: pointer;
}

.c-del::before {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    padding: 125% 0 0 0;
    background: url(../../images/common/icon_trash_gray.svg) center no-repeat;
    background-size: contain;
}

.c-del:hover {
    opacity: .7;
}

/****關閉紐****/
.c-close {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    overflow: hidden;
}

.c-close::before,
.c-close::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: -25%;
    display: block;
    width: 150%;
    height: 2px;
    background: #7d7d70;
    transform-origin: center;
}

.c-close::before {
    transform: rotate(45deg);
}

.c-close::after {
    transform: rotate(-45deg);
}

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

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

    /**select樣式**/
    [class^="c-bt"][class*="-select"] {
        justify-items: center;
        justify-content: center;
    }
}

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

    /**lightGreen樣式**/
    [class^="c-bt"][class*="-lightGreen"] {
        padding: 18px 10px;
    }

    /**按鈕樣式**/
    [class^="c-bt"] {
        font-size: 14px;
        padding: 15.5px 10px;
    }

    /**select樣式**/
    [class^="c-bt"][class*="-select"] {
        padding: 17.5px 15px;
    }

    /**order樣式**/
    [class^="c-bt"][class*="-order"] {
        padding: 16.5px 10px;
    }

    /**square樣式**/
    [class^="c-bt"][class*="-square"]::after {
        margin: -.5px 15px -.5px 0;
    }

    /**send樣式**/
    [class^="c-bt"][class*="-send"]::after {
        margin: 4.5px 10px 4.5px 0;
    }

    /**cart樣式**/
    [class^="c-bt"][class*="-cart"]::after {
        margin: -.5px 20px -.5px 0;
    }

    /**facebook樣式**/
    [class^="c-bt"][class*="-fb"]::after {
        width: 15px;
        height: 15px;
        margin: 1px 10px 1px 0;
    }

    /**google樣式**/
    [class^="c-bt"][class*="-google"]::after {
        width: 15px;
        height: 15px;
        margin: 1px 10px 1px 0;
    }

    /**line樣式**/
    [class^="c-bt"][class*="-line"]::after {
        width: 15px;
        height: 15px;
        margin: 1px 10px 1px 0;
    }

    /****關閉紐****/
    .c-close {
        width: 20px;
        height: 20px;
    }

    .c-close::before,
    .c-close::after {
        top: calc(50% - .5px);
        height: 1px;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}