/*【背景】 */

body {
    background-color: transparent;
}

.main {
    position: relative;
    min-height: 1700px;
}

.bg {
    padding-top: 1px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg .bg_t,
.bg .bg_b {
    position: absolute;
    width: 1920px;
    left: 50%;
    margin-left: -960px;
}

.bg .bg_t {
    top: 0;
    z-index: 1;
}

.bg .bg_b {
    bottom: 0;
}

.bg {
    width: 1920px;
}

@media screen and (max-width: 1420px) {
    .bg {
        width: 100%;
    }
}

@media screen and (max-width: 1150px) {
    .bg {
        width: 1150px;
    }
}

/* 【文本区域】 */

.text .nav {
    width: 140px;
    position: fixed;
    z-index: 100;
    top: 50%;
    margin-top: -128px;
    left: 125px;
    display: none;
}

.text .all_section .section {
    max-width: 1520px;
    padding-left: 400px;
}

@media screen and (max-width: 1420px) {
    .text .all_section .section {
        padding-right: 0;
        padding-left: 0;
        width: 1110px;
        margin: 0 auto;
    }
    .text .nav {
        display: none !important;
    }
}

@media screen and (max-width: 1150px) {
    .text .all_section .section {
        padding-right: 20px;
        padding-left: 20px;
        width: auto;
    }
}

/*【文本区域】 => 左侧导航 */

.text .nav li a {
    font-size: 24px;
    line-height: 24px;
    padding-left: 5px;
    margin-bottom: 26px;
}

.text .nav li.active a {
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    border-left: 3px solid #d30505;
}

.text .nav li:hover a {
    color: #d30505;
}

/*【文本区域】 => banner */

#banner {
    margin-bottom: 151px;
    position: relative;
    max-width: 1920px;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
}

#banner .info {
    height: 100%;
    width: 1200px;
    padding-top: 24.17%;
    top: 0;
}

#banner .title {
    width: 449px;
    font-size: 72px;
    height: 72px;
    line-height: 72px;
    margin-bottom: 20px;
    color: #333;
}

#banner .title:last-child {
    margin-bottom: 0;
}

#banner .btn {
    width: 89px;
    font-size: 22px;
    line-height: 22px;
    width: 200px;
    height: 60px;
    background-color: #cb1c22;
    box-shadow: 0px 6px 18px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 19px 56px;
    color: #fff;
    margin-top: 70px;
}

/*【文本区域】 => 左侧页面 */

.section {
    padding-right: 20px;
}

.section .title {
    font-size: 36px;
    line-height: 36px;
    height: 36px;
    margin-bottom: 79px;
    font-weight: 600;
}

/*【文本区域】 => 左侧页面 => 福利待遇 */

#welfare {
    margin-bottom: 180px;
}

#welfare .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#welfare .item {
    width: 240px;
    height: 260px;
    background-color: #fafafa;
    border-radius: 6px;
    margin-bottom: 50px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

#welfare .item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

#welfare .item.active {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    font-size: 30px;
}

#welfare .item.active p {
    font-weight: 600;
}

#welfare .item img {
    width: 70px;
    height: 70px;
    margin-bottom: 52px;
}

#welfare .tip_list {
    border-left: 3px solid #d30505;
    padding-left: 10px;
}

#welfare .tip_list .tip_item {
    margin-bottom: 10px;
}

#welfare .tip_list .tip_item span {
    display: inline-block;
    float: left;
    width: 145px;
}

#welfare .tip_list .tip_item .desc {
    padding-left: 145px;
}

/*【文本区域】 => 左侧页面 => 招聘流程 */

#process {
    margin-bottom: 85px;
}

#process .s_info img {
    width: 100%;
    max-width: 1053px;
}

/*【文本区域】 => 左侧页面 => 职业发展 */

#career_develop {
    margin-bottom: 163px;
}

#career_develop .s_info img {
    width: 100%;
    max-width: 1118px;
}

/*【文本区域】 => 左侧页面 => 常见问题 */

#problem {
    padding-bottom: 163px;
}

#problem .apply li {
    margin-top: 29px;
}

#problem .apply li.text_indent p {
    text-indent: 36px;
}

#problem .apply li .p_info {
    display: none;
}

#problem .apply li.active .p_info {
    display: block;
    animation: entry 1s forwards;
}

#problem .apply .a_title {
    font-size: 24px;
    margin-bottom: 15px;
    cursor: pointer;
}

#problem .apply .a_title:hover {
    color: #cb1c22;
}

#problem .apply .p_info {
    font-size: 18px;
    line-height: 30px;
}

#problem .apply li span img {
    transform: rotateZ(-90deg);
}

#problem .apply li.active span img {
    animation: scale_icon 0.3s forwards;
}

@keyframes scale_icon {
    0% {
        transform: rotateZ(-90deg);
    }
    100% {
        transform: rotateZ(0);
    }
}

@keyframes entry {
    0% {
        transform: translateX(60px);
    }
    100% {
        transform: translateX(0);
    }
}

@media screen and (max-width: 640px) {
    .bg {
        width: 100%;
        overflow: hidden;
    }
    .bg .bg_t,
    .bg .bg_b {
        left: 0;
        top: 2.2%;
        width: 190%;
        margin-left: -52%;
    }
    #banner {
        margin-bottom: 110px;
    }
    #banner .info {
        width: 100%;
        padding-top: 120%;
    }
    #banner .title {
        width: 100%;
        font-size: 30px;
        height: 32px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    #banner .btn {
        font-size: 18px;
        line-height: 30px;
        width: 155px;
        height: 47px;
        padding: 0;
    }
    #welfare {
        background: #fff;
        padding-top: 30px;
        margin-bottom: 70px;
    }
    #career_develop {
        margin-bottom: 70px;
    }
    .section .title {
        margin-bottom: 40px;
    }
    #problem .apply .a_title {
        font-size: 22px;
    }
}