.layout {
    width: 100%;
    position: relative;
    margin: 0 auto;
    height: 100%;
}

.blindWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

body {
    /* padding-top: 100px; */
    /* min-width: 1300px; */
    /* max-width: 1920px; */
    margin: 0 auto;
    position:relative;
}

.header {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 60px;
    transition: all .5s;
    z-index: 1500;
    /* max-width: 1920px; */
    margin:0 auto;
    /* background-color: #4b0000; */
}

.header.scroll .topWrap {
    background-color: #005151;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.header.active .topWrap {
    height: 100%;
    background-color: #005151;
}

.header .topWrap {
    position:relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
    transition:all .5s;
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

.header.active .topWrap {
    border-bottom:none;
}

.header .topWrap .toggleBtn {
    width: 20px;
}

.header .topWrap .logo {
    width: 150px;
    position:relative;
}

.header .topWrap .toggleBtn {
    position:relative;
}

.header .topWrap .toggleBtn>img {
    transition:all .5s;
}

.header .topWrap .toggleBtn>img:last-child {
    position:absolute;
    top:0;
    left:0;
}

.header:not(.active) .topWrap .toggleBtn>img:last-child,
.header.active .topWrap .toggleBtn>img:first-child {
    opacity: 0;
}

.header .topWrap .telBtn {
    width: 18px;
    margin-right: 25px;
}

.header .topWrap .menu {
    display: flex;
    flex-flow: column;
    /* height: 100%; */
    position:absolute;
    top:60px;
    left:0;
    width: 100%;
    background-color: #005151;
    height: calc(100vh - 60px);
    padding:20px 20px 30px;
    display: none;
}

.header .topWrap .menu>li {
    width: 100%;
    position:relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border-bottom:1px solid rgba(255, 255, 255, 0.4);
}

.header .topWrap .menu>li:first-child {
    border-top:1px solid rgba(255, 255, 255, 0.4);
}

.header .topWrap .menu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding:20px 0;
    font-family: 'NotoKrR';
    font-size: 16px;
    color:#fff;
    width: 100%;
    position:relative;
}

/* .header.active .topWrap .menu>li>a,
.header.scroll .topWrap .menu>li>a {
    color:#333333;
} */

.header .topWrap .menu>li>a:before {
    content:'';
    width: 0;
    top:calc(100% + 8px);
    left:50%;
    transform: translateX(-50%);
    transition:all .5s;
    height: 1px;
    background-color: #442c5f;
    position:absolute;
}

.header .topWrap .depth2 {
    width: 100%;
    display: none;
    background-color: #004141;
    padding:15px 0;
}

.header .topWrap .depth2 li:not(:last-child) {
    margin-bottom: 13px;
}

.header .topWrap .depth2 li a {
    font-family: 'NotoKrR';
    font-size: 14px;
    text-align: center;
    display: block;
    color: #fff;
}

.header .topWrap .depth2 li.active a {
    font-family: 'NotoKrB';
}

.header .topWrap .rightWrap {
    display: flex;
    height: 100%;
    align-items: center;
}

.header .topWrap .rightWrap .telBtn {
    margin-right: 15px;
}

.header .bottomWrap {
    position:absolute;
    bottom:0;
    left:0;
    width: 100%;
    height: calc(100% - 110px);
    transition:all .5s;
    border-top:1px solid transparent;
}

.header.active .bottomWrap {
    border-top: 1px solid #c9caca;
}

.quickWrap {
    position:fixed;
    top:100px;
    right:0;
    width: 95px;
    height: calc(100% - 100px);
    z-index: 10000;
    background-color: #fff;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

.quickWrap .linkWrap {
    padding:0 17px;
    background-color: #002a60;
    margin-bottom: 96px;
    width: 100%;
    height: 100%;
}

.quickWrap .linkWrap a {
    display: flex;
    justify-content: center;
    padding:20px 0;
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

.quickWrap .bottomWrap {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    padding-bottom: 30px;
}

.quickWrap .bottomWrap .topBtn {
    margin-top: 30px;
}

.quickWrap .open {
    position:absolute;
    right:calc(100% + 20px);
    top:20px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    flex-flow: column wrap;
    /* padding:30px 20px; */
    /* background-color: #f5f5f5; */
}

.footer .topBtn {
    position:absolute;
    top:20px;
    right:15px;
    width: 50px;
}

.footer .topWrap {
    display: flex;
}

.footer .topWrap>* {
    flex:1 1 50%;
    width: 50%;
    max-width: 50%;
}

.footer .linkWrap {
    position:absolute;
    bottom:30px;
    left:0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: .5;
}

.footer .linkWrap a {
    width: auto;
    height: 20px;
    margin:0 10px;
}

.footer .linkWrap a img {
    max-width: 1000000%;
    height: 100%;
    width: auto;
}

.iframeWrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}