/*---------- Cover (start) ----------*/
.recruitCover {
    width: 100%;
    height: 750px;
    background: url(../img/recruitCover.jpg) center 30% no-repeat;
    background-size: cover;
}
/*---------- Cover (end) ----------*/

/*---------- Resume (start) ----------*/
.resume {
    padding: 30px;
    text-align: center;
    /* border-top: dashed 5px #fff; */
    /* border-bottom: dashed 5px #fff; */
    background: rgba(0, 128, 255, 0.1);
}

.resume .desp {
    width: 45%;
    margin: 45px 0 0;
    padding: 0 100px 0 0;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    text-align: justify;
    font-size: 20px;
}

.resume .step {
    width: 20%;
    display: inline-block;
    padding: 0 0 20px;
    border: dotted 1px #808080;
    background: rgba(255, 255, 255, 0.6);
}

.resume .step .title {
    padding: 5px 0;
    font-weight: bold;
    color: #fff;
    background: #808080;
}

.resume .step .icon {
    margin: 30px 0 20px;
    color: #c0c0c0;
    transition: transform 0.5s;
}

.resume .step:hover .icon {
    transform: scale(1.2);
}

.resume .step .fileName {
    color: #303030;
}

.resume .stepIcon {
    margin: 0 2% 30px;
    font-size: 52px;    
    color: #808080;
}
/*---------- resume (end) ----------*/

/*---------- Contact (start) ----------*/
.contact {
    margin: 5px 0 30px;
    padding: 0;
    list-style: none;
}

.contact li {
    width: 49.8%;
    margin: 0;
    padding: 40px 30px;
    box-sizing: border-box;
    float: left;
    border: dotted 1px rgba(0, 128, 255, 0.1);
    text-align: center;
    background: rgba(0, 128, 255, 0.1);
}

.contact li:nth-child(odd) {
    margin: 0 0.2% 0 0;
}

.contact li:nth-child(even) {
    margin: 0 0 0 0.2%;
}

.contact li .title {
    margin: 0 0 10px;
    font-size: 20px;
}
/*---------- Contact (end) ----------*/

/*---------- Welfare (start) ----------*/
.welfare {
    list-style: none;
    margin: 0 0 100px;
    padding: 0;
}

.welfare li {
    width: 32%;
    min-height: 300px;
    margin: 10px 16px 10px 0;
    padding: 20px 25px;
    box-sizing: border-box;
    float: left;
    position: relative;
/*    text-align: left;*/
/*    font-size: 14px;*/
    border: dotted 1px rgba(0, 128, 255, 0.1);
    background: rgba(0, 128, 255, 0.1);
    transition: transform 0.5s;    
/*    background: linear-gradient(120deg, rgba(0,121,255,0.1) 0%, rgba(0,121,255,0.05) 100%); */
}

.welfare li:hover {
    transform: scale(1.1);
}

.welfare li:nth-child(n+6) {
    margin: 10px 0;
}

.welfare li .tri1 {
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent #808080 transparent transparent;
}

.welfare li .icon {
    width: 100px;
    height: 100px;
    margin: 5px auto 20px;
    padding: 12px 0 0;
    box-sizing: border-box;
    border: dashed 1px #0088ff;
    border-radius: 100%;
    text-align: center;
    font-size: 52px;
    color: #ff8800;
    color: #0088ff;
    color: #00ccff;    
    background: #fff;
    transition: border 0.5s, color 0.5s;
}

.welfare li:hover .icon {
    border: dashed 1px #ff8800;
    color: #ff8800;
}

.focus {
    margin: 50px 0 50px;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}
/*---------- Welfare (end) ----------*/

/*---------- Gallary (start) ----------*/
.gallary .empty {
    width: 19.5%;
    height: 230px;
    margin: 0.25%;
    display: inline-block;
}

.gallary a {
    width: 19.5%;
    margin: 0.25%;
    display: inline-block;
}

.gallary a .cover {
    width: 100%;
    height: 230px;
    display: inline-block;
    vertical-align: bottom;
}
/*---------- Gallary (end) ----------*/

/*---------- RWD (start) ----------*/
@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .recruitCover {
        height: 600px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    .recruitCover {
        height: 500px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .recruitCover {
        height: 500px;
    }
}

@media screen and (min-width: 1px) and (max-width: 1200px) {
    .recruitCover {
        height: 400px;
        background: url(../img/recruitCover.jpg) 80% 0 no-repeat;
        background-size: cover;
    }
    
    .resume .desp {
        width: 100%;
        margin: 0 0 20px;
        padding: 0;
    }

    .resume .step {
        width: 100%;
    }
    
    .resume .stepIcon {
        margin: 0 2% 0;
        transform: rotate(90deg);
    }
    
    .contact li {
        width: 100%;
        margin: 0;
        padding: 40px 30px;
    }

    .contact li:nth-child(odd) {
        margin: 0 0 10px;
    }

    .contact li:nth-child(even) {
        margin: 0 0 10px;
    }

    /*------------------------------*/
    .welfare li {
        width: 100%;
        min-height: auto;
        margin: 0 0 10px;
        padding: 25px;
    }
    
    /*------------------------------*/
    .gallary .empty {
        display: none;
    }

    .gallary a {
        width: 100%;
        margin: 0 0 10px;
    }

    .gallary a .cover {
        width: 100%;
        height: 300px;
    }
}
/*---------- RWD (end) ----------*/