.main{
    margin: 150px 0;
}
.main .inner{
    display: flex;
    justify-content: space-between;
}
.main .inner .l-container{
    width: 26.2%;
}
.main .inner .l-container .title{
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(228, 228, 228, .9);
    margin-bottom: 30px;
}
.main .inner .l-container .title h3{
    font-size: 26px;
    color: #000;
}
.main .inner .l-container .title p{
    font-size: 14px;
    color: #696969;
    margin: 40px 0 25px;
}
.main .inner .l-container .title a{
    font-size: 14px;
    color: #3c7de6;
}
.main .inner .l-container .other{
    padding: 43px;
    background-color: #f6f6f6;
}
.main .inner .l-container .other h3{
    font-size: 18px;
    color: #161616;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(22, 22, 22, .2);
}
.main .inner .l-container .other li{
    padding-top: 20px;
    
}
.main .inner .l-container .other li a{
    font-size: 12px;
    color: #696969;
    display: flex;
}
.main .inner .l-container .other li a>span{
    display: block;
    width: 1px;
    height: 12px;
    border-left: 1px solid #696969;
    margin-right: 10px;
}
.main .inner .r-container {
    width: 66.32%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.main .inner .l-container .other li a:hover{
    color: #3c7de6;
}
.main .inner .l-container .other li a:hover span{
    border-left: 1px solid #3c7de6;
}

/*r-container*/

.r-container h2{
    display: flex;
    background-color: #3c7de6;
    height: 60px;
    font-size: 22px;
    line-height: 60px;
    color: #fff;
    padding-left: 20px;
}
.r-container h2 span{
    display: block;
    width: 10px;
    height: 22px;
    background-color: #fff;
    margin: auto 10px;
}
.r-container p{
    margin: 20px 0 50px;
    font-size: 14px;
    line-height: 28px;
    padding:0 10px;
}
.r-container .img img{
    width: 100%;
}
@media screen and (max-width: 980px){
    .main .inner .l-container {
        display: none;
    }
    .main .inner .r-container{
        width: 100%;
    }
    .main{
        margin: 100px 0;
    }
}