@charset "UTF-8";

.cookies-info {
    width: 100%;
    background: #000;
    opacity: 0.88;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
}
.cookies-info,
.cookies-info * {
    box-sizing: border-box;
    font-family: "微軟正黑體", "Apple LiGothic Medium","Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
}
.cookies-info .cki-box {
    width: 100%;
    max-width: 1000px;
    height: auto;
    min-height: 90px;
    margin: 0 auto;
    padding: 24px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cookies-info .cib-txt {
    font-size: 14px;
    color: #FFF;
    line-height: 1.4;
}
.cookies-info .cib-txt a {
    color: #588c3F;
    text-decoration: none;
}
.cookies-info .cib-btn-box {
    margin-left: 36px;
}
.cookies-info .cib-btn {
    width: 92px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #ffbf1a;
    color: #ffbf1a;
    font-size: 16px;
    text-decoration: none;
}
.cookies-info .cib-txt a {
    color: #588c3F;
    text-decoration: none;
}
.cookies-info .cib-close {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: 5px;
    top: 8px;
    background: url('../images/ic_Close.svg') center center / contain no-repeat;
}
@media (max-width: 768px) {
    .cookies-info .cki-box {
        max-width: 600px;
        padding: 30px 24px 16px;
        flex-direction: column;
    }
    .cookies-info .cib-btn-box {
        width: 100%;
        margin-top: 24px;
        margin-left: 0;
    }
    .cookies-info .cib-btn {
        width: 100%;
    }
    .cookies-info .cib-close {
        right: 6px;
        top: 6px;
    }
}