/* 内容 */

.center_content {
	background-image: url("../img/center/center_bg.jpg");
	background-position: 0% 0%;
	padding-bottom: 1rem;
}

.content_title {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding-top: 1rem;
	padding-bottom: .25rem;
}

.content_title img {
	width: .8rem;
}

.content_title p {
	font-weight: bold;
	font-size: 0.36rem;
	color: #222222;
	text-align: center;
	font-style: normal;
	text-transform: none;
	padding: 0 .3rem;
}

.title_desc {
	font-weight: 400;
	font-size: .2rem;
	color: #3B3B3B;
	line-height: 34px;
	text-align: center;
	font-style: normal;
	text-transform: none;
	justify-content: center;
}


.content_item {
	display: flex;
	flex-wrap: wrap;
	/*margin: .25rem;*/
	margin-bottom: .25rem;
	gap: 0.3rem;
}

.text,
.image {
	flex: 1;
	padding: 10px;
	width: 100%;
}

.text {}

.text .p1 p{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.18rem;
    color: #3B3B3B;
    line-height: 0.34rem;
	margin-top: 0.42rem;
}

.center_01 {
	border-radius: .15rem;
}

.p1 span {
	color: #066DCC;
	font-weight: bold;
}

.image img {
	max-width: 100%;
	height: auto;
	display: block;
}

.s1 {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 0.5rem;
}

.s1 {
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding-bottom: 0.7rem;
}

.num_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(100%);
}

.num_box_p1 {
	font-family: nd;
	font-weight: bold;
	font-size: 0.6rem;
	color: #066DCC;
}

.num_box_p2 {
	font-family: nd;
	font-weight: bold;
	font-size: 0.4rem;
	color: #066DCC;
}

.num_box_p3 {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.24rem;
	color: #222222;
	margin-top: 0.15rem;
}


.c4_num {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}

.num_box {
	flex: 1;
	display: flex;
	justify-content: center;
}

.num_box .line {
	position: relative;
	width: 1px;
	background: #BCBCBC;
	border-radius: 0px 0px 0px 0px;
	margin-right: .2rem;
}

.num_box .line::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 30%;
	/* 占据上半部分 */
	background: #066DCC;
	/* 灰色 */
	transition: height 0.3s ease, background-color 0.3s ease;
	/* 添加过渡效果 */
}

.num_box .box {
	display: flex;
	flex-direction: column;
	/* width: 3rem; */
}

.num_desc {
	font-size: .2rem;
}

.btn_group {
	margin-top: .5rem;
	padding: .15rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* 自动适应列宽 */
	gap: .25rem;
	/* 按钮间距 */
	grid-auto-flow: row dense;
}

.btn_item {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #007bff;
	border-radius: .5rem;
	background-color: #ffffff;
	font-size: .2rem;
}

.btn_left {
	padding: .2rem .3rem;
	font-weight: bold;
	font-size: .2rem !important;
	color: #222222;
	font-style: normal;
	text-transform: none;
	text-align: center;
}

.btn_right {
	background: linear-gradient(179deg, #2DA9F1 0%, #066DCC 100%);
	border-radius: .4rem;
	padding: .2rem .3rem;
	text-align: center;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	font-weight: bold;
	font-size: .2rem !important;
	color: #FFFFFF;
	font-style: normal;
	text-transform: none;
}

.btn_item:hover {
	/* transform: translateY(-1px); */
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


@media (max-width: 1024px) {
	.content_item {
		flex-direction: column;
	}
	.btn_group {
        grid-template-columns: repeat(1, 1fr);
    }
    .num_wrap{
        justify-content: center;
        gap: 0.4rem;
    }
    .num_box{
        flex: inherit;
    }
    .num_box_p1{
        font-size: 0.4rem;
    }
    .num_box_p3{
        font-size: 0.18rem;
    }
}

/* @media (max-width: 1024px) {
    .top_banner {
        height: 5rem;
    }
    .banner_container {
        max-width: 14rem;
    }
    .banner_text h2 {
        font-size: 1.8em;
    }
    .banner_text p {
        font-size: 0.7em;
    }
} 
*/


.card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(164, 59, 59, 0.05);
	padding: .2rem;
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
}

.fade-in-up {
	opacity: 0;
	transform: translateY(80px);
	transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}



/*2026.1.21*/
.traffic{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.traffic_box{
    width: 7.76rem;
    height: 5.16rem;
    border-radius: .2rem;
    overflow: hidden;
    padding: .43rem .76rem 0 .54rem;
}
.traffic_box.plane{
    background: url('../img/center/plane.png') no-repeat;
    background-size: cover;
}
.traffic_box.rail{
    background: url('../img/center/rail.png') no-repeat;
    background-size: cover;
}
.T-title{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.36rem;
    color: #FFFFFF;
}
.traffic_cont{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: .52rem;
    padding: 0 .29rem;
}
.traffic_item{
    /*width: 2.3rem;*/
}
.traffic_global{
    display: flex;
    align-items: center;
    justify-content: center;
}
.global_div>p:first-child{
    border-bottom: .01rem solid #FFFFFF;
    padding-bottom: .05rem;
    margin-bottom: .07rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFC000;
}
.global_div>p:first-child span{
    font-size: 0.36rem;
    font-weight: bold;
}
.global_div>p:last-child{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    text-align: center;
}
.traffic_item .line1{
    margin-top: .19rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    text-align: center;
}
.traffic_box.rail .traffic_cont{
    padding: 0;
}
.traffic_box.rail .line1{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
}
.industry-img{
    width: 16rem;
    height: 12.41rem;
    margin: .47rem auto 0;
}
.keyan-container{
    position: relative;
    width: 100%;
}
.keyan-container .keyan-img{
    width: 16rem;
    margin: 0 auto;
}
.conBox{
    height: 4rem;
}
#canvas{
    position: absolute;
    height: 5.07rem;
    overflow: hidden;
}
.keyan-img{
    width: 16rem;
    height: 4.06rem;
    margin: .6rem auto 0;
    position: relative;
}
.conBox{
    /*overflow: hidden;*/
}
.conBox canvas{
    width: 100%;
}
.person{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: .35rem;
}
.person-item{
    width: 7.85rem;
    border-radius: .2rem;
    overflow: hidden;
    box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0,0,0,0.1);
    background-color: #ffffff;
}
.p-item-t{
    background: linear-gradient( 180deg, #2DA9F1 0%, #0081CC 100%);
    height: .66rem;
    line-height: .66rem;
    padding: 0 .32rem;
    display: flex;
    align-items: center;
}
.p-item-t img{
    width: .39rem;
    height: .4rem;
    margin-right: .08rem;
    object-fit: contain;
}
.item-tit{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: .66rem;
}
.p-item-cont{
    padding-top: .42rem;
    display: flex;
    justify-content: space-around;
    padding-bottom: .56rem;
}
.number-box>p{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #222222;
}
.number-box>p>span,
.number-box>p>strong{
    font-family: Impact, Impact;
    font-weight: 400;
    font-size: 0.5rem;
    color: #066DCC;
}
.number-box>span{
    font-family: Microsoft YaHei, Microsoft YaHei;
font-weight: 400;
font-size: 0.16rem;
color: #5A5A5A;
margin-top: .08rem;
}