* {
    /* 初始化 清除元素的内外边距 */
    padding: 0;
    margin: 0;
    /* 盒子模型 */
    box-sizing: border-box;
    /*清除点击时出现蓝图*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*清除点击元素出现边框*/
    outline: none;
}

/*全局滚动条美化↓*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 20px;
    -webkit-box-shadow: inset 0 0 5px #fff;
    background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px #fff;
    border-radius: 0;
    background: #fff;
}
/*全局滚动条美化↑*/

/*设置盒子居中*/
.box_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*美化弹框↓*/
/*弹框屏幕变化↓*/
.index_alert {
    position: fixed;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

@keyframes index_alert_screen_on {
    0% {
        background: rgba(0, 0, 0, 0);
    }

    100% {
        background: rgba(0, 0, 0, 0.5);
    }
}

@keyframes index_alert_screen_off {
    0% {
        background: rgba(0, 0, 0, 0.5);
    }

    100% {
        background: rgba(0, 0, 0, 0);
    }
}
/*弹框屏幕变化↑*/

/*弹框方框↓*/
.index_alert>.window {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 80vh;
    max-height: 400px;
    border-radius: 10px;
    background: white;
    transform: translate(-50%, -50%);
}

@keyframes index_alert_window_on {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    33% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    66% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes index_alert_window_off {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%)，scale(1);
    }

    33% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}
/*弹框方框↑*/

/*标题*/
.index_alert>.window>.title {
    width: 100%;
    height: 50px;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

/*内容↓*/
.index_alert>.window>.text {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 60px;
    bottom: 50px;
    font-size: 20px;
    font-weight: bold;
    overflow-x: hidden;
    overflow-y: overlay;
}

.index_alert>.window>.text::-webkit-scrollbar {
    width: 3px;
}

.index_alert>.window>.text::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 0 transparent;
    background: grey;
}

.index_alert>.window>.text::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 transparent;
    background: white;
}
/*内容↑*/

/*按钮↓*/
.index_alert>.window>button {
    position: absolute;
    width: 250px;
    height: 30px;
    left: 50%;
    bottom: 10px;
    border: none;
    border-radius: 50px;
    transform: translate(-50%, 0);
    background: linear-gradient(90deg, #00ccff, #0099ff, #0066ff);
}

.index_alert>.window>button:hover {
    background: linear-gradient(90deg, #00ff00, #00cc00, #009900);
}
/*按钮↑*/
/*美化弹框↑*/

/*弹框提示↓*/
#index_alert_tip {
    position: fixed;
    z-index: 1;
    top: 50px;
    left: 50%;
    padding: 5px;
    width: 80vw;
    max-width: 500px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    pointer-events: none;
    transform: translate(-50%, 0);
    display: none;
}

@keyframes index_alert_tip {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/*弹框提示↑*/

/*网页音乐↓*/
/*音乐边框*/
.index_music {
    position: fixed;
    z-index: 10;
    left: -330px;
    bottom: 30px;
    width: 350px;
    height: 100px;
    display: flex;
    background: white;
    border: 1px solid #CCCCCC;
}

/*文字框↓*/
.index_music>div>.text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 62px;
    overflow-x: hidden;
    overflow-y: overlay;
}

.index_music>div>.text::-webkit-scrollbar {
    width: 3px;
}

.index_music>div>.text::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 0 transparent;
    background: grey;
}

.index_music>div>.text::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 transparent;
    background: white;
}
/*文字框↑*/

/*歌名字体*/
.index_music>div>.text>.song {
    color: black;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/*歌手和时间字体*/
.index_music>div>.text>.singer,
.index_music>div>.text>.time {
    color: grey;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/*上一首按钮↓*/
.index_music>div>div>div>.previous_song {
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.index_music>div>div>div>.previous_song:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 13px solid #000;
}

.index_music>div>div>div>.previous_song:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0;
    border-left: 5px solid #000;
}
/*上一首按钮↑*/

/*下一首按钮↓*/
.index_music>div>div>div>.next_song {
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.index_music>div>div>div>.next_song:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 13px solid #000;
}

.index_music>div>div>div>.next_song:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    right: 0;
    border-right: 5px solid #000;
}
/*下一首按钮↑*/

