/**!
 * 青海公共资源交易中心
 * date:2021-05-01
 * author: zsy;
 */

.text-overflow {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bid-info {
    border: 1px solid #dbe5f1;
    background-image: linear-gradient(to bottom, #f5faff, #f7f8f9);
    background-color: #f5faff;
    border-radius: 5px;
    padding: 18px 20px;
}

.bid-info .bid-item {
    line-height: 40px;
    height: 40px;
    font-size: 16px;
    width: 50%;
}

.bid-info .long-width {
    width: 100%;
}

.bid-item .title {
    color: #838f9d;
    width: 80px;
}

.bid-item .content {
    color: #333;
    max-width: calc(100% - 80px);
}

.progress-box {
    border: 1px solid #d6dce5;
    box-shadow: 0 10px 10px #eff1f4;
    height: 390px;
    padding: 25px 45px 0;
    box-sizing: border-box;
    margin-top: 30px;
    border-radius: 5px;
}

.progress-hd {
    text-align: center;
}

.progress-hd .state {
    display: inline-block;
    font-size: 16px;
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left center;
}

.progress-hd .state+.state {
    margin-left: 40px;
}

.progress-hd .done {
    background-image: url("../images/done_before.png");
}

.progress-hd .undone {
    background-image: url("../images/undone_before.png");
}

.progress-hd .state.propmt {
    margin-left: 70px;
    background-image: url("../images/propmt_icon.png");
}

.progress-list {
    margin-top: 90px;
}

.progress-item {
    height: 200px;
    width: 20%;
}

.progress-item .link {
    display: block;
    position: relative;
    height: 100%;
}

.progress-item .link:before {
    content: "";
    position: absolute;
    background: url("../images/done.png") no-repeat;
    width: 100%;
    height: 10px;
    background-size: 100% auto;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.progress-item .icon {
    display: block;
    background: url("../images/progress_icon.png") no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
}

.progress-item .icon:after {
    content: "";
    width: 1px;
    height: 24px;
    background-color: #ccd2de;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
}

.progress-item.active .num {
    position: relative;
}

.progress-item.active .num:before {
    content: "";
    position: absolute;
    background: url("../images/current_bg.png") no-repeat;
    width: 64px;
    height: 23px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -77px;
}

.progress-item:nth-child(even).active .num:before {
    bottom: -30px;
}

.progress-item.active .icon {
    width: 24px;
    height: 24px;
    background: url("../images/active_icon.png") no-repeat;
}

.progress-item .num {
    width: 58px;
    height: 66px;
    font-size: 40px;
    font-family: "Impact";
    text-align: center;
    line-height: 66px;
    color: #fff;
    background: url("../images/num_bg.png") no-repeat;
}

.progress-item .content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 25px;
}

.progress-item .context {
    margin-left: 20px;
    width: calc(100% - 78px);
}

.progress-item .title {
    font-size: 20px;
    font-weight: bold;
    color: #3078e1;
}

.progress-item .date {
    font-size: 16px;
    color: #acbbca;
    margin-top: 5px;
}

.progress-item:nth-child(even) .content {
    top: auto;
    bottom: 0;
}

.progress-item:nth-child(even) .icon:after {
    top: auto;
    bottom: -23px;
}

.undone-item .num {
    background: url("../images/undone_num_bg.png") no-repeat;
}

.undone-item .icon {
    background: url("../images/undone_icon.png") no-repeat;
}

.undone-item .title {
    color: #8fa0ba;
}

.undone-item .link:before {
    background: url("../images/undone.png") no-repeat;
}