@charset 'utf-8';

/*정렬*/
[class^=flex] {
    display:flex;
    align-items:center;
}
.flexStart {
    justify-content:flex-start;
}
.flexBetween {
    justify-content:space-between;
}
.flexCenter {
    justify-content:center;
}
.flexEnd {
    justify-content:flex-end;
}
/*input, select*/
input[type=text] {
    height:40px;
    padding:0.5rem;
    font-size:16px;
    background:#ececec;
    border:none;
    border-radius:50px;
}
input[type=file] {
    appearance:none;
    position:absolute;
    left:-9999px;
    width:0;
    overflow:hidden;
}
select {
    appearance:none;
    background:url(/images/sp/dust/iconArrow.svg) no-repeat 96% center / 12px, #f2f3f5;
    max-width:337px;
    width:100%;
    height:40px;
    font-size:16px;
    padding:0 1rem;
    height:40px;
    border:none;
    border-radius:5px;
}
/*datepicker*/
.ui-datepicker {
    max-width:280px;
    border:1px solid #ececec;
    box-shadow:10px 10px 40px rgba(0, 0, 0, 0.1);
}
.ui-datepicker .ui-datepicker-prev span:before {
    content:"<";
    position:absolute;
    top:0;
    left:0;
    font-size:20px;
    color:#464646;
    text-indent:0;
    transform:scaleX(.7);
}
.ui-datepicker .ui-datepicker-next span:after {
    content:">";
    position:absolute;
    top:0;
    left:0;
    font-size:20px;
    color:#464646;
    text-indent:0;
    transform:scaleX(.7);
}
/*색상*/
.red {
    color:red;
}
.blue {
    color:blue;
}
.green {
    color:green;
}
.orage {
    color:orange;
}

/*버튼*/
button {
    font-family:'NotosansKr';
    cursor:pointer;
}
.btnSearch {
    width:40px;
    height:40px;
    background:url(/images/sp/dust/iconSearchW.svg) no-repeat center center / 24px, #042758;
}
.btnConfirm {
    width:40px;
    height:40px;
    background:url(/images/sp/dust/iconCheck.svg) no-repeat center center / 24px, #43C778;
}
.btnUpload {
    width:40px;
    height:40px;
    display:inline-block;
    background:url(/images/sp/dust/iconUploadOrange.svg) no-repeat center center / 24px, #FFEBD4;
    border-radius:5px; 
    cursor:pointer;
}
.btnDown {
    width:40px;
    height:40px;
    display:inline-block;
    background:url(/images/sp/dust/iconDownRed.svg) no-repeat center center / 24px, #ffe8e8;
    border-radius:5px; 
    cursor:pointer;
}
.btnTrash {
    width:40px;
    height:40px;
    display:inlin-block;
    background:url(/images/sp/dust/iconTrashGray.svg) no-repeat center center / 24px, #ececec;
    border-radius:5px; 
    cursor:pointer;
}

/*테이블*/
.listTable {
    width:100%;
    background:#fff;
    table-layout:fixed;
}
.listTable thead th {
    background:#faf6f6 ;
    color:#C94949 ;
    font-weight:500;
    padding:0.75rem 0.5rem;
}
.listTable thead th:first-child {
    border-right:1px dashed #ccc;
}
.listTable tbody tr {
    border-bottom:1px solid #ccc;
}
.listTable tbody th {
    border-right:1px dashed #ccc;
    font-weight:500;
}
.listTable tbody td {
    padding:0.75rem 0.5rem;
    font-weight:400;
    text-align:center;
}
.insertTable {
    width:100%;
    border-top:1px solid #dbdbdb;
}
.insertTable tr {
    border-bottom:1px solid #dbdbdb;
}
.insertTable th {
    background:#f5f5f5;
    color:#464646;
    padding:1rem 0.5rem;
}
.insertTable td {
    padding:1rem 0.75rem;
    border-right:1px solid #dbdbdb;
}
.insertTable td input {
    width:100%;
    border-radius:5px;
}
.popTable {
    width:100%;
    border-top:2px solid #bababa;
}
.popTable th {
    padding:0.75rem 0.5rem;
    color:#464646;
    border-right:1px dashed #ccc;
}
.popTable tr:first-child th:last-child {
    border-right:none;
}
.popTable thead th {
    background:#f5f5f5;
}
.popTable tr {
    border-bottom:1px solid #ccc;
}
.popTable tr td {
    padding:0.75rem;
    color:#464646;
    border-right:1px dashed #ccc;
    text-align:right;
}
.popTable tr td:last-child {
    border-right:none;
}

