@charset "utf-8";

/* CSS Document */
.cd-main-content {
    background-color: #eaedf9;
}
.wad_1 {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(../img/map_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.con_box {
    width: 16rem;
    margin: 0 auto;
    background: #ffffff70;
}

.content {
    position: relative;
    display: flex;
    min-height: 10rem;
}
.zg_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.experts_wrap_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.8rem 0.3rem;
    align-items: stretch;
}

.experts_img_box{
    width: 3.55rem;
    background: #fff;
    overflow: hidden;
    margin: 0.15rem;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%);
}

.experts_img_box:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 12%);
}

.experts_img_box .e_img_con{
    width: 100%;
    height: 3.87rem;
    overflow: hidden;
    cursor: pointer;
}

.experts_img_box .e_img_con img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.experts_img_box:hover .e_img_con img{
    transform: scale(1.05);
}

.experts_img_box .name_box{
    width: 100%;
    background: #7396D2;
    padding: 0.1rem;
    box-sizing: border-box;
    text-align: center;
}



.experts_img_box .name_box h5{
    font-size: 0.2rem;
    color: #fff;
    font-weight: 100;
}

.experts_img_box .name_box p{
    font-size: 0.14rem;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 0.8rem;
	display: -webkit-box;
	text-align: center;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
}