@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);

/* Noto Sans KR 설정 */
@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 100;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 300;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 400;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 500;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 700;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 900;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.otf) format('opentype');}


/* 
Martel:

폰트 패밀리: 'Martel', sans-serif;
Noto Sans KR:

폰트 패밀리: 'Noto Sans KR', sans-serif;
Open Sans:

폰트 패밀리: 'Open Sans', sans-serif;
Poppins:

폰트 패밀리: 'Poppins', sans-serif;
Roboto:

폰트 패밀리: 'Roboto', sans-serif;
*/


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spoqa Han Sans Neo', 'sans-serif'; 
}

html, body {
    overflow-x: hidden;  /* 가로 스크롤 방지 */
    width: 100%;
}

/* 프린트 할 때 상단, 하단 공백을 없애기 위함 */
@media print { 
	@page { 
		margin-top: 0; 
		margin-bottom: 0; 
	} 
	body { 
		margin: 0cm; 
	} 
}

:root {
	/* 핑크색 */
	/* --main-color: #dd2f6e; */
	/* 차콜색 */
	--main-color: #61696e;
	--main-text-color: #000000;
	--color-dart: #1d2231;
	--text-gray: #8390a2;
	--color-pink : pink;
	--color-green : green;
	--color-blue : blue;
	--color-red : red;
}



a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
    color: #000; /* 마우스 오버 시 */
}

select {
	position : relative;
	top : 2px;
	height : 28px;
	border : 1px solid #ccc;
	border-radius : 3px;
	outline : none;
	font-size : 14px;
	padding-left : 8px;
}

textarea {
	width : 100%;
	outline : none;
	border : 1px solid #ccc;
	padding : 10px;
	white-space : normal;
}

input[type='text'] {
	position : relative;
	top : 1px;
	height : 28px;
	border : 1px solid #ccc;
	border-radius : 3px;
	outline : none;
	font-size : 13px;
	padding : 13px;
}

input[type='password'] {
	position : relative;
	top : 2px;
	height : 28px;
	border : 1px solid #ccc;
	border-radius : 3px;
	outline : none;
	font-size : 13px;
	padding : 13px;
}

input[type='button'] {
	cursor : pointer;
}

input[type='checkbox'] {
	height : 20px;
	width : 20px;
	cursor : pointer;
}

input[type='radio'] {
	cursor : pointer;
}

input[type=radio]:checked ~ .check {
    border: 5px solid #0DFF92;
}

input[type=radio]:checked ~ .check::before{
    background: #0DFF92;
}

input[type=radio]:checked ~ label{
    color: #000000;
}

input::placeholder {
	color: #b7bfc7;
}

textarea::placeholder {
	color: #b7bfc7;
}

hr {
	border : 1px dotted #ddd;
}


