/* Main */
.main {
    position: relative;
}

.main__fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background-image: url(../img/bg-seccity.jpg);
    background-attachment: fixed;
}

/* Main Search */
.main__search {
    padding: 10px 0 5px 0;
}

/* Main result */
.main_result {
    margin-top: 20px;
}

.main__result--wrapper {
    padding: 20px 0;
}

.main__result--header {
    list-style: none;
    display: flex;
}

.main__result--header > li:first-child > a {
    text-decoration: none;
    color: #000;
}

.main__result--header > li:first-child > a:hover {
    text-decoration: underline;
    color: #249ce7;
}

.main__result--header > li:first-child::after {
    content: '>';
    font-size: 15px;
    margin: 0 15px 0 10px;
}

.result__header--title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.main__result--total {
    margin-top: 20px;
}

.result__total--content {
    padding: 15px 10px;
    border-radius: 5px;
    box-shadow: 0 0 3px #666;
    background-color: white;
}

.result__total--content > span {
    color: #00b14f;
    font-weight: 500;
}

.main__result--wrapper {
    padding: 20px 0;
}

.main__item--title {
    font-size: 27px;
    font-weight: 500;
}

.main__result--title {
    margin-bottom: 20px;
}

.result__item {
    padding-bottom: 10px;
}

.result__item--wrapper {
    position: relative;
    background-color: white;
    border-radius: 8px;
    display: flex;
    padding: 8px 10px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 3%), 
                0 6px 20px 0 rgb(0 0 0 / 6%);
}

.job-hot-index {
    max-width: 100px;
}

.result__item--wrapper:hover {
    background-color: #c6f4ff;
}

.result__item--img img {
    width: 90px;
    height: 100px;
    border-radius: 6px;
}

.result__item--time {
    margin-top: 5px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 11px;
    color: white;
    background-color: #00b14f;
    text-align: center;
    line-height: 25px;
}

.result__item--name {
    flex: 1;
    padding: 0 10px 0px 15px;
}

.result__name--title {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-top: 0px;
    line-height: 25px;
    text-transform: uppercase;
}

.result__name--save > a{
    text-decoration: none;
    cursor: pointer;
}

.result__name--save:hover > a {
    color: rgb(255, 0, 0, 0.8);
}

.result__name--link {
    text-decoration: none;
    color: #000;
}

.result__name--link:hover {
    text-decoration: underline;
    color: #249ce7;
}

.result__employer--link {
    font-weight: 500;
    text-decoration: none;
    color: #000;
}

.result__employer--link:hover {
    color: #249ce7;
}

.result__icon {
    color: #249ce7;
    width: 20px;
    display: inline-block;
}

.result__date {
    display: inline-flex;
}

.result__date--start {
    margin-right: 30px;
}

.main__result--spotlight > .interested{
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    width: 100%;
}

.result__spotlight--title {
    margin: 0;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: -1px -1px 2px rgb(0, 0, 0, 0.1),
                1px -1px 2px rgb(0, 0, 0, 0.1);
}

.result__spotlight--item .result__item--img > img {
    width: 75px;
    height: 80px;
}

.result__paging--list {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 22px;
    padding-left: 0;
    list-style: none;
}

.result__paging--list li {
    background-color: #fff;
    padding: 6px 12px;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

.result__paging--list li.active {
    background-color: #00b14f;
}

.result__paging--list li.active a {
    color: white;
    font-weight: 500;
}