/* 地市成交量统计* 
 * author:zhouzongyi
 * date:2021-11-09 */

*,
::after,
::before {
    box-sizing: border-box;
}

.module {
    text-align: center;
}

.module-hd {
    height: 116px;
    line-height: 116px;
    font-size: 28px;
    font-weight: bold;
    background: url('../images/count-hd.png') no-repeat center center;
}

.module-bd {
    text-align: left;
    text-align: center;
}

/* 时间选择 */
.date {
    position: relative;
}

.date span {
    height: 33px;
    line-height: 33px;
}

.date-chose .date-item {
    float: left;
    width: 87px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    position: relative;
}

.date-chose .date-item::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 23px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.date-chose .date-item .date-text {
    display: inline-block;
    height: 33px;
    width: 53px;
    cursor: pointer;
}

.date-chose .date-item.active .date-text {
    background-color: #b01127;
    color: #fff;
}

.date-sel {
    position: absolute;
    top: 4px;
    left: 340px;
    display: none;
}

.date-sel.show {
    display: block;
}

.date-layer {
    position: relative;
}

/* 地区选择 */
.area {
    text-align: left;
}
.area .chosen-container {
    margin-left: 10px;
}

.area .chosen-single {
    color: #aaa;
}

.area .chosen-container-single .chosen-single div {
    width: 42px;
}

.area .chosen-container-single .chosen-single div b {
    background: url('../images/count-chosen-icon.png') center center no-repeat;
}

.area .chosen-container-active.chosen-with-drop .chosen-single div b {
    transform: rotate(180deg);
}

/* 数字滚动特效 */

.number {
    display: inline-block;
    height: 80px;
    line-height: 80px;
    margin-top: 52px;
}

.number span {
    font-size: 20px;
}

.number .unit {
    color: #999;
}

.number .number-list {
    width: 470px;
    height: 80px;
    margin-left: 27px;
    margin-right: 18px;
    background: url('../images/count-number-list.png');
    background-size: 100% 100%;
}

.number-list li {
    float: left;
    width: 50px;
    height: 80px;
    line-height: 80px;
    overflow: hidden;
    font-size: 50px;
    color: #b01127;
    position: relative;
}

.number-list li::before {
    content: '0123456789';
    text-align: center;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: .5em;
    word-break: break-all;
    text-align: center;
    height: 1000%;
    transition: all 2s;
}

.number-list li.n0::before {
    top: 0;
}
.number-list li.n1::before {
    top: -100%;
}
.number-list li.n2::before {
    top: -200%;
}
.number-list li.n3::before {
    top: -300%;
}
.number-list li.n4::before {
    top: -400%;
}
.number-list li.n5::before {
    top: -500%;
}
.number-list li.n6::before {
    top: -600%;
}
.number-list li.n7::before {
    top: -700%;
}
.number-list li.n8::before {
    top: -800%;
}
.number-list li.n9::before {
    top: -900%;
}

.number-list li + li {
    margin-left: 20px;
}

/* echatrs图表 */

.echarts-pie {
    width: 100%;
    height: 724px;
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.echarts-pie .pie-bg {
    position: absolute;
    left: 119px;
    top: 165px;
    z-index: 2;
}

#echarts-pie {
    width: 100%;
    height: 724px;
    position: absolute;
    z-index: 3;
}


