/* 清除默认样式 */
* {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei";
    box-sizing: border-box;
}

ul, li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

body {
    height: 100vh;
    background: url(../images/bg.jpg) no-repeat center bottom;
    background-size: auto 158px;
}

/* 页面样式 */
.progress-query {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}

.progress-box {
    width: 48.6%;
    margin: 0.7%;
    position: relative;
    border: 1px solid #fff;
}

.show-float .progress-item {
    border: 1px solid #DFE5F5;
    border-radius: 8px 8px 0 0;
}

.progress-item {
    border-radius: 8px;
    height: 80px;
    background: #F5F7FA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.progress-item div {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 15px;
}

.progress-item span {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-box:nth-child(5n+1) .progress-item span {
    background-color: #7FA2F4;
}

.progress-box:nth-child(5n+2) .progress-item span {
    background-color: #5EC8DE;
}

.progress-box:nth-child(5n+3) .progress-item span {
    background-color: #81CDB6;
}

.progress-box:nth-child(5n+4) .progress-item span {
    background-color: #F19998;
}

.progress-box:nth-child(5n+5) .progress-item span {
    background-color: #F9B760;
}

.progress-item span img {
    width: 27px;
}

.progress-item h1 {
    margin-left: 15px;
    display: grid;
}

.progress-item p {
    font-size: 18px;
    color: #333;
}

.progress-item label {
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

.progress-item > img {
    width: 10px;
}

.show-float .progress-item > img {
    transform: rotate(90deg);
}

.float-layer {
    border: 1px solid #DFE5F5;
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0px 4px 3px 0px rgba(19,36,76,0.05);
    padding: 10px;
}

.float-layer a, .third-menu span {
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background: #F5F7FA;
    color: #333;
    font-size: 15px;
}

.show-float .float-layer {
    border-radius: 0 0 8px 8px;
    border-top: 0;
}

/* 二级、三级-样式 */
.second-menu {
    display: flex;
    flex-wrap: wrap;
    display: none;
}

.second-menu a {
    width: 47%;
    margin: 1.5%;
}

.second-menu a:hover{
    background: #5881e3;
    color: #fff;
}

.third-menu {
    display: none;
}

.third-menu .tabs {
    display: flex;
}

.tabs span {
    width: 47%;
    margin: 1.5%;
    position: relative;
    cursor: pointer;
}

.tabs span.current {
    background: #5881e3;
    color: #fff;
}

.tabs span::after {
    width: 0;
    height: 0;
    border: 6px solid transparent;
    content: '';
    border-top-color: #5881e3;
    position: absolute;
    left: 50%;
    bottom: -11px;
    display: none;
}

.tab-content {
    border: 1px solid #DFE5F5;
    margin: 1.5%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    display: none;
}

.tab-content a {
    background: none;
    font-size: 14px;
}

.tab-content a.curr {
    color: #5881E3;
}

.tab-content label {
    color: #3D73F6;
    opacity: 0.15;
}

.user-manual {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    color: #114BD7;
    font-size: 14px;
    font-weight: bold;
}

.user-manual::after {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    content: '';
    border-left-color: #114BD7;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.showFlex {
    display: flex;
}
.showBlock {
    display: block;
}