.content{
    padding-top: 70px;
    padding-bottom: 100px;
}

.jobCellList{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    .jobCellBox{
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        text-decoration: none;
        background: #FFFFFF;
        box-shadow: 0 2px 16px 0 rgba(0,0,0,0.05);
        border-radius: 4px;
        margin-bottom: 15px;
        .jobInfo{
            padding: 25px;
            .jobTitle{
                font-size: 19px;
                color: #333436;
                line-height: 28px;
                font-weight: bold;
            }
            .salaryBox{
                display: flex;
                align-items: center;
                margin-top: 10px;
                .salary{
                    font-size: 23px;
                    color: #F85F5F;
                }
                .labels{
                    display: flex;
                    align-items: center;
                    margin-left: 20px;
                    .label{
                        background: #F1F3F5;
                        border-radius: 6px;
                        padding: 4px 10px;
                        font-size: 13px;
                        line-height: 18px;
                        color: #727476;
                        font-weight: 400;
                        margin-right: 10px;
                    }
                }
            }
            .types{
                margin-top: 10px;
                display: flex;
                align-items: center;
                .type{
                    font-size: 13px;
                    color: #727476;
                    line-height: 13px;
                    font-weight: 300;
                    padding-right: 10px;
                    border-right: solid 1px #727476;
                    &:last-child{
                        border-right: 0;
                        padding-left: 10px;
                    }
                }
            }
        }
        .companyInfo{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background-image: linear-gradient(90deg, #FAFAFA 0%, #FFFFFF 17%);
            padding: 25px;
            width: 476px;
            .logo{
                width: 66px;
                height: 66px;
                margin-right: 20px;
            }
            .infoBox{
                .name{
                    font-size: 19px;
                    color: #333436;
                    line-height: 28px;
                    font-weight: bold;
                }
                .labels{
                    display: flex;
                    align-items: center;
                    margin-top: 8px;
                    .label{
                        background: #F1F3F5;
                        border-radius: 6px;
                        padding: 4px 10px;
                        font-size: 13px;
                        line-height: 18px;
                        color: #727476;
                        font-weight: 400;
                        margin-right: 10px;
                    }
                }
            }
            .desc{
                width: 100%;
                font-size: 13px;
                color: #727476;
                font-weight: 300;
                margin-top: 14px;
            }
        }
        .arrow{
            width: 20px;
            height: 20px;
            position: absolute;
            right: 30px;
            top: 50%;
            margin-top: -10px;
        }
    }
}

.pagination{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 0;
    height: 34px;
}


@media (max-width: 767px) {
    .content{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .jobCellList{
        margin-top: 20px;
        .jobCellBox{
            display: block;
            .jobInfo{
                padding: 15px;
                .jobTitle{
                    font-size: 16px;
                    line-height: 24px;
                }
                .salaryBox{
                    margin-top: 8px;
                    .salary{
                        font-size: 20px;
                    }
                    .labels{
                        .label{
                            padding: 3px 7px;
                            font-size: 11px;
                        }
                    }
                }
            }
            .companyInfo{
                width: auto;
                padding: 15px;
                background-image: linear-gradient(180deg, #FAFAFA 42%, #FFFFFF 58%);
                .logo{
                    width: 50px;
                    height: 50px;
                    margin-right: 15px;
                }
                .infoBox{
                    .name{
                        font-size: 16px;
                        line-height: 24px;
                    }
                    .labels{
                        margin-top: 4px;
                        .label{
                            padding: 3px 7px;
                            font-size: 11px;
                        }
                    }
                }
                .desc{
                    margin-top: 8px;
                    font-size: 12px;
                }
            }
            .arrow{
                display: none;
            }
        }
    }
    .loadMoreBox{
        position: relative;
        text-align: center;
        margin-top: 30px;
    }
    .loadMore{
        display: block;
        margin: auto;
        line-height: 40px;
        text-align: center;
    }
    .loading{
        display: none;
    }
}