初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
.easyPieChart {
position: relative;
text-align: center;
}
.easyPieChart canvas {
position: absolute;
top: 0;
left: 0;
}

View File

@@ -0,0 +1,116 @@
#loading{
background-color: #FFF;
height: 100%;
width: 100%;
position: absolute;
z-index: 1;
margin-top: 0px;
top: 0px;
}
#loading-center{
width: 100%;
height: 100%;
position: relative;
}
#loading-center-absolute {
position: absolute;
left: 50%;
top: 50%;
height: 150px;
width: 150px;
margin-top: -75px;
margin-left: -75px;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
}
.object{
width: 15px;
height: 15px;
background-color: #888888;
position: absolute;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
-webkit-animation: animate 0.8s infinite;
animation: animate 0.8s infinite;
}
#object_one {
top: 19px;
left: 19px;
}
#object_two {
top: 0px;
left: 65px;
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}
#object_three {
top: 19px;
left: 111px;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#object_four {
top: 65px;
left: 130px;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
#object_five {
top: 111px;
left: 111px;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
#object_six {
top: 130px;
left: 65px;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#object_seven {
top: 111px;
left: 19px;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
#object_eight {
top: 65px;
left: 0px;
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
@-webkit-keyframes animate {
25% {
-ms-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
75% {
-ms-transform: scale(0);
-webkit-transform: scale(0);
transform: scale(0);
}
}
@keyframes animate {
50% {
-ms-transform: scale(1.5,1.5);
-webkit-transform: scale(1.5,1.5);
transform: scale(1.5,1.5);
}
100% {
-ms-transform: scale(1,1);
-webkit-transform: scale(1,1);
transform: scale(1,1);
}
}

View File

@@ -0,0 +1,120 @@
body {
font: 13px/1.4 'Helvetica Neue', 'Helvetica','Arial', sans-serif;
color: #333;
}
.container {
width: 520px;
margin: auto;
}
h1 {
border-bottom: 1px solid #d9d9d9;
}
.chart {
float: left;
margin: 10px;
}
.percentage,
.label {
text-align: center;
color: #333;
font-weight: 100;
font-size: 1.2em;
margin-bottom: 0.3em;
}
.credits {
padding-top: 0.5em;
clear: both;
color: #999;
}
.credits a {
color: #333;
}
.dark {
background: #333;
}
.dark .percentage-light,
.dark .label {
text-align: center;
color: #999;
font-weight: 100;
font-size: 1.2em;
margin-bottom: 0.3em;
}
.button {
-webkit-box-shadow: inset 0 0 1px #000, inset 0 1px 0 1px rgba(255,255,255,0.2), 0 1px 1px -1px rgba(0, 0, 0, .5);
-moz-box-shadow: inset 0 0 1px #000, inset 0 1px 0 1px rgba(255,255,255,0.2), 0 1px 1px -1px rgba(0, 0, 0, .5);
box-shadow: inset 0 0 1px #000, inset 0 1px 0 1px rgba(255,255,255,0.2), 0 1px 1px -1px rgba(0, 0, 0, .5);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding: 6px 20px;
font-weight: bold;
text-transform: uppercase;
display: block;
margin: auto;
max-width: 200px;
text-align: center;
background-color: #5c5c5c;
background-image: -moz-linear-gradient(top, #666666, #4d4d4d);
background-image: -ms-linear-gradient(top, #666666, #4d4d4d);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#666666), to(#4d4d4d));
background-image: -webkit-linear-gradient(top, #666666, #4d4d4d);
background-image: -o-linear-gradient(top, #666666, #4d4d4d);
background-image: linear-gradient(top, #666666, #4d4d4d);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#4d4d4d', GradientType=0);
color: #ffffff;
text-shadow: 0 1px 1px #333333;
}
.button:hover {
color: #ffffff;
text-decoration: none;
background-color: #616161;
background-image: -moz-linear-gradient(top, #6b6b6b, #525252);
background-image: -ms-linear-gradient(top, #6b6b6b, #525252);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#6b6b6b), to(#525252));
background-image: -webkit-linear-gradient(top, #6b6b6b, #525252);
background-image: -o-linear-gradient(top, #6b6b6b, #525252);
background-image: linear-gradient(top, #6b6b6b, #525252);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b6b6b', endColorstr='#525252', GradientType=0);
}
.button:active {
background-color: #575757;
background-image: -moz-linear-gradient(top, #616161, #474747);
background-image: -ms-linear-gradient(top, #616161, #474747);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#616161), to(#474747));
background-image: -webkit-linear-gradient(top, #616161, #474747);
background-image: -o-linear-gradient(top, #616161, #474747);
background-image: linear-gradient(top, #616161, #474747);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#616161', endColorstr='#474747', GradientType=0);
-webkit-transform: translate(0, 1px);
-moz-transform: translate(0, 1px);
-ms-transform: translate(0, 1px);
-o-transform: translate(0, 1px);
transform: translate(0, 1px);
}
.button:disabled {
background-color: #dddddd;
background-image: -moz-linear-gradient(top, #e7e7e7, #cdcdcd);
background-image: -ms-linear-gradient(top, #e7e7e7, #cdcdcd);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7e7), to(#cdcdcd));
background-image: -webkit-linear-gradient(top, #e7e7e7, #cdcdcd);
background-image: -o-linear-gradient(top, #e7e7e7, #cdcdcd);
background-image: linear-gradient(top, #e7e7e7, #cdcdcd);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e7e7e7', endColorstr='#cdcdcd', GradientType=0);
color: #939393;
text-shadow: 0 1px 1px #fff;
}

View File

@@ -0,0 +1,173 @@
.log-content-block{padding:20px;background-color:#FFF}
.log-content{display:flex;margin-left: 120px;}
.log-step-text{-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;margin-left: 10px;}
.log-step-text-title{
line-height:16px!important;
color:#000!important;
font-size:14px!important;
padding-bottom:8px;
}
.log-step-text-content{color:#999;font-size:12px}
.log-detail{
color:#000;
font-size:12px;
display: flex;
align-items: baseline;
padding-top: 8px;
}
.log-no-block{padding:20px}
.log-body{
margin-left: 60px;
margin-bottom:26px;
display: inline-block;
cursor: pointer;
}
.log-version-date{
left: -120px;
width: 100px;
color: #000 !important;
font-size: 16px !important;
}
.layui-timeline-axis{
z-index: 1 !important;
}
.layui-icon{
}
.layui-icon.layui-timeline-axis{
color:#fff !important;
width: 12px;
height: 12px;
line-height: 12px;
padding: 2px;
font-size: 9px;
text-align: center;
left:-3px;
}
.load-more .log-step-text-title{
cursor: pointer;
}
.load-more-img{
position: absolute;
width: 20px;
left: -4px;
}
.open{
display: none
}
.item-block-parent {
padding-left: 60px;
box-sizing: border-box;
}
.item-block-btn {
position: absolute;
top: 15px;
right: 15px;
font-size: 12px;
cursor: pointer;
}
/* .item-block-parent .item-block .prompt-block {
position: absolute;
top: 15px;
right: 15px;
font-size: 12px;
cursor: pointer;
}
.item-block-parent .item-block .prompt-block .prompt {
width: auto;
height: auto;
line-height: unset;
}
.item-block-parent .item-block .prompt-block .prompt-box {
top: 30px;
left: -50px;
width: 150px;
}
.prompt-block .prompt-box:before, .prompt-block .prompt-box:after {
left: 62px;
top: unset;
}
.prompt-block .prompt-box:before {
border-bottom-color: #e4e4e4;
border-right-color: transparent;
top: -25px;
}
.prompt-block .prompt-box:after {
border-bottom-color: #FFFFFF;
border-right-color: transparent;
top: -23px;
} */
.item-block-parent .item-block:hover {
background-color: #f7f8fa;
}
.item-block-parent .item-block-wrap {
align-items: center;
}
.item-block-parent .item-pic {
width: 58px;
height: 58px;
line-height: 58px;
}
.item-block-parent .item-pic img {
vertical-align: top;
}
.item-block-parent .item-con {
height: auto;
}
.item-block-parent .item-con .item-content-title {
margin-bottom: 6px;
}
@media screen and (min-width: 1683px) and (max-width: 1920px) {
.item-block {
width: 27%;
margin-right: 2%;
margin-bottom: 25px;
}
.item-block:nth-child(3n) {
margin-right: 0;
}
.item-block:nth-child(4n),
.item-block:nth-child(5n) {
margin-right: 2% !important;
}
}
@media screen and (max-width: 1682px) {
.item-block {
width: 31.5%;
margin-right: 2%;
margin-bottom: 25px;
}
.item-block:nth-child(2n) {
margin-right: 0;
}
.item-block:nth-child(3n) {
margin-right: 2% !important;
}
}
.layui-layer-page .layui-layer-content {
line-height: 26px;
overflow: auto !important;
}