*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #333333;
    
}
a:hover{
    color: #7f83f5;
}
.entry-page{
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    background-color: #7C79E5;
}
.entry-page .bottom{
    width: 100%;
    height: 80px;
    flex-shrink: 0;
    text-align: center;
    padding-top: 24px;
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    background-color: #fff;
}
.entry-page .logo{
    margin-top: 40px;
    margin-left: 50px;
    width: 109px;
    height: 20px;
    background-image: url(https://baitong-recruit-pro.oss-cn-chengdu.aliyuncs.com/front_end/reirc_web/dashboard/logo.png);
    background-size: 100%;
    background-repeat: no-repeat;
}
.entry-page .content{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1000px;
    min-height: 600px;
    max-width: 1600px;
    flex-grow: 1;
    background-color: #7C79E5;
    background-image: url(https://baitong-recruit-pro.oss-cn-chengdu.aliyuncs.com/front_end/reirc_home/bg.png);
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size:contain;
}


.entry-page .in .arrow{
    position: relative;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C79E5;
}
.entry-page .in .arrow::after{
    position: absolute;
    top: 6px;
    left: 4px;
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}
.entry-page .text{
    margin-bottom: 100px;
    margin-right: 50px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.entry-page .title{
    font-size: 70px;
    font-weight: 500;
    color: #FFFFFF;
}
.entry-page .in{
    display: flex;
    align-items: center;
    padding-left: 28px;
    width: 229px;
    line-height: 48px;
    background: #FFFFFF;
    border-radius: 24px;
    font-size: 20px;
    font-weight: 600;
    color: #7C79E5;
    cursor: pointer;
}