/*切换开关边框*/
.index_music>div>div>.switch {
    position: absolute;
    top: 0;
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*开启音乐按钮↓*/
.index_music>div>div>.switch>.on {
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.index_music>div>div>.switch>.on:after {
    content: "";
    position: absolute;
    top: -1px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 18px solid #000;
}
/*开启音乐按钮↑*/

/*关闭音乐按钮↓*/
.index_music>div>div>.switch>.off {
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.index_music>div>div>.switch>.off:after {
    content: "";
    position: absolute;
    top: -1px;
    width: 3px;
    height: 18px;
    border-left: 8px solid #000;
    border-right: 8px solid #000;
}
/*关闭音乐按钮↑*/

/*音乐进度条*/
.index_music>div>div>.progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

/*隐藏显示音乐控制器*/
.index_music>.display {
    width: 20px;
    height: 100%;
    font-size: 30px;
    font-weight: bold;
    background: #CCCCCC;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #CCCCCC;
}
/*网页音乐↑*/

/*选项卡↓*/
/*选项卡边框*/
.index_tabs {
    position: fixed;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
}

/*默认隐藏选项卡*/
.index_tabs>.box {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    overflow-x: hidden;
    overflow-y: overlay;
}

/*隐藏选项卡缓存*/
#index_tabs_caching {
    display: none;
}

/*选项卡滚动条美化↓*/
.index_tabs>.box::-webkit-scrollbar {
    width: 10px;
}

.index_tabs>.box::-webkit-scrollbar-thumb {
    border-radius: 20px;
    -webkit-box-shadow: inset 0 0 5px #fff;
    background: grey;
}

.index_tabs>.box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 transparent;
    background: transparent;
}
/*选项卡滚动条美化↑*/
/*选项卡↑*/

/*底部版权信息↓*/
.footer {
    margin-top: 100px;
    border-top: 2px solid grey;
}

.footer>.text {
    color: grey;
    font-size: 20px;
    text-align: center;
}
/*底部版权信息↑*/

/*网页顶部边框标题和介绍↓*/
/*顶部边框*/
.index_top_border {
    width: 100%;
    padding: 30px 0;
    text-align: center;
}

/*顶部边框标题*/
.index_top_border>.title {
    color: white;
    font-size: 40px;
    font-weight: 999;
}

/*顶部边框介绍*/
.index_top_border>.introduction {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/*API页面顶部边框标签*/
.index_top_border>.label>span {
    color: white;
    padding: 0 10px;
    margin-left: 5px;
    border-radius: 50px;
}
/*网页顶部边框标题和介绍↑*/

/*大型按钮↓*/
/*按钮方框*/
.big_button {
    position: relative;
    width: 90vw;
    max-width: 350px;
    opacity: 0.8;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 7.5px;
    margin-bottom: 7.5px;
    margin-left: 15px;
    margin-right: 15px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10);
}

/*按钮方框动画*/
.big_button:hover {
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.315, 0.605, 0.375, 0.925);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: big_button;
}

/*按钮方框开始动画*/
@keyframes big_button {
    0% {
        transform: perspective(2000px) rotateX(0) rotateY(0) translateZ(0);
    }

    16% {
        transform: perspective(2000px) rotateX(10deg) rotateY(5deg) translateZ(32px);
    }

    100% {
        transform: perspective(2000px) rotateX(0) rotateY(0) translateZ(65px);
        border-radius: 15px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 0, 0, 0.15);
    }
}

