/*=======================企业征信===================*/
/*通用样式*/
.content_main.enterprise_credit {
    font-family: 'PingFang SC';
    .main_mod_title{
        font-size:40px;
        font-weight: 400;
        line-height: 1;
    }
    .main_mod{
        padding:56px 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        .main_mod_content{
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top:60px;
            width: 1200px;
        }
    }
}

/*顶部背景图*/
.enterprise_credit .main_top{
    background-position:50%;
    background-repeat:no-repeat;
    background-size:auto 100%;
    background-color: #d8e4f8;
    .solution_info{
        width:630px;
        .solution_title{
            font-weight: 500;
            font-size: 48px;
            line-height: 1;
            color: #2E3033;
        }
        .solution_desc{
            margin:20px 0px 30px 0px;
            font-size:20px;
            color:#6F6F6F;
            line-height: 30px;
        }
        .btn{
            padding:0 32px;
            margin: 30px 0;
            height:40px;
            line-height: 40px;
            background: #045AFE;
            border-radius: 7px;
            color:#FFFFFF
        }
    }
}

/*优势*/
.enterprise_credit .advantage_list{
    display:flex;
    .module:first-of-type{
        margin-left:0px;
    }
    .module{
        display: flex;
        flex-direction: column;
        align-items: center;
        flex:1;
        margin-left:50px;
        .mod_title{
            line-height:32px;
            font-size:24px;
            font-weight: 500;
        }
        .mod_number{
            display: flex;
            justify-content: center;
            align-items: flex-end;
            margin: 20px 0;
            line-height:100%;
            font-size:36px;
            font-weight: 600;
            img {
                height: 40px;
                margin-right: 5px;
            }
        }
        .mod_content{
            font-size:20px;
            line-height: 32px;
            font-weight: 400;
            color: #737373;
        }
    }
}

/*视频*/
.enterprise_credit .main_video video{
    width: 800px;
}

/*电子保函的六大核心价值*/
.enterprise_credit .reason_list .module{
    display:flex;
    align-items: center;
    width:390px;
    height:215px;
    overflow:hidden;
    margin:5px 5px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #6F6F6F33;
    .inner_img{
        width:60px;
        height: 60px;
        border-radius: 4px;
        margin: 0px 40px;
        img{
            display: block;
            width:100%;
            min-height:100%;
        }
    }
    .inner_info{
        flex:1;
        margin-right: 20px;
        .inner_mod_title{
            margin-bottom:12px;
            font-size:24px;
            line-height:32px;
            font-weight: 600;
        }
        .inner_mod_content{
            font-size:16px;
            line-height:20px;
            font-weight: 400;
            color:#404040;
            p{
                margin-top:10px;
            }
            p:first-of-type{
                margin-top:0px;
            }
        }
    }
}

/*电子签章场景*/
.enterprise_credit .signature_scene_list{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    img {
        width: 1200px;
        margin-top: 20px;
    }
    img:first-of-type {
        margin-top: 0;
    }
}

/*行动号召*/
.enterprise_credit .main_action {
    background: linear-gradient(135deg, #0a93ff 0%, #d8def8 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    .action_content{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 1200px;
        h2 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.3;
        }
        p {
            font-size: 1.3rem;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.8;
        }
        .action_btns{
            .btn {
                margin-left: 10px;
                padding:0 32px;
                height:40px;
                line-height: 40px;
                background: #045AFE;
                border-radius: 7px;
                color:#FFFFFF;
                border: 1px solid #045AFE;
            }
            .btn:first-child{
                margin-left: 0;
            }
            .btn :hover {
                background: #e9ecef;
                transform: translateY(-3px);
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            }
        }
    }
}
.enterprise_credit .main_action:before{
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}
.enterprise_credit .main_action:after{
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}