html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ?? ??? ?? */
.review_board_menu {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    width: 1080px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    padding: 0 0 18px;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
}

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

.review_board_menu .review_board_menu_links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 15px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 100px;
    background: #fff;
    color: #777;
    font-size: 17px !important;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .2s ease;
}

.review_board_menu .review_board_menu_links a:hover {
    border-color: #f5a8c2;
    background: #fff5f8;
    color: #e45b86;
}

.review_board_menu .review_board_menu_links a.is_active {
    border-color: transparent;
    background: linear-gradient(45deg, #ff0000, #ed1e79);
    color: #fff;
    box-shadow: 0 4px 10px rgba(239, 135, 169, .2);
}

.review_board_menu .review_board_menu_links a.is_active:hover {
    border-color: transparent;
    background: linear-gradient(45deg, #ff0000, #ed1e79);
    color: #fff;
}

/* SNS */
.review_board_menu .snslist {
    width: auto;
    padding-bottom: 0;
    margin-top: 0;
}

.review_board_menu .snslist ul {
    width: auto;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    column-gap: 15px;
    list-style: none;
}

.review_board_menu .snslist ul li {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 500px;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.15);
    text-align: center;
    transition: 0.2s ease-in-out;
}

.review_board_menu .snslist ul li:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 7px rgba(0,0,0,0.1);
}

.review_board_menu .snslist ul li .cs_more {
    position: absolute;
    display: none;
    top: -40px;
    left: -15px;
    margin: 0 auto;
    transition: 0.2s ease-in-out;
}

.review_board_menu .snslist ul li:hover .cs_more {
    display: inherit;
}

.review_board_menu .snslist ul li a {
    display: block;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

.review_board_menu .snslist ul li a img {
    margin-bottom: 5px;
}

.review_board_menu .snslist ul li h4 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    align-content: center;
    align-items: center;
}

.review_board_menu .snslist .kakao {
    background: #ffea48;
}

.review_board_menu .snslist .kakao h4 {
    color: #371c1d;
}

.review_board_menu .snslist .naver {
    background: #2cb24a;
}

.review_board_menu .snslist .naver h4 {
    color: #fff;
}

@media (max-width: 600px) {
    .review_board_menu {
        max-width: calc(100% - 30px);
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 18px;
        padding-bottom: 14px;
    }

    .review_board_menu_links {
        width: 100%;
        gap: 8px;
    }

    .review_board_menu .review_board_menu_links a {
        min-width: 0;
        width: 50%;
        height: 48px;
        padding: 0 10px;
        font-size: 18px !important;
    }

    .review_board_menu .snslist {
        width: 100%;
    }

    .review_board_menu .snslist ul {
        justify-content: flex-end;
    }
}

body {
    background: #fff;
    color: #111827;
}

body .viewport,
.case_wrap,
.case_detail_layer,
.dim-layer {
    font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

body.case_modal_open {
    overflow: hidden;
}

body.case_modal_open #aside_menu,
body.case_pw_open #aside_menu {
    display: none !important;
}

::placeholder {
    color: #c3c9d2;
    font-size: 14px;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #c3c9d2;
    font-size: 14px;
}

::-ms-input-placeholder {
    color: #c3c9d2;
    font-size: 14px;
}

input[type='text'],
input[type='password'],
textarea {
    display: inline-block;
    border: 1px solid #dfe4eb;
    border-radius: 8px;
    background-color: #fff;
    color: #111827;
    font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    outline: none;
}

input[type='text'],
input[type='password'] {
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
}

input[type='text']::-ms-clear,
input[type='password']::-ms-clear {
    display: none;
}

textarea {
    padding: 16px;
    resize: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('../images/select_ico.png') no-repeat 90% 50%;
    padding-right: 5px;
}

select::-ms-expand {
    display: none;
}

input[type='checkbox'],
input[type='radio'] {
    display: none;
}

