/* 合作案例 */
.job {
    padding-top: 20px;

}
.job .name{
    font-size: 36px;
    font-weight: bold;
    line-height: 160px;
    text-align: center;
    margin-bottom: 20px;
}
.job .list{
    display: flex;
    flex-wrap: wrap;
}
.job .item {
    box-sizing: border-box;
    padding: 30px;
    width: 47%;
    margin: 0px 1%;
    margin-bottom: 36px;
    background-color: #f5f5f5;
    border-radius: 6px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.job .item .left{
    width: 38%;
    margin-right: 20px;
}
.job .item .left img{
    width: 100%;
}
.job .item .right{
    flex: 1;
}

.job .item .pos{
    margin-bottom: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.job .item .pos-name{
    font-weight: bold;
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job .item .wages{
    color: rgb(60, 140, 255);
    font-size: 18px;
}
.job .item ul{
    line-height: 32px;
    font-size: 18px;
}


.job .item .det-btn{
    text-align: right;
    color: #999;
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 18px;

}

/* 产品详情 */
.job-detail{
    padding-top: 50px;
    padding-left: 100px;
    padding-bottom: 30px;
}
.job-detail .name{
    line-height: 30px;
    font-size: 15px;
    font-weight: bold;
}
.job-detail .desc {
    line-height: 24px;

}

.job-detail .desc .tab{
    line-height: 30px;
    margin-top: 22px;
    margin-bottom: 10px;
}


@media screen and (max-width: 800px) {
    .job .name{
        line-height: 40px;
    }

    .job .list{
        padding: 0px 20px;
    }

    .job .item {
        width: 100%;
        margin: 0px;
        margin-bottom: 20px;
    }
    .job-detail {
        padding-top: 20px;
        padding-left: 0px;
    }

    .job-detail .name {
        text-align: center;
    }

    .job-detail .desc {
        padding: 20px;
    }

}

