@charset "utf-8";

/***************************************************************************
*
* INDEX STYLE
*
***************************************************************************/

/* areaReport */
.areaReport .wrapCatReport {
    background-color: #F2F2F2;
    border-radius: 20px;
    padding: 17px 30px;
    margin-bottom: 40px;
}
.areaReport .wrapCatReport form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.areaReport .wrapCatReport .titleCategory {
    width: 208px;
    text-align: center;
    background: transparent;
    border-bottom: none;
    padding: 0;
    margin-right: 20px;
}
.areaReport .wrapCatReport .titleCategory .reportImg {
    width: 54px;
    margin: 0 auto 17px;
}
.areaReport .wrapCatReport .titleCategory .reportText {
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.areaReport .wrapCatReport .categoryFilter {
    width: calc(100% - 387px);
    padding: 5px 56px 5px 47px;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    margin-right: 19px;
}
.areaReport .wrapCatReport .categoryFilter .filterWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.areaReport .wrapCatReport .categoryFilter .filterWrap:not(:last-child) {
    margin-bottom: 7px;
}
.areaReport .wrapCatReport .categoryFilter .filterWrap .filterName {
    width: 146px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1px;
    margin-top: 4px;
    margin-right: 20px;
}
.areaReport .wrapCatReport .categoryFilter .filterWrap .filterList {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 166px);
}
.areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label {
    position: relative;
    margin: 3px 6px 3px 0;
}
.areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label span {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #2C8B60;
    background-color: #fff;
    border-radius: 5px;
    padding: 6px 12px;
    cursor: pointer;
}
.areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    opacity: 0;
}
.areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label input:checked ~ span {
    color: #fff;
    background-color: #2C8B60;
}
.areaReport .wrapCatReport .categorySearch {
    width: 140px;
}
.areaReport .wrapCatReport .categorySearch button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #00C26D;
    border-radius: 63px;
    padding: 14px 5px;
    border: none;
}
.areaReport .borderReport .listReport {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto 30px;
}
.areaReport .borderReport .listReport > li{
    position: relative;
    width: calc(100% / 3 - 7px);
    border-radius: 0;
    box-shadow: 0 0 74px rgba(0,0,0,0.1);
    background: #fff;
    background-clip: padding-box;
    margin-bottom: 10px;
}
.areaReport .borderReport .listReport > li a {
    position: relative;
    display: block;
    width: 100%;
}
.areaReport .borderReport .listReport > li:not(:nth-child(3n)) {
    margin-right: 10px;
}
.areaReport .borderReport .listReport > li .reportIntro {
    position: relative;
    display: block;
    width: 100%;
}
.areaReport .borderReport .listReport > li .reportIntro .introBox {
    position: relative;
    display: block;
    width: 100%;
    min-width: 100%;
}
.areaReport .borderReport .listReport > li .reportIntro .reportPhoto {
    width: 100%;
    transition: all .3s;
}
.areaReport .borderReport .listReport > li .reportIntro .reportPhoto img {
    width: 100%;
    aspect-ratio: 390/225;
    object-fit: cover;
    object-position: center;
}
.areaReport .borderReport .listReport > li .reportIntro .reportBefore {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    border-radius: 0 0 0 20px;
    background-color: #00C26D;
    padding: 9px 16px 9px 17px;
    letter-spacing: 1px;
    transition: all .5s;
}
.areaReport .borderReport .listReport > li .reportIntro .reportBefore.reportAfter {
    background-color: #F18122;
}

