
/* 内容区*/
.content-wrapper {
    overflow: hidden;
    background-image: url("../images/image_eb/background.png");
}
.content01 {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    margin: 178px auto 304px;
}
.content01-title > img {
    width: 571px;
    height: 146px;
    margin-bottom: 44px;
}
.content01-word {
    width: 570px;
    font: 24px/30px FZLTHK--GBK1-0 MicrosoftYaHei;
    color: white;
    margin-bottom: 45px;
}
.btn-more {
    width: 248px;
    height: 55px;
    background: rgba(87,180,251,1);
    font: 20px/55px FZLTHK--GBK1-0 MicrosoftYaHei;
    color: white;
    text-align: center;
}
.btn-more:hover {
    cursor: pointer;
    opacity: 0.8;
}
.content01 .content-right > img {
    width: 586px;
    height: 480px;
}

/*为企业提供员工福利*/
.content02 {
    width: 1200px;
    margin: 0 auto 135px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.content02 > .content-left > img {
    width: 333px;
    height: 318px;
    margin-right: 130px;
}
.content02-title {
    margin-bottom: 52px;
    font: 43px FZLTHK--GBK1-0 MicrosoftYaHei;
    color: #333;
}
.content02-word {
    width: 600px;
    font: 22px/36px FZLTHK--GBK1-0 MicrosoftYaHei;
    color: #9B9B9B;
}

/*六大特色*/
.charac-list {
    display: flex;
    width: 1200px;
    margin: 0 auto 143px;
}
.charac-item {
    position: relative;
    width: 16.667%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 30px;
}
.icon-wrap > img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    transition: all .5s linear;
}
.charac-word {
    position: relative;
    width: 100%;
    padding-top: 30px;
    border-top: #C4D2DD 2px solid;
    font: 22px FZLTHK--GBK1-0;
    color: #5E5F60;
    text-align: center;
    transition: all .5s linear;
}
.small-dot {
    position: absolute;
    top: 89px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(113,121,128,1);
    box-sizing: border-box;
    z-index: 1;
}

.charac-item:hover .small-dot {
    border: none;
    background: #947BFE;
}

/*八大优势*/
.content03 {
    width: 1200px;
    margin: 0 auto 168px;
}
.content03-title {
    font: 43px FZLTHK--GBK1-0 MicrosoftYaHei;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}
.content03-word {
    font: 22px/36px FZLTHK--GBK1-0 MicrosoftYaHei;
    color: #9B9B9B;
    margin-bottom: 56px;
}
.advant-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.advant-item {
    width: 275px;
    height: 390px;
    padding: 47px 0;
    margin-bottom: 72px;
    box-sizing: border-box;
    background: rgba(255,255,255,1);
    box-shadow: 6px 17px 22px 0px rgba(0,9,76,0.1);
    border-image: linear-gradient(to right,#93CDFF,#9479FE) 5 5;
    border-top: 5px solid transparent;
}
.ad-icon-wrap {
    width: 130px;
    height: 130px;
    margin: 0 auto 28px;
}
.ad-name {
    font: 22px FZLTHK--GBK1-0 MicrosoftYaHei;
    color: #333333;
    margin-bottom: 26px;
    text-align: center;
}
.ad-detail {
    width: 158px;
    margin: 0 auto;
    font: 18px/24px FZLTHK--GBK1-0 MicrosoftYaHei;
    color: #999999;
    text-align: center;
}

/*一些动效*/
.advant-item:hover img {
    animation: mytop 0.5s ease-in;
}
@keyframes mytop {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0px);
    }
}
.charac-item:hover img {
    animation: mybig 0.5s ease-in;
}
@keyframes mybig {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}