input[type='checkbox'] + label,
input[type='radio'] + label {
    display: inline-block;
    height: 22px;
    line-height: 22px;
    padding-left: 27px;
    cursor: pointer;
}

input[type='checkbox'] + label {
    background: url('../images/check_off.png') left/22px no-repeat;
}

input[type='checkbox']:checked + label {
    background-image: url('../images/check_on.png');
}

input[type='radio'] + label {
    background: url('../images/radio_off.png') left/22px no-repeat;
}

input[type='radio']:checked + label {
    background-image: url('../images/radio_on.png');
}

.left_txt {
    text-align: left !important;
}

.center_txt {
    text-align: center !important;
}

.right_txt {
    text-align: right !important;
}

.hide,
.review_tb .hide,
.review_tb .show,
.review_tb .notice_top {
    display: none !important;
}

/* Top visual */
body .viewport .top_imt {
    width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 225px 0 88px !important;
    background: linear-gradient(180deg, #ebebeb, #ffffff) !important;
}

body .viewport .top_imt .txt_box {
    width: min(1320px, calc(100% - 56px)) !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    color: #111827 !important;
    text-align: left !important;
}

body .viewport .txt_box p {
    color: #111827;
    font-size: 35px !important;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.025em;
	text-align: center;
}

.case_wrap {
    width: min(1320px, calc(100% - 56px));
    margin: 0 auto;
    padding: 0 0 170px;
}

.case_wrap > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
}

.case_wrap .float_l,
.case_wrap .float_r {
    float: none;
}

.view_total {
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto;
    line-height: 1;
    color: #68717f;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.view_total font {
    display: inline-flex;
    align-items: center;
    height: 30px;
    margin-right: 2px;
    padding: 0 11px;
    border-radius: 999px;
    background: #111827;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
}

.view_total font:nth-child(2) {
    margin-left: 12px;
}

.case_wrap form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.src_input {
    display: inline-block;
    height: 44px !important;
    line-height: 44px !important;
    border: 1px solid #dfe4eb !important;
    border-radius: 10px !important;
    background-color: #fff;
    color: #28313d;
    font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    font-size: 14px !important;
    font-weight: 500;
    letter-spacing: -0.03em;
    text-align: center;
    cursor: pointer;
    box-shadow: none;
}

select.src_input {
    width: 112px !important;
    padding: 0 34px 0 14px;
    text-align: left;
    background-position: calc(100% - 14px) 50%;
}

.src_form {
    display: inline-block;
    position: relative;
}

.src_txtbox {
    width: 272px;
    padding: 0 44px 0 14px !important;
    text-align: left;
}

.src_ico {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    opacity: 0.58;
}

.src_ico img {
    width: 16px;
    height: 16px;
}

/* 4-column card grid */
.table_area {
    display: block;
    width: 100%;
    margin-top: 0;
}

.review_tb {
    display: block;
    width: 100%;
    border-top: 0;
}

.review_tb colgroup,
.review_tb tbody > tr:first-child {
    display: none;
}

.review_tb tbody {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.review_tb .item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid #e6eaf0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 2px 3px 3px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.review_tb .item:hover {
    transform: translateY(-3px);
    border-color: #cfd6df;
    box-shadow: 3px 4px 7px rgba(0,0,0,0.08);
}

.review_tb .item td {
    display: block;
    width: auto;
    padding: 0;
    border-bottom: 0;
    color: #5f6875;
    text-align: left;
}

