.questionnaire-bd {
    padding-top: 10px;
    min-height: 400px;
}
.questionnaire-hd {
    height: 46px;
    background-color: #f4f4f4;
}
.questionnaire-hd .title {
    display: inline-block;
    height: 46px;
    line-height: 46px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.14em;
    padding: 0 24px;
    color: #fff;
    vertical-align: top;
    background: #015193;
}
.questionnaire-item {
    height: 60px;
    box-sizing: border-box;
    line-height: 36px;
    padding: 12px 0;
    font-size: 16px;
    display: flex;
}
.questionnaire-item + .questionnaire-item {
    border-top: 1px dashed #d1d1d1;
}
.questionnaire-info {
    display: flex;
    align-items: center;
    width: calc(100% - 94px - 16px);
}
.questionnaire-text {
    display: flex;
    width: calc(100% - 140px);
    margin-right: 33px;
    transition: color 0.1s linear;
}
.questionnaire-text .text {
    box-sizing: border-box;
    position: relative;
    padding-left: 14px;
    max-width: calc(100% - 72px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.questionnaire-text .text:before {
    position: absolute;
    content: '';
    left: 3px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: #333;
}
.questionnaire-text .status {
    box-sizing: border-box;
    height: 28px;
    line-height: 26px;
    padding: 0 7px;
    margin-left: 8px;
    margin-top: 5px;
}
.questionnaire-text .status.ongoing {
    color: #ff0000;
    background: #ffeeee;
    border: 1px solid #ebcccc;
    border-radius: 2px;
}
.questionnaire-text .status.finished {
    color: #3cb657;
    background: #ecfbeb;
    border: 1px solid #cde7cc;
    border-radius: 2px;
}
.questionnaire-date {
    color: #999;
}
.questionnaire-btn {
    width: 94px;
    height: 36px;
    line-height: 36px;
    margin-left: 16px;
    color: #fff;
    text-align: center;
    background: #015193;
    transition: background-color 0.1s linear;
}
.questionnaire-item:hover .questionnaire-text {
    color: #2a6da4;
}
.questionnaire-btn:hover {
    background-color: #1e8dd6;
}

@media (max-width: 767px) {
    .questionnaire-bd {
        min-height: auto;
    }
    .questionnaire-info {
        width: calc(100% - 60px);
    }
    .questionnaire-item {
        height: 46px;
        padding:5px 0;
        font-size: 13px;
        letter-spacing: -0.5px;
    }
    .questionnaire-text {
        width: calc(100% - 80px);
        margin-right: 3px;
    }
    .questionnaire-btn {
        width: 60px;
        font-size: 12px;
        margin-left: 0;
    }
}

.questionnaire-text a{
	color:#333;
}
.questionnaire-text a:hover{
	color: #2a6da4;
}