@charset "UTF-8";

.p-searchTitle {
    position: relative;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 0 0 0 40px;
    font-size: 25px;
    line-height: 1.2;
    color: #000;
    font-family: inherit;
    font-weight: 700;
    text-align: left;
}

.p-searchTitle::before {
    content: '';
    position: absolute;
    top: calc(.6em - 11px);
    left: 0;
    display: block;
    width: 22px;
    height: 22px;
    background: url(../kimg/awards/icon_filter.svg?20240606) center / contain no-repeat;
}

.awards {
    position: relative;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 120px);
    max-width: 1440px;
    margin: 100px auto 150px auto;
}

.awards .c-anchor {
    position: absolute;
    top: -150px;
    left: 0;
}

/****側選單****/
.awards__aside {
    display: block;
    width: 35%;
    max-width: 300px;
    margin: 0 50px 0 0;
    flex: 0 0 auto;
}

/**展開背景**/
.awards__aside__bg {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(44, 53, 63, .4);
    z-index: 99;
}

/**標題**/
.awards__aside__title {
    margin: 0 0 25px 0;
}

/**搜尋框**/
.awards__aside__form {
    position: relative;
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 40px;
    margin: 0 0 10px 0;
}

.klevv_news .awards__aside__form {
    display: flex;
}

.awards__aside__form input[type="text"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1;
    color: rgba(0, 0, 0, .8);
    font-family: inherit;
    border-radius: 0;
    border: 1px solid #a0a0a0;
    border-right: none;
    flex: 0 1 auto;
}

.awards__aside__form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, .3);
}

.awards__aside__form input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 40px;
    height: 100%;
    border-radius: 0;
    border: none;
    cursor: pointer;
    background: url(../kimg/search_btn_icon.png) center no-repeat #3f3f3f;
    background-size: 50% auto;
    transition: opacity .4s ease-in-out;
    flex: 0 0 auto;
}

.awards__aside__form input[type="submit"]:hover {
    opacity: .7;
}

/**開啟鈕**/
.awards__aside__open {
    display: none;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 1;
    color: #000;
    font-family: inherit;
    font-weight: 700;
    background: #ccc;
    cursor: pointer;
}

.awards__aside__open::before {
    content: '';
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 15px 0 0;
    background: url(../kimg/awards/icon_filter.svg) center / contain no-repeat;
}

/**篩選表單**/
.awards__aside__menu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.klevv_news .awards__aside__menu {
    display: flex;
}

.awards__aside__menu__inner {
    left: -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(100% + 20px);
    height: 100%;
    padding: 0 10px;
    overflow: hidden;
}

.awards__aside__menu__inner::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.awards__aside__menu__inner__close {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    width: 50px;
    height: 50px;
    background: #3f3f3f;
    cursor: pointer;
}

.awards__aside__menu__inner__close::before,
.awards__aside__menu__inner__close::after {
    content: '';
    position: absolute;
    top: calc(50% - .5px);
    left: 20%;
    display: block;
    width: 60%;
    height: 1px;
    background: #fff;
    transform-origin: center;
}

.awards__aside__menu__inner__close::before {
    transform: rotate(45deg);
}

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

.awards__aside__menu__inner__title {
    display: none;
    margin: 0 0 20px 0;
}

.awards__aside__menu__inner__tool {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    margin: 30px 0 0 0;
    order: 10;
}

.awards__aside__menu__inner__tool.hide {
    display: none;
}

.awards__aside__menu__inner__tool__reset {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    padding: 0;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    font-family: inherit;
    text-align: center;
    font-weight: 500;
    background: #04b5df;
    border: none;
    cursor: pointer;
    transition: opacity .4s ease-in-out;
}

.awards__aside__menu__inner__tool__reset:hover {
    opacity: .7;
}

/**列表**/
.awards__aside__menu__inner__list {
    display: block;
    width: 100%;
    text-align: left;
}

.awards__aside__menu__inner__list__item {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(120, 120, 120, .6);
}

.awards__aside__menu__inner__list__item:last-child {
    border: none;
}

.awards__aside__menu__inner__list__item__bt {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 60px;
    padding: 10px 40px 10px 10px;
    font-size: 18px;
    line-height: 1.2;
    color: rgba(0, 0, 0, .8);
    font-family: inherit;
    font-weight: 500;
    text-align: left;
    background: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: color .4s ease-in-out;
}

