
.enter-cont{
    padding-top:50px;
    padding-bottom:50px;
}
.enter-top>p{
	font-size: 26px;
	color: rgb( 51, 51, 51 );
	text-align: left;
	margin-bottom: 30px;
}
.enter-cen p{
	font-size: 16px;
	color: rgb( 51, 51, 51 );
	text-align: left;
	margin-bottom: 30px;
}
.ent-lr{
	/*display: flex;
	justify-content: space-between;
	align-items: flex-start;*/
}
.ec-imgbox{
	width: 100%;
	/*margin-left: 50px;*/
    margin-top:37px;
    text-align: center;
}
.ec-pbox{
	/*width: calc(100% - 400px);
	width: -moz-calc(100% - 400px);
	width: -webkit-calc(100% - 400px);*/
	width: 100%;
}

@media screen and (max-width: 1440px) {
	.enter-cont{
		width: 1000px;
		margin: auto;
	}
}
.ab50{
	margin-bottom: 50px;
	background: #fff;
}
.about-tabbox {
	height: 80px;

}

.about-tabbox>ul>li{
	display: inline-block;
	vertical-align: middle;
	  padding: 5px 20px;
	background-color: rgb( 255, 255, 255 );
	margin-right: 10px;

}
.about-tabbox>ul>li:last-child{
	margin-right: 0;
}
.about-tabbox>ul>li>a{
	display: block;
	height: 100%;
	line-height: 68px;
	font-size: 22px;

	text-align: center;
}
.about-tabbox>ul>li:hover,
.about-tabbox>ul>li.on{
	
	border-bottom: 3px solid transparent;
	border-color: #0058a8;
}
.about-tabbox>ul>li:hover>a,
.about-tabbox>ul>li.on>a{
	color: #0058a8;
}

/* 关于我们页面样式 */
.about-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 24px;
    color: #0058a8;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0058a8;
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* 企业文化样式 */
.culture-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.culture-item {
    width: 30%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.culture-item h3 {
    font-size: 18px;
    color: #0058a8;
    margin-bottom: 15px;
}

.culture-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* 企业荣誉滚动样式 */
.honor-scroll {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.honor-container {
    display: flex;
    animation: scroll 30s linear infinite;
    height: 100%;
}

.honor-item {
    flex: 0 0 200px;
    margin-right: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.honor-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.honor-item p {
    font-size: 14px;
    color: #333;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.honor-scroll:hover .honor-container {
    animation-play-state: paused;
}

/* 响应式样式 */
@media screen and (max-width: 768px) {
    .culture-content {
        flex-direction: column;
    }
    
    .culture-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .honor-scroll {
        height: 250px;
    }
    
    .honor-item {
        flex: 0 0 150px;
        margin-right: 20px;
    }
    
    .honor-item img {
        height: 150px;
    }
}