@charset "utf-8";



body {
	padding-top: 150px;
}



/* 页眉 */

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 100px;
    z-index: 998;
    display: flex;
    justify-content: center;
    background-color: #fff;
    }

.header-content {
    max-width: 1750px;
    width: 100%;
    display: flex;
    align-items: center;
	background-color: inherit;
    }



/* 顶部导航栏 */

.nav-top-container {
    position: fixed;
    top: 100px;
    width: 100%;
    z-index: 997;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDEDED;
    }

.nav-top-content {
    max-width: 1750px;
    width: 100%;
	height: 50px;
    display: flex;
	align-items: stretch;
	position: relative;
    }



/* 主内容区域 */

.main-container {
    max-width: 1750px;
    margin: 0 auto;
    display: flex;
    min-height: calc(100vh - 220px);
    background-color: white;
    position: relative;
}

.nav-left-container {
    position: fixed;
    top: 150px;
    bottom: 0;
    width: 200px;
    z-index: 998;
    transition: left 0.3s ease;
	overflow-y: hidden;
    padding-top: 90px;
    background:transparent url("/i/ui/nav-left.svg") no-repeat;
	background-size: 230px 90px;
}

@media screen and (min-width: 1080px) and (max-width: 1599px) {
.nav-left-container {
    background:transparent url("/i/ui/nav-left-200.svg") no-repeat;
	background-size: 200px 65px;
    padding-top: 65px;
    }
}

.nav-left-container.active {
    left: 0;
	}

.main-content {
    flex: 1;
    padding: 32px;
    min-height: 600px;
	width: 100%;
    margin-left: 230px;
}

.sidebar {
    width: 180px;
    background-color: #F7F7F7;
    flex-shrink: 0;
	display: flex;
	justify-content: center;
}



/* 页脚 */

.footer-container {
	background-color: #EDEDED;
    color: white;
    text-align: center;
    margin-top: 0;
    position: relative;
    z-index: 1002;
	display: flex;
	border-bottom: 20px solid #fff;
	justify-content: center;
	align-items: center;
    flex-direction: column;
    font-size: 12px;
    color: #777;

}

.footer-container > div:nth-child(1) {
    padding: 8px 0 4px 0;
}

.footer-container > div:nth-child(2) {
    padding: 4px 0 8px 0;
}


/* 手机端 */
@media screen and (max-width: 720px) {
body {
	padding-top: 120px;
	}

.header-container {
    height: 80px;
	}

.nav-top-container {
    top: 80px;
    height: 40px;
	}

.nav-top-content {
    height: 40px;
	}

.main-container {
    width: 100%;
	}

.nav-left-container {
    top: 120px;
    left: -280px;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
	}

.main-content {
    width: 100%;
    margin-left: 0;
    padding: 20px 15px;
	}

.sidebar {
    display: none;
	}
}



/* 平板 */
@media screen and (min-width: 721px) and (max-width: 1079px) {
.main-container {
    width: 100%;
	}

.nav-left-container {
    top: 150px;
    left: -280px;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
	}

.main-content {
    width: 100%;
    margin-left: 0;
    padding: 20px 15px;
	}

.sidebar {
    display: none;
	}
}



/* 高端平板以及低分辨率笔记本 */
@media screen and (min-width: 1080px) and (max-width: 1249px) {
.main-container {
    width: 100%;
	}

.nav-left-container {
    width: 200px;
	}

.main-content {
    width: 100%;
    margin-left: 200px;
	}

.sidebar {
    display: none;
	}
}



/* 笔记本 */
@media screen and (min-width: 1250px) and (max-width: 1599px) {
.main-container {
    max-width: 1750px;
	}

.nav-left-container {
    width: 200px;
	}

.main-content {
    width: 100%;
    margin-left: 200px;
	}

.sidebar {
    width: 200px;
	}
}



/* 高分辨率显示器 */
@media screen and (min-width: 1600px) {
.main-container {
    max-width: 1750px;
	}

.nav-left-container {
    width: 230px;
	}

.main-content {
    width: 100%;
    margin-left: 230px;
	}

.sidebar {
    width: 230px;
	}
}
