
/* 社长寄语 */
.lead {
    margin-top: 100px;
}
.lead_box>h3 {
    font-size: 32px;
    color: #222;
    font-weight: 400;
    margin: 0;
    text-align: center;
    margin-bottom: 135px;
}
/* 内容 */
.lead_box_ct {
    position: relative;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    padding-top: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lead_box_ct .lead_ct_txt {
    width: 50%;
    height: 50px;
    line-height: 50px;
    background-color: #efefef;
    text-align: center;
    font-size: 22px;
    color: #222;
    margin-bottom: 30px;
}
.lead_box_ct .lead_nr {
    padding: 0 15%;
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 90px;
}
.lead_box_dw {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
	border-radius: 200px;
	overflow: hidden;
}
/* 媒体查询 */
@media screen and (max-width: 992px) {
    .lead {
        margin-top: 60px;
    }
    .lead_box_ct .lead_ct_txt {
        width: 75%;
    }
    .lead_box_ct>p {
        padding: 0 5%;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 768px) {
	.lead_box>h3 { font-size:24px; }
	.lead_box_ct>p { font-size: 14px;}
	.lead_box_ct .lead_nr P { font-size: 14px;}
}