@charset "utf-8";
/* CSS Document */ :root {
	--primary-color: #282a4e;
	--primary-color-rgb: 40, 42, 78;
	--secondary-color: #005aa0;
	--secondary-color-rgb: 117, 143, 255;
}
/*=============================*/
p {
	padding: 0;
	margin: 0;
	line-height: 1.8em;
}
h1, h2, h3, h4, h5, h6 {
	color: #151a33;
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-weight: bold;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
}
.mt-6 {
	margin-top: 5rem !important
}
.mt-7 {
	margin-top: 7.5rem !important
}
/*----- color -------*/
.bg-zc {
	background-color: #005AA0 !important;
}
.text-gray {
	color: #A7A8B4 !important;
}
.text-orange{
	color: orange;
}
/*----- 阴影 ----*/
.bg-shadow {
	border-radius: 4px;
	box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.04);
	-moz-transition: all 300ms ease-out 0s;
	-webkit-transition: all 300ms ease-out 0s;
	-ms-transition: all 300ms ease-out 0s;
	-o-transition: all 300ms ease-out 0s;
	transition: all 300ms ease-out 0s;
}
/*-------- 块间距 ---------*/
.block-spacing {
	margin-top: 130px;
}
/*--------------------banner-------------------*/
.section-banner {
	background: url("../images/banner.jpg") no-repeat center center;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
.section-banner .text-box {
	padding: 250px 0;
}
@media (max-width: 576px) {
	.section-banner .text-box {
		padding: 150px 30px;
	}
}
/*=============================================*/
/*------------ MAIN ----------*/
.bg-bg {
	background-color: #193F80;
}
.border-radius {
	border-radius: 15px;
}
.border-radius-top {
	border-radius: 15px 15px 0 0;
}
.border-radius-bottom {
	border-radius: 0 0 15px 15px;
}
/*--------------------*/
.bg-blue {
	background-color: #041D55;
}
.box2 {
	position: relative;
}
.box2 .title {
	background: url(../images/title.png) no-repeat center center;
	height: 55px;
	position: absolute;
	width: 100%;
	top: -27px;
	left: 50%;
	transform: translate(-50%, 0%);
}
.box2 .title h3 {
	line-height: 55px;
	font-size: 22px;
}
.box2 h3::before, .box2 h3::after {
	content: '';
	display: inline-block;
	border-top: 2px solid white;
	width: 20px;
	margin: 10px;
}
.box2 .text {
	padding: 60px 50px 30px;
}

.box p {
	font-size: 18px;
	padding: 60px 50px;
}
@media (max-width:576px){
	
	.box2 .text {
	padding: 50px 15px 30px;
}
	.box p {
	font-size: 16px;
	padding: 30px 15px;
}
}
/*-----------------------------------*/

.box3 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	padding-top: 70px;
	padding-bottom: 70px;
}
@media (max-width:576px){
	.box4{
		padding: 70px 20px;
	}
}
.timeline {
	position: relative;
	display: grid;
	gap: 40px;
	padding: 0;
	margin: 0;
	max-width: 600px;
	font-size: 0.75rem;
	line-height: 1;
	color: white;
	list-style-type: none;

}
.timeline .timeline_line {
	position: absolute;
	top: 0;
	left: 6px;
	width: 4px;
	height: 100%;
	background: white;
}
.timeline .timeline_item .info {
	display: grid;
	grid-template-columns: repeat(3, auto) 1fr;
	align-items: center;
	gap: 0.3rem;
}
.timeline .timeline_item .info h4 {
	margin: 0;
}
.timeline .timeline_item .info a {
	text-decoration: none;
	color: #3498db;
}
.timeline .timeline_item .info .dot {
	position: relative;
	width: 16px;
	height: 16px;
	background: #1a1e23;
	border-radius: 50%;
}
.timeline .timeline_item .info .dot::before {
	position: absolute;
	content: "";
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	background: #193F80;
}
.timeline .timeline_item .info .dot::after {
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	width: 16px;
	height: 16px;
	border: 4px solid white;
	border-radius: inherit;
}
.timeline .timeline_item .info .time {
	width: 130px;
	font-size: 18px;
	color: orange;
}
.timeline .timeline_item .info .speaker{
	color: #fff;
	font-size: 16px;
}
.timeline .timeline_item .info h5{
	margin-left: 1.5rem;
	color: #orange;
}
.timeline .timeline_item .content {
	margin: .7rem 0 0 2.9rem;
	line-height: 1.5;
	font-size: 16px;
}
@keyframes expand {
	to {
		clip-path: inset(0 0 0 0);
	}
}