/*按钮标题*/
.big_button>.title {
    color: black;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/*按钮介绍*/
.big_button>.introduction {
    color: grey;
    font-size: 15px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/*按钮标签*/
.big_button>.introduction>span {
    color: white;
    padding: 0 10px;
    margin-left: 5px;
    border-radius: 50px;
}
/*大型按钮↑*/

/*API页面说明↓*/
/*间距*/
.api_page_margin {
    margin: 10px;
}

/*标题*/
.api_page_margin>.title {
    font-size: 30px;
    font-weight: bolder;
    margin-top: 20px;
    background: linear-gradient(90deg, #00ccff, #0099ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*链接*/
.api_page_margin>.text {
    color: #0099ff;
    font-size: 20px;
    word-break: break-all;
}

/*复制图标*/
.api_page_margin>.text>i {
    margin-left: 10px;
}

/*表格↓*/
.table_border {
    width: 100%;
    color: grey;
    font-size: 20px;
    table-layout: fixed;
    word-wrap: break-word;
    border: 3px solid #0099ff;
    border-collapse: collapse;
}

.table_border tr td {
    border: 3px solid #0099ff;
}
/*表格↑*/
/*API页面说明↑*/

/*小型按钮↓*/
.small_button {
    margin: 5px;
    width: 150px;
    height: 30px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    background: linear-gradient(90deg, #99ff00, #66ff00, #33ff00);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10);
}

.small_button:active {
    transform: scale(0.9);
}
/*小型按钮↑*/

/*顶部标题*/
.top_title {
    font-size: 50px;
    font-weight: bolder;
    text-align: center;
    letter-spacing: 10px;
    background: linear-gradient(90deg, #00ccff, #0099ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background: transparent;
}

/*功能标题区域*/
.text_eunctional_area {
    font-size: 30px;
    font-weight: bolder;
    text-align: center;
    background: linear-gradient(90deg, #00ccff, #0099ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*输入框美化↓*/
/*输入框样式*/
.box_center>div>.input_box {
    width: 350px;
    height: 30px;
    font-size: 20px;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
    background: transparent;
    border-bottom: 2px solid #c0c0c0;
}

/*输入框文字提示*/
.box_center>div>label {
    position: absolute;
    bottom: 15px;
    left: 0px;
    color: #808080;
    font-size: 20px;
    pointer-events: none;
    transition: all 0.3s ease;
}

/*输入框文字提示动画*/
.box_center>div>.input_box:focus~label,
.box_center>div>.input_box:valid~label {
    transform: translateY(-25px);
    font-size: 15px;
    color: #2c6fdb;
}

/*输入框动画样式*/
.box_center>div>.input_animation {
    position: absolute;
    bottom: 10px;
    height: 2px;
    width: 100%;
    background: #2c6fdb;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

/*输入框动画*/
.box_center>div>.input_box:focus~.input_animation,
.box_center>div>.input_box:valid~.input_animation {
    transform: scaleX(1);
}
/*输入框美化↑*/

/*中性按钮↓*/
.okay_button {
    width: 360px;
    height: 40px;
    border: none;
    color: black;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00ccff, #0099ff, #0066ff);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10);
}

.okay_button:active {
    transform: scale(0.9);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 0, 0, 0.15);
}
/*中性按钮↑*/

/*卡片文字↓*/
/*卡片*/
.card_text {
    position: relative;
    width: 350px;
    height: 100px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*卡片图标设计*/
.card_text_icon {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    font-size: 50px;
    align-items: center;
    justify-content: center;
}

/*卡片标题1*/
.card_text_title {
    position: absolute;
    top: 10px;
    margin-left: 100px;
    font-size: 25px;
    font-weight: bolder;
}

/*卡片标题2*/
.card_text_title1 {
    position: absolute;
    bottom: 10px;
    margin-left: 100px;
    font-size: 35px;
    font-weight: bolder;
}
/*卡片文字↑*/

/*文本输入框美化*/
.textarea_beautify {
    width: 350px;
    height: 200px;
    resize: none;
    border: none;
    font-size: 20px;
    word-break: break-all;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid #c0c0c0;
}

/*文本输入框底部说明*/
.textarea_explanation {
    width: 350px;
    color: grey;
    font-size: 20px;
    word-break: break-all;
    margin-top: -10px;
    margin-bottom: 10px;
}

/*选择框美化*/
select {
    width: 350px;
    height: 40px;
    border: none;
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #c0c0c0;
}

/*文件上传美化↓*/
/*上传文件选择文件按钮*/
.upload_file_choose {
    position: relative;
    width: 350px;
    height: 30px;
    border-radius: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c0c0c0;
    background: linear-gradient(90deg, #00ccff, #0099ff, #0066ff);
}

/*上传文件隐藏选择文件按钮*/
#upload_file_hide {
    position: absolute;
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 100%;
}

/*上传文件名称限制一行*/
#upload_file_name {
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/*上传文件按钮*/
#upload_file_button {
    width: 350px;
    height: 30px;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #c0c0c0;
}

/*上传文件隐藏按钮*/
#upload_file_button>#upload_file_progress>input {
    width: 350px;
    height: 30px;
    border: none;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.1);
}
/*文件上传美化↑*/

/*接口管理↓*/
/*搜索↓*/
#api_admin>.api_search {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#api_admin>.api_search>input {
    width: 300px;
    height: 30px;
    font-size: 18px;
    border: 2px solid #00ccff;
}

#api_admin>.api_search>button {
    width: 50px;
    height: 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    background: linear-gradient(90deg, #00ccff, #0099ff, #0066ff);
}
/*搜索↑*/

/*接口列表卡片↓*/
#api_admin>div>.card {
    position: relative;
    width: 90vw;
    max-width: 350px;
    opacity: 0.8;
    padding: 10px;
    border-radius: 10px;
    margin-top: 7.5px;
    margin-bottom: 7.5px;
    margin-left: 15px;
    margin-right: 15px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10), 0 0 10px rgba(0, 0, 0, 0.10);
}

#api_admin>div>.card>.button_text {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

#api_admin>div>.card>.button_text>span {
    cursor: pointer;
    padding: 0 10px;
    margin-left: 3px;
    margin-right: 3px;
    border-radius: 50px;
    background: #D3D3D3;
}

#api_admin>div>.card>.title {
    color: black;
    font-size: 25px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

#api_admin>div>.card>.introduction {
    color: grey;
    font-size: 15px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

#api_admin>div>.card>.introduction>span {
    color: white;
    padding: 0 10px;
    margin-left: 5px;
    border-radius: 50px;
}
/*接口列表卡片↑*/
/*接口管理↑*/

/*文件管理↓*/
/*输入框*/
#file_list_input {
    width: 250px;
    height: 30px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid #33ccff;
}