.review_tb .item td:nth-child(1) {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 42px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.review_tb .item td:nth-child(2) {
    width: 100%;
}

.rv_img {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 206px;
    background: #eef2f6;
}

.rv_img img {
    display: block;
    width: 100%;
    height: 206px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.28s ease;
}

.review_tb .item:hover .rv_img img {
    transform: scale(1.035);
}

.review_tb .item td:nth-child(3) {
    min-height: 72px;
    padding: 18px 18px 8px;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: -0.045em;
}

.review_tb td .rvtb_tit {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    text-overflow: initial;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    vertical-align: top;
	font-size: unset;
}

.best_ico {
    width: 28px;
    margin-left: 6px;
    vertical-align: -6px;
}

.review_tb .item td:nth-child(4) {
    display: none;
}

.review_tb .item td:nth-child(5) {
    display: inline-block;
    max-width: 38%;
    padding: 0 0 20px 18px;
    color: #6c7582;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    vertical-align: middle;
}

.review_tb .item td:nth-child(6) {
    display: inline-block;
    padding: 0 0 20px 6px;
    color: #8b95a3;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    vertical-align: middle;
}

.review_tb .item td:nth-child(6)::before {
    content: '¡¤';
    margin-right: 6px;
    color: #bdc4ce;
}

.review_tb .item td:nth-child(7) {
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: #8b95a3;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.review_tb .item td:nth-child(7)::before {
    content: 'Á¶È¸ '; 
}

.review_tb .item td:nth-child(8) {
    display: none;
}

.review_tb td[colspan='8'] {
    display: block;
    grid-column: 1 / -1;
    padding: 72px 20px;
    border: 1px dashed #d7dde6;
    border-radius: 18px;
    background: #fafbfc;
    color: #68717f;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

/* Stars */
.starR,
.starR_big {
    display: inline-block;
    background: url('../images/ico_reviewstar.png') no-repeat right 0;
    background-size: auto 100%;
    text-indent: -9999px;
    cursor: pointer;
}

.starR {
    width: 16px;
    height: 16px;
}

.starR_big {
    width: 25px;
    height: 25px;
}

.starR.on,
.starR_big.on {
    background-position: 0 0;
}

/* Detail modal */
.case_detail_layer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease, visibility 0.12s ease;
}

.case_detail_layer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.case_detail_modal {
    will-change: transform, opacity;
}

.case_detail_layer.is-open .case_detail_modal {
    transform: translate(-50%, -50%);
}

.case_detail_bg {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
}

.case_detail_modal {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    width: min(1040px, calc(100% - 48px));
    max-height: 85vh;
    overflow: visible;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.case_modal_body {
    border-radius: 0 0 20px 20px;
}

.case_detail_close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 1px solid #e1e6ee;
    border-radius: 50%;
    background: #fff;
    color: transparent;
    cursor: pointer;
}

.case_detail_close::before,
.case_detail_close::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 12px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #333b46;
}

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

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

.case_modal_head {
    flex: 0 0 auto;
    padding: 34px 42px 18px;
    border-bottom: 1px solid #eef1f5;
}

.case_modal_label {
    display: inline-flex;
    align-items: center;
    height: 28px;
    margin-bottom: 12px;
    padding: 0 11px;
    border-radius: 999px;
    background: #f1f4f8;
    color: #5f6875;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.case_modal_title {
    margin: 0;
    padding-right: 58px;
    color: #111827;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.05em;
}

.case_modal_body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 26px 42px 40px;
}

.case_modal_stack,
.case_modal_grid {
    display: block;
}