/* function */
.center {
    text-align: center !important;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.red {
    color: #e04f3a;
}

.hands {
    cursor: pointer;
}

.bold {
    font-weight: bold;
}

.black {
    color: #000;
}

/* header */
header {
    width: 100%;

    .container {
        .wrapper {
            width: 1200px;
            height: 85px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;

            .logo-section {                
                display: flex;
                justify-content: flex-start;
                align-items: first baseline;
                gap: 10px;
                cursor: pointer;

                .logo-box {
                    top: 3px;
                }

                .text-box {
                    font-size: 14px;
                    font-weight: 600;
                }
            }

            .menu-section {
                height: 23px;
                display: flex;
                justify-content: flex-end;
                align-items: center;
                gap: 32px;

                div {
                    font-size: 18px;
                    font-weight: 500;
                }
            }
        }
    }
}

main {
    .swiper-container {
        width: 100%;
        height: 485px;
        background-color: #fff;

        img {
            width: 100%;
            height: 485px;
        }
    }

    .content-container {
        width: 1200px;
        margin: auto;

        .search-wrapper {                
            width: 600px;
            margin: auto;
            margin-top: 64px;
            height: 50px;
            background-color: #f5f6f8;
            border-radius: 50px;
            border: solid 1px #b6bfc7;
            display: flex;
            align-items: center;
            padding: 10px;        
            
            i {
                font-size: 25px;
                color:#e04f3a;
                margin-right: 10px;
            }

            input {
                flex: 1;
                height: 40px;
                border: none;
                outline: none;
                font-size: 18px;
                background-color: #f5f6f8;
                padding-right: 10px;
            }
        }

        .client-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);   
            grid-gap: 16px;
            text-align: center;
            margin-top: 58px;

            .client-card {
                width: 288px;
                height: 120px;
                padding: 29px 34px 16px;
                border-radius: 5px;
                border: solid 1px #dee5ec;
                background-color: #fff;

                img {
                    width: 220px;
                    height: 44.7px;
                }

                .card-title {
                    font-size: 14px;
                    text-align: center;
                    margin-top: 12.3px;
                }
            }
        }

        .counseling-wrapper {
            margin-top: 80px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 127px;

            .text-section {

                .title-box {
                    font-family: SpoqaHanSansNeo;
                    font-size: 24px;
                    font-weight: 600;
                }

                .text-box {
                    font-size: 15px;
                    margin-top: 20px;
                    line-height: 24px;
                }
            }

            .input-section {
                div {
                    margin-bottom: 16px;
                    width: 100%;

                    input {
                        width: 830px;
                        height: 48px;
                        padding: 16px;
                        border-radius: 5px;
                        border: solid 1px #dee5ec;
                        background-color: #f5f6f8;
                    }

                    textarea {
                        width: 830px;
                        height: 160px;
                        padding: 16px;
                        border-radius: 5px;
                        border: solid 1px #dee5ec;
                        background-color: #f5f6f8;
                        margin-bottom: 40px;                        
                    }

                    .select {
                        height: 48px;
                        padding: 12px;
                        border-radius: 5px;
                        border: solid 1px #dee5ec;
                        background-color: #f5f6f8;
                    }
                }

                .btn-counseling {
                    width: 350px;
                    height: 48px;
                    font-size: 16px;
                    color: #fff;
                    padding: 14px 144px 14px 143px;
                    border-radius: 5px;
                    background-color: #e04f3a;
                }
            }
        }
    }

    .login-container {
        height: 710px;
        background-color: #f5f6f8;
        padding-top: 125px;
        padding-bottom: 125ps;

        .login-wrapper {
            width: 500px;
            height: 450px;
            margin: auto;
            padding: 80px 75px 81px;
            border-radius: 10px;
            box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
            background-color: #fff;

            .client-logo {
                width: 220px;
                height: 44.7px;
                margin-bottom: 70px;
            }

            input {
                width: 350px;
                height: 48px;
                padding: 16px;
                border-radius: 5px;
                border: solid 1px #dee5ec;
                background-color: #f5f6f8;
                margin-bottom: 15px;                
            }

            .btn-login {
                width: 350px;
                height: 48px;
                font-size: 16px;
                color: #fff;
                padding: 14px 144px 14px 143px;
                border-radius: 5px;
                background-color: #e04f3a;
                margin-top: 15px;
            }
        }
    }

    
    .agency-login-container {
        height: 710px;
        background-color: #f5f6f8;
        padding-top: 125px;
        padding-bottom: 125ps;

        .login-wrapper {
            width: 527px;
            height: 350px;
            margin: auto;
            padding: 23px;
            border-radius: 10px;
            box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
            background-color: #fff;

            .login-title {
                width: 100%;
                padding-bottom : 15px;
                border-bottom: 1px solid #ccc;
                margin-bottom : 15px;
                font-size: 16px;
            }

            .login-helper {
                font-size: 14px;
                color: #777777;
                margin-bottom: 27px;
            }

            input {
                width: 100%;
                height: 48px;
                padding: 16px;
                border-radius: 5px;
                border: solid 1px #dee5ec;
                background-color: #f5f6f8;
                margin-bottom: 15px;                
            }

            .btn-login {
                width: 100%;
                height: 48px;
                font-size: 16px;
                color: #fff;
                padding: 14px 144px 14px 143px;
                border-radius: 5px;
                background-color: #e04f3a;
                margin-top: 15px;
            }
        }
    }

    .list-container {
        width: 1200px;
        margin: auto;
        margin-top: 44px;

        .search-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            
            .btn-category {
                width: 120px;
                height: 40px;
                padding: 10px 33.1px 10px 33.2px;
                border-radius: 50px;
                border: solid 1px #b7bfc7;
                background-color: #fff;
                margin-left: 10px;

                &.active {
                    color: #fff;
                    background-color: #e04f3a;
                }
            }
            

            .search-section {                
                width: 350px;
                height: 48px;
                border-radius: 5px;
                border: solid 1px #dee5ec;
                background-color: #f5f6f8;
                display: flex;
                align-items: center;
                padding: 10px;        
                
                i {
                    font-size: 20px;
                    color:#65717f;
                    margin-right: 10px;
                }

                input {
                    flex: 1;
                    height: 40px;
                    border: none;
                    outline: none;
                    font-size: 14px;
                    background-color: #f5f6f8;
                    padding-right: 10px;
                }
            }
        }

        .list-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);   
            grid-gap: 16px;
            margin-top: 68px;

            .product-section {
                .image-box {
                    width: 288px;
                    height: 288px;
                    padding: 9px;
                    border-radius: 5px;
                    border: solid 1px #dfdfdf;
                    background-color: #fff;

                    img {
                        width: 270px;
                        height: 270px;
                        flex-grow: 0;
                    }
                }

                .info-box {
                    margin-top: 16px;

                    .product-model {
                        font-family: SpoqaHanSansNeo;
                        font-size: 12px;
                        color: #a7a7a7;
                    }

                    .product-name {
                        font-family: SpoqaHanSansNeo;
                        font-size: 16px;
                        color: #000;
                        font-weight: 600;
                        margin-top: 5px;
                    }

                    .product-price {
                        font-family: SpoqaHanSansNeo;
                        margin-top: 16px;
                        font-size: 14px;
                        font-weight: 600;
                        color: #000;
                    }
                }
            }
        }
    }

    
    .charge-container {
        width: 1200px;
        margin: auto;


        .charge-wrapper {
            .title-section {
                font-size: 24px;
                font-weight: 600;
                color: #000000;
                margin-top: 23px;
                margin-bottom: 24px;
                padding-bottom: 23px;
                border-bottom: 1px solid #ccc;
            }

            .user-section {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                height: 60px;
                padding: 16.4px 16px 15.6px 20.5px;
                border-radius: 5px;
                background-color: #f5f6f8;
                font-size: 16px;
                font-weight: 600;

                input[type='button'] {
                    width: 80px;
                    height: 24px;
                    border-radius: 50px;
                    border: solid 1px #e04f3a;
                    background-color: #fff;
                    font-family: SpoqaHanSansNeo;
                    font-size: 12px;
                    color: #e04f3a;
                    margin-right: 10px;
                }
            }

            .charge-section {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-top: 40px;
                margin-bottom: 80px;

                .charge-box {
                    width: 680px;

                    .title-content {
                        font-size: 16px;
                        font-weight: 600;
                    }

                    .charge-content { 
                        margin-top: 8px;  
                        border: 1px solid #ccc;
                        border-radius: 5px;

                        .charge-card {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            padding: 14px 24px;
                            border-bottom: 1px solid #ccc;

                            .radio-label {
                                display: flex;
                                align-items: center;
                            
                                .radio-input {
                                    display: none;
                                }
                            
                                .radio-custom {
                                    width: 16px;
                                    height: 16px;
                                    margin: 1.6px 16px 1.4px 0;
                                    background-color: #eaeaec;
                                    border-radius: 50%;
                                    transition: all 0.3s; 

                                    .radio-input:checked + & {
                                        margin: 1.8px 16px 1.2px 0;
                                        border: solid 4px #e04f3a;
                                        background-color: #fff;
                                    }
                                }
                            }

                            .point-item {
                                font-size: 15px;
                                color: #000000;
                            }
                            
                            .price-item {
                                font-size: 15px;
                                color: #777777;
                            }

                            &:last-child {
                                border-bottom: none;
                            }
                        }
                    }
                }

                .bank-box {
                    width: 480px;

                    .title-content {
                        font-size: 16px;
                        font-weight: 600;
                        padding-bottom: 7px;
                        border-bottom: 2px solid #000;
                    }

                    .input-card {                        
                        margin-top: 16px;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;

                        .title-item {
                            font-size: 14px;
                        }

                        input {
                            width: 365px;
                            height: 48px;
                            padding: 16px 187px 13px 16px;
                            border-radius: 5px;
                            border: solid 1px #dee5ec;
                            background-color: #f5f6f8;
                        }
                    }

                    .button-card {
                        margin-top: 40px;

                        input {
                            width: 480px;
                            height: 48px;
                            flex-grow: 0;
                            padding: 14px 191.5px 14px 225.5px;
                            border: none;
                            border-radius: 5px;
                            background-color: #e04f3a;                            
                            font-size: 14px;
                            color: #fff;
                        }
                    }
                }
            }
        }
    }

    .result-container {
        width: 1200px;
        margin: auto;

        .result-wrapper {
            width: 480px;            
            margin: auto;
            margin-top: 75px;

            .image-section {
                text-align: center;
            }

            .title-section {
                font-size: 24px;
                font-weight: 600;
                text-align: center;
                margin-top: 12px;
            }

            .summary-section {
                width: 480px;
                height: 52px;
                flex-grow: 0;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                padding: 8px;
                background-color: #f5f6f8;
                font-size: 12px;
                color: #6b7583;   
                margin-top: 12px;             
            }

            .first-line {                
                border: none;            /* 기본 스타일 제거 */
                border-top: 2px solid #000; /* 위쪽에만 2px 두께의 검은색 테두리 */
                margin: 20px 0;  
            }

            .second-line {                
                border: none;            /* 기본 스타일 제거 */
                border-top: 1px solid #ccc; /* 위쪽에만 2px 두께의 검은색 테두리 */
                margin: 20px 0 10px 0;  
            }

            .flex-box {
                display: flex;
                justify-content: space-between;
                align-items: center;
                color: #777777;
                font-size: 14px;
                margin-top: 8px;
                margin-bottom: 8px;                
            }

            .helper {
                font-size: 12px;
                color: #6b7583;
                text-align: center;
                margin-bottom: 80px;
            }
        }
    }

    .title-container {
        height: 100px;
        background-color: #000;

        .title-wrapper {
            width: 1200px;
            margin: auto;
            padding: 24px 0 24px 0;

            .title {
                font-size: 24px;
                font-weight: 600;
                color: #fff;
            }

            .summary {
                margin-top: 4px;
                color: #fff;
                font-family: SpoqaHanSansNeo;
                font-size: 14px;
            }
        }
    }

    /* 상담신청 */
    .form-container {
        padding-top: 40px;

        .form-wrapper {
            width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;

            .input-section {
                margin-right : 50px;

                .input-box {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    margin-bottom: 16px;

                    .input-title {
                        width: 80px;
                        margin-right: 59px;
                        font-size: 14px;
                        font-weight: 600;;
                    }

                    input {
                        width: 600px;
                        height: 48px;
                        padding: 16px 425px 13px 16px;
                        border-radius: 5px;
                        border: solid 1px #dee5ec;
                        background-color: #f5f6f8;
                    }

                    textarea {
                        width: 600px;
                        height: 210px;
                        padding: 16px;
                        border-radius: 5px;
                        border: solid 1px #dee5ec;
                        background-color: #f5f6f8;
                    }

                    .select {
                        height: 48px;
                        padding: 12px;
                        border-radius: 5px;
                        border: solid 1px #dee5ec;
                        background-color: #f5f6f8;
                    }
                }

                .textarea-box {
                    display: flex;
                    justify-content: space-betweefn;
                    align-items: flex-start;
                    margin-bottom: 16px;

                    .input-title {
                        width: 80px;
                        margin-top: 30px;
                        margin-right: 59px;
                        font-size: 14px;
                        font-weight: 600;;
                    }

                    textarea {
                        width: 600px;
                        height: 210px;
                        padding: 16px;
                        border-radius: 5px;
                        border: solid 1px #dee5ec;
                        background-color: #f5f6f8;
                    }
                }
            }

            .info-section {
                .device-info {
                    display: flex;
                    justify-content: flex-start;
                    align-items: baseline;
                    gap: 10px;
                }
                .device-name {
                    font-size: 20px;
                    font-weight: 600;
                    margin-bottom: 8px;
                }

                .device-model {
                    font-size: 14px;
                    color: #000;
                }

                .payment {
                    font-size: 14px;
                    color: #777777;
                }

                hr {
                    margin-top: 15px;
                    margin-bottom: 15px;
                    border-color: #e3e3e3;
                }

                .payment-box {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 8px;

                    div {
                        font-size: 14px;
                        color: #777777;
                    }
                }

                .total-payment-box {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 16px;

                    div {
                        font-size: 14px;
                        color: #000;
                        font-weight: 600;
                    }
                }

                .info-box {
                    height: 104px;
                    padding: 16px;
                    background-color: #f5f6f8;
                    font-size: 12px;
                    color: #6b7583;
                    line-height: 18px;
                }

                .check-box {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 10px;
                    margin-top: 10px;

                    input[type="checkbox"] {
                        width: 25px;
                        height: 25px;
                        border-radius: 3px;
                        border: solid 1px #c8c8c8;
                    }
                    label {
                        font-size: 13px;
                        color: #6b7583;
                    }
                }
            }
        }

        .button-wrapper {
            width: 1200px;
            margin: auto;
            text-align: center;
            margin-top: 80px;
            margin-bottom: 120px;

            .btn {
                width: 350px;
                height: 48px;
                font-size: 16px;
                color: #fff;
                padding: 14px 144px 14px 143px;
                border: none;
                border-radius: 5px;
                background-color: #e04f3a;
                margin-top: 15px;
            }
        }
    }

    .board-container {
        width: 100%;
        padding-top: 40px;        

        .board-wrapper {
            width: 1200px;
            margin: auto;
            margin-bottom: 80px;

            .title-section {
                margin-bottom: 23px;

                .view-title {
                    font-size: 24px;
                    font-weight: 600;
                    margin-bottom: 8px;
                }

                .view-date {
                    font-size: 16px;
                    color: #a7a7a7;
                }
            }

            .view-section {
                border-top: 1px solid #b7bfc7;
                border-bottom: 1px solid #b7bfc7;
                padding: 63px 16px;
                font-size: 16px;
                font-family: SpoqaHanSansNeo;

            }

            .btn-section {
                .btn {
                    width: 350px;
                    height: 48px;
                    font-size: 16px;
                    color: #fff;
                    padding: 14px 144px 14px 143px;
                    border: none;
                    border-radius: 5px;
                    background-color: #e04f3a;
                    margin-top: 93px;
                }
            }

            .search-section {
                display: flex;
                justify-content: space-between;
                align-items: center;

                .search-box {
                    width: 350px;
                    height: 48px;
                    border-radius: 5px;
                    border: solid 1px #dee5ec;
                    background-color: #f5f6f8;
                    display: flex;
                    align-items: center;
                    padding: 10px; 
                    margin-bottom: 14px;       
                    
                    i {
                        font-size: 20px;
                        color:#65717f;
                        margin-right: 10px;
                    }

                    input {
                        flex: 1;
                        height: 40px;
                        border: none;
                        outline: none;
                        font-size: 14px;
                        background-color: #f5f6f8;
                        padding-right: 10px;
                    }
                }
            }
        }
    }

    .faq-container {
        width: 100%;
        padding-top: 40px;   

        .faq-wrapper {
            width: 1200px;
            margin: auto;
            margin-bottom: 80px;

            .search-section {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 14px;

                .btn-box {
                    .btn-category {
                        width: 120px;
                        height: 40px;
                        padding: 10px 33.1px 10px 33.2px;
                        border-radius: 50px;
                        border: solid 1px #b7bfc7;
                        background-color: #fff;
                        margin-right: 5px;
        
                        &.active {
                            color: #fff;
                            background-color: #e04f3a;
                        }
                    }
                }

                .search-box {
                    width: 350px;
                    height: 48px;
                    border-radius: 5px;
                    border: solid 1px #dee5ec;
                    background-color: #f5f6f8;
                    display: flex;
                    align-items: center;
                    padding: 10px; 
                    margin-bottom: 14px;       
                    
                    i {
                        font-size: 20px;
                        color:#65717f;
                        margin-right: 10px;
                    }

                    input {
                        flex: 1;
                        height: 40px;
                        border: none;
                        outline: none;
                        font-size: 14px;
                        background-color: #f5f6f8;
                        padding-right: 10px;
                    }
                }
            }

            .list-section {
                .faq-box {
                    .question-content {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        padding-top: 23px;
                        padding-bottom: 21px;
                        font-size: 16px;
                        border-top: 1px solid #b7bfc7;
                        cursor: pointer;
                
                        .red {
                            color: #e04f3a;
                        }
                
                        i {
                            transition: transform 0.3s ease;
                        }
                
                        &.active i {
                            transform: rotate(180deg);
                        }
                    }
                
                    &:first-of-type .question-content {
                        border-top: 2px solid #000;
                    }
                
                    .answer-content {
                        max-height: 0;  /* 기본적으로 닫힌 상태 */
                        overflow: hidden;
                        transition: max-height 0.5s ease;  /* 부드러운 열림 애니메이션 */
                        border-top: 1px solid #b7bfc7;
                        padding: 0 8px;
                        
                        .answer {
                            background-color: #f5f6f8;
                            font-size: 13px;
                            padding: 10px;
                            line-height: 20px;
                        }
                    }
                
                    .answer-content.open {
                        max-height: 200px;  /* 열릴 때 최대 높이 */
                        padding: 8px;       /* padding을 다시 설정 */
                    }
                }
            }
        }
    }

    .payment-container {
        width: 100%;
        padding-top: 40px;

        .payment-wrapper {
            width: 1200px;
            margin: auto;
            margin-bottom: 80px;

            .btn-section {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 23px;

                .btn-box {
                    .btn-title {
                        font-size: 16px;
                        color: #6b7583;
                        margin-bottom: 8px;
                        padding-left: 10px;
                    }
                    .btn-category {
                        width: 120px;
                        height: 40px;
                        padding: 10px 33.1px 10px 33.2px;
                        border-radius: 50px;
                        border: solid 1px #b7bfc7;
                        background-color: #fff;
                        margin-right: 5px;
        
                        &.active {
                            color: #fff;
                            background-color: #e04f3a;
                        }
                    }
                }
            }

            .list-section {
                table {
                    tr {
                        &:first-child {
                            border-top: 2px solid #000; /* 상단 테두리 추가 */
                        }
                    }
                }

                .list-title {
                    font-size: 18px;
                    font-weight: 600;
                }

                .data-type {
                    font-size: 14px;
                    color: #6b7583;
                }

                .data {
                    font-size: 14px;
                    color: #e04f3a;
                    font-weight: 600;
                    margin-top: 3px;
                }

                .price {
                    font-size: 18px;
                    color: #e04f3a;
                    font-weight: 600;
                }

                .vat {
                    font-size: 11px;
                    color: #6b7583;
                }
            }            
        }
    }

    .terms-container {
        width: 100%;
        padding-top: 40px;

        .terms-wrapper {
            width: 1200px;
            margin: auto;
            margin-bottom: 80px;

            .terms-section {
                background-color: #f5f6f8;
                padding: 16px;
            }
        }
    }

    /*==================================== 페이징 ====================================*/
    .paging-area {
        text-align: center;
        margin-top: 40px;
        padding: 15px;
    }

    .pagination {
        display: inline-block;
    }

    .pagination a,
    .pagination span {
        padding: 8px 16px;
        margin: 2px;
        text-decoration: none;
        color : black;
        cursor: pointer;
    }

    .pagination a.active,
    .pagination span.active {
        border-radius: 5px;
        background-color: #e04f3a;
        color: white;
    }

    .pagination a:hover:not(.active),
    .pagination span:hover:not(.active) {
        border-radius: 5px;
        background-color: #edc6c0;
    }

    .bx {
        font-size: 16px;
    }

    .used-container {
        width: 100%;
        padding-top: 40px;

        .used-wrapper {
            width: 1200px;
            margin: auto;
            margin-bottom: 80px;
            padding-top: 50px;
            padding-bottom: 50px;

            .big-title {
                font-size: 21px;
                font-weight: 600;
                color: #000;

                &.two {
                    margin-top: 65px;
                }
            }

            .full-box {
                width: 100%;
                height: 148px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding-top: 24px;
                padding-bottom: 24px;
                border-radius: 5px;
                border: solid 1px #dfdfdf;
                background-color: #fff;
                margin-top: 9px;

                img {
                    margin-bottom: 12px;
                }            
            }

            .small-title {
                font-size: 14px;
                font-weight: 600;
                color: #000;
                margin-bottom: 12px;
            }

            .info-section {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 8px;

                .info-box {
                    width: 200px;
                    height: 195px;
                    flex-grow: 0;
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: center;
                    padding: 24px !important;
                    border-radius: 5px;
                    border: solid 1px #dfdfdf;
                    background-color: #fff;

                    img {
                        margin-bottom: 8px;
                    }

                    .text {
                        font-size: 13px;
                        color: #777777;
                    }
                }

                i {
                    font-size: 14px;
                    color: #e04f3a;
                    font-weight: 600;
                }
            }
        }
    }

    .view-container {
        width: 1200px;
        margin: auto;
        padding-top: 40px;

        .b0 {
            margin-top: 55px;
            margin-bottom: 43px;
        }


        .search-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            
            .btn-category {
                width: 120px;
                height: 40px;
                padding: 10px 33.1px 10px 33.2px;
                border-radius: 50px;
                border: solid 1px #b7bfc7;
                background-color: #fff;
                margin-left: 10px;

                &.active {
                    color: #fff;
                    background-color: #e04f3a;
                }
            }
            

            .search-section {                
                width: 350px;
                height: 48px;
                border-radius: 5px;
                border: solid 1px #dee5ec;
                background-color: #f5f6f8;
                display: flex;
                align-items: center;
                padding: 10px;        
                
                i {
                    font-size: 20px;
                    color:#65717f;
                    margin-right: 10px;
                }

                input {
                    flex: 1;
                    height: 40px;
                    border: none;
                    outline: none;
                    font-size: 14px;
                    background-color: #f5f6f8;
                    padding-right: 10px;
                }
            }
        }

        .view-wrapper {
            width: 1200px;
            margin: auto;
            margin-bottom: 80px;

            .info-section {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;

                .image-box {
                    .big-image {
                        .big {
                            width: 620px;
                            border-radius: 15px;
                            border: solid 1px #a7a7a7;
                        }                        
                    }

                    .thumbnail-image {
                        text-align: center;
                        margin-top: 25px;

                        .thumbnail {
                            width: 100px;
                        }
                    }
                }

                .price-box {
                    width: 498px;

                    .b1 {
                        width: 498px;
                        border: 1px solid #000;
                        margin-top: 16px;
                        margin-bottom: 16px;
                    }

                    .b2 {
                        width: 498px;
                        border: 2px solid #000;
                        margin-top: 16px;
                        margin-bottom: 16px;
                    }

                    .block-title {
                        margin-top: 16px;
                        font-size: 16px;
                    }

                    .btn-content {
                        margin-top: 8px;

                        .btn-type1 {
                            width: 245px;
                            height: 40px;
                            font-size: 14px;
                            padding: 11px;
                            border-radius: 3px;
                            border: solid 1px #b7bfc7;
                            background-color: #fff;

                            &.active {
                                border: solid 2px #e04f3a;
                            }
                        }

                        .btn-type2 {
                            width: 161px;
                            height: 40px;
                            font-size: 14px;
                            padding: 11px;
                            border-radius: 3px;
                            border: solid 1px #b7bfc7;
                            background-color: #fff;

                            &.active {
                                border: solid 2px #e04f3a;
                            }
                        }

                        .btn-type3 {
                            width: 161px;
                            height: 40px;
                            font-size: 14px;
                            padding: 11px;
                            border-radius: 3px;
                            border: solid 1px #b7bfc7;
                            background-color: #e5e4e8;

                            &.active {
                                border: solid 2px #e04f3a;
                                background-color: #fff;
                            }
                        }
                    }

                    .price-content {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-top: 16px;

                        .hiddenRow {
                            display: none;
                        }

                        select {
                            width: 350px;
                            height: 48px;
                            padding: 10px 13.7px 10px 10px;
                            border-radius: 5px;
                            border: solid 1px #dee5ec;
                            background-color: #f5f6f8;
                        }

                        .price-title {
                            font-size: 16px;
                        }

                        .price {
                            font-size: 24px;
                            font-weight: 600;
                        }
                    }

                    .summary-content {
                        padding: 35px 23px;
                        border-radius: 15px;
                        background-color: #f2f2f2;
                        margin-top: 56px;
                        width: 498px;

                        hr {
                            width: 100%;
                            margin-top: 21px;
                            margin-bottom: 21px;
                        }

                        .b3 {
                            border: 1px solid #a7a7a7;
                        }

                        .device-name {
                            font-family: 'Noto Sans KR', sans-serif;
                            font-weight: bold;
                            font-size: 30px;
                        }

                        .payment-name {
                            font-family: 'Noto Sans KR', sans-serif;
                            font-size: 18px;
                            margin-top: 3px;
                        }

                        .price-card {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            font-family: 'Noto Sans KR', sans-serif;
                            font-size: 18px;
                            color: #707070;
                            margin-bottom: 10px;

                            .total {
                                font-size: 22px;
                                font-weight: bold;
                                color: #000;
                            }
                        }

                        .right {
                            font-size: 14px;
                            font-family: 'Noto Sans KR', sans-serif;
                        }
                    }

                    .btn-section {
                        margin-top: 40px;

                        input[type='button'] {
                            width: 245px;
                            height: 48px;
                            font-size: 16px;
                            padding: 11px 80.2px 11px 81.7px;
                            border-radius: 3px;

                            &:first-child {
                                color: #e04f3a;
                                border: 1px solid #e04f3a;
                                background-color: #fff;
                                
                            }

                            &:last-child {
                                color: #fff;
                                background-color: #e04f3a;
                                border: 1px solid #e04f3a;
                            }
                        }
                    }
                }
            }

            .content-section {
                .ad-box {
                    width: 1200px;
                    height: 90px;
                    padding: 32px 438px;
                    object-fit: contain;
                    border-radius: 10px;
                    background-color: #f2f2f2;
                }

                .content-box {
                    margin-top: 40px;
                    text-align: center;
                }
            }
        }

    }
}