/*输入框按钮*/
#file_list_button {
    width: 50px;
    height: 30px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #33ccff;
}

/*加载提示*/
#file_list,
#file_list_loading {
    position: relative;
    font-size: 20px;
    font-weight: bold;
}

/*字体左对齐*/
#file_list>.left {
    position: absolute;
    left: 0;
    width: 200px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/*字体右对齐*/
#file_list>.right {
    position: absolute;
    right: 0;
    width: 200px;
    text-align: right;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/*字体鼠标手印*/
#file_list>.left>span,
#file_list>.right>span {
    cursor: pointer;
}

/*编辑框↓*/
#file_list_editor {
    width: 100%;
    height: 90vh;
    resize: none;
    border: none;
    font-size: 16px;
    word-break: break-all;
    color: rgba(200, 200, 200);
    background: rgba(50, 50, 50);
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid #33ccff;
}

#file_list_editor::-webkit-scrollbar {
    width: 10px;
}

#file_list_editor::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 0 transparent;
    background: rgba(150, 150, 150);
}

#file_list_editor::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 transparent;
    background: rgba(50, 50, 50);
}
/*编辑框↑*/

/*按钮↓*/
.file_list_button {
    width: 100%;
    height: 50px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    background: #33ccff;
    border-radius: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.file_list_button:active {
    transform: scale(0.9);
}
/*按钮↑*/
/*文件管理↑*/