/*数据分析*/
ul.box-tags {
    border-radius: 2px;
    /*overflow: hidden;*/
    display: flex;
    flex-wrap: wrap;
}

ul.box-tags > li {
    /*display: block;*/
    /*float: left;*/
    padding: 0 1.4rem;
    font-size: 1.2rem;
    line-height: 30px;
    border-collapse: collapse;
    border: 1px solid #e1e1e1;
    color: #666;
    cursor: pointer;
}

ul.box-tags > li.active {
    background: #c10230 !important;
    color: #fff  !important;
    border-color: #c10230  !important;
}

ul.line-tags {

}

ul.line-tags > li {
    display: inline-block;
    margin: 0 1.4rem;
    font-size: 1.3rem;
    color: #999;
    line-height: 30px;
    position: relative;
    cursor: pointer;
}

ul.line-tags > li.active {
    border-bottom: 2px solid #00266d;
    color: #00266d;
    font-weight: 600;
}


.log-list{
    margin:40px auto 20px;

}
.log-list>li{
    font-size:1.2rem;
    padding:0.6rem 0;
    color:#333;
}

/*数据分析结束*/


/*更新报告*/

ul.sub-content {
    background: #f7f8fc;
    width: 95%;
    margin: 10px auto;

    transition: all linear 0.5s;
}

ul.sub-content li {
    padding: 6px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    margin-bottom:0;
}

ul.sub-content li.white {
    background: #fff;
}

/*ul.sub-content li>span{*/
/*    margin:0 20px;*/
/*}*/
ul.sub-content li .control-label {
    text-align: right;
}

ul.sub-content li .form-control {
    width: auto;
    height: 30px;
}

.tag-warning {
    color: #e02f2d;
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(224, 47, 45, 0.2);
    line-height: 2.4rem;
    height: 2.4rem;
    padding: 0 6px;
    border-radius: 2px;
}

.tag-warning:hover {
    background: rgba(194, 14, 47, 0.2);
}

.border-danger {
    border-color: #c20e2f !important;
}

/*更新报告结束*/


/*审批*/
.mask-white {
    background: rgba(255, 255, 255, 0.01);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999
}

.pop-shenpi {
    width: 0;
    position: absolute;
    transition: all 0.5s;
    overflow: auto;
}

.pop-shenpi.open {
    width: 340px;
    transition: all 0.5s;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    z-index:99;
}


.ng-hide {
    height: 0;
    width: 0;
    background-color: transparent;
    top: -200px;
    left: 200px;
}

.status-square:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 5px;
    background:#666;
}

.status-square.status-square-yellow:before {
    background: #ffa743;
}

.status-square.status-square-red:before {
    background: #e02f2d;
}

.status-square.status-square-green:before {
    background: #35c087;
}

.status-square.status-square-blue:before {
    background: #00266D;
}
.status-square.status-square-lightblue:before {
    background: #1d84e6;
}


.status-square.c1:before{
    background:#1d84e6;
}
.status-square.c2:before{
    background:#00b3fa;
}
.status-square.c3:before{
    background:#c20e2f;
}

.status-square.c4:before{
    background:#00266d;
}
.status-square.c5:before{
    background:#1232ff;
}

.connection-line:after{
    content:'->';
    display: inline-block;
}
.connection-line:last-child:after{
    content: "";
}
/*审批结束*/


/*工作台*/
.timeline-box {
    position: relative;
    height: 200px;
    width: 90%;
    margin: 10px auto;
}

.dash-line {
    width: calc(100% - 40px);
    height: 58px;
    border: 1px dashed #666;
    border-top: none;
    margin: 32px auto 0;
    position: relative;
}
.dash-line:after{
    content: "";
    position: absolute;
    right: -4px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #666;
}

