.flex-h {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

.text-center {
    text-align: center;
}

.visible-lg, .visible-md, .visible-sm, .visible-xs {
    display: none !important;
}

.body_bg {
    background-image: url(../images/banner_bg.png);
    /* background-attachment: fixed; */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

header .logo {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

header .logo img {
    height: 40px;
}

header .logo span {
    font-size: 20px;
    margin-left: 20px;
    padding-left: 15px;
    color: #fff;
}

.main {

    position: relative;
}

.register {
    width: 580px;
    max-height: 80%;
    margin-left: auto;
    margin-right: auto;
    color: #0d3b70;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 9px 0px rgba(101, 173, 218, .7);
    position: fixed;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}
.register .login-type{
    display: flex;
    flex-wrap: wrap;
}
.register .register_type {
    width: 50%;
    fill: #fff;
    color: #fff;
    padding: 40px 15px 35px 40px;
    background: rgba(11, 66, 174, 0.7);
    border: 1px solid #4786e0;
    cursor: pointer;
    border-right-color: #1963ce;
}


.register_type-icon {
    display: block;
    width: 85px;
    height: 85px;
    background-color: #fff;
    border-radius: 100%;
    margin: 0 auto;
    background-size: 70%;
    background-position:center center;
    background-repeat:no-repeat;
}
.register_type-icon.gr{
    background-image:url(../images/gr.png) ;
}
.register_type-icon.dw{
    background-image:url(../images/dw.png) ;
}





.register .register_type h2 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: bold;
}

.register_benefit {
    color: #c6def9;
    line-height: 22px;
    text-align: left;
    min-height: 180px;
}

.register_benefit ul {
    margin-top: 6px;
    margin-left: 24px;
}
.register_benefit ul li {
    list-style: decimal;
    padding: 0;
}
.btn {
    display: inline-block;

    margin-bottom: 0;

}

.register_btns .btn {
    background-color: #4786e0;
    color: #fff;
    display: block;
    line-height: 1.4;
    padding: 12px 20px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}



.register_type:hover .register_type-icon,
.register_type:hover  .register_btns .btn {
    background-color: #f26334;
}


.register_type:hover .register_type-icon.gr{
    background-image:url(../images/grg.png) ;
}

.register_type:hover .register_type-icon.dw{
    background-image:url(../images/dwg.png) ;
}

@media screen and (max-width: 768px) {

    header .logo span {
       display: none;
    }
    .register {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 85%;
        transform: translate(-50%, -48%);
    }
    .register .register_type {
        width: 100%;
        padding: 15px;
    }
    .register_header{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .register_type-icon {
        width: 36px;
        height: 36px;
        margin: 0 10px 0  0;
    }
    .register .register_type h2 {
        margin: 0;
        font-size: 16px;
    }
    .register .register_benefit {
        min-height: auto;
        margin: 20px 0;
    }
}

/* 王小双 2022-11-04 */
.register .register_type{
    padding: 50px 40px;
    box-sizing: border-box;
}
.register .register_type h2{
    margin-top: 20px;
    margin-bottom: 30px;
}
.register_benefit{
    min-height: 120px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    width: 86%;
    margin: 0 auto;
}
@media screen and (max-width: 768px){
    .register .register_benefit {
        min-height: auto;
        margin: 20px auto;
    }
    .register{
        max-height: 76% !important;
        width: 78%;
    }
    .register .register_type {
        padding: 25px 40px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 320px){
    .register{
        max-height: 78% !important;
        width: 78%;
        top: 54%;
    }
    .register .register_type {
        padding: 18px 40px;
    box-sizing: border-box;
    }
    .register .register_benefit {
        min-height: auto;
        margin: 13px auto;
    }
}



