body {
	font-size: 14px;
	font-family: "Microsoft YaHei";
	color: #333;
	background:#f5f5f6;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

dl {
	margin: 0;
}

dt {
	font-weight: normal;
}

ul,
li {
	list-style-type: none;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

a {
	color: #333;
	text-decoration: none;
	-o-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-decoration: none;
}

a:hover {
	color: #244991;
}

a:focus {
	text-decoration: none;
	color: inherit;
}

img {
	border: 0;
	vertical-align: middle;
	max-width: 100%;
}

table {
	border-collapse: collapse;
}

input,
button,select,textarea {
	border: 0;
	outline: none;
}

/*公共样式勿删除*/
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	zoom: 1;
}
.container{
	width: 1200px;
	margin: 0 auto;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.flex_item {
	flex: 1;
}

.hidden {
	display: none;
}
/**/
.header{
	font-weight: bold;
}

.header .top{
	padding-top: 20px;
}
.header .top .dropdown{
	position: relative;
}
.header .top .dropdown>span{
	border-radius: 20px;
	display: inline-block;
	position: relative;
	padding: 6px 25px 6px 6px;
	color: #2d52a0;
}
.header .top .dropdown>span::after{
	content: '';
	display: inline-block;
	vertical-align: middle;
	width:0;
	height:0;
	border-right:5px solid transparent;
	border-left:5px solid transparent;
	border-top:5px solid #2d52a0;
	position: absolute;
	right: 8px;
	top:50%;
	transform: translate(0,-50%);
}
.header .top .dropdown ul{
	position: absolute;
	text-align: center;
	padding: 5px 0;
	left: 0;
	top: 100%;
	z-index: 10;
	display: none;
	line-height: 24px;
	background: #f5f5f6;
	width: 100%;
}
.header .top .dropdown:hover ul{
	display: block;
}
.header .top .login{
	display: inline-block;
	background: #fff;
	border-radius: 20px;
	color: #2d52a0;
	margin: 0 20px;
	padding: 5px 10px;
}
/* .header .top .search{
	padding-left: 20px;
	border-left: 1px solid #ddd;
}
.header .top .search span{
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 25px;
	background: #fff;
	border-radius: 50%;
} */
.header .nav>ul{
	display: flex;
}
.header .nav>ul>li{
	font-size: 16px;
	flex: 1;
	padding: 20px 0;
	position: relative;
}
.header .nav>ul>li>div{
	display: block;
	text-align: center;
	position: relative;
	padding: 10px 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-evenly;

}
.header .nav>ul>li.on>div,.header .nav>ul>li:hover>div{
	color: #244991;
}
.header .nav>ul>li.on>div::after,.header .nav>ul>li:hover>div::after{
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #244991;
	position: absolute;
	left: 0;
	bottom: 0;
}
.header .nav>ul>li.on i,.header .nav>ul>li:hover i{
	border-top:5px solid #244991;
}
.header .nav>ul>li i{
	display: inline-block;
	vertical-align: middle;
	width:0;
	height:0;
	border-right:5px solid transparent;
	border-left:5px solid transparent;
	border-top:5px solid #cccccc;
}
.header .nav>ul>li:hover ol{
	display: block;
}
.header .nav ol{
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	display: none;
	z-index: 10;
	background: #f5f5f6;
	padding: 5px 5px 5px 15px;
}
.header .nav ol.lg{
	width: 415px;
}
.header .nav ol.lg li{
	float: left;
	width: 45%;
	padding: 0 10px 15px 10px;
}
.header .nav ol.lg li:nth-child(even){
	width: 55%;
}
.header .nav ol li{
	padding-bottom: 15px;
	cursor: pointer;
}
.header .nav ol li div{
	display: block;
	position: relative;
	padding: 7px 10px;
	border-bottom: 1px dotted #999;
}
.header .nav ol li div::before{
	content: '';
	display: block;
	width: 4px;
	height: 16px;
	background: #244991;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}
.footer{
	background: #09459b;
	color: #fff;
}
.footer a{
	color: #a9c7ed;
}
.footer .hd{
	text-align: center;
	background: #00337d;
	font-size: 16px;
	line-height: 120px;
	position: relative;
}
.footer .hd::after{
	content: '';
	width:0;
	height:0;
	border-right:30px solid transparent;
	border-left:30px solid transparent;
	border-top:30px solid #00337d;
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translate(-50%,0);
}
.footer .hd a{
	color: #fff;
	padding: 0 15px;
}
.footer .ft{
	color: #a9c7ed;
	text-align: center;
	font-size: 16px;
	padding: 50px 0;
}
.footer .bd{
	padding-top: 60px;
	line-height: 47px;
}
.footer .bd .left{
	float: left;
	width: 55%;
}
.footer .bd ul{
	color: #a9c7ed;
}
.footer .bd .left li{
	width: 50%;
	float: left;
}
.footer .bd .right{
	float: right;
	width: 45%;
}
.footer .bd h3{
	font-size: 16px;
}
.footer .bd .flex{
	align-items: stretch;
}
.footer .bd .code{
	width: 128px;
	height: 128px;
}
.banner{
	width: 100%;
	overflow: hidden;
}
.banner img{
	/*width: 100%;*/
	width: 1920px;
	height: 515px;
}
.banner .swiper-pagination-bullet,.homepage .a .bd .swiper-pagination-bullet{
	background: #fff;
	opacity: 1;
	border-radius: 0;
	height: 3px;
	width: 15px;
}
.banner .swiper-pagination-bullet-active,.homepage .a .bd .swiper-pagination-bullet-active{
	background: #ff9000;
}
.homepage .title{
	padding: 10px;
}
.homepage .title b{
	font-size: 18px;
	color: #244991;
	border-left: 3px solid #244991;
	padding-left: 10px;
	display: inline-block;
	line-height: 18px;
}
.homepage .more{
	display: inline-block;
	background: #e0eeff;
	font-size: 14px;
	border-radius: 20px;
	padding: 3px 10px;
}
.homepage .box{
	background: #fff;
	border: 1px solid #d9e6ff;
}
.newslist li{
	display: flex;align-items: center;
	line-height: 45px;
	background: url(../images/home_31.png) left center no-repeat;
	padding-left: 15px;
}
.newslist li a{
	display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;
}
.newslist li span{
	color: #999;
}
.homepage img{
	width: 100%;
}
.homepage .row{
	margin: 0 -15px;
}
.homepage .col-5{
	float: left;
	padding: 0 15px;
	width: 53%;
	cursor: pointer;
}
.homepage .col-5 + .col-5{
	width: 47%;
}
.homepage .a .hd .swiper-container{
	text-align: center;
	height: 50px;
	line-height: 50px;
	font-size: 28px;
	font-weight: bold;

}
.hd .swiper-container .swiper-slide{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 1000px;
	margin: 0 auto;
}
.banner .swiper-container{
	width: 1920px;
	/*float: left;*/
	height: 515px;
}
.homepage .a .hd .swiper-button-next:after{
	content: '';
	width:0;
	height:0;
	border-right:5px solid transparent;
	border-left:5px solid transparent;
	border-top:5px solid #999999;
}
.homepage .a .hd .swiper-button-next{
	bottom: 30%;
}
.homepage .a .hd  .swiper-button-prev{
	left: auto;
	right: 10px;
	top: 30%;
}
.homepage .a .hd  .swiper-button-prev:after{
	content: '';
	width:0;
	height:0;
	border-right:5px solid transparent;
	border-left:5px solid transparent;
	border-bottom:5px solid #ff9000;
}
.homepage .a .hd {
	margin: 30px 0;
}
.homepage .a .bd .box{
	padding: 20px;
}
.homepage .a .bd .tabtitle{
	font-weight: bold;
	font-size: 18px;
	position: relative;
	margin-bottom: 15px;
	border-bottom: 2px solid #ecf5ff;
}
.homepage .a .bd .tabtitle .more{
	position: absolute;
	right: 0;
	top: 5px;
}
.homepage .a .bd .tabtitle li{
	cursor: pointer;
	position: relative;
	padding: 5px 15px 20px ;
}
.homepage .a .bd .tabtitle li.on{
	color: #244991;
}
.homepage .a .bd .tabtitle li.on::after{
	content: '';
	border: black;
	width: 100%;
	position: absolute;
	bottom: -2px;
	left: 0;
	height: 2px;
	background: #244991;
}
.homepage .a .bd p{
	position: absolute;
	left: 0;
	font-size: 16px;
	background: rgba(0,0,0,0.5);
	bottom: 0;
	color: #fff;
	line-height: 45px;
	width: 100%;
	padding: 0 15px;
}
.homepage .a .bd .swiper-pagination{
	text-align: right;
	padding-right: 15px;
}
.homepage .a .ft{
	margin: 30px 0 15px;
}
.homepage .b .box{
	padding: 10px;
}
.homepage .b .box + .box{
	margin-top: 21px;
}
.homepage .c{
	margin: 30px 0 15px;

}
.homepage .c .box{
	padding-right: 20px;
	min-height: 331px;
	display: flex;
	align-items: center;
}
.homepage .c img{
	width: 240px;
	height: 253px;
	margin: 0 30px;
}
.homepage .c .ft{
	text-align: right;
	margin-top: 15px;
}
.homepage .c .ft a{
	color: #244991;
}
.homepage .c .tabtitle{
	text-align: center;
	font-size: 18px;
	width: 136px;
}
.homepage .c .tabtitle li{
	padding: 15px 0;
	color: #666666;
	cursor: pointer;
	border-right: 1px solid #d9e6ff;
}
.homepage .c .tabtitle li + li{
	border-top: 1px solid #d9e6ff;
}
.homepage .c .tabtitle li i{
	display: inline-block;
	width: 48px;
	background-image: url(../images/home_39.png);
	background-repeat: no-repeat;
	height: 48px;
}
.homepage .c .tabtitle li.on i{
	background-image: url(../images/home_40.png);
}
.homepage .c .tabtitle li.on {
	color: #244991;
	border-right: 1px solid transparent;
}
.homepage .c .tabtitle li .i2{
	background-position: 0 -115px;
}
.homepage .c .tabtitle li .i3{
	background-position: 0 -223px;
}
.homepage .d .box li{
	float: left;
	width: 25%;
	text-align: center;
}
.homepage .d .box li+li{
	border-left: 1px solid #d9e6ff;
}
.homepage .d .box {
	padding: 30px 0;
}
.homepage .d .box img{
	width: 170px;
	height: 72px;
	margin-bottom: 15px;
}
.homepage .e{
	margin: 30px 0;
}
.homepage .e .tabcontent{
	padding: 20px;
}
.homepage .e .tabtitle{
	position: relative;
	border-bottom: 1px solid #d9e6ff;
}
.homepage .e .tabtitle li{
	line-height: 76px;
	position: relative;
	cursor: pointer;
	font-size: 18px;
	padding: 0 25px;
	border-right: 1px solid #d9e6ff;
}
.homepage .e .tabtitle li.on{
	color: #244991;
}
.homepage .e .tabtitle li.on::after{
	content: '';
	display: block;
	width: 100%;
	border-bottom: 1px solid #fff;
	position: absolute;
	bottom: -1px;
	left: 0;
}
.homepage .e .tabtitle .more{
	position: absolute;
	right: 15px;
}
.homepage .e .right .box{
	padding: 15px;
}
.homepage .f {
	margin-bottom: 30px;
}
.homepage .f .box{
	padding: 15px;
}
.homepage .f li{
	float: left;
	width: 12.5%;
	text-align: center;
	padding: 15px;
}
.homepage .f li img{
	height: 50px;
	width: auto;
	max-width: 100%;
}
.rightside{
	background: #fff;
	border: 1px solid #d9e6ff;
	text-align: center;
	width: 65px;
	position: fixed;
	right: 49%;
	margin-right: -670px;
	/*top: 774px;*/
	bottom: 44px;
	font-size: 12px;
	padding: 0 5px;
}
.rightside li {
	padding: 10px 0;
}
.rightside li +li{
	border-top: 1px solid #d9e6ff;
}
.rightside li a{
	color: #4465aa;
}
.rightside li i{
	display: inline-block;
	width: 33px;
	height: 33px;
	background-image: url(../images/home_19.png);
	background-repeat: no-repeat;
}
.rightside li .i1{
	background-position: 0 5px;
}
.rightside li .i2{
	background-position: 0 -63px;
}
.rightside li .i3{
	background-position: 0 -131px;
}
.rightside.info{
	top: 589px;
}
/**/
.banner-wrapper{
	width: 100%;
	overflow: hidden;
}
.banner_info{
	margin: 0 auto;
	width: 1920px;
	height: 350px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.banner_info dl{
	color: #fff;
	/*width: 740px;*/
	width: 1000px;
	font-size: 20px;
	text-transform: uppercase;
}
.banner_info dl dt{
	font-size: 36px;
}

.infopage{
	padding: 20px 0 50px;
}
.infopage .box{
	background: #fff;
	border: 1px solid #d9e6ff;
}
.infopage .box+.box{
	margin-top: 10px;
}
.infopage .left{
	float: left;
	width: 298px;
}
.infopage .left dl{
	height: 110px;
	color: #fff;
	background: url(../images/1_09.jpg) center no-repeat;
	position: relative;
	font-size: 24px;
	padding: 26px 0 0 30px;
}
.infopage .left dl dd{
	font-size: 13px;
	text-transform: uppercase;
	color: #4d8dc5;
	margin-top: 5px;
}
.infopage .left dl::after{
	content: '';
	width: 0;
	height: 0;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	border-top: 20px solid #09459b;
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translate(-50%,0);
}
.infopage .left dl .pt{
	padding-top: 10px;
}
.infopage .left .box>ul{
	padding: 0 10px;
}
.infopage .left .box>ul>li{
	border-bottom: 1px solid #d9e6ff;
	line-height: 35px;
	font-size: 18px;
	position: relative;
	padding: 20px ;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 25px;
}
.infopage .left .box>ul>li:last-child{
	border: none;
}
.infopage .left .box>ul>li.on::before,.infopage .left .box>ul>li:hover::before{
	content: '';
	width:0;
	height:0;
	border-top:7px solid transparent;
	border-bottom:7px solid transparent;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0,-50%);
	border-left:7px solid #09459b;
}
.infopage .left .box>ul>li.on a,.infopage .left .box>ul>li:hover a{
	color: #09459b;
	font-weight: bold;
}
.infopage .left .box h3{
	line-height: 68px;
	font-size: 18px;
	padding-left: 30px;
	position: relative;
	background: url(../images/1_03.jpg) center no-repeat;
	color: #fff;
}
.infopage .left .box h3.active{
	background: #fff;
}
.infopage .left .box h3.active a{
	color: #09459b;
}
.infopage .left .box h3.active a::after{
	content: '';
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translate(0,-50%);
	border-left: 7px solid #4f7fc3;
}
.infopage .left .box h3 span{
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	text-align: center;
	line-height: 28px;
	background: #164ea0;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -14px;
}
.infopage .left .box h3 span i{
	width:0;
	height:0;
	display: inline-block;
	vertical-align: middle;
	margin-top: -3px;
	border-top:6px solid transparent;
	border-bottom:6px solid transparent;
	border-left:6px solid #fff;
}
.infopage .left .box h3.on span {
	transform: rotate(90deg);
}
.infopage .left .box h3 a{
	display: block;
	color: #fff;
}
.infopage .right{
	float: right;
	width: 864px;
}
.infopage .right .box{
	padding: 0 20px 20px;
}
.infopage .right .title{
	margin-bottom: 15px;
	border-bottom: 3px solid #ecf5ff;
}
.infopage .right .title b{
	display: inline-block;
	color: #244991;
	font-size: 18px;
	border-bottom: 3px solid #244991;
	margin-bottom: -3px;
	padding: 15px 10px;
}
.infopage .right .more{
	display: inline-block;
	background: #e0eeff;
	font-size: 14px;
	border-radius: 20px;
	padding: 3px 10px;
}
/**/
.findlist input,.searchList .input{
	background: #f5f5f6;
	width: 288px;
	height: 35px;
	padding: 0 15px;
	border-radius: 35px;
	margin: 0 15px;
	border: 1px solid #d8eaff;
}
.findlist .btn, .searchList .btn{
	height: 35px;
	border-radius: 35px;
	font-size: 16px;
	background: #244991;
	color: #fff;
	width: 113px;
}
.findlist select{
	background: #f5f5f6;
	width: 180px;
	height: 35px;
	padding: 0 15px;
	-webkit-appearance: none;
	border-radius: 35px;
	border: 1px solid #d8eaff;
}
.findlist .select{
	position: relative;
}
.findlist .select::after{
	content: '';
	width:0;
	height:0;
	border-right:5px solid transparent;
	border-left:5px solid transparent;
	border-top:5px solid #c6dbf3;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0,-50%);
}
.findlist{
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
}
.contenus{
	text-align: center;
}
.contenus h2{
	font-size: 20px;
	padding: 20px 0 30px;
	font-weight: bold;
}
.contenus .table{
	width: 100%;
	border-left: 1px solid #d8eaff;
	border-top: 1px solid #d8eaff;
	line-height: 24px;
}
.contenus .table tr{
	border-bottom: 1px solid #d8eaff;
}
.contenus .table td,.contenus .table th{
	padding: 10px 5px;
	border-right: 1px solid #d8eaff;
}
.contenus .table th{
	background: #ecf5ff;
}
/**/
.newsitem h1{
	font-size: 20px;
	text-align: center;
	padding: 20px 0;
}
.newsitem h4{
	text-align: center;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}
.newsitem p{
	line-height: 30px;
	/*text-indent: 2em;*/
	padding: 15px 0;
}
.newsitem .btn{
	display: block;
	width: 163px;
	line-height: 34px;
	margin:20px auto;
	font-size: 16px;
	color: #fff;
	background: #244991;
	border-radius: 34px;
	text-align: center;
}
.newsitem .newsitem-title{
	text-align: center;
	height: 100px;
	/*line-height: 100px;*/
	border-bottom: 1px solid #cccccc;
	font-size: 24px;
	color: #343434;
	padding: 10px 0;
}
.newsitem .source{
	display: flex;
	align-content: center;
	justify-content: center;
	color: #343434;
	text-align: center;
	margin: 22px auto 36px;
	font-size: 16px;
}
.source .t1{
	color: #9A9A9A;
	padding-left: 15px
}
.source .t2{
	margin-left: 5px;
}
.source .t4{
	margin-left: 5px;
}
.source .t3{
	color: #9A9A9A;
	padding-left: 15px;
	margin: 0 10px;
}
.infopage .right .title.lg{
	border-color: #dddddd;
}
.infopage .right .title.lg b{
	font-size: 24px;
}
.bread span{
	color: #cccccc;
}
.searchbox{
	margin-bottom: 30px;
	padding: 20px;
	background: #fff;
	border: 1px solid #d9e6ff;
}
.searchbox .btn{
	font-size: 16px;
	width: 113px;
	height: 34px;
	border-radius: 34px;
	display: block;
	background: #244991;
	color: #fff;
	margin: 20px auto 0;
}
.searchbox input{
	width: 100%;
	height: 33px;
	border-radius: 33px;
	background: #f5f5f6;
	border: 1px solid #d9eaff;
	padding: 0 15px;
}

.searchbox select{
	width: 100%;
	height: 33px;
	border-radius: 33px;
	background: #f5f5f6;
	border: 1px solid #d9eaff;
	padding: 0 15px;
}


.option select{
	/*隐藏select的下拉图标*/
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	/*通过padding-left的值让文字居中*/
	padding-left: 20px;
}
.option{
	position: relative;
}
.option:after{
	content: "";
	width: 16px;
	height: 8px;
	background: url(../images/arrow.png) no-repeat center;
	background-size: contain;
	/*通过定位将图标放在合适的位置*/
	position: absolute;
	right: 10px;
	top: 40%;
	/*给自定义的图标实现点击下来功能*/
	pointer-events: none;
}

.searchbox>.flex{
	margin: 20px -15px 0;
}
.searchbox>.flex>.flex_item{
	padding: 0 15px;
}
.searchbox>.flex .code{
	width: 80px;
	height: 32px;
	margin-left: 15px;
}
.searchbox .title{
	border-bottom: 2px solid #ecf5ff;
	font-size: 18px;
	color: #244991;
}
.searchbox .title b{
	display: inline-block;
	padding: 0 10px 15px;
	border-bottom: 2px solid #244991;
	margin-bottom: -2px;
}
/**/
.infopage .right_lg{
	float: none;
	width: 100%;
}
.infopage .right .tabtitle{
	margin-bottom: 15px;
	border-bottom: 3px solid #ecf5ff;
}
.infopage .right .tabtitle li{
	cursor: pointer;
	font-size: 18px;
	border-bottom: 3px solid transparent;
	margin-bottom: -3px;
	padding: 15px 10px;
	margin-right: 20px;
}
.infopage .right .tabtitle li.on{
	color: #244991;
	font-weight: bold;
	border-bottom: 3px solid #244991;
}
.form td{
	padding: 15px 5px;
	width: 85px;
}
.redstar{
	color: red;
	vertical-align: middle;
	margin-right: 5px;
}
.form li{
	float: left;
	margin-bottom: 15px;
	width: 25%;
}
.form .input{
	height: 34px;
	border-radius: 34px;
	width: 208px;
	background: #f5f5f6;
	border: 1px solid #d8eaff;
	padding: 0 15px;
}

.form .input.lg{
	width: 360px;
}
.form .input.md{
	width: 300px;
}
.form .btn{
	font-size: 16px;
	width: 113px;
	height: 34px;
	border-radius: 34px;
	background: #244991;
	color: #fff;
	margin-top: 20px;
}
button{
	cursor: pointer;
}
/* 管理系统图片排版 */
.glxt-box{
	width: 739px;
	margin:  -13px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.glxt-item-box{
	margin-top: 60px;
	width:317px;
	height: 257px;
}
.glxt-itme-pic{
	width: 317px;
	height: 217px;
}
.glxt-itme-title{
	height: 17px;
	font-size: 16px;
	color: #333333;
	line-height: 72px;
	text-align: center;
}
.glxt-line{
	margin-top: 10px;
	width: 739px;
	background: #DDDDDD;
}
/*   发展历程页面  */
.history-title{
	text-align: center;
	height: 20px;
	font-size: 20px;
	font-weight: 400;
	color: #333333;
	line-height: 72px;
}
.history-summary{
	margin: 50px auto;
	/*width: 854px;*/
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	line-height: 30px;
}
.history-steps-box{
	margin: -20px auto;
	/*width: 854px;*/
	padding-top: 55px;
}
.history-years-box{
	position: absolute;
	width: 111px;
	height: 111px;
	background-image:url(../images/yearbg.png);
	background-size: 100% 100%;
	border-radius: 50%;
}
.history-years{
	padding-top: 32.5px;
	margin: auto auto;
	width: 46px;
	height: 41px;
	font-size: 20px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 26px;
	text-align: center;
}
.history-desc-box1{
	margin-top: 0px;
	margin-left: 55.5px;
	padding-left: 65.5px;
	padding-bottom: 67px;
	border-left: solid #DEDEDE 5px;
}
.history-desc-box2{
	margin-top: 0px;
	margin-left: 55.5px;
	padding-left: 65.5px;
	padding-bottom: 67px;
}
.history-desc-box3{
	margin-top: 0px;
	margin-left: 55.5px;
	padding-left: 65.5px;
	padding-bottom: 120px;
	border-left: solid #DEDEDE 5px;
}
.history-years-box{
	margin:-40px auto;
}
.history-desc-title{
	height: 18px;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
	line-height: 30px;
}
.history-desc-suorce{
	margin: 28px auto;
	/*width: 714px;*/
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	line-height: 30px;
}
.maxline1{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.maxline2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@tailwind base;
@tailwind components;
@tailwind utilities;


.app-loading {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #f4f7f9;
}

.app-loading .app-loading-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.app-loading .dots {
	display: flex;
	padding: 98px;
	justify-content: center;
	align-items: center;
}

.app-loading .app-loading-title {
	display: flex;
	margin-top: 30px;
	font-size: 30px;
	color: rgba(0, 0, 0, 0.85);
	justify-content: center;
	align-items: center;
}

.app-loading .app-loading-logo {
	display: block;
	width: 300px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.dot {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 48px;
	margin-top: 30px;
	font-size: 32px;
	transform: rotate(45deg);
	box-sizing: border-box;
	animation: antRotate 1.2s infinite linear;
}

.dot i {
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	background-color: #0065cc;
	border-radius: 100%;
	opacity: 0.3;
	transform: scale(0.75);
	animation: antSpinMove 1s infinite linear alternate;
	transform-origin: 50% 50%;
}

.dot i:nth-child(1) {
	top: 0;
	left: 0;
}

.dot i:nth-child(2) {
	top: 0;
	right: 0;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.dot i:nth-child(3) {
	right: 0;
	bottom: 0;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.dot i:nth-child(4) {
	bottom: 0;
	left: 0;
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

@keyframes antRotate {
	to {
		-webkit-transform: rotate(405deg);
		transform: rotate(405deg);
	}
}

@-webkit-keyframes antRotate {
	to {
		-webkit-transform: rotate(405deg);
		transform: rotate(405deg);
	}
}

@keyframes antSpinMove {
	to {
		opacity: 1;
	}
}

@-webkit-keyframes antSpinMove {
	to {
		opacity: 1;
	}
}