.timeline {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 90px auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline .point {
    text-align: center;
    position: relative;
}

.timeline .point > img {
    display: block;
    border-radius: 50%;
    margin: 0 auto;
    transition:all 0.5s;
}
.timeline .point > img:hover{
    transform: scale(1.1);
    box-shadow: 2px 5px 5px rgba(0,0,0,0.1);
}

.timeline .point > p {
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -50%;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.timeline .line {
    flex: 1;
    margin: 0 15px 0 2px;
    height: 0;
    border-bottom: 1px dashed #666;
    position: relative;
}

.timeline .line:after {
    content: "";
    position: absolute;
    right: -10px;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid #666;

}

.timeline .desc, .dash-line .desc {
    position: absolute;
    background: #f5f5f5;
    border-radius: 4px;
    text-align: center;
    width: 90px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.timeline .desc:hover, .dash-line .desc:hover{
    transform: scale(1.1);
    box-shadow: 2px 5px 5px rgba(0,0,0,0.1);
}

.timeline .desc:after {
    content: "";
    border-top: 10px solid #f5f5f5;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -5px;
}

.timeline .desc:nth-child(2) {
    left: calc(75% - 45px);
    bottom: 40px;

}

.timeline .desc:nth-child(1) {
    left: calc(25% - 45px);
    bottom: 40px;
}

.timeline-box .desc > h3 {
    font-size: 1.4rem;

}

.timeline-box .desc > h3 > span {
    font-weight: bolder;
}

.dash-line .desc {
    bottom: -77px;
    left: calc(50% - 45px);
}

.dash-line .desc:after {
    content: "";
    border-bottom: 10px solid #f5f5f5;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -5px;

}


.subject-card {
    background: #00266d;
    border-radius: 4px;
    height: 160px;
    padding: 15px;
    position: relative;
    color: #fff;
}

.subject-card h1 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

.subject-card p {
    font-size: 12px;
    font-weight: 100;
}

.pos-left-bottom-1 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.subject-card .up:before {
    content: "";
    border-top: 8px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #4673C8;
    border-left: 4px solid transparent;
    display: inline-block;
    margin-right: 5px;
}

/*工作台结束*/

/*导航*/
.guide {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00266d;
    z-index: 9998;
    color: #fff;
    transition: all linear 0.5s;
    height: 100vh;
}

.guide.ng-hide {
    height: 0;
    width: 0;
    background-color: transparent;
    top: -100%;
    left: -100%;
}

.guide-back {
    margin: 25px auto;
}

.guide-back h1 {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
}

.guide-back .back {
    height: 1.6rem;
    width: auto;
}

.guide-input {
    background: transparent;
    border: 1px solid #043692;
    width: 100%;
    height: 2.8rem;
    line-height: 2.8rem;
    padding-left: 1rem;
}

input.guide-input::placeholder {
    font-size: 12px;
    color: #1C63E7 !important;

}

.guide-nav {
    margin: 2rem auto;
}

.guide-nav > li {
    font-size: 1.5rem;
    font-weight: 500;
}

.guide-nav > li > a {
    color: #fff;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #043692;
}

.guide-sub-menu {
    margin: 1rem auto;
}

.guide-sub-menu > li > a {
    font-size: 1.3rem;
    padding: 1rem 0;
    color: #B2C7FF;
}

.guide-sub-menu > li > ul {
    margin: 1rem auto;
    overflow: hidden;
}

.guide-sub-menu > li > ul > li {
    float: left;
    width: 140px;
    height: 54px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    display: block;
    padding: 1rem;
    cursor: pointer;
    margin-right: 2.2rem;
    margin-bottom: 2.2rem;
}

.guide-sub-menu > li > ul > li:hover {
    background: #fff;
}

.guide-sub-menu > li > ul > li > a {
    display: block;
    font-size: 1.2rem;
    color: #333;
}
.scroll::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: rgb(10, 29, 73);
}

/*定义滚动条轨道 内阴影+圆角*/
.scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0 rgba(0, 64, 125, .3);
    border-radius: 10px;
    background-color: rgba(10, 29, 73, 1);
}

/*定义滑块 内阴影+圆角*/
.scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 0 rgba(46, 198, 255, 0.42);
    background-color: rgba(13,80,217,1);
}


.index-nav {
    padding: 2rem;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;

}

.index-nav > li {
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
}

.index-nav > li > a {
    padding:4px 10px;
    border-radius: 20px;
    color:#00266D;
    background: rgba(255,255,255,0.8);
}

.index-sub-menu {
    padding: 2rem;
}

.index-sub-menu > li {
    display: flex;
    min-height:32px;
}

.index-sub-menu > li > a {
    font-size: 1.3rem;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.index-sub-menu > li > ul {
    overflow: hidden;
    display: inline-block;
}

.index-sub-menu > li > ul > li {
    float: left;
    margin: 0 2.2rem 1.2rem;
}

.index-sub-menu > li > ul > li > a {
    font-size: 1.2rem;
    color: #eee;

}
.index-sub-menu > li > ul > li > a:hover{
    color:#fff;
}
.guide-right{
    padding:0 30px;
    height:100vh;
    border-left:1px solid #043692;

}
.guide-right video{
    width:100%;
    object-fit: contain;
}
.guide-right h1{
    color:#fff;
    font-weight: 500;
    margin:2rem auto;
}
/*导航结束*/