footer {
    background-color: #333;    
    padding-bottom: 63px;

    hr {
        border-color: #707070;
    }

    .kakao {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background-color: #fee500;
        border-radius: 50px;
        height: 32px;
        width: 174px;
        padding: 8px 8px 8px 12px;
        font-size: 11px;
    }

    .policy-container {
        width: 1200px;
        margin: auto;

        .policy-wrapper {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 27px;
            padding: 23px 0 20px 0;

            div {
                color: #fff;
                font-size: 16px;
            }
        }
    }

    .copyright-container {
        width: 1200px;
        margin: auto;
        margin-top: 39px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;

        .worktime-wrapper {
            margin-right: 80px;

            .call-center {
                font-size: 24px;
                font-weight: 600;
                color: #fff;
                margin-bottom: 7px;
            }

            .work-time {
                div {
                    margin-bottom: 5px;
                    color: #fff;
                    font-size: 14px;
                }
            }
        }

        .company-wrapper {            
            color: #d3d3d3;
            font-family: "Noto Sans KR", sans-serif;

            .company-info {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 10px;  
                margin-bottom: 5px;       
                font-family: "Noto Sans KR", sans-serif;       
            }

            .company-contract {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 10px;
                margin-bottom: 27px;
                font-family: "Noto Sans KR", sans-serif;
            }

            .company-worktime {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 10px; 
                margin-bottom: 17px;
                font-family: "Noto Sans KR", sans-serif;
            }

            .copyright {
                font-size: 14px;
            }
        }
    }
}