/*팝업*/
.dim {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.3);
    backdrop-filter:blur(4px);
    z-index:4;
    display:none;
}
.popWrap {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    max-width:1000px;
    width:100%;
    font-family:'NotosansKr', sans-serif;
    box-shadow:0 0 15px 0 rgba(0, 0, 0, .15);
    z-index:5;
    display:none;
}
.popWrap .popHeader {
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#042758;
    padding:16px 20px;
}
.popWrap .popHeader h3 {
    color:#fff;
    font-size:20px;
    font-weight:bold;
}
.popWrap .popHeader .btnCls {
    width:32px;
    height:32px;
    font-size:20px;
    color:rgb(255,255, 255, .8);
    line-height:28px;
    background:#03152f;
    border-radius:50%;
}
.popWrap .popBody {
    background:#fff;
    padding:2rem 1.5rem;
}

/*공통*/
.wrap {
    min-height:100vh;
    min-height:100dvh;
    background:linear-gradient(to bottom, #042758 40%, #f6f7fa 40%, #f6f7fa 100%);
    font-family:'NotosansKr', sans-serif;
    color:#262626;
}
.bigSbjt {
    font-size:32px;
    font-weight:bold;
    color:#fff;
    text-align:center;
    padding:1.5rem 0 2rem 0;
}
.bigSbjt:before {
    content:"";
    display:inline-block;
    width:47px;
    height:47px;
    background:url(/images/sp/dust/logoBlue.svg) no-repeat center center / contain;
    margin:0 0.5rem -0.5rem 0;
}
.bigSbjt span {
    color:#B5C9E7;
}
.smallSbjt {
    font-size:18px;
    font-weight:bold;
    margin-bottom:0.25rem;
}
.smallSbjt:before {
    content:"";
    display:inline-block;
    width:4px;
    height:18px;
    background:#C94949;
    margin:0 0.25rem -0.155rem 0;
}
span.red {
    position:relative;
    color:#C94949;
    font-weight:bold;
}
span.red:before {
    content:"\2023";
    position:absolute;
    top:50%;
    left:-20px;
    color:#c94949;
    font-size:40px;
    transform:translateY(-47%) rotate(-90deg) scaleY(.7);
}
span.blue {
    position:relative;
    color:#4963c9;
    font-weight:bold;
}
span.blue:before {
    content:"\2023";
    position:absolute;
    top:50%;
    left:-16px;
    color:#4963c9;
    font-size:40px;
    transform:translateY(-47%) rotate(90deg) scaleY(.7);
}
.whiteBox {
    max-width:1400px;
    width:100%;
    min-height:calc(100vh - 9.5rem);
    margin:0.25rem auto 0;
    padding:2.5rem 0;
    background:#fff;
    border-radius:30px;
}
.whiteBox > .flexBetween {
    align-items:flex-start;
}
.whiteBox > .flexBetween > div[class$=t]:not(.yearSelect) {
    width:50%;
    padding:0 2.5rem;
}
.whiteBox .sbjtBox {
    position:relative;
    margin-bottom:2rem;
}
.whiteBox .sbjtBox:before {
    content:"";
    position:absolute;
    top:2px;
    left:-0.75rem;
    width:5px;
    height:calc(100% - 2px);
    background:linear-gradient(to bottom, #042758 24px, #E7EAEF 24px, #E7EAEF 100%);
}
.whiteBox .sbjtBox h3 {
    font-size:24px;
    font-weight:bold;
    margin-bottom:0.5rem;
    line-height:1;
}
.whiteBox .sbjtBox p {
    margin-bottom:0.25rem;
}
.whiteBox .sbjtBox dl {
    display:flex;
    align-items:center;
}
.whiteBox .sbjtBox dl dt {
    background:#E7EAEF;
    font-size:14px;
    font-weight:bold;
    color:#464646;
    margin-right:0.5rem;
    padding:0.25rem 0.75rem;
    border-radius:30px;
}
div[class^=step0] {
    margin-bottom:2rem;
    padding-left:1rem;
}
div[class^=step0] > dl {
    display:flex;
    align-items:center;
}
div[class^=step0] > dl dt {
    width:30px;
    height:30px;
    background: #e7eaef;
    margin:0 0.5rem 0.1rem -2rem;
    font-size:18px;
    font-weight:bold;
    color:#042758;
    border-radius:50%;
    text-align:center;
    line-height:30px;
}
/*페이징 공통*/
.pagination {
	display:flex;
	justify-content:center;
	align-items:center;
	margin:0;
    padding:0.75rem 0;
}  
.pagination > a {
	position:relative;
	width:30px;
	height:30px;
    background:#fff;
	display:block;
    text-align:center;
	line-height:30px;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	border-top:1px solid #ccc;
    cursor:pointer;
} 
.pagination > a:hover {
	text-decoration:underline;
}
.pagination > a:first-child {
	border-left:1px solid #ccc;
}
.pagination > a.current {
	background:#f8f8f8;
    line-height:27px;
}
.pagination .first, .pagination .prev, .pagination .next, .pagination .last {
	font-size:0;
	color:transparent;
}
.pagination .first:before, .pagination .prev:before, .pagination .next:before, .pagination .last:before {
	content:""; 
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%) scaleX(0.6);
	font-size:18px;
	color:#222;
}
.pagination .first:before {
	content:"\226A";
	font-size:12px; 
}
.pagination .prev:before {
	content:"\003C";
	transform:translate(-50%, -50%) scaleX(0.6);
	color:#666;
}
.pagination .next:before { 
	content:"\003E";
	transform:translate(-50%, -50%) scaleX(0.6);
	color:#666;
}
.pagination .last:before {
	content:"\226B";
	font-size:12px;
}
/*주민등록 인구 현황 자동보고*/
.population div.step02 .monthList {
    max-width:337px;
    width:100%;
    height:calc(100vh - 690px);
    overflow-y:auto;
    background:#f2f3f5;
    padding:0.5rem 1rem;
    border-radius:10px;
}
div.step02 .monthList > li > label {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0.5rem 0;
    border-bottom:1px dashed #cecece;
    cursor:pointer;
}
div.step02 .monthList > li:last-child {
    border-bottom:none;
}
div.step02 .monthList > li:hover {
    color:#43C778;
}
div.step02 .monthList > li.active {
    color:#43C778;
}
div.step02 .monthList > li span.red {
    color:red;
}
div.step02 .monthList > li span.blue {
    color:blue;
}
div.step02 .monthList > li input[type=radio] {
	appearance:none;
	position:absolute;
	left:-9999px;
	width:0;
	overflow:hidden;
}
div.step02 .monthList > li input[type=radio] + b {
	font-weight:normal;
}
div.step02 .monthList > li input[type=radio]:checked + b {
	color:#43C778;
}
.population div.step03 dl dd {
    display:flex;
    align-items:center;
}
.population div.step03 label.fileNm {
    width:257px;
    height:40px;
    background:#f2f3f5;
    padding:0 0.5rem;
    display:block;
    font-size:14px;
    color:#464646;
    border-radius:5px 0 0 5px;
    line-height:40px;
}
.population div.step03 dl dd .btnSearch {
    cursor:pointer;
}
.population div.step03 dl dd .btnConfirm {
    border-radius:0 5px 5px 0;
}
.population div.step03 dl + a.sample {
    margin:0.25rem 0 0 0.5rem;
    display:inline-block;
}
.population div.step03 dl + a.sample:hover {
    color:#43C778;
}
.population div.right {
    border-left:1px dashed #cecece;
}
.population div.right .sbjtBox dl dt {
    background:none;
    padding:0;
}
.population div.step04 .selectBox {
    display:flex;
}
.population div.step04 .selectBox select {
    width:calc((337px / 2) - 0.5rem);
    margin-right:0.5rem;
}
.population div.step05 dl {
    align-items:flex-start;
}
.population div.step05 button {
    position:relative;
    width:160.5px;
    height:160.5px;
    margin-right:0.5rem;
    font-family:'NotosansKr', sans-serif;
    font-size:18px;
    font-weight:bold;
    color:#fff;
    text-align:left;
}
.population div.step05 button p {
    position:absolute;
    top:12px;
    left:12px;
    line-height:1.4;
}
.population div.step05 button span {
    display:block;
}
.population div.step05 .btnPpt {
    background:url(/images/sp/dust/iconPpt.svg) no-repeat 92% 92% / 32px, #C63D19;
    border-radius:5px;
}
.population div.step05 .btnHwp {
    background:url(/images/sp/dust/iconHanguel.svg) no-repeat 92% 92% / 32px, #209DDF;
    border-radius:5px;
}
.populPop p.desc {
    font-family:'NotosansKr', sans-serif;
    font-size:16px;
    margin-bottom:0.5rem;
}
.populPop table {
    border-top:2px solid #03152f;
    width:100%;
}
.populPop table td[rowspan="3"] {
    width:15%;
}
.populPop table td[rowspan="3"] img {
    width:100%;
}
.populPop table td[rowspan="3"] + td {
    width:60%;
}
.populPop table td[rowspan="2"] {
    width:25%;
    border-right:none;
}
.populPop table tr:last-child td:last-child {
    border-right:none;
}
.populPop .flexCenter {
    margin-top:1rem;
}
.populPop .flexCenter button {
    width:180px;
    height:50px;
    background:#042758;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    border-radius:5px;
}
/*청년인구현황 간편보고*/
.youth {
    background:linear-gradient(to bottom, #C94949 40%, #faf6f6 40%, #faf6f6 100%);
    min-height:100vh;
    min-height:100dvh;
}
.youth .bigSbjt:before {
    background:url(/images/sp/dust/logoRed.svg) no-repeat center center / contain;
}
.youth .bigSbjt span {
    color:#FFCFCF;
}
.youth .whiteBox {
    padding:2.5rem;
}
.youth .yearSelect {
    margin-bottom:0.5rem;
}
.youth .yearSelect select {
    width:150px;
    margin-left:0.5rem;
}
.youth .tableBox {
    max-height:calc(100vh - 280px);
    overflow:auto;
    border-top:2px solid #C94949;
}
.youth .tableBox thead th {
    position:sticky;
    top:0;
    z-index:2;
}
.youth .tableBox thead th {
    width:33.33%;
}
.youth .tableBox thead th:first-child {
    width:10%;
}
.youth .tableBox tbody tr:hover {
    transition:all .3s linear;
    background:#fff9f9;
}
.youth .btnSearch {
    background:url(/images/sp/dust/iconSearchRed.svg) no-repeat center center / 32px;
}
.youth p.alert {
    font-size:14px;
}
.youth p.alert:before {
    content:"!";
    display:inline-block;
    width:20px;
    height:20px;
    background:#ededed;
    margin-right:0.5rem;
    font-weight:bold;
    color:#676767;
    border-radius:50%;
    line-height:18px;
    text-align:center;
} 
div.popWrap[class*=youth] .popHeader {
    background:#C94949;
}
div.popWrap[class*=youth] .popHeader .btnCls {
    background:#9c1e1e;
}
.youthPop .desc li {
	background:#f5f5f5;
	padding:0.75rem;
	border-radius:5px;
	text-align:center;
}
.youthPop .selectArea {
	display:flex;
	align-items:center;
	border-bottom:1px solid #edcfcf;
	border-left:1px solid #edcfcf;
}
.youthPop .selectArea > input[type=radio] {
	position:absolute;
	left:-9999px;
	width:0;
	overflow:hidden;
	appearance:none;
}
.youthPop .selectArea > label {
	position:relative;
	width:110px;
	height:40px;
	background:#fbf2f2;
	display:block;
	font-weight:bold;
	color:#b38888;
	text-align:center;
	line-height:40px;
	border-right:1px solid #edcfcf;
	border-top:1px solid #edcfcf;
}
.youthPop .selectArea > input:checked + label {
	background:#fff;
	color:#C94949;
	border-top:1px solid #c94949;
}
.youthPop .selectArea > input:checked + label:before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:3px;
	background:#C94949;
}
.youthPop .selectArea > input:checked + label:after {
	content:"";
	position:absolute;
	bottom:-3px;
	left:0;
	width:100%;
	height:5px;
	background:#fff;
}
.youthPop .fileBox {
	position:relative;
	margin-top:1rem;
}
.youthPop .fileBox label {
	position:relative;
	width:100%;
	height:40px;
	display:block;
	background:#fafafa;
	line-height:38px;
	padding:0 0.5rem;
	border:1px solid #e1e1e1;
	border-radius:5px;
	cursor:pointer; 
}
.youthPop .fileBox label:before {
	content:"";
	position:absolute;
	top:50%;
	right:45px;
	width:26px;
	height:26px;
	background:url(/images/sp/dust/iconUploadBk.svg) no-repeat center center / contain;
	transform:translateY(-50%);
	opacity:.4;
}
.youthPop .fileBox label span {
    font-size:14px;
    color:#676767;
}
.youthPop .fileBox button {
	position:absolute;
	top:0;
	right:0;
	border-radius:0 5px 5px 0;
    background-color:#ff7700;
}
.youthPop .dragBox {
	position:relative;
	margin-top:1rem;
	width:100%;
	height:300px;
	background:#faf6f6;
	border:1px dashed #cba0a0;
	border-radius:5px;
}
.youthPop .dragBox .default {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}
.youthPop .dragBox .default img {
	width:120px;
	display:block;
	margin:0 auto;
}
.youthPop .dragBox .default p {
	font-size:14px;
	color:#565656;
	text-align:center;
}
.youthPop .popBody .flexEnd {
	margin-top:0.5rem;
}
.youthPop .popBody .flexEnd .formDown {
    font-family:'NotosansKr', sans-serif;
	background:#f94456;
	color:#fff;
	border-radius:5px;
	padding:0.5rem 1rem;
}
.youthPop .popBody .flexEnd .formDown:after {
	content:"";
	display:inline-block;
	width:18px;
	height:18px;
	background:url(/images/sp/dust/iconForm.svg) no-repeat center center / contain;
	margin:0 0 -2px 10px;
}
.youthBriefPop .popHeader {
	position:sticky;
	top:0;
    background:#C94949;
    z-index:11;
    box-shadow:0 1px 15px rgba(0, 0, 0, .2);
}
.youthBriefPop .popHeader h3 {
	font-family:'NotosansKr', sans-serif; 
	font-size:24px;
	font-weight:bold;
	color:#fff;
	padding:1rem 0;
	text-align:center;
}
.youthBriefPop .popBody {
	font-family:'NotosansKr', sans-serif; 
	padding:2rem 1.5rem 1.5rem;
}
.youthBriefPop .above {
    margin-bottom:1.5rem;
}
.youthBriefPop .above table thead th {
    width:25%;
}
.youthBriefPop .center {
    margin-bottom:1.5rem;
}
.youthBriefPop .center #chartDiv {
	padding:1rem;
	border:1px solid #ccc;
	border-radius:5px;
}
.youthBriefPop .compareBox {
    margin-top:0.5rem;
}
.youthBriefPop .compareBox ul {
    display:flex;
    align-items:center;
    margin-bottom:0.5rem;
}
.youthBriefPop .compareBox ul li {
    margin-right:1.75rem;
}
.youthBriefPop .compareBox ul li.title {
    background:#ececec;
    margin-right:0.35rem;
    padding:0.25rem 0.5rem;
    border-radius:10px;
}
.youthBriefPop .compareBox ul li.before,
.youthBriefPop .compareBox ul li.arrow {
    margin-right:0.5rem;
}
.youthBriefPop .compareBox ul li b.totalValue {
	margin-left:0.5rem;
}
.youthBriefPop .compareBox ul li b.totalValue i {
	font-style:normal;
}
.youthBriefPop .popBody .flexCenter .btnRed {
    width: 200px; 
    height: 45px;
    background: #C94949;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
}
/*미세먼지 실시간 정보 간편보고*/
.air {
    background:linear-gradient(to bottom, #045858 40%, #F6FAFA 40%, #F6FAFA 100%);
    min-height:100vh;
    min-height:100dvh;
    padding-bottom:2rem;
}
.air .btnSearch {
    background:url(/images/sp/dust/iconSearhOg.svg) no-repeat center center / 28px, #FFEBD4;
    border-radius:5px;
}
.air .bigSbjt:before {
    background:url(/images/sp/dust/logoGreen.svg) no-repeat center center / contain;
}
.air .bigSbjt span {
    color:#93C4C4;
}
.air .airTab {
    position:relative;
    width:1400px;
    margin:0 auto;
    display:flex;
    align-items:center;
}
.air .airTab:before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:360px;
    height:70px;
    background:#dedede;
    border-radius:10px 10px 0 0;
    z-index:1;
}
.air .airTab li {
    position:relative;
    width:180px;
    height:70px;
    background:#DEDEDE;
    text-align:center;
    border-radius:10px 10px 0 0;
    z-index:1;
}
.air .airTab li.active {
    background:#fff;
}
.air .airTab li a {
    position:relative;
    width:100%;
    height:100%;
    display:block;
    font-size:20px;
    font-weight:bold;
    color:#767676;
    line-height:70px;
}
.air .airTab li.active a {
    color:#045858;
}
.air .airTab li.active a:after {
    content:"";
    display:block;
    width:96.55px;
    height:3px;
    background:#045858;
    margin:-1rem auto;
}
.air .whiteBox {
    min-height:calc(100vh - 13rem);
    margin-top:0;
    padding:2.5rem;
    border-radius:0 30px 30px 30px;
}
.air .smallSbjt {
    font-size:22px;
}
.air .smallSbjt:before {
    background:#045858;
}
.air .whiteBox > .flexBetween {
    margin-bottom:2rem;
}
.air .yearSelect {
    display:flex;
    align-items:center;
}
.air .yearSelect input[type=text] {
    width:260px;
    background:#f2f3f5;
    border:1px solid #ececec;
    border-radius:5px 0 0 5px;
}
.air .yearSelect input[type=text] + .btnGreen {
    width:100px;
    height:40px;
    background:#045858;
    color:#fff;
    font-size:16px;
    font-weight:bold;
    border-radius:0 5px 5px 0;
}
.air .yearSelect + .btnOrange {
    width:100px;
    height:40px;
    background:#FC7F11;
    color:#fff;
    font-size:16px;
    font-weight:bold;
    border-radius:5px;
}
.air .airResult:not(:last-child) {
    margin-bottom:2rem;
}
.air .listTable {
    width:100%;
    border-top:2px solid #045858;
}
.air .listTable thead th {
    background:#E0EEEE;
    color:#045858;
}
.air .listTable thead th:first-child {
    width:10%;
}
.air .listTable.complex thead th {
    border-right:1px dashed #ccc;
    border-bottom:1px solid #ccc;
}
.air .listTable.complex thead th:last-child {
    border-right:none;
}
.air .listTable.report thead th:first-child {
    width:25%;
}
.airReportPop .popHeader {
    background:#045858;
}
.airReportPop .popHeader .btnCls {
    background:#023d3d;
    font-size:20px;
}
.airReportPop .popBody {
    padding:1rem 1.5rem;
}
.airReportPop ul.date {
    display:inline-flex;
    align-items:center;
    background:#e0eeee;
    padding:0.35rem 1rem 0.5rem 1rem;
    border-radius:30px;
}
.airReportPop ul.date li:first-child {
    margin-right:0.5rem;
    color:#045858;
}
.airReportPop ul.date li:last-child {
    color:#045858;
}
.airReportPop .map {
    position:relative;
    text-align:center;
}
.airReportPop .map:before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url(/images/sp/dust/bgMapGray.png) no-repeat center center / 35vh;
    z-index:1;
}
.airReportPop .map svg {
    position:relative;
    max-height:35vh;
    z-index:2;
}
.airReportPop .listTable {
    width:100%;
    border-top:2px solid #045858;
}
.airReportPop .listTable thead th {
    background:#E0EEEE;
    color:#045858;
    padding:0.25rem 0.5rem;
}
.airReportPop .listTable thead th:first-child {
    width:15%;
}
.airReportPop .listTable.complex thead th {
    border-right:1px dashed #ccc;
    border-bottom:1px solid #ccc;
}
.airReportPop .listTable.complex thead th:last-child {
    border-right:none;
}
.airReportPop .listTable.report thead th:first-child {
    width:25%;
}
.airReportPop .listTable tbody td {
    padding:0.25rem 0.5rem;
}
.airReportPop .airDesc {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:0.5rem 0 1rem 0;
}
.airReportPop .airDesc dl {
    display:flex;
    align-items:center;
    font-size:15px;
}
.airReportPop .airDesc dl dt {
    width:80px;
    height:30px;
    background:#ececec;
    margin-right:0.5rem;
    color:#262626;
    text-align:center;
    line-height:30px;
    border-radius:30px;
}
.airReportPop .airDesc dl dd {
    margin-right:0.5rem;
}
.airReportPop .prediction {
    display:flex;
    justify-content:center;
    align-items:center;
    margin:2rem 0;
    padding:0.75rem;
    background:linear-gradient(to right, transparent, #ececec, transparent);
    border-radius:30px;
}
.airReportPop .prediction b {
    margin:0 0.25rem;
    padding:0.25rem 0.75rem;
    background:#f2f3f5;
    border-radius:30px;
    color:#fff;
}
.airReportPop .prediction b.blue {
    background:blue;
}
.airReportPop .prediction b.green {
    background:green;
}
.airReportPop .prediction b.orange {
    background:orange;
}
.airReportPop .prediction b.red {
    background:red;
}
.airReportPop .land.blue {
    fill:#87d5ff;
}
.airReportPop .land.green {
    fill:#93ef9b;
}
.airReportPop .land.orang {
    fill:#ffb76e;
}
.airReportPop .land.red {
    fill:#ff9595;
}
.airReportPop .flexCenter .btnGreen {
    width:200px;
    height:45px;
    background:#045858;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    border-radius:10px;
}