.container{
    background: url(../images/bg.jpg) no-repeat top/100%;
    padding: 0rem 0 120rem;
}

/* 案例详情 */
.content{
    display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */  
    display: -moz-box; /* Firefox 17- */  
    display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */  
    display: -moz-flex; /* Firefox 18+ */  
    display: -ms-flexbox; /* IE 10 */  
    display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */  

    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;

    position: relative;
}
/* 左边内容 */
.content .left{
    border-radius: 30rem;
    width: 980rem;
    padding: 60rem;
    background: #FFFFFF;
    border-radius: 30rem;
    font-size: 20rem;
    line-height: 40rem;
}
.content .left p{
    font-size: 20rem;
    font-weight: 500;
    color: #313344;
    line-height: 40rem;
}
.content .left img{
    width: 100%;
    height: auto!important;
    margin: 10rem auto!important;
    border-radius: 20rem;
}
.content .left video{
    width: 100%;
    margin: 10rem auto!important;
    background-color: #000;
    border-radius: 20rem;
}
/* 右边内容 */
.content .right{
    border-radius: 30rem;
    margin-left: 33rem;
    width: 427rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 45rem 36rem;
    background: #FFFFFF;
    border-radius: 30rem;
}
.content .right h3{
    font-size: 30rem;
    font-weight: bold;
    color: #313344;
    line-height: 40rem;
    margin-bottom: 30rem;
}
.content .right h4{
    font-size: 20rem;
    font-weight: 500;
    color: #858C9A;
    margin: 15rem 0 50rem;
    line-height: 30rem;
}
.content .right .tab span{
    font-size: 18rem;
    font-weight: 500;
    color: #4D55FF;
    background:#E2E0FA;
    border-radius: 360px;
    padding:6rem 15rem;
    display: inline-block;
    margin-bottom: 15rem;
    margin-right: 10rem;
}
.content .right .btn{
    display: block;
    width: 100%;
    border-radius: 360px;
    border: 1rem solid #7D83FB;
    padding: 10rem;
    font-size: 23rem;
    font-weight: 500;
    color: #7D83FB;
    text-align: center;
    /* margin-top: 45rem; */
    margin-top: 20rem;
    margin-bottom: 60rem;
}
.content .right .ewm{
    display: block;
    width: 190rem;
    margin: 30rem auto 30rem;
}
.content .right .tips{
    text-align: center;
    font-size: 24rem;
    font-weight: 500;
    color: #7D83FB;
}

/* 推荐案例 */
.example{
    margin-top: 100rem;
}
.example .e-title{
    font-size: 36rem;
    font-weight: bold;
    color: #244CF8;
    line-height: 44rem;
}
/* 案例列表 */
.example_list{
    margin-top: 60rem;
    display: grid;
    grid: auto / 1fr 1fr 1fr;
    grid-gap: 50rem;
}
.example_list li{
    position: relative;
    background: #fff;
    border-radius: 20rem;
    overflow: hidden;
    margin-bottom: 50rem;
    box-shadow: 0 -5rem 54rem rgba(207, 210, 220, 0.6);
}
.example_list li a{
    display: block;
    width: 100%;
}

.example_list .list_img{
    width: 100%;
    height: 440rem;
    overflow: hidden;
    background-color: #454B63;
}
.example_list li:hover img{
    transform: scale(1.1);
}
.example_list .list_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.example_list .list_content{
    height: 200rem;
    width: 100%;
    position: relative; 
}
.example_list .list_content h2{
    position: absolute;
    left: 36rem;
    top: 32rem;
    padding-right: 45rem;
    font-size: 30rem;
    font-weight: bold;
    color: #313344;
    line-height: 44rem;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.example_list .list_content p{
    position: absolute;
    left: 36rem;
    bottom: 32rem;
    font-size: 24rem;
    font-weight: 400;
    color: #858C9A;
    width: 390rem;
    white-space: nowrap;
    overflow: hidden;
}
.example_list .list_content p span{
    margin-right: 24rem;
    white-space: nowrap;
}