p,body{
    margin: 0;
}
.full-page{
    overflow-x: hidden;
    height: 100vh;
}
.bg-fb{
    background-color: #fbb435;
}
.bg-ee{
    background-color: #eee;
}
.dfcb{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bar{
    box-sizing: border-box;
    width: 100%;
    font-size: 17px;
    color: #fff;
    padding: 12px;
}
.bg-29{
    background-color: #29bde0;
}
.bar-icon{
    width: 20px;
}
.version{
    height: 68px;
    background-color: #29bde0;
    color: #fff;
    line-height: 68px;
}
.u-num{
    color: #787878;
    line-height: 40px;
}
.circle{
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #f0f0f0;
    border-radius: 50%;
}
.circle-blue{
    background-color: #69d1e9;
}
.triangle{
    display: block;
    width: 0;
    height: 0;
    border: 14px solid;
    border-color: transparent transparent transparent #fbb435;
    position: absolute;
    top: 155px;
    right: -5px;

}
.page{
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    transition:all 500ms;
	-webkit-transition:all 500ms; /* Safari */
}

.sidebar{
    position: absolute;
    left: -200px;
    height: calc(100vh - 45px)
}
input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}
input[type="checkbox"]~.sidebar {
    width: 200px;
    background: #f8f9fb;
    transition:all 500ms;
	-webkit-transition:all 500ms; /* Safari */
}
input[type="checkbox"]:checked+label+.sidebar{
    left: 0;
}
input[type="checkbox"]:checked~.page{
    margin-left: 200px;
}
a{
    color: #fff;
}
a:visited,
a:focus,
a:hover,
a:active{
    color: #fff;
    text-decoration: none!important;
}