/*banner 图样式*/
.banner {
    position: relative;
    display: flex;
    justify-content: center;
    height: 400px;
    margin-top: 10px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.banner-box {
    width: 1200px;
    height: 100%;
    margin: auto;
    position: absolute;
}

.banner-box .banner-text {
    width: 550px;
    height: 135%;
    position: relative;
    /* top: 25%; */
    /* left: 3%; */
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-box .banner-text h1 {
    line-height: 50px;
    font-size: 38px;
    color: black;
}

.banner-box .banner-text h2 {
    font-size: 28px;
    line-height: 70px;
    font-weight: inherit;
    padding-left: 3px;
}

.banner-text .banner-btn {
    padding: 40px 0 0 0;
}

.banner-text .banner-btn a {
    border-radius: 5px;
    padding: 12px 55px;
    cursor: pointer;
    margin: 0px 15px 0 0;
}

.banner-btn a.banner-btn-login {
    background-color: #503691;
    color: white;
    border: 1px solid #503691;
}

.banner-btn a.banner-btn-register {
    border: 1px solid #404040;
    color: #404040;
}
.banner-text .banner-btn a:hover {
    box-shadow: 0 0 3px #929292;
}

.banner-QRcode{
    position: absolute;right: 140px;bottom: 40px;width: 85px;height: 85px;
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

/*flow 图样式*/
.content-flow {
    position: relative;
    display: flex;
    justify-content: center;
    height: 550px;
    /*background-color: #F0F0F0;*/

}

.content-flow-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-flow-box {
    width: 1200px;
    height: 500px;
    margin: auto;
    position: absolute;
    padding-top: 25px;
}

.flow-box-left {
    width: 500px;
    float: left;
    padding: 50px 0 50px 0;
}

.flow-box-left font {
    color: #A4A4A4;
    font-size: 20px;
    font-weight: 300;
}

.flow-box-left h1 {
    line-height: 70px;
}

.flow-box-left p {
    color: #65696B;
}

.flow-box-right {
    height: 500px;
    width: 540px;
    float: right;
}

.flow-box-right img {
    width: 100%;
    height: 100%;
}

.flow-box-middle {
    width: 100%;
    margin-left: -10px;
    /*padding: 0 20px;*/
    /*height: 200px;*/
    position: absolute;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flow-box-middle >div {
    width: 200px;
    cursor: pointer;
    box-shadow: 0px 0px 10px #d1d1d1;
    position: relative;
}

.flow-box-middle>div:hover {
    box-shadow: 0px 0px 10px #a1a1a1;
}

.flow-box-middle img {
    width: 100%;
}


.flow-box-middle .box-title{
    position: absolute;
    top: 20px;
    left: 25px;
}


.content-function {
    width: 100%;
    height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
}

.content-function-top {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
}

.content-function-top img {
    width: 100%;
    height: 100%;
}


.content-function-top-box {
    width: 1200px;
    margin: auto;
    position: absolute;
    padding: 65px 0 0 0;
}

.content-function-top-box font {
    color: #505050;
    font-size: 20px;
    font-weight: 300;
}

.content-function-top-box h1 {
    line-height: 50px;
}


.content-function-middle {
    background-color: white;
    width: 1200px;
    /*height: 500px;*/
    border-radius: 10px;
    margin: auto;
    position: absolute;
    top: 180px;
    box-shadow: 0px 0px 5px #c5c5c5;

}

.function-item {
    width: 349px;
    height: 200px;
    user-select: none;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 25px 25px;
}

.function-item img {
    margin-top: 25px;
    width: 45px;
    height: 45px;
}

.function-item h3 {
    line-height: 60px;
}
.function-item p{
    word-break: break-all;
    color: #65696B;
    width: 95%;
}

.content-service {
    width: 100%;
    height: 425px;
    position: relative;
    display: flex;
    justify-content: center;
}

.content-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-service-box {
    width: 1200px;
    margin: auto;
    position: absolute;
    padding: 45px 0 0 0;
}

.content-service-box-top font {
    color: #A4A4A4;
    font-size: 20px;
    font-weight: 300;
}

.content-service-box-top h1 {
    /*color: white;*/
    line-height: 50px;
}

.content-service-list {
    margin-top: 30px;
}

.service-box-item {
    width: 218px;
    height: 110px;
    position: relative;
    float: left;
    margin: 10px 20px 10px 0;
    cursor: pointer;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    overflow: hidden;
}

.service-box-item img {
    width: 100%;
    height: 100%;
}

.service-box-item-more {
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box-item-more a {
    display: inline-flex;
    align-items: center;
    color: gray;
    cursor: pointer;
}

.service-box-item-more img {
    width: 35px;
    height: 15px;
    margin-left: 8px;
}


.service-box-item:hover{
    box-shadow: 0px 0px 5px #d1d1d1;
}