.case_modal_imgarea {
    width: 100%;
    min-width: 0;
    max-height: 270px;
    margin-bottom: 26px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.case_modal_imgarea::-webkit-scrollbar {
    height: 8px;
}

.case_modal_imgarea::-webkit-scrollbar-track {
    background: #f1f4f7;
    border-radius: 999px;
}

.case_modal_imgarea::-webkit-scrollbar-thumb {
    background: #c7cfd9;
    border-radius: 999px;
}

.case_modal_imgarea::-webkit-scrollbar-thumb:hover {
    background: #aeb8c5;
}

.case_modal_infoarea {
    width: 100%;
    min-width: 0;
}

.case_modal_body .detail_rv {
    padding: 0 !important;
}

.case_modal_body .rv_dtimg,
.case_modal_body .rv_dtimg.case_img_strip {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    max-width: none;
    height: auto;
    min-height: 0;
    max-height: 250px;
    margin: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.case_modal_body .rv_dtimg .case_img_item {
    flex: 0 0 auto;
    overflow: hidden;
    width: 360px;
    height: 240px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background: #f3f6f9;
}

.case_modal_body .rv_dtimg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case_modal_body .rv_dtimg a,
.case_modal_body .rv_dtimg a:hover,
.case_modal_body .rv_dtimg a:focus {
    cursor: default;
    pointer-events: none;
}

.top_rv,
.case_modal_body .top_rv {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.top_rv .rv_option,
.case_modal_body .top_rv .rv_option {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f1f4f8;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.top_rv .rv_csmanager,
.case_modal_body .top_rv .rv_csmanager {
    display: inline-flex;
    align-items: center;
    float: none;
    margin: 0;
    padding: 7px 12px;
    border: 1px solid #e2e7ef;
    border-radius: 999px;
    background: #fff;
    color: #4b5563;
    font-size: 12px;
    font-weight: 500;
}

.top_rv .rv_csmanager img {
    margin-right: 5px;
}

.md_rv,
.case_modal_body .md_rv {
    margin-bottom: 22px;
    color: #111827;
}

.md_rv .rvtxt_tit,
.case_modal_body .md_rv .rvtxt_tit {
    margin-bottom: 12px;
    color: #111827;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: -0.045em;
}

.md_rv .rvtxt_cont,
.case_modal_body .md_rv .rvtxt_cont {
    max-width: none;
    min-height: 80px;
    padding-right: 0;
    overflow: hidden;
    color: #3f4855;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.045em;
    text-align: left;
    white-space: pre-line;
    word-break: keep-all;
    word-wrap: break-word;
}

.md_rv .rvtxt_cont b {color: #ff0000;}

.bt_rv,
.case_modal_body .bt_rv {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e3e8ef;
    color: #7b8491;
    font-size: 13px;
    font-weight: 400;
}

.case_modal_body .bt_rv a {
    color: #111827;
    font-weight: 600;
}

/* Button */
.btn_area {
    display: flex;
    justify-content: flex-end;
    float: none;
    margin-top: 30px;
}

.btn_area .add_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    height: 44px;
    padding: 3px 10px;
    border-radius: 100px;
    background: #111827;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.btn_area .add_btn:hover {
    background: linear-gradient(45deg, #ff0000, #ed1e79);
}

/* Pagination */
.page_area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
    clear: both;
    margin-top: 52px;
    line-height: 1;
    text-align: center;
}

.page_area a,
.page_area span,
.page_area strong,
.page_area b,
.page_area em,
.page_area font {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #7a8492;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
}

.page_area a:hover {
    background: #f2f5f8;
    color: #ff0000;
}

.page_area strong,
.page_area b,
.page_area em,
.page_area .on,
.page_area .active,
.page_area span.current {
    background: #111827;
    color: #fff;
    font-weight: 600;
}

.page_area font {
    color: #ff0000 !important;
    font-weight: 600;
}

.page_area img {
    max-width: 12px;
    max-height: 12px;
    opacity: 0.7;
    vertical-align: middle;
}

/* Password popup */
.input30 {
    width: 30%;
}

.input50 {
    width: 50%;
}

.input100 {
    width: 100%;
}

.dim-layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999 !important;
}

.dim-layer .dimBg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0 !important;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.dim-layer .pop-layer {
    display: block;
    z-index: 100000 !important;
}

.pop-layer {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: auto;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.pop-layer .pop-container {
    padding: 26px 26px 24px;
}

.pop-layer p.ctxt {
    margin: 10px 0 20px;
    color: #111827;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
}

.pop-layer .btn-r {
    width: 100%;
    margin: 10px 0 20px;
    padding-top: 10px;
    text-align: center;
}

a.btn-layersubmit,
a.btn-layerClose {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 36px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    line-height: 36px;
    text-decoration: none;
}

a.btn-layersubmit {
    border: 1px solid #111827;
    background: #111827;
    color: #fff;
}

a.btn-layersubmit:hover {
    border-color: #374151;
    background: #374151;
    color: #fff;
}

a.btn-layerClose {
    border: 1px solid #d9dee7;
    color: #5f6875;
}

a.btn-layerClose:hover {
    border-color: #bfc7d2;
    color: #111827;
}

/* Optional review-write page support */
.txtcount,
.em_span {
    font-size: 13px;
    color: #888;
}

.txtcount {
    margin-bottom: 5px;
}

.addrivew_tb {
    width: 100%;
    border-top: 2px solid #555;
}

.addrivew_tb th,
.addrivew_tb td {
    padding: 20px 0;
    border-bottom: 1px solid #e4e4e4;
    color: #222;
    font-size: 17px;
}

.addrivew_tb th {
    width: 170px;
}

.csmanager_img {
    display: inline-block;
    width: 75px;
    margin-right: 20px;
}

.csmanager_img img {
    width: 67px;
    height: 77px;
    margin-bottom: 5px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.privacy_area {
    margin-top: 40px;
    text-align: center;
}

.privacy_area label a {
    display: inline-block;
    padding: 3px 12px;
    border: 1px solid #ddd;
    border-radius: 100px;
    color: #999;
    font-size: 14px;
}

.addbtn_area {
    margin-top: 25px;
    padding-bottom: 200px;
    text-align: center;
}

.btn_md {
    display: inline-block;
    margin: 0 5px;
    padding: 12px 40px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.btn_white {
    border: 1px solid #ccc;
    color: #555;
}

.btn_red {
    background: linear-gradient(45deg, #ff0000, #ed1e79);
    color: #fff;
}

.filebox label {
    display: inline-block;
    padding: 0.5em 0.75em;
    border: 1px solid #ebebeb;
    border-bottom-color: #e2e2e2;
    border-radius: 0.25em;
    background-color: #fdfdfd;
    color: #999;
    font-size: inherit;
    line-height: normal;
    vertical-align: middle;
    cursor: pointer;
}

.filebox input[type='file'] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.filebox .upload-name {
    display: inline-block;
    padding: 0.5em 0.75em;
    border: 1px solid #ebebeb;
    border-bottom-color: #e2e2e2;
    border-radius: 0.25em;
    background-color: #f5f5f5;
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.imgs_wrap {
    margin-top: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.imgs_wrap::-webkit-scrollbar {
    display: none;
}

.imgs_wrap a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-align: center;
}

.imgs_wrap img {
    width: 90px;
    height: 90px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: url('../images/addimg_bg.png');
}

/* ?? ?? ?? css*/
.case_detail_banner {
    position: absolute;
    top: 0;
    right: -230px;
    width: 210px;
    display: block;
    z-index: 5;
    border-radius: 100px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.case_detail_banner img {
    display: block;
    width: 100%;
    height: auto;
}

.case_detail_close {
    z-index: 6;
}

@media screen and (max-width: 1200px) {
    .case_detail_banner {
        position: static;
        width: 100%;
        max-width: 360px;
        margin: 0 0 18px auto;
    }
}

@media screen and (max-width: 768px) {
    .case_detail_banner {
        max-width: none;
        margin: 0 0 14px 0;
    }
}

/* ???? ???? ??? */
.review_tb tr.highorder_case {background: #ffeeee;}
.highorder_badge {display: inline-block; padding: 4px 9px; border-radius: 100px; background: #ff3838; color: #fff; font-size: 12px; font-weight: 700; line-height: 1; vertical-align: middle; margin-bottom: 3px;}
.case_detail_banner {display: none;}
.case_detail_layer.is_highorder .case_detail_banner {display: block;}
