

body
{
    padding: 0;
    margin: 0;
    color: #333;
    font-size: 12px;
    text-align: center;
    font-family: 'NanumSquare' , '맑은 고딕' , Dotum, 微软雅黑,黑体;
    background: #fff;
    transition: All 0.2s ease-in-out;
}
a
{
    text-decoration: none;
    color: inherit;
}
ul, li
{
    list-style: none;
    margin: 0px;
    padding: 0px;
}




.slider
{
    position: relative;
    width: 100%;
    height: 600px; /* 원하는 높이 설정 */
    overflow: hidden;
    background: #000; /* 슬라이드 이미지가 없을 때 배경 */
}

.slides
{
    position: relative;
    height: 100%;
}

.slide
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active
{
    opacity: 1;
}

.slide .text
{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}
.slide .text p
{
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);
}
.slide .text span.font36
{
    font-size: 36px;
    font-family: 'NanumSquare' , 'sans-serif';
}
.slide .text span.font42
{
    font-size: 42px;
    color: #ff9900;
    font-family: 'NanumSquare' , 'sans-serif';
}
.slide .text span.font46
{
    font-size: 46px;
    color: #ff6699;
    font-family: 'NanumSquare' , 'sans-serif';
}

.dots
{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot
{
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.dot:hover
{
    transform: scale(1.2);
}

.dot.active
{
    background-color: white;
    border-color: black;
}


#menu li
{
    display: inline-block;
    font-family: 'Nanum Gothic' ,sans-serif;
    word-break: keep-all;
    font-size: 15px;
    line-height: 1.7em;
    letter-spacing: -.025em;
    color: #333;
    font-weight: bold;
    width: 130px;
    text-align: center;
}
#sub_menu li
{
    display: inline-block;
    font-family: 'Nanum Gothic' ,sans-serif;
    word-break: keep-all;
    font-size: 14px;
    color: #333;
    width: 130px;
    text-align: center;
    line-height: 36px;
    vertical-align: top;
}
/*#big_slice { width: 100%; position: relative; clear: both; }*/
#menu a
{
    transition: All 0.2s ease-in-out;
}
#menu a:hover
{
    padding: 8px 20px 8px 20px;
    border-radius: 50px;
    background: #ff6666;
    color: #fff;
    transition: All 0.2s ease-in-out;
}

#sub_menu a
{
    transition: All 0.2s ease-in-out;
}
#sub_menu a:hover
{
    color: #ff6666;
    transition: All 0.2s ease-in-out;
    cursor: pointer;
}

.menu_hover
{
    padding: 8px 20px 8px 20px;
    border-radius: 50px;
    background: #ff6666;
    color: #fff;
    transition: All 0.2s ease-in-out;
}

.btn_more
{
    top: 2px;
    right: 0;
    width: 17px;
    height: 17px;
    overflow: hidden;
    text-indent: -999em;
    background: url(/static/img/more.png) 50% 50% no-repeat;
}

#area_list li
{
    float: left;
    margin-right: 20px;
    border: 1px solid #ddd;
    padding: 10px 20px 10px 20px;
    border-radius: 30px;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 2px 2px 5px #f2f2f2;
    transition: All 0.2s ease-in-out;
    cursor: default;
}

#area_list li:hover
{
    float: left;
    margin-right: 20px;
    border: 1px solid #f4f4f4;
    padding: 10px 20px 10px 20px;
    border-radius: 30px;
    background: #ff6699;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 2px 2px 8px #f2f2f2;
    transition: All 0.2s ease-in-out;
}

.matching-container
{
    width: 1260px;
    margin: 0px auto;
    padding-top: 70px;
    padding-bottom: 70px;
    height: 330px;
    background: #fff;
}

#matching_list
{
    width: 640px;
    float: left;
    margin-right: 30px;
    overflow: hidden; /* 화면에 표시되는 영역만 보이게 */
    position: relative;
    height: 320px; /* 3줄이 보이도록 높이를 120px로 설정 */
}

#matching_list ul
{
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform 1s ease-in-out;
}

#matching_list li
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    color: #333;
}

#matching_list .status
{
    padding: 3px 12px;
    background: #ff9999;
    color: #fff;
    border-radius: 30px;
}

/* 테이블 헤더 */
.matching-header
{
    position: absolute;
    z-index: 10;
    display: table;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background: #ff6666;
    font-size: 15px;
    margin-top: 40px;
}

.matching-header div
{
    display: table-cell;
    text-align: center;
}

#slide-list .w120
{
    width: 120px;
    text-align: center;
}
#slide-list .w150
{
    width: 150px;
    text-align: center;
}
#slide-list .w200
{
    width: 200px;
    text-align: center;
}

/*-------------------------------------------------------*/



/*하단 예약 메뉴*/
.reservation-banner
{
    background-color: #ff6666;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0px;
    color: white;
    transition: All 0.2s ease-in-out;
}

.reservation-banner:hover
{
    background-color: #857cd6;
    transition: All 0.2s ease-in-out;
    cursor: pointer;
}

.banner-content
{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.icon i.check-icon
{
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: white;
    mask: url('/static/img/icon_device.png') no-repeat center;
    -webkit-mask: url('/static/img/icon_device.png') no-repeat center;
    background-size: contain;
    margin-right: 15px;
}

.icon i
{
    font-size: 2.5rem;
}

.text h2
{
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.text p
{
    font-size: 1rem;
    margin: 0;
    color: #f9f9f9;
}

.arrow i
{
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 10px;
    transform: rotate(-45deg);
}


.footer
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #f3f3f3;
    width: 1260px;
    margin: 0px auto;
}
.footer-logo
{
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.footer-logo img
{
    height: 40px;
    margin-right: 10px;
}
.footer-text
{
    width: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.footer-text a
{
    color: #333;
    text-decoration: none;
}
.footer-text a:hover
{
    text-decoration: underline;
}




.image-gallery
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-items
{
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
    transition: all 0.4s ease;
    text-align: center;
    cursor: pointer;
}

.gallery-items img
{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* 항상 보이는 텍스트 */
.text-overlay
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    z-index: 1;
    transition: opacity 0.3s ease;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 50%);
}

/* 호버 시 나타나는 텍스트 */
.hover-text
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    color: white;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    z-index: 2;
    white-space: nowrap;
    transition: all 0.5s ease;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 50%);
}

/* 애니메이션 효과 */
.gallery-items:hover img
{
    transform: scale(1.05);
}

.gallery-items:hover .text-overlay
{
    opacity: 0;
}

.gallery-items:hover .hover-text
{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    white-space: normal;
}

/* 호버 시 반투명 배경과 패딩 */
.gallery-items::before
{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: rgba(255, 51, 102, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease, padding 0.4s ease;
}

.gallery-items:hover::before
{
    opacity: 1;
    padding: 10px;
}

.gallery-btn-more
{
    border: 1px solid #fff;
    padding: 10px 20px 10px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}


/*Info page*/


header hr
{
    margin: 10px 0;
    border: 1px solid #ddd;
}

.feature-section
{
    margin: 40px 0;
}

.feature-list
{
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.feature-item
{
    width: 300px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.feature-image
{
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.feature-image p
{
    text-shadow: 1px 1px 3px rgb(0 0 0 / 50%);
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
}

.info-section
{
    text-align: center;
    margin-top: 60px;
}

.info-content
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f1f1;
}

.info-content img
{
    width: 50%;
    height: auto;
}

.info-content p
{
    margin-left: 50px;
    width: 50%;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}


/*Nav Bar*/

.home
{
    float: left;
    border-left: 1px solid #ffadad;
    border-right: 1px solid #ffadad;
}
.path
{
    float: left;
    position: relative;
    min-width: 240px;
    border-right: 1px solid #ffadad;
    z-index: 50;
}
.path > a
{
    display: block;
    position: relative;
    height: 50px;
    line-height: 50px;
    color: #fff;
    padding: 0 50px 0 20px;
    font-size: 15px;
}

.path a:after
{
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -6px;
    width: 21px;
    height: 12px;
    background: url(/static/img/path_right.png) 50% 50% no-repeat;
}

/*Intro*/

.intro-section
{
    width: 1260px;
}
.image-container
{
    float: left;
    width: 400px;
}

.image-container img
{
    width: 398px;
    height: 598px;
    border: 1px solid #ddd;
}

.text-container
{
    float: left;
    width: 700px;
    text-align: left;
    padding-left: 50px;
}



/*Biz*/

.doc-tit
{
    padding-left: 32px;
    margin-bottom: 23px;
    color: #333;
    font-size: 25px;
    line-height: 1.4em;
    font-weight: 400;
    letter-spacing: -.03em;
    background: url(/static/img/bullet.png) 0 8px no-repeat;
}

#price table
{
    border-collapse: collapse;
    width: 100%;
}
#price th, td
{
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    height: 24px;
    font-size: 14px;
}
#price th
{
    background-color: #8d6770;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    height: 24px;
}


.bul-list > li
{
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5em;
    background: url(/static/img/bullet2.png) 0 6px no-repeat;
    font-size:16px;
}

.guide
{
    text-align: left;
    margin-bottom: 75px;
    color: #484848;
    line-height: 1.875em;
}

.guide > ul
{
    display: block;
    list-style-type: none;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    margin: 0px;
    padding: 0px;
}


/*로그인*/

.login-area .login-box {
    display: inline-block;

    vertical-align: top;
    width: 440px;
    margin: 0 15px;
    padding: 22px 22px;
    border: 1px solid #ddd;
    border-radius: 10px;}
    
    .login-area .login-box .tit {
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.login-area .login-box .tit p {
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    line-height: 1.3em;
    margin:0px;
    padding:0px;
}

.login-area .login-box .tit h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    line-height: 1.3em;
    letter-spacing: -1px;
    margin:0px;
    padding:0px;
}

.login-area .login-box .form {
    padding: 0 15px;
    text-align: left;
}

.login-area .login-box .form fieldset {
    position: relative;
    padding: 0 95px 0 0;
}

fieldset legend {
    position: absolute;
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    font: 0/0 Arial;
}

fieldset {
    border: none;
}

.login-area .login-box .form .group {
    position: relative;
    padding: 3px 0 3px 70px;
    text-align: left;
}

.login-area .login-box .form .group label {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 14px;
    line-height: 35px;
    font-weight: 400;
    color: #333;
    vertical-align: middle;
}

.login-area .login-box .form .input {
    display: block;
    width: 100% !important;
    height: 35px;
    padding: 5px 5px;
    font-size: 14px;
    line-height: 23px;
    border: 1px solid #ddd;
    vertical-align: middle;
    box-sizing: border-box;
}

.login-area .login-box .form .btn-pack.login {
    position: absolute;
    top: 3px;
    right: 0;
    width: 80px;
    height: 76px;
    font-size: 16px;
    font-weight: 400;
}

.btn-pack.focus {
    background: #ff6666;
    border: 1px solid #ff6666;
    color: #fff;
    transition: All 0.2s ease-in-out;
}

.btn-pack {
    display: inline-block;
    overflow: visible;
    position: relative;
    margin: 0;
    padding: 0 10px;
    background: #fff;
    color: #4d4d4d;
    border: 1px solid #ddd;
    text-align: center;
    text-decoration: none !important;
    vertical-align: top;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.btn-pack.focus:hover
{
    background: #ff6666;
    border: 1px solid #333;
    color: #fff;
    transition: All 0.2s ease-in-out;
    }

.login-area .not-member {
    padding: 0 15px;
    padding-top: 13px;
    margin-top: 20px;
    border-top: 1px solid #eee;
    text-align: left;
}

.login-area .not-member li {
    padding-top: 3px;
    font-size: 13px;
    line-height: 30px;
    color: #888;
    overflow: hidden;
}

.login-area .not-member li a {
    color: #a51c30;
    text-decoration: underline;
    margin-left: 10px;
}

/*회원가입*/
.join-area{text-align:left}
.join-area h3 {
    color: #444;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

.join-area .box {
    padding: 14px;
    height: 180px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    margin-top: 7px;
    overflow: auto;
    margin-bottom:5px;
}

.join-area .chk {
    margin: 10px 0 40px 0;
    color: #767676;
    font-size: 14px;
}

.buttons {
    max-width: 1200px;
    margin: 20px auto;
}

.buttons .cen {
    text-align: center;
}

.buttons .cen .btn-pack {
    margin: 0 2px;
}

.btn-pack.large {
    min-width: 180px;
    height: 50px;
    padding: 0 18px;
    line-height: 48px;
    font-size: 16px;
    font-weight: 700;
}

.btn-pack.focus {
    background: #ff6666;
    border: 1px solid #ff6666;
    color: #fff;
}

.agree {
    color: #666;
    text-align:left;
}

.agree dl 
{
    margin:0px;
    padding:0px;
    padding: 0 0 20px 0;
}

.agree dt 
{
    margin:0px;
    padding:0px;
    font-size:15px;
    font-weight: 400;
    padding-bottom:5px;
}

.agree dd 
{
    margin:0px;
    padding:0px;
    font-size: 14px;
}

ul, ol {
    list-style: none;
    margin:0px;
    padding:0px;
}

.agree li {
    padding: 0 0 0 6px;
}

input[type="radio"], input[type="checkbox"] {
    vertical-align: middle !important;
    margin: -2px 3px 0 0 !important;
}

.agree p {
    text-align: left;
    margin: 10px 0;
    font-size: 14px;
}


table caption {
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    font: 0/0 Arial;
}

colgroup {
    display: table-column-group;
}

.join-area .form table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    border-top: 1px solid #d8d8d8;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.join-area .form table th {
    padding: 9px 20px;
    height: 55px;
    color: #333;
    font-size: 15px;
    line-height: 1.5em;
    text-align: left;
    background: #f9f9f9;
    border-bottom: 1px solid #d8d8d8;
}

label {
    cursor: default;
}

.join-area .form table td 
{
    margin:0px;
    padding:0px;
    padding: 9px 20px;
    color: #454545;
    font-size: 15px;
    line-height: 1.5em;
    border-bottom: 1px solid #d8d8d8;
    text-align:left;
}

.join-area .form table td * {
    vertical-align: middle;
}

.input {
    height: 35px;
    font-size: 14px;
    line-height: 23px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.btn-pack.medium {
    height: 35px;
    padding: 0 12px;
    line-height: 33px;
    font-size: 15px;
}

.select {
    height: 35px;
    font-size: 14px;
    line-height: 23px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*매칭현황*/
.board-list table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    border-top: 2px solid #000;
}

thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.board-list table thead th {
    height: 45px;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-size: 15px;
    line-height: 24px;
}

.board-list table tbody td {
    padding: 10px 0;
    border:0px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 15px;
    line-height: 24px;
    color: #000;
}

td {
    display: table-cell;
    vertical-align: inherit;
}

.board-list .status.off {
    background: #ff9999;
}

.board-list .status {
    display: inline-block;
    min-width: 80px;
    line-height: 25px;
    font-size: 13px;
    color: #fff;
    border-radius: 20px;
}

.board-search {
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    margin: 0 auto 33px;
}

.mgb10 {
    margin-bottom: 10px !important;
}

.board-search .total-page {
    float: left;
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
    color: #333;
}

.board-search .search {
    float: right;
}

.board-search .select {
    float: left;
    width: 150px;
    height: 40px;
    border-radius: 0;
    -webkit-border-radius: 0;
    margin-right: -1px;
}

.hide {
    position: absolute;
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    font: 0/0 Arial;
}

.board-search .input {
    float: left;
    width: 300px;
    height: 40px;
    border-radius: 0;
    -webkit-border-radius: 0;
}

.board-search .btn {
    float: left;
    width: 40px;
    height: 40px;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    text-indent: -999em;
    background: #000 url(/static/img/search.png) 50% 50% no-repeat;
}

/*이벤트*/
.event-list 
{
    width:100%;
    max-width: 100%;
    margin: 0 auto;
}

.event-list table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0px;
    border-top: 3px solid #000;
}

.event-list td.num {
    text-align: center;
    width: 70px;
}

.event-list td {
    padding: 20px 0;
    box-sizing: border-box;
    border:0px;
    border-bottom: 1px solid #ddd;
}

.event-list td.pic {
    text-align: center;
    width: 240px;
}

.event-list td.cnt {
    padding-left: 20px;
    text-align:left;
}

.event-list td.cnt .tit {
    font-size: 16px;
    line-height: 1.3em;
    margin-bottom: 10px;
    height: 1.3em;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
}

.event-list td.cnt .txt {
    color: #333;
    font-size: 14px;
    line-height: 1.5em;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*여성메이트*/
.w-image {width: 280px; height: 350px;border-radius:8px; transition: All 0.2s ease-in-out;margin-bottom:20px;}
.w-image:hover{box-shadow:0px 0px 10px #333; transition: All 0.2s ease-in-out; cursor:pointer }

.p-title{background:#ff6666; color:#fff;border-radius:30px;padding:10px;padding-left:20px;padding-right:20px;}
.p-status{background:#24b87f; color:#fff;border-radius:30px;padding:10px;padding-left:20px;padding-right:20px;}
.p-status-out{background:#666; color:#fff;border-radius:30px;padding:10px;padding-left:20px;padding-right:20px;}

#wmate-list li{float: left; display: inline-block; margin-right: 44px;margin-bottom:50px;}

@keyframes blink {
  0%, 100% {
    background-color: #25cf91; /* 蓝色 */
  }
  50% {
    background-color: #e74c3c; /* 红色 */
  }
}



/* 弹窗整体样式 */
.popup-overlay {
  position:fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  align-items: center;
  z-index: 999999999;
  animation: fadeIn 0.3s ease forwards;
  text-align:center;
  box-shadow:0px 0px 10px #333;
  border-radius: 8px;
  display:none;
}

.popup-content {
  position: relative;
  animation: scaleUp 0.4s ease forwards;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

/* 图片样式 */
.popup-content img 
{
  width:auto;
  height:calc(100vh - 50px);
  display: block;
  border-radius: 8px;
}

/* 关闭按钮样式 */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #e75353;
  color: white;
  border: none;
  border-radius: 0px 8px 0px 8px;
  cursor: pointer;
  font-size: 14px;
  padding:10px;
}



/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/*아이디비번 찾기*/
.real-cont {
    min-height: 300px;
    _height: 300px;
    padding-bottom: 100px;
}

.find-wrap {
    text-align: center;
}

.find-account {
    display: inline-block;
    vertical-align: top;
    width: 45%;
    max-width: 440px;
    margin: 0 15px;
    padding: 22px 22px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.find-account .tit {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.find-account .form {
    padding: 20px 15px;
    text-align: left;
}

.find-account .form form {
    position: relative;
    padding: 0 95px 0 0;
}

.find-account .form .group {
    position: relative;
    padding: 3px 0 3px 70px;
    text-align: left;
}

.find-account .form .group label {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 14px;
    line-height: 35px;
    font-weight: 400;
    color: #333;
    vertical-align: middle;
}


.find-account .form .input {
    display: block;
    width: 100% !important;
    height: 35px;
    padding: 5px 5px;
    font-size: 14px;
    line-height: 23px;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.find-account .form .btn-pack.btn {
    position: absolute;
    top: 3px;
    right: 0;
    width: 80px;
    height: 76px;
    font-size: 16px;
    font-weight: 400;
}

/*Board view*/
.board-view {
    max-width: 1260px;
    margin: 0 auto;
}

.board-view .head {
    text-align:left;
}

.board-view .head .tit {
    border-top: 2px solid #868686;
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3em;
    padding: 13px 20px;
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
    
}

.board-view .head .info {
    padding: 13px 20px;
    color: #767676;
    font-size: 15px;
    line-height: normal;
    border-bottom: 1px solid #ddd;
}

.board-view .head .info .name {
    float: left;
}

.board-view .head .info .hit {
    float: right;
}

.board-view .body {
    padding: 20px 20px 60px;
    border-bottom: 1px solid #ddd;
    word-break: break-all;
}

.buttons {
    max-width: 1260px;
    margin: 20px auto;
}

.buttons .fr {
    float: right;
}

/* Page */
DIV.page { padding-right: 0px; padding-left: 0px; font-size: 13px; padding-bottom: 10px; color: #fff; padding-top: 10px; font-family: Arial, Helvetica, sans-serif; text-align: center; font-family: Tahoma; }
DIV.page A { display: inline-block; margin-right: 5px; color: #333; text-decoration: none; background-color: #f9f9f9; border: 1px solid #ccc; font-family: Tahoma; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; width: 30px; height: 30px; text-align: center; line-height: 30px; }
DIV.page A:hover { border: 1px solid #999; color: #444; }

DIV.page SPAN.current { display: inline-block; color: #fff; margin-right: 5px; font-weight: bold; text-decoration: none; background-color: #333; border: 1px solid #333; font-family: Tahoma; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; width: 30px; height: 30px; text-align: center; line-height: 30px; }
DIV.page SPAN.split { display: inline-block; line-height: 30px; height: 30px; color: #444; padding-left: 3px; padding-right: 5px; }



