/*大屏*/
*{
    margin: 0;
    padding: 0;
    font-family: PingFangSC-Light, 微软雅黑;
}
body,html{
    width: 100%;
    height: auto;
    color:#333;
    /* overflow: hidden;*/
    background:#142335;
    background-size: 100% 100%;
}
/*各浏览器显示不同，去掉蓝色边框*/
fieldset, img, input, button {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}
img {
    border: 0;
    vertical-align: middle;
}
ul, li {
    list-style: none;
}
a {
    text-decoration: none;
    cursor: pointer;
}
/*清除浮动*/
.clear-both:before, .clear-both:after {
    display: table;
    content: "";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
}
.clearfix {
    *zoom: 1; /*IE/7/6*/
}
.fl{
    float: left;
}
.fr{
    float: right;
}

/*header开始*/
.header{
    width: 100%;
    height: 80px;
    padding:0 20px;
    min-width: 1366px;
    z-index: 10;
    position: relative;
}
.bg_header{
    width: 100%;
    height: 80px;
    background: url(../img/title1.png) no-repeat;
    background-size: 100% 100%;
}
.header>.header_logo{
    padding:18px 10px 10px 0px;
}
.header>.header_logo>a{
    display: block;
}
.header>.header_logo>a>img{
    width:260px;
}

.header>.header_nav{
    margin-left: 20px;
}
.header>.header_nav>ul>li{
    float: left;
    margin-right: 6px;
    position: relative;
}
.header>.header_nav>ul>li>a{
    display: block;
    height: 80px;
    padding:0 10px 0 30px;
    line-height: 80px;
    color:#fff;
}
.header>.header_nav>ul>li>a:hover{
    border-bottom: 4px solid #00827a;
}
.header>.header_nav>ul>li>img{
    float: left;
    position: absolute;
    top: 33px;
    left:10px;
}
.header>.header_nav>ul>li>a.nav_current{
    border-bottom: 4px solid #00827a;
}

.header>.header_myself{
    width: 90px;
    text-align: center;
}
.header>.header_myself>p{
    color:#fff;
    font-size: 13px;
    margin-top: 15px;
}
.header>.header_myself>a{
    color:#fff;
    font-size: 13px;
}

/*左侧*/

/*当月任务统计*/
.floating-div {
    position: absolute;      /* 使用绝对定位 */
    /*top: 100px; */              /* 设置距离顶部 30 像素 */
    /*left: 0;   */               /* 左侧对齐 */
     /*width: 250px;*/   
    height: 95px;
    background-color: rgba(42, 63, 103, 0.2); /* 半透明背景 */
    border-radius: 10px;
    padding: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.dashboard {
    width: 100%;
    height: 100%;
    color: white;
}
.left-header {
    display: flex;
    align-items: center; /* 使内容在垂直方向居中对齐flex-direction: column; */
    justify-content: space-between;
    margin-bottom: 30px;
}
.text-container {
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 20px;
    margin-right: 5px; /* 添加右侧间距 */
}
.value {
    font-size: 20px;
}

.circle_normal {
    width: 50px; /* 设置宽度 */
    height: 50px; /* 设置高度 */
    border-radius: 50%; /* 将边界变为圆形 */
    background-color: transparent; /* 背景色透明 */
    position: relative; /* 相对定位 */
    margin-bottom: 0;
    animation: just_normal 2s ease-in-out infinite alternate;
}
@keyframes just_normal{
    0%{
        border:5px solid rgba(0, 255, 0, 0);
        box-shadow: 0 0 0 rgba(0, 255, 0, 0), 0 0 0 rgba(0, 255, 0, 0) inset;
    }
    100%{
        border:5px solid rgba(0, 255, 0, 1);
        box-shadow: 0 0 70px rgba(0, 255, 0, 7), 0 0 15px rgba(0, 255, 0,0.5) inset;
    }
}
.circle_normal img {
    max-width: 100%; /* 控制图片最大宽度 */
    max-height: 100%; /* 控制图片最大高度 */
    object-fit: cover; /* 等比例缩放图片以适应容器 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 居中显示图片 */
}

.circle_stop {
    width: 50px; /* 设置宽度 */
    height: 50px; /* 设置高度 */
    border-radius: 50%; /* 将边界变为圆形 */
    background-color: transparent; /* 背景色透明 */
    position: relative; /* 相对定位 */
    animation: just_stop 2s ease-in-out infinite alternate;
}
@keyframes just_stop{
    0%{
        border:5px solid rgba(255, 255, 0, 0);
        box-shadow: 0 0 0 rgba(255, 255, 0, 0), 0 0 0 rgba(255, 255, 0, 0) inset;
    }
    100%{
        border:5px solid rgba(255, 255, 0, 1);
        box-shadow: 0 0 70px rgba(255, 255, 0, 7), 0 0 15px rgba(255, 255, 0, 0.5) inset;
    }
}
.circle_stop img {
    max-width: 100%; /* 控制图片最大宽度 */
    max-height: 100%; /* 控制图片最大高度 */
    object-fit: cover; /* 等比例缩放图片以适应容器 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 居中显示图片 */
}

.circle_error {
    width: 50px; /* 设置宽度 */
    height: 50px; /* 设置高度 */
    border-radius: 50%; /* 将边界变为圆形 */
    background-color: transparent; /* 背景色透明 */
    position: relative; /* 相对定位 */
    animation: just_error 2s ease-in-out infinite alternate;
}
@keyframes just_error{
    0%{
        border:5px solid rgba(255, 0, 0, 0);
        box-shadow: 0 0 0 rgba(255, 0, 0, 0), 0 0 0 rgba(255, 0, 0, 0) inset;
    }
    100%{
        border:5px solid rgba(255, 0, 0, 1);
        box-shadow: 0 0 70px rgba(255, 0, 0, 7), 0 0 15px rgba(255, 0, 0, 0.5) inset;
    }
}
.circle_error img {
    max-width: 100%; /* 控制图片最大宽度 */
    max-height: 100%; /* 控制图片最大高度 */
    object-fit: cover; /* 等比例缩放图片以适应容器 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 居中显示图片 */
}
/*当月任务统计 end*/

/*左侧 结束*/




/*默认加载*/
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.8); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#loading-bar {
    width: 50%;
    height: 20px;
    background-color: #444;
    border-radius: 10px;
    overflow: hidden;
}
#loading-progress {
    width: 0%;
    height: 100%;
    background-color: #2B59A6;
    transition: width 0.3s ease-in-out;
}
#loading-text {
    color: white;
    margin-top: 10px;
    font-family: Arial, sans-serif;
}