.bx-check {
    color: red;
}

.fa-search {
    cursor: pointer;
}

.watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* 클릭 방지 */
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    grid-template-rows: repeat(auto-fill, 200px);
}

.watermark span {
    font-size: 1rem; /* h3 크기 */
    color: rgba(0, 0, 0, 0.1); /* 희미한 글자 */
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg); /* 사선 각도 */
}

.hamburger-menu {
    display: none;
}


.mobile-menu {
    display: none;
}


@media screen and (max-width: 769px) {
    header {
        width: 100%;
    
        .container {
            .wrapper {
                width: 100%;
                height: 85px;
                margin: auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 15px 0 15px;
    
                .logo-section {                
                    display: flex;
                    justify-content: flex-start;
                    align-items: first baseline;
                    gap: 10px;
                    cursor: pointer;
    
                    .logo-box {
                        top: 3px;
                    }
    
                    .text-box {
                        font-size: 14px;
                        font-weight: 600;
                    }
                }
    
                .menu-section {
                    display: none;
                }

                .hamburger-menu {
                    display: block;
                }
            }
        }
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%; /* 화면 밖으로 숨겨진 상태 */
        width: 100%;
        height: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
        transition: transform 0.3s ease-in-out; /* 애니메이션을 위한 transition */
        z-index: 999; /* 다른 요소 위에 표시되도록 z-index 설정 */
    }
    
    .mobile-menu.active {
        transform: translateX(100%); /* active 클래스가 붙으면 메뉴가 화면에 나타남 */
    }
    
    .close-menu {
        font-size: 24px;
        color: black;
        cursor: pointer;
        margin-bottom: 20px;
    }
    
    .mobile-menu a {
        color: black;
        text-decoration: none;
        margin-bottom: 10px;
        font-size: 18px;
    }

    main {
        .swiper-container {
            width: 100%;
            height: 134px;
            background-color: #fff;

            img {
                width: 430px;
                height: 134px;
            }
        }

        .content-container {
            width: 100%;
            margin: auto;

            .search-wrapper {                
                width: 80%;
                margin: auto;
                margin-top: 34px;
                height: 50px;
                background-color: #f5f6f8;
                border-radius: 50px;
                border: solid 1px #b6bfc7;
                display: flex;
                align-items: center;
                padding: 10px;     
                position: relative;

                
                i {
                    position: absolute; /* 부모를 기준으로 배치 */
                    right: 10px; /* input 오른쪽에 위치하도록 설정 */
                    top: 50%; /* 수직 가운데 정렬 */
                    transform: translateY(-50%); /* 정확한 수직 중앙 정렬 */
                    font-size: 25px;
                    color: #e04f3a;
                    cursor: pointer; /* 클릭 가능한 요소처럼 보이도록 설정 */
                }

                input {
                    flex: 1;
                    height: 40px;
                    border: none;
                    outline: none;
                    font-size: 14px;
                    background-color: #f5f6f8;
                    padding-right: 10px;
                }
            }

            .client-wrapper {
                display: grid;
                grid-template-columns: repeat(1, 1fr);   
                grid-gap: 16px;
                text-align: center;
                margin-top: 28px;
                padding: 10px;

                .client-card {
                    width: 100%;
                    height: 120px;
                    padding: 29px 34px 16px;
                    border-radius: 5px;
                    border: solid 1px #dee5ec;
                    background-color: #fff;

                    img {
                        width: 220px;
                        height: 44.7px;
                    }

                    .card-title {
                        font-size: 14px;
                        text-align: center;
                        margin-top: 12.3px;
                    }
                }
            }

            .counseling-wrapper {
                width: 100%;
                margin-top: 50px;
                flex-direction: column; /* 세로 방향으로 정렬 */
                justify-content: center;
                align-items: center;
                margin-bottom: 57px;
                padding: 10px;

                .text-section {
                    .title-box {
                        font-family: SpoqaHanSansNeo;
                        font-size: 24px;
                        font-weight: 600;
                    }

                    .text-box {
                        font-size: 15px;
                        margin-top: 20px;
                        line-height: 24px;
                    }
                }

                .input-section {
                    div {
                        margin-top: 10px;
                        margin-bottom: 16px;
                        width: 100%;
                        padding: 10px;

                        input {
                            width: 100%;
                            height: 48px;
                            padding: 16px;
                            border-radius: 5px;
                            border: solid 1px #dee5ec;
                            background-color: #f5f6f8;
                        }

                        textarea {
                            width: 100%;
                            height: 160px;
                            padding: 16px;
                            border-radius: 5px;
                            border: solid 1px #dee5ec;
                            background-color: #f5f6f8;                      
                        }
                    }

                    .btn-counseling {
                        width: 350px;
                        height: 48px;
                        font-size: 16px;
                        color: #fff;
                        padding: 14px 144px 14px 143px;
                        border-radius: 5px;
                        background-color: #e04f3a;
                    }
                }
            }
        }

        .login-container {
            width: 100%;
            background-color: #f5f6f8;
            padding: 55px 10px 0px 10px;

            .login-wrapper {
                width: 100%;
                margin: auto;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
                background-color: #fff;

                .client-logo {                    
                    margin-bottom: 10px;
                    text-align: center;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        width: 100%;
                    }
                }

                input {
                    width: 100%;
                    height: 48px;
                    padding: 16px;
                    border-radius: 5px;
                    border: solid 1px #dee5ec;
                    background-color: #f5f6f8;
                    margin-bottom: 15px;                
                }

                .btn-login {
                    width: 100%;
                    height: 48px;
                    font-size: 16px;
                    color: #fff;
                    padding: 14px 144px 14px 143px;
                    border-radius: 5px;
                    background-color: #e04f3a;
                    margin-top: 15px;
                }
            }
        }

        .list-container {
            width: 100%;
            margin: auto;
            margin-top: 44px;

            .search-wrapper {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;
                padding: 10px;
                
                .btn-category {
                    width: 120px;
                    height: 40px;
                    padding: 10px 33.1px 10px 33.2px;
                    border-radius: 50px;
                    border: solid 1px #b7bfc7;
                    background-color: #fff;
                    margin-left: 10px;

                    &.active {
                        color: #fff;
                        background-color: #e04f3a;
                    }
                }
                

                .search-section {    
                    margin-top: 20px;            
                    width: 100%;
                    height: 48px;
                    border-radius: 5px;
                    border: solid 1px #dee5ec;
                    background-color: #f5f6f8;
                    display: flex;
                    align-items: center;
                    padding: 10px;        
                    
                    i {
                        font-size: 20px;
                        color:#65717f;
                        margin-right: 10px;
                    }

                    input {
                        flex: 1;
                        height: 40px;
                        border: none;
                        outline: none;
                        font-size: 14px;
                        background-color: #f5f6f8;
                        padding-right: 10px;
                    }
                }
            }

            .list-wrapper {
                display: grid;
                grid-template-columns: repeat(1, 1fr);   
                grid-gap: 16px;
                margin-top: 38px;
                padding: 10px;

                .product-section {
                    .image-box {
                        width: 100%;
                        padding: 9px;
                        border-radius: 5px;
                        border: solid 1px #dfdfdf;
                        background-color: #fff;
                        text-align: center;

                        img {
                            height: 100%;
                            flex-grow: 0;
                        }
                    }

                    .info-box {
                        margin-top: 16px;

                        .product-model {
                            font-family: SpoqaHanSansNeo;
                            font-size: 12px;
                            color: #a7a7a7;
                        }

                        .product-name {
                            font-family: SpoqaHanSansNeo;
                            font-size: 16px;
                            color: #000;
                            font-weight: 600;
                            margin-top: 5px;
                        }

                        .product-price {
                            font-family: SpoqaHanSansNeo;
                            margin-top: 5px;
                            font-size: 14px;
                            font-weight: 600;
                            color: #000;
                        }
                    }
                }
            }
        }

        .title-container {
            height: 100px;
            background-color: #000;
            padding: 0 10px;

            .title-wrapper {
                width: 1200px;
                margin: auto;
                padding: 24px 0 24px 0;

                .title {
                    font-size: 24px;
                    font-weight: 600;
                    color: #fff;
                }

                .summary {
                    margin-top: 4px;
                    color: #fff;
                    font-family: SpoqaHanSansNeo;
                    font-size: 14px;
                }
            }
        }

        /* 상담신청 */
        .form-container {
            padding-top: 40px;

            .form-wrapper {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;

                .input-section {
                    padding: 10px;

                    .input-box {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        justify-content: flex-start;
                        align-items: flex-start;
                        margin-bottom: 16px;

                        .input-title {
                            font-size: 14px;
                            font-weight: 600;
                            margin-bottom: 5px;
                        }

                        input {
                            width: calc(100vw - 20px);
                            height: 48px;
                            padding: 16px;
                            border-radius: 5px;
                            border: solid 1px #dee5ec;
                            background-color: #f5f6f8;
                        }
                    }

                    .textarea-box {
                        display: flex;
                        flex-direction: column;
                        justify-content: flex-start;
                        align-items: flex-start;
                        margin-bottom: 16px;

                        .input-title {
                            margin-top: 30px;
                            margin-right: 59px;
                            font-size: 14px;
                            font-weight: 600;
                            margin-bottom: 5px;
                        }

                        textarea {
                            width: calc(100vw - 20px);
                            height: 210px;
                            padding: 16px;
                            border-radius: 5px;
                            border: solid 1px #dee5ec;
                            background-color: #f5f6f8;
                        }
                    }
                }

                .info-section {
                    padding: 10px;

                    .device-info {
                        display: flex;
                        flex-direction: column;
                        justify-content: flex-start;
                        align-items: baseline;
                        gap: 10px;
                    }
                    .device-name {
                        font-size: 20px;
                        font-weight: 600;
                        margin-bottom: 8px;
                    }

                    .device-model {
                        font-size: 14px;
                        color: #000;
                    }

                    .payment {
                        font-size: 14px;
                        color: #777777;
                    }

                    hr {
                        margin-top: 15px;
                        margin-bottom: 15px;
                        border-color: #e3e3e3;
                    }

                    .payment-box {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-bottom: 8px;

                        div {
                            font-size: 14px;
                            color: #777777;
                        }
                    }

                    .total-payment-box {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-bottom: 16px;

                        div {
                            font-size: 14px;
                            color: #000;
                            font-weight: 600;
                        }
                    }

                    .info-box {
                        height: 104px;
                        padding: 16px;
                        background-color: #f5f6f8;
                        font-size: 12px;
                        color: #6b7583;
                        line-height: 18px;
                    }

                    .check-box {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        gap: 10px;
                        margin-top: 10px;

                        input[type="checkbox"] {
                            width: 25px;
                            height: 25px;
                            border-radius: 3px;
                            border: solid 1px #c8c8c8;
                        }
                        label {
                            font-size: 13px;
                            color: #6b7583;
                        }
                    }
                }
            }

            .button-wrapper {
                width: 100%;
                margin: auto;
                text-align: center;
                margin-top: 80px;
                margin-bottom: 120px;

                .btn {
                    width: 350px;
                    height: 48px;
                    font-size: 16px;
                    color: #fff;
                    padding: 14px 144px 14px 143px;
                    border: none;
                    border-radius: 5px;
                    background-color: #e04f3a;
                    margin-top: 15px;
                }
            }
        }

        .board-container {
            width: 100%;
            padding-top: 40px;       

            .board-wrapper {
                width: 100%;
                margin: auto;
                margin-bottom: 80px;
                padding: 10px;

                img {
                    width: 100%;
                }

                .title-section {
                    margin-bottom: 23px;

                    .view-title {
                        font-size: 24px;
                        font-weight: 600;
                        margin-bottom: 8px;
                    }

                    .view-date {
                        font-size: 16px;
                        color: #a7a7a7;
                    }
                }

                .view-section {
                    border-top: 1px solid #b7bfc7;
                    border-bottom: 1px solid #b7bfc7;
                    padding: 63px 16px;
                    font-size: 16px;
                    font-family: SpoqaHanSansNeo;

                    img {
                        width: 100% !important;
                    }

                }

                .btn-section {
                    .btn {
                        width: 350px;
                        height: 48px;
                        font-size: 16px;
                        color: #fff;
                        padding: 14px 144px 14px 143px;
                        border: none;
                        border-radius: 5px;
                        background-color: #e04f3a;
                        margin-top: 93px;
                    }
                }

                .search-section {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    .search-box {
                        width: 350px;
                        height: 48px;
                        border-radius: 5px;
                        border: solid 1px #dee5ec;
                        background-color: #f5f6f8;
                        display: flex;
                        align-items: center;
                        padding: 10px; 
                        margin-bottom: 14px;       
                        
                        i {
                            font-size: 20px;
                            color:#65717f;
                            margin-right: 10px;
                        }

                        input {
                            flex: 1;
                            height: 40px;
                            border: none;
                            outline: none;
                            font-size: 14px;
                            background-color: #f5f6f8;
                            padding-right: 10px;
                        }
                    }
                }
            }
        }

        .payment-container {
            width: 100%;
            padding-top: 0px;

            .payment-wrapper {
                width: 100%;
                margin-bottom: 80px;
                padding: 10px;

                .btn-section {
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: flex-start;
                    margin-bottom: 23px;

                    .btn-box {
                        .btn-title {
                            font-size: 16px;
                            color: #6b7583;
                            margin-top: 18px;
                            margin-bottom: 8px;
                            padding-left: 10px;
                        }
                        .btn-category {
                            width: 80px;
                            height: 40px;
                            padding: 10px;
                            border-radius: 50px;
                            border: solid 1px #b7bfc7;
                            background-color: #fff;
                            margin-right: 5px;                            
            
                            &.active {
                                color: #fff;
                                background-color: #e04f3a;
                            }
                        }
                    }
                }

                .list-section {
                    width: 100%;
                    table {
                        width: 100% !important;
                        border-collapse: collapse;
            
                        tr {
                            display: block;
                            margin-bottom: 10px; /* 각 줄 사이에 간격 추가 */
            
                            &:first-child {
                                border-top: 2px solid #000; /* 상단 테두리 추가 */
                            }
            
                            td, th {
                                display: block; /* 각 셀을 블록 요소로 만듦 */
                                width: calc(100vw - 20px); /* 각 셀을 가로 100%로 만듦 */
                                text-align: left !important;
                                padding: 10px;
                                box-sizing: border-box;
                            }
            
                            th {
                                font-weight: bold;
                                background-color: #f0f0f0;
                            }
                        }
                    }
            
                    .list-title, .data-type, .data, .price, .vat {
                        font-size: 16px; /* 폰트 크기 조정 */
                    }
                }         
            }
        }

        .terms-container {
            width: 100%;
            padding-top: 40px;

            .terms-wrapper {
                width: 1200px;
                margin: auto;
                margin-bottom: 80px;

                .terms-section {
                    background-color: #f5f6f8;
                    padding: 16px;
                }
            }
        }

        /*==================================== 페이징 ====================================*/
        .paging-area {
            text-align: center;
            margin-top: 40px;
            padding: 15px;
        }

        .pagination {
            display: inline-block;
        }

        .pagination a,
        .pagination span {
            padding: 8px 16px;
            margin: 2px;
            text-decoration: none;
            color : black;
            cursor: pointer;
        }

        .pagination a.active,
        .pagination span.active {
            border-radius: 5px;
            background-color: #e04f3a;
            color: white;
        }

        .pagination a:hover:not(.active),
        .pagination span:hover:not(.active) {
            border-radius: 5px;
            background-color: #edc6c0;
        }

        .bx {
            font-size: 16px;
        }

        .used-container {
            width: 100%;
            padding-top: 40px;

            .used-wrapper {
                width: 100%;
                margin: auto;
                margin-bottom: 80px;
                padding-top: 20px;
                padding-bottom: 20px;
                padding: 10px;

                .big-title {
                    font-size: 21px;
                    font-weight: 600;
                    color: #000;

                    &.two {
                        margin-top: 65px;
                    }
                }

                .full-box {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    padding: 24px;
                    border-radius: 5px;
                    border: solid 1px #dfdfdf;
                    background-color: #fff;

                    img {
                        margin-top: 12px;
                        margin-bottom: 12px;
                    }            
                }

                .small-title {
                    font-size: 14px;
                    font-weight: 600;
                    color: #000;
                    margin-bottom: 12px;
                }

                .info-section {
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: flex-start;
                    margin-top: 8px;

                    .info-box {
                        width: 100%;
                        height: 195px;
                        flex-grow: 0;
                        display: flex;
                        flex-direction: column;
                        justify-content: flex-start;
                        align-items: center;
                        padding: 14px !important;
                        border-radius: 5px;
                        border: solid 1px #dfdfdf;
                        background-color: #fff;   
                        margin-bottom: 10px;                     

                        img {
                            margin-bottom: 8px;
                        }

                        .text {
                            font-size: 13px;
                            color: #777777;
                        }
                    }

                    i {
                        display: none;
                    }
                }
            }
        }

        .view-container {
            width: 100%;
            padding-top: 40px;

            .b0 {
                margin-top: 55px;
                margin-bottom: 43px;
            }

            .view-wrapper {
                width: 100%;
                margin: auto;
                margin-bottom: 80px;

                .info-section {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    align-items: flex-start;
                    padding: 10px;

                    .image-box {
                        .big-image {
                            .big {
                                width: 100%;
                                border-radius: 15px;
                                border: solid 1px #a7a7a7;
                            }                        
                        }

                        .thumbnail-image {
                            text-align: center;
                            margin-top: 25px;

                            .thumbnail {
                                width: 100px;
                            }
                        }
                    }

                    .price-box {
                        width: 100%;

                        .b1 {
                            width: 498px;
                            border: 1px solid #000;
                            margin-top: 16px;
                            margin-bottom: 16px;
                        }

                        .b2 {
                            width: 498px;
                            border: 2px solid #000;
                            margin-top: 16px;
                            margin-bottom: 16px;
                        }

                        .block-title {
                            margin-top: 16px;
                            font-size: 16px;
                        }

                        .btn-content {
                            margin-top: 8px;

                            .btn-type1 {
                                width: 49%;
                                height: 40px;
                                font-size: 14px;
                                padding: 11px;
                                border-radius: 3px;
                                border: solid 1px #b7bfc7;
                                background-color: #fff;

                                &.active {
                                    border: solid 2px #e04f3a;
                                }
                            }

                            .btn-type2 {
                                width: 32%;
                                height: 40px;
                                font-size: 14px;
                                padding: 11px;
                                border-radius: 3px;
                                border: solid 1px #b7bfc7;
                                background-color: #fff;

                                &.active {
                                    border: solid 2px #e04f3a;
                                }
                            }

                            .btn-type3 {
                                width: 32%;
                                height: 40px;
                                font-size: 14px;
                                padding: 11px;
                                border-radius: 3px;
                                border: solid 1px #b7bfc7;
                                background-color: #e5e4e8;

                                &.active {
                                    border: solid 2px #e04f3a;
                                    background-color: #fff;
                                }
                            }
                        }

                        .price-content {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            margin-top: 16px;

                            .hiddenRow {
                                display: none;
                            }

                            select {
                                width: 350px;
                                height: 48px;
                                padding: 15px 13.7px 15px 10px;
                                border-radius: 5px;
                                border: solid 1px #dee5ec;
                                background-color: #f5f6f8;
                            }

                            .price-title {
                                font-size: 16px;
                            }

                            .price {
                                font-size: 24px;
                                font-weight: 600;
                            }
                        }

                        .summary-content {
                            padding: 35px 23px;
                            border-radius: 15px;
                            background-color: #f2f2f2;
                            margin-top: 56px;
                            width: 100%;

                            hr {
                                width: 100%;
                                margin-top: 21px;
                                margin-bottom: 21px;
                            }

                            .b3 {
                                border: 1px solid #a7a7a7;
                            }

                            .device-name {
                                font-family: 'Noto Sans KR', sans-serif;
                                font-weight: bold;
                                font-size: 30px;
                            }

                            .payment-name {
                                font-family: 'Noto Sans KR', sans-serif;
                                font-size: 18px;
                                margin-top: 3px;
                            }

                            .price-card {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                font-family: 'Noto Sans KR', sans-serif;
                                font-size: 18px;
                                color: #707070;
                                margin-bottom: 10px;

                                .total {
                                    font-size: 22px;
                                    font-weight: bold;
                                    color: #000;
                                }
                            }

                            .right {
                                font-size: 14px;
                                font-family: 'Noto Sans KR', sans-serif;
                            }
                        }

                        .btn-section {
                            margin-top: 40px;

                            input[type='button'] {
                                width: 49%;
                                height: 48px;
                                font-size: 16px;
                                padding: 11px 80.2px 11px 81.7px;
                                border-radius: 3px;

                                &:first-child {
                                    color: #e04f3a;
                                    border: 1px solid #e04f3a;
                                    background-color: #fff;
                                    
                                }

                                &:last-child {
                                    color: #fff;
                                    background-color: #e04f3a;
                                    border: 1px solid #e04f3a;
                                }
                            }
                        }
                    }
                }

                .content-section {
                    padding: 10px;
                    .ad-box {
                        width: 100%;
                        height: 90px;
                        padding: 32px;
                        object-fit: contain;
                        border-radius: 10px;
                        background-color: #f2f2f2;
                        text-align: center;
                    }

                    .content-box {
                        margin-top: 40px;
                        text-align: center;
                        width: 100%;

                        img {
                            width: 100%;
                        }
                    }
                }
            }

        }
    }

    footer {
        background-color: #333;    
        padding-bottom: 63px;

        hr {
            border-color: #707070;
        }

        .kakao {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            background-color: #fee500;
            border-radius: 50px;
            height: 32px;
            width: 174px;
            padding: 8px 8px 8px 12px;
            font-size: 11px;
        }

        .policy-container {
            width: 100%;
            margin: auto;

            .policy-wrapper {
                display: flex;
                justify-content: space-evenly;
                align-items: center;
                gap: 27px;
                padding: 23px 0 20px 0;

                div {
                    color: #fff;
                    font-size: 16px;
                }
            }
        }

        .copyright-container {
            width: 100%;
            margin-top: 5px;
            display: flex;
            flex-direction: column; /* 세로 방향으로 정렬 */
            justify-content: flex-start;
            align-items: flex-start;
            padding: 10px;

            .worktime-wrapper {
                .call-center {
                    font-size: 24px;
                    font-weight: 600;
                    color: #fff;
                    margin-bottom: 7px;
                }

                .work-time {
                    div {
                        margin-bottom: 5px;
                        color: #fff;
                        font-size: 14px;
                    }
                }
            }

            .company-wrapper {            
                color: #d3d3d3;
                font-family: "Noto Sans KR", sans-serif;
                margin-top: 20px;

                .company-info {
                    display: flex;
                    flex-direction: column; /* 세로 방향으로 정렬 */
                    justify-content: flex-start;
                    align-items: flex-start;
                    gap: 10px;  
                    margin-bottom: 5px;       
                    font-family: "Noto Sans KR", sans-serif;       
                }

                .company-contract {
                    display: flex;
                    flex-direction: column; /* 세로 방향으로 정렬 */
                    justify-content: flex-start;
                    align-items: flex-start;
                    gap: 10px;
                    margin-bottom: 27px;
                    font-family: "Noto Sans KR", sans-serif;
                }

                .company-worktime {
                    display: flex;
                    flex-direction: column; /* 세로 방향으로 정렬 */
                    justify-content: flex-start;
                    align-items: flex-start;
                    gap: 10px; 
                    margin-bottom: 17px;
                    font-family: "Noto Sans KR", sans-serif;
                }

                .copyright {
                    font-size: 14px;
                }
            }
        }
    }


    .bx-check {
        color: red;
    }

    .fa-search {
        cursor: pointer;
    }

    .watermark {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none; /* 클릭 방지 */
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(auto-fill, 300px);
        grid-template-rows: repeat(auto-fill, 200px);
    }

    .watermark span {
        font-size: 1rem; /* h3 크기 */
        color: rgba(0, 0, 0, 0.1); /* 희미한 글자 */
        display: flex;
        justify-content: center;
        align-items: center;
        transform: rotate(-45deg); /* 사선 각도 */
    }
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}