.banner{
    height: auto;
}

.container {
    width: 1200px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.coln {
    display: flex;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    min-height: 300px;
    border-radius: 5px;
    overflow: hidden;
}

.coln .ileft,
.coln .cright {
    box-sizing: border-box;
    padding: 15px 10px;
}

.ileft {
    min-width: 60%;
    flex: 0 0 60%;
}

.imgcon {
    display: flex;
    width: 100%;
    height: 100%;
}

.imgcon .limg {
    flex: 0 0 32%;
    height: 100%;
    margin-right: 9px;
    border: 1px solid #eee;
    box-shadow: 0 0 5px #eee;  
}

.coln_c{
    position: relative;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.coln_c img{
   width: 102px;
   height: 102px;
}

.coln_c span{
    margin-top: 20px;
    display: block;
    color: #000000;
    font-size: 18px;
    top: 50%;
}

.cright {
    min-width: 40%;
    flex: 0 0 40%;
}

.cright .news {
    width: 100%;
}

.coln h2 {
    position: relative;
    color: #333;
    font-weight: 600;
    padding-left: 13px;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 5px;
}

.coln h2::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 18px;
    left: 0;
    top: 10px;
    background-color: #195094;
}

.coln h2 a {
    float: right;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    color: #616161;
}

.coln h2 a:hover {
    color: #195094;
}

.coln .text {
    padding: 10px;
    background-color: rgb(251, 251, 251);
    box-shadow: 0 0 1px rgba(251, 251, 251, .5);
}

.text li {
    width: 100%;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    opacity: 0.6;
}

.text li a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #424141;
}

.text li a:hover {
    color: #303860;
}

.text li a em {
    width: 85px;
    display: inline-block;
    vertical-align: top;
}

.limg img{
    max-width: 100%;
    height: 100%;
}

