/*
    版权申明©
    作者QQ（GGZZLL）：386715331
    该源码版权为GGZZLL所有，禁止修改版权，侵权必究
*/
*{
    margin: 0px;
    padding: 0px;
}
body{
    min-width: 263px;
    background-color: rgb(235, 235, 235);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transition: background 0.3s linear, color 0.3s linear;
}
body.Dark{
    color: #FFF;
    background: rgba(50, 50, 50,1);
    transition: background 0.3s linear, color 0.1s linear;
}
body div.Hoverbar{
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    min-width: 263px;
    min-height: 50px;
    background: rgb(255, 255, 255);
    box-shadow: 0 6px 6px hsl(0deg 0% 0% / 0.3);
    transition: background 0.3s linear;
}
body.Dark div.Hoverbar{
    background: rgb(80, 80, 80);
}
body div.Hoverbar span.Sidebar{
    float: left;
    width: 50px;
    height: 50px;
}
body div.Hoverbar span.Sidebar i{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: text-shadow 0.2s linear;
}
body div.Hoverbar span.Sidebar i:hover{
    text-shadow: 0 6px 4px rgba(80, 80, 80, 0.3);
}
body.Dark div.Hoverbar span.Sidebar i:hover{
    text-shadow: 0 6px 4px rgba(255, 255, 255, 0.3);
}
body div.Hoverbar span.Sidebar i:active{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.1);
    transition: all 0.3s linear;
}
body.Dark div.Hoverbar span.Sidebar i:active{
    background: rgba(255, 255, 255, 0.1);
}
body div.Hoverbar span.Depth{
    float: right;
    width: 50px;
    height: 50px;
}
body div.Hoverbar span.Depth i{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: text-shadow 0.2s linear;
}
body div.Hoverbar span.Depth i:hover{
    text-shadow: 0 6px 4px rgba(80, 80, 80, 0.3);
}
body.Dark div.Hoverbar span.Depth i:hover{
    text-shadow: 0 6px 4px rgba(255, 255, 255, 0.3);
}
body div.Hoverbar span.Depth i:active{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.1);
    transition: all 0.3s linear;
}
body.Dark div.Hoverbar span.Depth i:active{
    background: rgba(255, 255, 255, 0.1);
}
body div.Hoverbar span.Title{
    height: 50px;
    display: flex;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*悬浮栏*/
body div.Hoverbar div.Sidebar{
    position: fixed;
    left: 0;
    width: 0px;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: rgb(255, 255, 255);
    box-shadow: 6px 5px 6px hsl(0deg 0% 0% / 0.3);
    transition: background 0.3s linear, width 0.3s linear;
}
body.SideBar div.Hoverbar div.Sidebar{
    width: 60px;
}
body.Dark div.Hoverbar div.Sidebar{
    background: rgba(80, 80, 80);
}
body div.Hoverbar div.Sidebar div.list{
    width: 60px;
    height: 60px;
    box-sizing: content-box;
    border-top: .1px solid black;
    border-bottom: .1px solid black;
    border-left: 0px solid #3C7CFC;
    transition: border-left 0.1s linear;
}
body div.Hoverbar div.Sidebar div.list:hover{
    box-sizing: content-box;
    border-left: 4px solid #3C7CFC;
}
body.Dark div.Hoverbar div.Sidebar div.list:hover{
    box-sizing: content-box;
    border-left: 4px solid #FF00CC;
}
body div.Hoverbar div.Sidebar div.list i{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*侧边栏*/
body div.tip{
    position: fixed;
    left: 50%;
    bottom: -100px;
    color: white;
    background: rgb(80, 80, 80);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0px 6px 6px hsl(0deg 0% 0% / 0.3);
    transition: background 0.3s linear, box-shadow 0.3s linear, color 0.3s linear, bottom 0.3s linear;
}
body.Dark div.tip{
    color: black;
    background: rgb(255, 255, 255);
    box-shadow: 0px 6px 6px hsl(0deg 0% 0% / 0.3);
}
body div.tip.show{
    bottom: 20px;
}
/*提示*/
body div.API{
    width: 100%;
    min-height: calc(100% - 180px);
    margin-top: 50px;
    display:flex;
    flex-wrap: wrap;
    justify-content:space-around;
    transition: margin-left 0.3s linear, width 0.3s linear;
}
body.SideBar div.API{
    margin-left: 60px;
    width: calc(100% - 60px);
}
body div.API div.list{
    display: flex;
    width: 25%;
    height: 145px;
    min-width: 260px;
    max-width: 345px;
    margin-top: 30px;
    margin-left: 5px;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    box-shadow: 6px 6px 6px hsl(0deg 0% 0% / 0.3);
    transition: box-shadow 0.2s linear, background 0.2s linear;
}
body div.API div.list:hover{
    box-shadow: 10px 10px 10px hsl(0deg 0% 0% / 0.3);
}
body.Dark div.API div.list{
    background: rgb(80, 80, 80);
}
body div.API div.list div.InputPic{
    width: 100px;
    height: 100%;
}
body div.API div.list div.InputPic img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 8px 10px;
}
body div.API div.list div.span{
    flex: 1;
    max-width: calc(100% - 120px);
    padding: 40px 10px;
}
body div.API div.list div.span div{
    width: 100%;
    min-width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
}
body div.API div.list div.span div span{
    white-space: nowrap;
}
body div.API div.list div.span div span.title{
    font-size: 25px;
    font-weight: bold;
}
body div.API div.list div.span div span.introduction{
    font-size: 18px;
}
body div.API div.list div.InputPic div.input{
    width: 52px;
    height: calc(100% - 106px);
    padding: 5px 25px;
}
/*API列表*/
body div.Copyright{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    font-size: 14px;
    transition: margin-left 0.3s linear, width 0.3s linear;
}
body.SideBar div.Copyright{
    margin-left: 60px;
    width: calc(100% - 60px);
}
body div.Copyright:before,body div.Copyright:after{
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: black;
    transition: background 0.1s linear;
}
body.Dark div.Copyright:before,
body.Dark div.Copyright:after{
    background: white;
}
body div.Copyright:before{
    margin-left: 240px;
}
body div.Copyright:after{
    margin-right: 240px;
}
/*Copyright*/
body div.ICP{
    padding-top: 70px;
}
}
/*ICP*/