.logo {
    height: 50px;
    margin-right: 50px;
}
.image-list {

}
.image-list img{   
 width: 100%;
    height: 120px;
    object-fit: cover;
	border-radius:10px;margin:10px;
}
/* 默认针对小屏幕（手机）：固定宽度 200px，高度自适应以防图片变形 */
.home-img {
	object-fit:cover;
    width: 100%;
    height: 200px;
}

/* 当屏幕宽度大于或等于 768px（平板或电脑端）时生效 */
@media (min-width: 768px) {
    .home-img {
        height: auto; /* 大屏恢复自动 */
    }
}
.seg-title {
    text-align: center;
    margin: 50px;
   
}
.seg-title-second {
	margin:20px;
	 color: #006cdd;
	font-size: 25px;
	font-family: 'HelveticaNeueLTProXBlkCn';
}
.text-content {
    line-height: 30px;
}
.footer {
    padding: 20px;
    margin-top: 50px;
    background: #444;
    color: #aaa;
    font-size: 12px;
}
.footer-nav {
    display: flex;
    list-style: none;
    justify-content: center;
    width: 100%
}
.footer-nav li {
    margin: 20px 0;
    padding: 0 20px;
}
.footer-nav li:not(:last-child) {
    border-right: 1px solid #777
}
.footer-nav a {
    text-decoration: none;
    color: #777;
}
.service-block {
    display: flex;
    flex-flow: row wrap;
    justify-content: center
}
.service-item {
    padding: 20px;
	display:flex;
}
.service-item img {
    float: left;
    width: 100px;
    height: 100px;
    margin-right: 20px;
}
.cp-block {
    margin: 50px;
}
.cp-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.cp-item img {
    margin: 20px
}