*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: rgb(218, 223, 230);
}
::-webkit-scrollbar-track {
    background-color: rgba(218, 223, 230, 0.3);
    border-radius: 3px;
}

.apidoc{
	height: 100vh;
	
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: stretch;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	color: #4d5665;
	background-color: #fff;
	-webkit-transition: color .3s ease-out,background-color .3s ease-out;
	transition: color .3s ease-out,background-color .3s ease-out;
}
.sidebar{
	background-color: #f7f9fc;
	width: 260px;
	height: 100%;
	box-shadow: 1px 0 0 0 rgb(32 45 64 / 10%);
	overflow-y: auto;
	padding-bottom: 20px;
    flex: 0 0 260px;
}
.sidebar .title{
	padding: 24px 16px 20px;

	line-height: 24px;
	font-size: 18px;
	font-family: 'Avenir-Heavy','SegoeUI-SemiBold',"PingFang SC","Helvetica Neue","Hiragino Sans GB","Segoe UI","Microsoft YaHei",微软雅黑,sans-serif;
	font-weight: bold;
	color: #202d40;
	word-break: break-all;
	cursor: pointer;
}
.sidebar ul li{
	padding-left: 10px;
}
.sidebar ul li a{
	display: block;
	padding: 0 12px;
	height: 32px;
	line-height: 32px;
	font-size: 14px;
	color: #202d40;
	border-radius: 3px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-transition: color .3s ease-out,background-color .3s ease-out;
	transition: color .3s ease-out,background-color .3s ease-out;
}

.active{
	color: #2372fa !important;
	background-color: rgba(35,114,250,.10);
}

.sidebar .level1{
	margin-top: 10px;
}
.sidebar .level1:first-child{
	margin-top: 0;
}
.sidebar .level1>a{
	font-size: 15px;
	font-weight: bold;
}
.level2{
	padding-left: 10px;
}
.level3{
	padding-left: 10px;
}


.doc-container{
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 0 64px;
	height: 100%;
	word-break: break-all;
	overflow: auto;
	
	position: relative;
}
.doc-container .article{
	padding: 48px 0;
}

.toggleNav i{
	float: right;
	width: 16px;
	height: 16px;
	background: url(../img/dowon.png) no-repeat center;
	margin-top: 8px;
	margin-right: 10px;
	transition: .3s;
}
.toggleNav.close i{
	transform: rotate(180deg);
}

.pagination-nav{
	display: flex;
	padding-top: 40px;
}
.pagination-nav__item{
	display: flex;
	flex: 1 50%;
	max-width: 50%;
}
.pagination-nav__item + .pagination-nav__item{
	margin-left: 16px;
	text-align: right;
}
.pagination-nav__link{
	border: 1px solid #dadde1;
	border-radius: 4px;
	flex-grow: 1;
	line-height: 1.25;
	padding: 20px;
	transition: border-color 0.2s cubic-bezier(0.08,0.52,0.52,1);
	cursor: pointer;
}
.pagination-nav__sublabel {
    color: #525860;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}
.pagination-nav__label{
	font-size: 16px;
	font-weight: 700;
	word-break: break-word;
}
.copy{
	display: inline-block;
    width: 28px;
    height: 30px;
	border: 1px solid #6e6e6e;
	border-radius: 4px;
	background: url(../img/copy.png) no-repeat center;
	cursor: pointer;
	display: none;
}
.copy.active{
	background: url(../img/success.png) no-repeat center;
}