@charset "utf-8";

/*
 * File       : common.css
 * Author     : YONG
 *
 * 최종수정일 : 25/00/00
 *
 * SUMMARY:
 * 서브페이지.CSS
 */

/* 
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■ PC ■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
*/

/*  */
.visual {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #eff9ff;
    padding: 2rem 0;
}

.visual.kb {
    background-color: #fff2cc;
}
.visual.hana {
    background-color: #edfdf9;
}
.visual.meritz {
    background-color: #ffefef;
}
.visual.hd {
    background-color: #fff7ee;
}

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

/*  */
.container {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: normal;
}

.container > h2 {
    font-size: 1.4rem;
    color: #7f7f7f;
    margin-bottom: 10px;
}

.container > h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.container > strong {
    font-size: 1.6rem;
    color: #843c0c;
    margin-bottom: 1rem;
}
.container > strong.hana {
    color: #00605e;
}
.container > strong.meritz {
    color: #ff0000;
}
.container > strong.hd {
    color: #f17804;
}

.container > p {
    font-size: 1rem;
    color: #595959;
}

.container > ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 3rem;
}

.container > ul > li {
    font-size: 1rem;
    color: #fff;
    background-color: #6341cf;
    border-radius: 2rem;
    padding: 12px 2rem;
}

.container .img img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

/*  */
.cs {
    width: 40%;
    height: auto;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 2rem;
}

.cs > p {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.cs__inputs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cs__select {
    width: 100%;
    height: 45px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    background-color: #fff;
    appearance: none;
    background-image: url(../img/sort-down-solid.svg);
    background-size: 14px;
    background-position: bottom 18px right 18px;
    background-repeat: no-repeat;
    padding: 0 18px;
}

.cs__select option {
    font-size: 1rem;
    padding: 1rem;
}

/*  */
#carType {
    width: 100%;
    height: auto;
    display: flex;
    gap: 10px;
}

#carType li {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#carType li.active {
    border: 1px solid #605bec;
}

#carType li > img {
    width: 16px;
    height: auto;
    object-fit: contain;
    display: none;
}

#carType li.active > img {
    display: block;
}

#carType li > span {
    font-size: 0.9rem;
    font-weight: 500;
}

#carType li.active > span {
    color: #605bec;
}

/*  */
.cs__input {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    padding: 0 1rem;
}

.cs__input.radio {
    border: none;
    border-radius: 0;
}

.cs__input span {
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.cs__input input {
    width: calc(100% - 70px);
    height: 100%;
    border-style: none;
}

/*  */
.cs__radio {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs__radio input[type=radio] {
    width: 18px;
    height: 18px;
}

.cs__radio input[type=radio]+label {
    font-size: 0.9rem;
    margin-right: 10px;
}
/*  */


.cs__apply {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cs__info {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 0 1rem;
}

.cs__info label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs__info input {
    width: 17px;
    height: 17px;
}

.cs__info span {
    font-size: 0.9rem;
}

.cs__info>span {
    color: cornflowerblue;
    text-decoration: underline;
    cursor: pointer;
}

.cs__submit {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1rem;
}

.cs__submit>a {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    background-color: #27375b;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.cs__submit>a:nth-of-type(1) {
    color: #fff;
}

.cs__submit>a:nth-of-type(2) {
    color: #000;
    background-color: #f7e600;
}

.cs > hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #ccc;
    margin: 1rem 0;
}

.cs .des {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs .des > span {
    font-size: 0.9rem;
    color: #595959;
}

.cs .des > p {
    font-size: 1rem;
    font-weight: 700;
}

/*  */
.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 2rem 0 0;
}

.content > .inner {
    width: 100%;
    height: auto;
}

.content > .inner > h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    width: fit-content;
    background-color: #605bec;
    border-radius: 0.2rem;
    margin-bottom: 1rem;
    padding: 10px 2rem;
}

.content .list {
    width: 100%;
    height: auto;
}

.content .list > li {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 3rem 0;
}

.content .list > li:nth-last-of-type(1){
    border: none;
}

.content .list .title {
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.content .list .title > span {
    font-size: 2rem;
    font-weight: 800;
    color: #6341cf;
}

.content .list .title > h3 {
    font-size: 1.4rem;
}

.content .list > li > ul {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.content .list > li > ul > li {
    font-size: 1rem;
}

.content .list > li > ul > li > em {
    font-weight: 600;
}


/*  */
.banner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.banner>.inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.banner .title {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.banner .title>h4 {
    font-size: 1.8rem;
}

.banner .title>h4>b {
    font-weight: inherit;
    color: #3074f0;
}

.banner .title>p {
    font-size: 1.1rem;
    text-align: center;
}

.banner .items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner .items>li {
    width: calc(20% - 13px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.banner .items .img {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
}

.banner .items .img>img {
    max-width: 120px;
    max-height: 26px;
}

.banner .items>li>span {
    font-size: 0.9rem;
    font-weight: 500;
}

.banner .des {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 2rem;
}

.banner .des>p {
    font-size: 0.95rem;
    text-align: center;
}


@media screen and (min-width: 768px) and (max-width: 1200px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 태블릿 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    
    .visual {
        padding: 2rem 1rem 1rem;
    }

    .visual > .inner {
        flex-wrap: wrap;
    }

    .container {
        width: 100%;
    }

    .container .img img {
        width: 150px;
    }


    /*  */
    .cs {
        width: 100%;
    }

    /*  */
    .content {
        padding: 2rem 1rem;
    }
    .content .list > li {
        padding: 2rem 1rem;
    }

    .content .list .title {
        width: 35%;
    }

    .content .list .title > h3 {
        font-size: 1.2rem;
    }


    /*  */
    .banner {
        padding: 2rem 1rem;
    }

    .banner .title>h4 {
        font-size: 1.6rem;
    }

    .banner .title>p {
        font-size: 1rem;
    }

    .banner .items>li {
        width: calc(25% - 12px);
    }

}






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

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 모바일 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    .visual {
        padding: 0;
    }

    .visual > .inner {
        flex-wrap: wrap;
    }

    /*  */
    .container {
        width: 100%;
        padding: 2rem 1rem 0;
    }

    .container > h2 {
        font-size: 1rem;
    }

    .container > h3 {
        font-size: 1.2rem;
    }

    .container > strong {
        font-size: 1.3rem;
    }

    .container > p {
        font-size: 0.9rem;
    }

    .container > ul {
        flex-wrap: wrap;
        gap: 10px;
        margin: 2rem 0;
    }

    .container > ul > li {
        width: 100%;
    }

    .container .img img {
        width: 150px;
    }

    /*  */
    .cs {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
        padding: 1.5rem;
    }

    /*  */
    .content {
        padding: 2rem 1rem;
    }

    .content > .inner > h2 {
        margin-bottom: 0;
    }

    .content .list > li {
        flex-wrap: wrap;
        padding: 2rem 0;
    }

    .content .list .title {
        width: 100%;
        margin-bottom: 1rem;
    }

    .content .list .title > h3 {
        font-size: 1.2rem;
    }

    .content .list > li > ul {
        width: 100%;
    }

    .content .list > li > ul > li {
        font-size: 0.95rem;
        word-break: keep-all;
    }

    /*  */
    .banner {
        border-top: 1px solid #ccc;
        padding: 2rem 1rem;
    }

    .banner .title>h4 {
        font-size: 1.2rem;
    }

    .banner .title>p {
        font-size: 0.9rem;
    }

    .banner .items>li {
        width: calc(50% - 8px);
    }

}