@charset "utf-8";

.w-100 {
    width: 100% !important;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
}

.site-map {
    overflow-y: auto;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1005;
    width: 100%;
    height: 100vh;
    background-color: #f8f8f8;
    word-break: keep-all;
}


.site-map .top {
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    max-width: 1660px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
    background: #eaeaea;
    border-radius: 8px;
}

.site-map .close-btn {
    padding: 10px;
    padding-bottom: 6px;
    color: #fff;
    background-color: #f9543b;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.9;
}
.site-map .close-btn:hover {
	opacity: 1;
}

.site-map .menu-list {
    max-width: 1660px;
    margin: 0 auto;
}



.site-map .depth-1 {
    width: 100%;
    padding: 35px 50px;
    border-bottom: 1px solid #dbdbdb;

    display: flex;
}

.site-map .depth-1 > a {
    display: block;
    min-width: 180px;
    font-size: 26px;
    font-weight: bold;
    color: #333;
    /* color: var(--uou-color); */
    vertical-align: top;
}
.site-map .depth-1 > a:hover {
	color: #164692;
	font-weight: bold;
}

.site-map .depth-2 {
    margin-bottom: 100px;
}

.site-map .depth-2 > a {
    display: block;
    /* width: 115px; */
    font-size: 20px;
    font-weight: 500;
    color: #333;
    text-align: left;
}
.site-map .depth-2 > a:hover {
	color: #164692;
	font-weight: bold;
}

.site-map .depth-3 > a {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #888;
    padding: 3px 0;
    text-align: left;
}
.site-map .depth-3 > a:hover {
	color: #164692;
	font-weight: bold;
}


.site-map .depth-2 > ul {
    margin-top: 8px;
}

@media(max-width:1300px){
    .site-map .top {
        border-radius: unset;
        margin-top: unset;
        margin-bottom: unset;
    }
}
@media(max-width:1200px){
    .site-map .top {
        padding: 30px;
    }
}

@media(max-width:991px){
    .site-map .depth-1 {
        flex-direction: column;
    }
    .site-map .depth-1 > a {
    	margin-bottom: 20px;
    }
    .site-map .depth-2 {
	    margin-bottom: 60px;
	}
}

@media(max-width:375px) {
	.site-map .top img {
		width: 70%;
	}
    .site-map .top {
        padding: 30px 16px;
    }
    .site-map .depth-1 {
        padding: 35px 16px;
    }
}