644 lines
13 KiB
SCSS
644 lines
13 KiB
SCSS
@use "../abstracts" as *;
|
|
|
|
// input form 공통
|
|
.data-input-form-bx{
|
|
margin-bottom: 18px;
|
|
&:last-child{
|
|
margin-bottom: 0;
|
|
}
|
|
.data-input-form-tit{
|
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
|
margin-bottom: 10px;
|
|
.import{
|
|
color: #F00;
|
|
}
|
|
span{
|
|
display: block;
|
|
@include defaultFont($font-s-13, $font-w-400, #A8B6C7);
|
|
}
|
|
}
|
|
.data-input-guide{
|
|
margin-top: 8px;
|
|
@include defaultFont($font-s-13, $font-w-400, #A8B6C7);
|
|
}
|
|
}
|
|
|
|
.btn-flex-wrap{
|
|
@include flex(5px);
|
|
margin-top: 24px;
|
|
.btn-bx{
|
|
flex: 1;
|
|
}
|
|
&.com{
|
|
.btn-bx{
|
|
flex: 1 1 auto;
|
|
button{
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// 매물 common
|
|
.top-btn{
|
|
position: fixed;
|
|
bottom: 96px;
|
|
right: 15px;
|
|
width: 38px;
|
|
height: 38px;
|
|
background-color: rgba(0, 0, 0, 0.50);
|
|
background-image: url(/assets/images/sub/top_btn_icon.svg);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 18px 18px;
|
|
border-radius: 50%;
|
|
z-index: 90000;
|
|
}
|
|
|
|
.sale-contents{
|
|
width: 100%;
|
|
background-color: #F5F5F5;
|
|
.sale-frame{
|
|
padding: 0 20px;
|
|
border-top: 1px solid #ECECEC;
|
|
border-bottom: 1px solid #ECECEC;
|
|
margin-bottom: 10px;
|
|
padding-bottom: 24px;
|
|
padding-top: 24px;
|
|
background-color: $white-fff;
|
|
&:first-child{
|
|
padding-top: 0;
|
|
border-top: none;
|
|
}
|
|
&:last-child{
|
|
padding-bottom: 0;
|
|
border-bottom: none;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
.sale-detail-tab-relative{
|
|
height: 40px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.sale-detail-tab-wrap{
|
|
position: fixed;
|
|
top: 66px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 40px;
|
|
background-color: $white-fff;
|
|
z-index: 98000;
|
|
.sale-detail-tab-inner{
|
|
position: relative;
|
|
@include flex(0px);
|
|
align-items: center;
|
|
height: 100%;
|
|
.sale-detail-tab{
|
|
flex: 1;
|
|
height: 100%;
|
|
background-color: #fff;
|
|
border-top: 1px solid #DDDFE2;
|
|
border-bottom: 1px solid #DDDFE2;
|
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
|
&.act{
|
|
color: $white-fff;
|
|
background-color: #5F738E;
|
|
border-color: #5F738E;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// 매물 목록
|
|
.sale-form-bx{
|
|
margin-bottom: 14px;
|
|
&:last-child{
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
.sale-list-wrap{
|
|
.sale-list-item{
|
|
padding-top: 14px;
|
|
padding-bottom: 14px;
|
|
border-bottom: 1px solid #ECECEC;
|
|
cursor: pointer;
|
|
&:first-child{
|
|
padding-top: 0;
|
|
}
|
|
&:last-child{
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
.sale-item-bx{
|
|
.sale-item-date-bx{
|
|
@include flex(0px);
|
|
align-items: center;
|
|
margin-bottom: 9px;
|
|
.sale-item-num{
|
|
position: relative;
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
padding-right: 6px;
|
|
&::after{
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
transform: translateY(-50%);
|
|
width: 1px;
|
|
height: 10px;
|
|
background-color: #A2ABB8;
|
|
}
|
|
}
|
|
.sale-item-date{
|
|
@include defaultFont($font-s-13, $font-w-400, #A2ABB8);
|
|
padding-left: 6px;
|
|
}
|
|
}
|
|
.sale-item-tit{
|
|
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
|
@include ellipsis(1);
|
|
margin-bottom: 9px;
|
|
}
|
|
.sale-item-customer{
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
margin-bottom: 9px;
|
|
}
|
|
.sale-item-update-bx{
|
|
@include flex(0px);
|
|
align-items: center;
|
|
.sale-item-name{
|
|
position: relative;
|
|
@include defaultFont($font-s-13, $font-w-400, #A2ABB8);
|
|
padding-right: 6px;
|
|
&::after{
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
transform: translateY(-50%);
|
|
width: 1px;
|
|
height: 10px;
|
|
background-color: #A2ABB8;
|
|
}
|
|
}
|
|
.sale-item-update{
|
|
@include defaultFont($font-s-13, $font-w-400, #A2ABB8);
|
|
padding-left: 6px;
|
|
}
|
|
}
|
|
&.nodata{
|
|
.sale-item-nodata{
|
|
padding: 5px 0;
|
|
text-align: center;
|
|
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
|
}
|
|
}
|
|
}
|
|
.sale-edit-btn{
|
|
margin-top: 24px;
|
|
}
|
|
|
|
// 매물 상세
|
|
.sale-data-table{
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
tbody{
|
|
tr{
|
|
th{
|
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
|
vertical-align: top;
|
|
padding: 5px 0;
|
|
}
|
|
td{
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
padding: 5px 0 8px 14px;
|
|
.data-down{
|
|
@include flex(8px);
|
|
align-items: center;
|
|
color: #1259CB;
|
|
i{
|
|
display: block;
|
|
width: 8px;
|
|
height: 12px;
|
|
background: url(/assets/images/sub/down_icon.svg)no-repeat center;
|
|
background-size: cover;
|
|
}
|
|
}
|
|
}
|
|
&:first-child{
|
|
th,td{
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
&:last-child{
|
|
th,td{
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// 매물 기본정보
|
|
.form-flex{
|
|
@include flex(5px);
|
|
.form-bx{
|
|
flex: 1;
|
|
}
|
|
}
|
|
.form-btn{
|
|
margin-top: 12px;
|
|
}
|
|
|
|
// 매물 전기 지붕정보
|
|
.sale-roof-title{
|
|
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
|
padding-bottom: 10px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #2E3A59;
|
|
}
|
|
.data-check-wrap{
|
|
@include flex(10px);
|
|
flex-wrap: wrap;
|
|
margin-bottom: 12px;
|
|
.radio-form-box,
|
|
.check-form-box{
|
|
width: calc(50% - 5px);
|
|
}
|
|
&.mb0{
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
.data-input{
|
|
&.flex{
|
|
@include flex(8px);
|
|
align-items: center;
|
|
span{
|
|
flex: none;
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// 1:1 문의 common
|
|
.inquiry-frame{
|
|
padding: 0 20px;
|
|
}
|
|
.badge{
|
|
min-width: 60px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
padding: 0 8px;
|
|
border-radius: 60px;
|
|
text-align: center;
|
|
font-size: $font-s-12;
|
|
font-weight: $font-w-500;
|
|
&.blue{
|
|
color: #5497E9;
|
|
background-color: #ECF5FF;
|
|
}
|
|
&.orange{
|
|
color: #F86A56;
|
|
background-color: #FFEFED;
|
|
}
|
|
&.block{
|
|
width: 100%;
|
|
|
|
}
|
|
}
|
|
// 1:1 문의 목록
|
|
.inquiry-table-filter{
|
|
margin-bottom: 24px;
|
|
.filter-check{
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
.inquiry-list-tit{
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #2E3A59;
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
span{
|
|
font-weight: $font-w-500;
|
|
}
|
|
}
|
|
.inquiry-list{
|
|
.inquiry-item{
|
|
padding: 10px 0;
|
|
cursor: pointer;
|
|
border-bottom: 1px solid #ECECEC;
|
|
&:last-child{
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
}
|
|
.inquiry-item-bx{
|
|
position: relative;
|
|
padding-right: 70px;
|
|
.inquiry-item-category{
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 5px;
|
|
span{
|
|
position: relative;
|
|
display: block;
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
padding: 0 6px;
|
|
&:first-child{
|
|
padding-left: 0;
|
|
}
|
|
&:last-child{
|
|
padding-right: 0;
|
|
&::before{
|
|
display: none;
|
|
}
|
|
}
|
|
&::before{
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
transform: translateY(-50%);
|
|
width: 1px;
|
|
height: 10px;
|
|
background-color: #A2ABB8;
|
|
}
|
|
}
|
|
}
|
|
.inquiry-item-tit{
|
|
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
|
@include ellipsis(1);
|
|
margin-bottom: 5px;
|
|
}
|
|
.inquiry-item-date{
|
|
@include defaultFont($font-s-13, $font-w-400, #A2ABB8);
|
|
}
|
|
.inquiry-badge{
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
&.nodata{
|
|
padding-right: 0;
|
|
.inquiry-item-nodata{
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// 1:1문의 작성
|
|
.inquiry-file-wrap{
|
|
margin-top: 20px;
|
|
.file-list-wrap{
|
|
margin-top: 14px;
|
|
}
|
|
}
|
|
.file-list-tit{
|
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
|
}
|
|
.file-list{
|
|
margin-top: 14px;
|
|
.file-item{
|
|
border-top: 1px solid #EDEDED;
|
|
cursor: default;
|
|
.file-item-bx{
|
|
width: 100%;
|
|
padding: 14px 0;
|
|
@include flex(0px);
|
|
align-items: center;
|
|
.file-item-name{
|
|
@include ellipsis(1);
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
padding-right: 10px;
|
|
}
|
|
.file-del{
|
|
flex: none;
|
|
display: block;
|
|
margin-left: auto;
|
|
width: 16px;
|
|
height: 16px;
|
|
background: url(/assets/images/common/id_delete_icon.svg)no-repeat center;
|
|
background-size: cover;
|
|
}
|
|
}
|
|
&:last-child{
|
|
.file-item-bx{
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// 1:1 문의 상세
|
|
.inquiry-detail-data-table{
|
|
padding: 20px 0;
|
|
border-bottom: 1px solid #ECECEC;
|
|
}
|
|
.inquiry-detail-data{
|
|
padding: 20px 0;
|
|
border-bottom: 1px solid #2E3A59;
|
|
margin-bottom: 24px;
|
|
.inquiry-detail-category{
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 3px;
|
|
span{
|
|
position: relative;
|
|
display: block;
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
padding: 0 6px;
|
|
&:first-child{
|
|
padding-left: 0;
|
|
}
|
|
&:last-child{
|
|
padding-right: 0;
|
|
&::before{
|
|
display: none;
|
|
}
|
|
}
|
|
&::before{
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
transform: translateY(-50%);
|
|
width: 1px;
|
|
height: 10px;
|
|
background-color: #A2ABB8;
|
|
}
|
|
}
|
|
}
|
|
.inquiry-detail-tit{
|
|
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
|
margin-bottom: 10px;
|
|
}
|
|
.inquiry-detail-txt{
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
}
|
|
}
|
|
|
|
// 1:1 문의 답변
|
|
.inquiry-answer-wrap{
|
|
margin-top: 24px;
|
|
|
|
}
|
|
.inquiry-answer-header{
|
|
padding: 20px 0;
|
|
border-top: 1px solid #F86A56;
|
|
border-bottom: 1px solid #ECECEC;
|
|
.inquiry-answer-tit{
|
|
@include defaultFont($font-s-14, $font-w-500, #F86A56);
|
|
margin-bottom: 5px;
|
|
}
|
|
.inquiry-answer-date{
|
|
@include defaultFont($font-s-13, $font-w-400, #F86A56);
|
|
}
|
|
}
|
|
.inquiry-answer-tit{
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
// 비밀번호 변경
|
|
.border-frame{
|
|
padding: 20px;
|
|
border-top: 1px solid #ECECEC;
|
|
border-bottom: 1px solid #ECECEC;
|
|
background-color: #fff;
|
|
margin-bottom: 10px;
|
|
&:last-child{
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
.pw-guide{
|
|
.pw-guide-tit{
|
|
@include defaultFont($font-s-16, $font-w-500, #1259CB);
|
|
}
|
|
.pw-guide-txt{
|
|
@include defaultFont($font-s-13, $font-w-400, #417DDC);
|
|
}
|
|
}
|
|
|
|
// 지붕재 적합성
|
|
.compliance-icon{
|
|
display: block;
|
|
width: 22px;
|
|
height: 22px;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
&.check{
|
|
background-image: url(/assets/images/sub/compliance_check_icon.svg);
|
|
}
|
|
&.x{
|
|
background-image: url(/assets/images/sub/compliance_x_icon.svg);
|
|
}
|
|
&.quest{
|
|
background-image: url(/assets/images/sub/compliance_quest_icon.svg);
|
|
}
|
|
&.tip{
|
|
background-image: url(/assets/images/sub/compliance_tip_icon.svg);
|
|
}
|
|
}
|
|
.compliance-check-wrap{
|
|
padding-top: 10px;
|
|
}
|
|
.compliance-check-bx{
|
|
position: relative;
|
|
padding: 14px 18px;
|
|
border: 1px solid #EFEFEF;
|
|
border-radius: 4px;
|
|
margin-bottom: 10px;
|
|
&:last-child{
|
|
margin-bottom: 0;
|
|
}
|
|
&.act{
|
|
.bx-btn{
|
|
transform: rotate(0) !important;
|
|
}
|
|
.reference-list{
|
|
display: block
|
|
}
|
|
}
|
|
}
|
|
.check-name-wrap{
|
|
@include flex(0px);
|
|
align-items: center;
|
|
.check-name{
|
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
|
}
|
|
.check-name-btn{
|
|
margin-left: auto;
|
|
.bx-btn{
|
|
display: block;
|
|
width: 22px;
|
|
height: 22px;
|
|
background: url(/assets/images/sub/compliance_bx_icon.svg)no-repeat center;
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
}
|
|
.reference-list{
|
|
display: none;
|
|
margin-top: 10px;
|
|
padding-top: 14px;
|
|
border-top: 1px solid #ECECEC;
|
|
transition: all .15s ease-in-out;
|
|
.reference-item{
|
|
margin-bottom: 8px;
|
|
padding-left: 14px;
|
|
.reference-item-bx{
|
|
@include flex(10px);
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
align-items: center;
|
|
}
|
|
&:last-child{
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
&.check{
|
|
.reference-item{
|
|
margin-bottom: 14px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.compliace-nosearch{
|
|
padding: 30px 0;
|
|
span{
|
|
display: block;
|
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.check-item-wrap{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.compliance-icon-wrap{
|
|
margin-left: auto;
|
|
min-width: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
@media screen and (max-width: 360px){
|
|
.btn-flex-wrap{
|
|
flex-direction: column;
|
|
}
|
|
.data-check-wrap{
|
|
.radio-form-box,
|
|
.check-form-box{
|
|
width: 100%;
|
|
}
|
|
}
|
|
} |