.awards__aside__menu__inner__list__item__bt.j-dropdown-bt::after {
    content: '';
    position: absolute;
    top: calc(50% - 8.5px);
    right: 10px;
    display: block;
    width: 17px;
    height: 17px;
    background:
        linear-gradient(to right, #787878 0%, #787878 100%) center no-repeat,
        linear-gradient(to right, #787878 0%, #787878 100%) center no-repeat;
    background-size:
        100% 1px,
        1px 100%;
}

.awards__aside__menu__inner__list__item__bt.current,
.awards__aside__menu__inner__list__item__bt:hover {
    color: #009ad4;
}

.awards__aside__menu__inner__list__item__bt.j-dropdown-bt.active::after {
    background: linear-gradient(to right, #787878 0%, #787878 100%) center no-repeat;
    background-size: 100% 1px;
}

.awards__aside__menu__inner__list__item:first-child .awards__aside__menu__inner__list__item__bt.current {
    /* color: rgba(0, 0, 0, .8); */
    font-weight: 700;
}

/* .awards__aside__menu__inner__list__item:first-child .awards__aside__menu__inner__list__item__bt.current:hover {
    color: rgba(0, 0, 0, .8);
} */

.awards__aside__menu__inner__list__item__list {
    display: none;
    width: 100%;
    padding: 5px 40px 20px 10px;
}

.awards__aside__menu__inner__list__item__list__item {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 5px 0;
}

.awards__aside__menu__inner__list__item__list__item:last-child {
    margin: 0;
}

.awards__aside__menu__inner__list__item__list__item.disable {
    opacity: .4;
    pointer-events: none;
}

/****主內容****/
.awards__main {
    display: block;
    width: 100%;
    max-width: 1080px;
    flex: 0 1 auto;
}

/**標題**/
.awards__main__title {
    display: block;
    width: 100%;
    margin: 0 0 28px 0;
    font-size: 25px;
    line-height: 1.2;
    color: #000;
    font-family: inherit;
    font-weight: 700;
    text-align: left;
}

.awards__main__title__count {
    display: inline;
    width: auto;
    max-width: 100%;
    font-size: inherit;
    line-height: inherit;
    color: #009ad4;
    font-family: inherit;
    font-weight: inherit;
}

/**排列樣式切換**/
.awards__main__switch {
    display: none;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 40px;
    margin: 0 0 30px 0;
    background: #e4e4e4;
}

.awards__main__switch__bt {
    display: block;
    width: 100%;
    background:
        linear-gradient(to bottom, #e4e4e4 0%, #e4e4e4 100%) center no-repeat,
        linear-gradient(to bottom, #e4e4e4 0%, #e4e4e4 100%) center no-repeat,
        linear-gradient(to bottom, #3f3f3f 0%, #3f3f3f 100%) center no-repeat;
    background-size:
        13px 1px,
        1px 13px,
        13px 13px;
    cursor: pointer;
    flex: 0 1 auto;
}

.awards__main__switch__bt[for="switch1"] {
    background: linear-gradient(to bottom, #3f3f3f 0%, #3f3f3f 100%) center no-repeat;
    background-size: 13px 13px;
}

#switch1:checked~.awards__main__switch .awards__main__switch__bt[for="switch1"] {
    background-image: linear-gradient(to bottom, #fff 0%, #fff 100%);
    background-color: #3f3f3f;
}

#switch2:checked~.awards__main__switch .awards__main__switch__bt[for="switch2"] {
    background-image:
        linear-gradient(to bottom, #3f3f3f 0%, #3f3f3f 100%),
        linear-gradient(to bottom, #3f3f3f 0%, #3f3f3f 100%),
        linear-gradient(to bottom, #e4e4e4 0%, #e4e4e4 100%);
    background-color: #3f3f3f;
}

/**得獎列表**/
.awards__main__list {
    left: -12.5px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(100% + 25px);
    margin: 0 0 20px 0;
}

.awards__main__list__item {
    width: calc(33.33% - 25px);
    margin: 0 12.5px 30px 12.5px;
}

@media screen and (max-width: 1400px) {
    .awards .c-anchor {
        top: -100px;
    }
}

@media screen and (max-width: 1300px) {
    .awards {
        display: block;
        width: calc(100% - 100px);
        margin: 50px auto 120px auto;
    }

    /****側選單****/
    .awards__aside {
        width: 100%;
        max-width: none;
        margin: 0 auto 50px auto;
    }

    /**標題**/
    .awards__aside__title {
        display: none;
    }

    /**搜尋框**/
    .awards__aside__form {
        margin: 0 0 15px 0;
    }

    /**開啟鈕**/
    .awards__aside__open {
        display: flex;
    }

    /**篩選表單**/
    .awards__aside__menu {
        position: fixed;
        bottom: 0;
        right: 0;
        width: calc(100% - 30px);
        height: calc(100vh - 200px);
        max-width: 600px;
        max-height: 760px;
        padding: 70px max(30px, min(100px, calc(50% - 200px))) 75px max(30px, min(100px, calc(50% - 200px)));
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .klevv_news .awards__aside__menu {
        position: fixed;
    }

    .awards__aside__menu__inner {
        overflow-y: auto;
    }

    .awards__aside__menu__inner__close {
        display: block;
    }

    .awards__aside__menu__inner__title {
        display: block;
    }

    .awards__aside__menu__inner__tool {
        margin: 0;
        border-top: 1px solid rgba(120, 120, 120, .6);
        border-bottom: 1px solid rgba(120, 120, 120, .6);
        order: 0;
    }

    .awards__aside__menu__inner__tool__reset {
        width: auto;
        font-size: 16px;
        color: #04b5df;
        background: none;
        border: none;
    }

    /**展開樣式**/
    #awardsMenuCheck:checked~.awards__aside__bg {
        display: block;
    }

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

    /****主內容****/
    .awards__main {
        max-width: none;
    }

    /**得獎列表**/
    .awards__main__list {
        left: -10px;
        width: calc(100% + 20px);
        margin: 0 0 20px 0;
    }

    .awards__main__list__item {
        width: calc(50% - 20px);
        margin: 0 10px 30px 10px;
    }

}

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

@media screen and (max-width: 575px) {
    .p-searchTitle {
        padding: 0 0 0 25px;
        font-size: 20px;
    }

    .p-searchTitle::before {
        top: calc(.6em - 8px);
        width: 16px;
        height: 16px;
    }

    .awards {
        width: calc(100% - 30px);
        margin: 30px auto 70px auto;
    }

    /****側選單****/
    /**開啟鈕**/
    .awards__aside__open {
        font-size: 15px;
    }

    .awards__aside__open::before {
        width: 14px;
        height: 14px;
        margin: 0 10px 0 0;
    }

    /**篩選表單**/
    .awards__aside__menu {
        width: calc(100% - 15px);
        height: calc(100vh - 130px);
        max-height: 620px;
        padding: 50px max(20px, min(60px, calc(50% - 120px))) 35px max(20px, min(60px, calc(50% - 120px)));
    }

    .awards__aside__menu__inner__close {
        width: 40px;
        height: 40px;
    }

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

    /****主內容****/
    /**標題**/
    .awards__main__title {
        font-size: 20px;
    }

    /**排列樣式切換**/
    .awards__main__switch {
        display: flex;
    }

    /**得獎列表**/
    .awards__main__list {
        left: -2.5px;
        width: calc(100% + 5px);
        margin: 0 0 35px 0;
    }

    .awards__main__list__item {
        width: calc(50% - 5px);
        margin: 0 2.5px 30px 2.5px;
    }

    /*單個樣式*/
    #switch1:checked~.awards__main__list .awards__main__list__item {
        width: 100%;
    }

    #switch1:checked~.awards__main__list .c-awards__content {
        padding: 10px;
    }

    #switch1:checked~.awards__main__list .c-awards__content__info {
        margin: 0 0 10px 0;
        padding: 0 0 15px 0;
        border-bottom: 1px solid #d9d9d9;
    }

    #switch1:checked~.awards__main__list .c-awards__content__info__box__data {
        display: flex;
    }

    #switch1:checked~.awards__main__list .c-awards__content__data {
        display: none;
    }
}

/****觸控螢幕****/
@media (any-hover: none) {}

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

/****firefox樣式****/
@-moz-document url-prefix() {

    .awards__aside__menu__inner {
        scrollbar-width: none;
    }
}