@keyframes fadeInReportBefore {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.areaReport .borderReport .listReport > li .reportIntro .reportBefore.fadeInReportBefore {
    animation: fadeInReportBefore 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: opacity;
}
.areaReport .borderReport .listReport > li .reportIntro .reportTime {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    z-index: 1;
}
.areaReport .borderReport .listReport > li .reportIntro .reportTime .time {
    display: inline-block;
    margin-right: 4px;
    letter-spacing: 0.6px;
    line-height: 1.1;
    font-size: 30px;
    font-weight: 900;
}

.areaReport .borderReport .listReport > li .reportIntro .reportTime .timeSub {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0,0,0,0.7);
    border-radius: 30px;
    padding: 15px 10px 17px;
    text-align: center;
}
.areaReport .borderReport .listReport > li .reportIntro .reportTime .timeSub.fadeInUpReportTime{
    animation: fadeInUpReportTime 0.8s ease forwards;
}
@keyframes fadeInUpReportTime {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.areaReport .borderReport .listReport > li .reportDetail {
    padding: 19px 25px 38px;
}
.areaReport .borderReport .listReport > li .reportDetail .detailInfo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4px;
}
.areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoName {
    font-size: 20px;
    font-weight: 500;
    margin: 3px 20px 2px 0;
}
.areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoCat {
    font-size: 16px;
    font-weight: 500;
    background-color: #B2F0FF;
    border-radius: 5px;
    padding: 4px 20px;
    margin: 2px 0;
} 
.areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoCat.green {
    background-color: #C0FFD0;
}
.areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoCat.yellow {
    background-color: #FFE8AE;
}
.areaReport .borderReport .listReport > li .reportDetail .infoRate {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 11px;
}
.areaReport .borderReport .listReport > li .reportDetail .infoRate .rateSub {
    font-size: 16px;
    font-weight: 500;
    margin-right: 5px;
}
.areaReport .borderReport .listReport > li .reportDetail .infoRate .starPoint {
    display: flex;
    align-items: center;
    margin-right: 7px;
}
.areaReport .borderReport .listReport > li .reportDetail .infoRate .starPoint li {
    width: 20px;
    position: relative;
    overflow: hidden;
    margin-right: 2px;
}
.areaReport .borderReport .listReport > li .reportDetail .infoRate .starPoint li .scoreDetail {
    width: 100%;
    height: 20px;
    background: url(../images/common/icon_star_non.png) no-repeat top left / 100%;
    padding: 0;
    background-size: 20px;
    position: relative;
    z-index: 1;
}
.areaReport .borderReport .listReport > li .reportDetail .infoRate .starPoint li .rating {
    position: absolute;
    top: -1px;
    left: 0;
    height: 100%;
    z-index: 0;
    background: #ffd800;
    display: block;
}
.areaReport .borderReport .listReport > li .reportDetail .infoRate .rateNumber {
    font-size: 18px;
    font-weight: 500;
}
.areaReport .borderReport .listReport > li .reportDetail .infoBlock {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 12px;
}
.areaReport .borderReport .listReport > li .reportDetail .infoBlock li {
    width: calc(50% - 2px);
    text-align: center;
    border: 1px solid #00C26D;
    border-radius: 3px;
    overflow: hidden;
}
.areaReport .borderReport .listReport > li .reportDetail .infoBlock li .infoLabel {
    font-weight: 600;
    color: #fff;
    background-color: #00C26D;
    padding: 2px 5px 3px;
}
.areaReport .borderReport .listReport > li .reportDetail .infoBlock li .infoValue {
    font-size: 16px;
    font-weight: 500;
    color: #2C8B60;
    padding: 2px 5px;
} 
.areaReport .borderReport .listReport > li .reportDetail .infoList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.areaReport .borderReport .listReport > li .reportDetail .infoList li {
    display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    border-bottom: 1px solid #CECECE;
    padding-bottom: 5px;
    margin: 2px 5px;
}
.areaReport .borderReport .listReport > li .reportDetail .infoList li .name {
    color: #2C8B60;
    margin-right: 14px;
}
.areaReport .borderReport .listReport > li .reportDetail .infoList li .sub {
    letter-spacing: 0.5px;
}

