/***** 网站调查模块 *****/

.vote-block {
    width: 652px;
    margin-top: 43px;
}
.vote-block-title {
    position: relative;
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
}

.vote-block-title:before {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 2px;
    background: #2783d9;

    color: #222;
}
.vote-block-title p {
    width: 55%;

    font-size: 16px;
    font-weight: bold;
    color: #222200;
}
.vote-block-title span {
    display: block;
    text-align: right;

    position: absolute;
    top: -4px;
    right: 0;

    width: auto;
    height: 30px;
    line-height: 28px;
    padding: 0 18px;
    font-size: 14px;
    color: #646464;
    border: 1px solid rgba(238,238,238,1);
    border-radius: 4px;
    box-sizing: border-box;
    background-image: linear-gradient(77deg, rgba(254,255,255,0.60) 0%, rgba(232,243,255,0.60) 100%);
}

/******  投票选项列表 S  ******/
    .vote-item-list {
        margin-top: 33px;
        font-size: 14px;
    }
    .vote-item-list li {
        background: #fff;
        border: 1px solid rgba(225,227,234,1);
        box-shadow: 0 5px 16px 0 rgba(6,37,79,0.12);
        border-radius: 4px;

        margin-bottom: 24px;
        padding: 16px 20px 20px;
        box-sizing: border-box;
    }
    .vote-item-list .vote-item-title {
        margin-bottom: 16px;
        position: relative;
    }

    .vote-item-list .vote-item-title p{
        width: 80.819%;
        color: #222;
        line-height: 23px;
    }

    .vote-item-list .vote-item-title input[type=radio]{
        width: 23px;
        height: 23px;
        background: #EDF0F3;
        border: 1px solid rgba(205,205,205,1);
        appearance: none;
        border-radius: 23px;
        cursor: pointer;

        position: absolute;
        top: 0;
        right: 0;
    }
    .vote-item-title input[type=radio]:checked:after{
        display: block;
        content: '';
        position: absolute;
        width: 13px;
        height: 13px;
        border-radius: 13px;
        background: #2783D9;
        right: 4px;
        top: 4px;
    }
    .vote-item-list .vote-item-bar{
        margin-bottom: 12px;
    }
    .vote-item-list .vote-item-bar .vote-data-bar {
        background: #EDF0F3;
        border-radius: 4px;
        height: 23px;
        width: 80.819%;

        float: left;
    }
    .vote-data-bar .vote-data-bar-percent {
        background: #2783D9;
        border-radius: 4px;
        height: 100%;
    }

    .vote-item-list .vote-item-bar .vote-item-bar-data {
        float: right;
        font-size: 14px;
        color: #AAA;
        font-weight: bold;

        line-height: 23px;
    }
/******  投票选项列表 E  ******/

.submit-btn {
    display: block;
    width: 118px;
    height: 44px;
    line-height: 44px;
    margin: 32px auto 31px;
    background: #2783D9;

    color: #fff;
}
