.el-table__body {
    cursor: pointer;
}

.el-table th {
    background-color: transparent !important;
}

.el-table tr:nth-child(odd) {
    background-color: white;
}

.el-table tr:nth-child(even) {
    background-color: transparent;
}

.el-table__body tr:hover {
    transition: box-shadow .5s;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 10px #111111;
    -webkit-box-shadow: 0px 0px 10px #111111;
    -moz-box-shadow: 0px 0px 10px #111111;
}

#tenderList {
    width: 1200px;
    display: none;
    box-sizing: border-box;
}

#tenderList .caption {
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
    color: #808080;
}

#tenderList .filterFactory {
    margin: -40px 0 0;
    float: left;
}

#tenderList .itemTitle {
    margin: 0 0 5px;
    padding: 5px;
    box-sizing: border-box;
    border-top: dashed 1px #808080;
    font-size: 14px;
    color: #808080;
    background: #f0f0f0;
}

#tenderList .itemTitle div:nth-child(1) {
    width: 17%;
    float: left;
}

#tenderList .itemTitle div:nth-child(2) {
    width: 10%;
    float: left;
}

#tenderList .itemTitle div:nth-child(3) {
    width: 33%;
    float: left;
}

#tenderList .itemTitle div:nth-child(4) {
    width: 20%;
    float: left;
}

#tenderList .itemTitle div:nth-child(5) {
    width: 10%;
    float: left;
    text-align: center;
}

#tenderList .itemTitle div:nth-child(6) {
    width: 10%;
    float: left;
    text-align: right;
}

#tenderList .item {
    width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
    display: inline-block;
    border-bottom: dotted 1px #c0c0c0;
    vertical-align: bottom;
}

#tenderList .item div {
    box-sizing: border-box;
    float: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#tenderList .item .block1 .code {
    width: 17%;
    padding: 5px 0;
    color: #303030;
}

#tenderList .item .block1 .factory {
    width: 10%;
    padding: 5px 0;
    color: #303030;
}

#tenderList .item .block2 .title {
    width: 33%;
    padding: 5px 20px 5px 0;
    box-sizing: border-box;
    color: #303030;
}

#tenderList .item .block2 .category {
    width: 20%;
    padding: 5px 20px 5px 0;
    color: #303030;
}

#tenderList .item .block3 .status {
    width: 10%;
    margin: 0;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

#tenderList .item .block3 .date {
    width: 10%;
    margin: 5px 0 0;
    text-align: right;
    font-size: 13px;
    color: #c0c0c0;
}

#tenderList .item a:hover .code,
#tenderList .item a:hover .category,
#tenderList .item a:hover .title,
#tenderList .item a:hover .date {
    color: #cc0000;
}


/*---------- RWD (start) ----------*/

@media screen and (min-width: 1601px) and (max-width: 1920px) {}

@media screen and (min-width: 1367px) and (max-width: 1600px) {}

@media screen and (min-width: 1px) and (max-width: 1200px) {
    #tenderList {
        width: 100%;
    }
    #tenderList .caption {
        font-size: 24px;
    }
    #tenderList .filterFactory {
        width: 80px;
        margin: -50px 0 0;
        float: right;
    }
    #tenderList .filterFactory .colonSign {
        display: none;
    }
    #tenderList .itemTitle {
        display: none;
    }
    #tenderList .item {
        padding: 10px 5px;
        border-bottom: dashed 1px #e0e0e0;
        border-top: dashed 1px #e0e0e0;
    }
    #tenderList .item:nth-child(even) {
        background: #f8f8f8;
    }
    #tenderList .item .block1 {
        width: 100%;
    }
    #tenderList .item .block1 .code {
        width: 60%;
        float: left;
        color: #808080;
    }
    #tenderList .item .block1 .factory {
        width: 40%;
        float: left;
        text-align: right;
        color: #808080;
    }
    #tenderList .item .block2 .title {
        width: 100%;
    }
    #tenderList .item .block2 .category {
        width: 100%;
        font-size: 12px;
        color: #808080;
    }
    #tenderList .item .block3 {
        width: 100%;
        display: inline-block;
        margin: 10px 0 0;
    }
    #tenderList .item .block3 .status {
        width: 30%;
        margin: 0;
        float: left;
        font-size: 12px;
    }
    #tenderList .item .block3 .date {
        width: 70%;
        float: left;
        text-align: right;
    }
}


/*---------- RWD (end) ----------*/