* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

body {
    font-family: "微软雅黑";
    padding: 10px 20px;
    background: url(../img/mine_bg.png) no-repeat;
    background-size: 100%;
}

.headerBox {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.headerBox .title {
    font-size: 18px;
    font-weight: bold;
    margin-right: 8px;
    color: #1559F9;
    font-style: italic;
    letter-spacing: 1px;
}

.headerBox .des {
    color: black;
    font-size: 14px;
}

#bannerBox {
    margin-top: 10px;
    display: none;
}

#bannerBox img {
    border-radius: 10px;
}

.notice {
    width: 100%;
    background: white;
    margin-top: 10px;
    padding: 10px;
    font-size: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.notice img {
    width: 50px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #DCE7FF;
}

.notice .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.notice .text .title {
    color: #2A384D;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

.notice .text .content {
    color: #98A4B2;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dataCount {
    width: 100%;
    background: white;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.dataCount .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dataCount .top .title {
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: bolder;
    color: #2A384D;
}

.dataCount .top .title img {
    width: 20px;
    margin-right: 5px;
}

.dataCount .top .tabBox {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 10px #eee;
    overflow: hidden;
    font-size: 14px;
}

.dataCount .top .tabBox .content {
    padding: 5px 15px;
    border-radius: 10px;
    color: #3676FC;
}

.dataCount .top .tabBox .content.selected {
    background: #3676FC;
    color: white;
}

.countBox {

}

.countBox .content {
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    background: #EBF8FF;
    border: 1px solid #CDEAFC;
}

.countBox .content .left {
    width: 75%;
}

.countBox .content .left .title {
    font-size: 14px;
    color: #2A384D;
}

.countBox .content .left .countText {
    font-size: 25px;
    margin-top: 5px;
    font-weight: bold;
    color: #3676FC;
}

.countBox .content .left .other {
    font-size: 14px;
    color: #98A4B2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.countBox .content .left .other span {
    width: 50%;
}

.countBox .content .left .big {
    font-size: 22px;
    font-weight: bold;
    color: #2A384D;
}

.countBox .content .right {
    font-size: 14px;
    color: #98A4B2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.countBox .content .right img {
    width: 55px;
}

.updateTime{
    text-align: right;
    color: #a6a6a6;
    font-size: 12px;
    margin-top: 10px;
}