@charset "UTF-8";

/**按鈕樣式**/
[class^="c-bt"] {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    font-size: 15px;
    line-height: 1;
    color: #313131;
    background: var(--mainColor);
    border: none;
    padding: 22.5px 10px;
    cursor: pointer;
    outline: none;
    transition: opacity .4s ease-in-out;
    overflow: hidden;
    flex: 0 0 auto;
}

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

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

[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;
}

/**more樣式**/
[class^="c-bt"][class*="-more"] {
    padding: 15.5px 20px;
}

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

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

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

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



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