
/* 新圆点 */
.choose {
    position: absolute;
    margin-top: 143px;
    top: 227.5px;
    right: 50px;
    width: 50px;
    height: 911px;
    white-space: pre-wrap;
    text-align: center;
}

.choose .radio {
    position: relative;
    display: inline-block;
    font-weight: 400;
    color: #0c4757;
    padding-left: 26px;
    cursor: pointer;
}

.choose .radio input {
    position: absolute;
    left: -9999px;
}

.choose .radio i {
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    outline: 0;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    border-radius: 50%;
    transition: border-color .3s;
    -webkit-transition: border-color .3s;
}

.choose .radio input+i:after {
    position: absolute;
    content: '';
    top: 2.5px;
    left: 2.5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #01AF68;
    opacity: 0;
    transition: opacity .1s;
    -webkit-transition: opacity .1s;
}

.choose .radio input:checked+i:after {
    opacity: 1;
}