@media(max-width:1375px) and (min-width: 769px) {
    .areaReport .wrapCatReport {
        padding: 20px;
    }
    .areaReport .wrapCatReport .titleCategory {
        width: 150px;
        margin-right: 10px;
    }
    .areaReport .wrapCatReport .titleCategory .reportImg {
        width: 45px;
    }
    .areaReport .wrapCatReport .titleCategory .reportText {
        font-size: 16px;
    }
    .areaReport .wrapCatReport .categoryFilter {
        width: calc(100% - 290px);
        padding: 5px 20px;
        margin-right: 10px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterName {
        width: 115px;
        font-size: 14px;
        margin-right: 15px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap:not(:last-child) {
        margin-bottom: 8px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList {
        width: calc(100% - 130px);
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label {
        margin-bottom: 5px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label span  {
        font-size: 14px;
    }
    .areaReport .wrapCatReport .categorySearch {
        width: 120px;
    }
    .areaReport .wrapCatReport .categorySearch button {
        font-size: 14px;
        padding: 10px 5px;
    }
} 
@media(max-width:1150px) and (min-width: 769px) {
    .areaReport .borderReport .listReport > li .reportIntro .reportBefore {
        font-size: 16px;
        padding: 7px 15px;
    }
    .areaReport .borderReport .listReport > li .reportIntro .reportTime {
        width: 180px;
        font-size: 14px;
        padding: 10px;
    }
    .areaReport .borderReport .listReport > li .reportIntro .reportTime .time {
        font-size: 22px;
        letter-spacing: 0;
    }
    .areaReport .borderReport .listReport > li .reportDetail {
        padding: 15px 20px 30px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoName {
        font-size: 18px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoCat {
        font-size: 14px;
        padding: 4px 15px;
    }
}
@media(max-width:1000px) and (min-width: 769px) {
    .areaReport .borderReport .listReport > li .reportIntro .reportPhoto img {
        aspect-ratio: 390 / 265;
    }
}
@media(max-width: 900px) and (min-width: 769px) {
    .areaReport .wrapCatReport .titleCategory {
        width: 100%;
        margin: 0 0 20px;
    }
    .areaReport .wrapCatReport .titleCategory .reportImg {
        width: 25px;
        margin: 0 5px 0 0;
    }
    .areaReport .wrapCatReport .categoryFilter {
        border-left: none;
        border-right: none;
        border-top: 1px solid #cccccc;
        border-bottom: 1px solid #cccccc;
        width: 100%;
        padding: 20px 0;
        margin: 0 0 20px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap:not(:last-child) {
        margin-bottom: 15px;
    }
    .areaReport .wrapCatReport .categorySearch {
        width: 100%;
    }
    .areaReport .wrapCatReport .categorySearch button {
        width: 120px;
        margin: 0 auto;
    }
    .areaReport .wrapCatReport .titleCategory .reportText {
        display: inline-block;
    }


    .areaReport .borderReport .listReport > li {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .areaReport .borderReport .listReport > li:not(:nth-child(3n)) {
        margin-right: 0;
    }
    .areaReport .borderReport .listReport > li:not(:nth-child(2n)) {
        margin-right: 20px;
    }
}
@media(min-width: 769px) {
    .areaReport .borderReport .listReport > li a:hover {
        opacity: 0.7;
    }
    .areaReport .wrapCatReport .categorySearch button:hover {
        background-color: #ef6e0c;
        opacity: 1;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label:hover span {
        color: #fff;
        background-color: #2C8B60;
    }
    .areaReport .borderReport .listReport > li .reportIntro a:hover .reportPhoto {
        opacity: 0.7;
    }
}
@media(max-width: 768px) {
    .areaReport .inner {
        padding: 0 4%;
    }
    .areaReport .wrapCatReport {
        border-radius: 10px;
        padding: 14px 15px;
        margin-bottom: 41px;
    }
    .areaReport .wrapCatReport .titleCategory .reportText {
        font-size: 24px;
    }
    .areaReport .wrapCatReport .titleCategory {
        width: 100%;
        margin: 0 0 9px;
    }
    .areaReport .wrapCatReport .titleCategory .reportImg {
        width: 26px;
        margin: 0 8px 0 0;
        transform: translateY(0px);
    }
    .areaReport .wrapCatReport .categoryFilter {
        border-left: none;
        border-right: none;
        border-top: 1px solid #cccccc;
        border-bottom: 1px solid #cccccc;
        width: 100%;
        padding: 20px 0 20px;
        margin: 0 0 14px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap {
        align-items: center;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap:not(:last-child) {
        margin-bottom: 14px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterName {
        width: 136px;
        font-size: 16px;
        margin-right: 15px;
        text-align: center;
        margin-top: -5px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList {
        width: calc(100% - 151px);
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label {
        margin: 5px 6px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label span  {
        font-size: 16px;
        line-height: 1.1;
        padding: 5px 9px;
    }
    .areaReport .wrapCatReport .titleCategory .reportText {
        display: inline-block;
    }
    .areaReport .wrapCatReport .categorySearch {
        width: 100%;
    }
    .areaReport .wrapCatReport .categorySearch button {
        width: 169px;
        height: 50px;
        font-size: 16px;
        margin: 0 auto;
        padding: 7px 5px 6px;
    }
    .areaReport .borderReport .listReport {
        width: 100%; 
        margin-bottom: 12px;
    }
    .areaReport .borderReport .listReport > li {
        width: calc(50% - 10px);
        padding: 0;
        margin-bottom: 20px;
    }
    .areaReport .listReport>li:nth-child(even) {
        background-color: #fff;
    }
    .areaReport .borderReport .listReport > li:not(:nth-child(3n)) {
        margin-right: 0;
    }
    .areaReport .borderReport .listReport > li:not(:nth-child(2n)) {
        margin-right: 20px!important;
    }
    .areaReport .borderReport .listReport > li .reportIntro .reportPhoto img {
        aspect-ratio: 390 / 263;
    }
    .areaReport .borderReport .listReport > li .reportDetail {
        padding: 18px 20px 27px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .detailInfo {
        margin-bottom: 5px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoName {
        font-size: 20px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoCat {
        font-size: 16px;
        padding: 4px 10px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoRate .starPoint {
        margin-top: -1px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoBlock {
        margin-bottom: 13px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoList li {
        padding-bottom: 6px;
        margin: 2px 6px 3px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoBlock li:first-child {
        width: 41.6%;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoBlock li:last-child {
        width: 56.7%;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoBlock li .infoValue {
        font-weight: 500;
        padding: 5px 5px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoList li {
        font-size: 16px;
    }

}

@media(max-width: 640px) {
    .areaReport .wrapCatReport .titleCategory .reportImg {
        width: 23px;
        margin: 0 8px 0 0;
        transform: translateY(2px);
    }
    .areaReport .wrapCatReport .titleCategory .reportText {
        font-size: 16px;
    }
    .areaReport .wrapCatReport .categoryFilter {
        padding: 9px 0 10px;
        margin: 0 0 7px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterName {
        width: 76px;
        font-size: 14px;
        margin-right: 15px;
        text-align: center;
        margin-top: -1px;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList {
        width: calc(100% - 91px);
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label {
        margin: 2px 5px 3px 0;
    }
    .areaReport .wrapCatReport .categoryFilter .filterWrap .filterList label span  {
        font-size: 13px;
        line-height: 1.1;
        padding: 3px 5px;
    }
    .areaReport .wrapCatReport .titleCategory .reportText {
        display: inline-block;
    }
    .areaReport .wrapCatReport .categorySearch {
        width: 100%;
    }
    .areaReport .wrapCatReport .categorySearch button {
        width: 169px;
        height: 30px;
        font-size: 14px;
        margin: 0 auto;
        padding: 4px 5px 5px;
    }

    .areaReport .borderReport .listReport {
        width: 97%; 
        margin-bottom: 12px;
    }
    .areaReport .borderReport .listReport > li {
        width: 100%;
        margin-bottom: 0;
    }
    .areaReport .listReport>li:nth-child(even) {
        background-color: #fff;
    }
    .areaReport .borderReport .listReport > li:not(:nth-child(2n)) {
        margin-right: 0!important;
    }
    .areaReport .borderReport .listReport > li:not(:last-child) {
        margin-bottom: 15px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoName {
        font-size: 18px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .detailInfo .infoCat {
        font-size: 14px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoBlock li .infoValue {
        font-size: 14px; 
        padding: 3px 5px 2px;
    }
    .areaReport .borderReport .listReport > li .reportDetail .infoList li {
        font-size: 12px;
    }
}

/* areaReport */