﻿



.wrap>div{
    max-width: 960px;
}


/*검색창*/
.searchbox{
    width: 70%;
    height: 52px;
    margin: 0 auto;
    margin-bottom: 3rem;
    column-gap: 1rem;
}
.search_board{
    box-sizing: border-box;
    width: 100%;
    height:100%;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #E2E7EE;
}
.searchon{
    position: unset;
    width: 40%;
    height: 52px;
    background: #000;
    color: #fff;
    border-radius: 15px;
    cursor:pointer;
}

.n_post{
    color: #000;
    margin-top: 1rem;
}

.n_post span{
    color: var(--main-color);
}

@media (max-width:768px) {

    .searchbox{
        width: 100%;
    }

    .searchon{
        width: 50%;
    }

}


.c_arrow {
    display: inline-block;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    margin-left: 10px !important;
    width: 15px;
}


.c_arrow.rotate {
  transform: rotate(0deg) !important; /* 클릭 시 위로 회전 */
}



/* 선택 필터 */
.tag {
    margin-left: 0;
    white-space: nowrap; 
    width: 100%;
    height: 60px;
    background: #F9F9F9;
    border-radius: 25px 25px 0 0;
    border-bottom: 1px solid var(--main-color);
    gap: 0;
    justify-content: space-between;
}

.tag .label_tag{
    margin: 0;
    width: 33.3%;
}

.tag .label_tag input[type="radio"]:checked + span {
    background: none;
    border-radius: 25px 25px 0 0;
    border: 1px solid var(--main-color);
    border-bottom: #fff;
    box-shadow: none;
    color: var(--main-color);
    background: #fff;
    font-weight: 700;
    padding: 0 2rem;
    text-align: center;
    line-height: 60px;
}
.tag .label_tag input[type="radio"] + span {
    height: 60px;
    color: #B7B7B7;
    font-weight: 600;
    line-height: 60px;
}


@media (max-width:580px) {

    .tag,
    .tag .label_tag input[type="radio"] + span{
        height: 50px;
        line-height: 50px;
        border-radius: 15px 15px 0 0;
    }

    .tag .label_tag input[type="radio"]:checked + span{
        line-height: 50px;
        border-radius: 15px 15px 0 0;
    }

}


/* 세부 선택필터 */
.detailSwiper{
    margin: 2.5rem 0;
}
.detailSwiper .swiper-slide {
    margin: 0;
    width: auto;
    font-size: 0.93rem;
}
.detailSwiper .opt_obj input[type="radio"] + span {
    margin-right: 0.5rem;
    height: 2.6rem;
    line-height: 2.6rem;
    padding: 0 1.1rem;
}

/* 내역 없음 */
.list_none{
    text-align: center;
    margin: 2rem auto;
    font-size: 1rem;
    padding: 2rem;
    border-radius: 15px;
}
.list_none p{
    text-align: center;
}

/* 내부에 .list_none 있을 때는 grid 해제 */
.card_bottom:has(.list_none) {
  display: block;
}


/* 부가서비스박스 */
.card_bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-around;
    gap: 1rem;
    text-align: center;
}

@media (max-width:768px) {

    .card_bottom{
        grid-template-columns: repeat(1, 1fr);
    }

}

.noti{
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 15px;
    align-self: flex-start;
}

.n_box{
    padding: 3rem 1.5rem;
    height: 85px;
}

.n_pro{
    border-radius: 0;
}
.price_box{
    display: flex;
    justify-content: flex-end;
}

.exservice > h3 {
    padding-bottom: 0;
}
.n_tit > h3 {
    font-size: 1.1rem;
    padding-bottom: 0;
}
.n_tit>h4 {
    color: var(--main-color);
    font-size: 1.1rem;
}

/*펼쳤을 때 상세내용*/
.detail_list li{
    word-break: keep-all;
    line-height: 160%;
}


@media (max-width:1080px) {

    .n_tit > h3{
        font-size: 1rem;
        text-align: left;
        word-break: keep-all;
    }

    .n_tit>h4{
        font-size: 1.1rem;
    }

}

@media (max-width:480px) {

    .n_tit>h4{
        margin-left: 0.5rem;
        margin-right: 0;
    }

}




.exservice_btn{
    background: var(--main-color);
    margin-top: 1rem;
    margin-left: auto;
    display: block;
    padding: 8px 14px;
    border-radius: 8px;
    color: #fff !important;
}