@CHARSET "UTF-8";

/* 小于750分辨率 */
@media screen and (max-width: 750px){
	html{
		min-width: 370px;
	}
	.center_content{
		width: auto;
		height: 100%;
		padding: 0 20px;
		margin: 0 auto;
		overflow: hidden;
		width: calc(100% - 40px);
	}

	/*头部样式*/
	.header .center_content{

	}
	.header .menu_box_button{
		display: block;
		width: 35px;
		height: 26px;
		position: relative;
		margin-left: auto;
	}
	.header .menu_box_button .menu_box_button_item {
		background-color: #FFFFFF;
		height: 2px;
		left: 0;
		position: absolute;
		width: 100%;
		box-sizing: border-box;
		display: inline-block;
		transition: all 0.4s;
	}
	.header .menu_box_button .menu_box_button_item:nth-of-type(1) {
		top: 0;
	}
	.header .menu_box_button.active .menu_box_button_item:nth-of-type(1) {
		height: 2.5px;
		transform: translateY(11.5px) rotate(-45deg);
	}
	.header .menu_box_button .menu_box_button_item:nth-of-type(2) {
		top: 12px;
	}
	.header .menu_box_button.active .menu_box_button_item:nth-of-type(2) {
		opacity: 0;
	}
	.header .menu_box_button .menu_box_button_item:nth-of-type(3) {
		bottom: 1px;
	}
	.header .menu_box_button.active .menu_box_button_item:nth-of-type(3) {
		height: 2.5px;
		transform: translateY(-11.5px) rotate(45deg);
	}
	.header .menu_box{
		flex-direction: column;
		position: fixed;
		top: -100%;
		left: 0;
		right: 0;
		width: 100%;
		background: #09598D;
		transition: .4s;
	}
	.header .menu_box.active{
		top: 76px;
	}
	.header .menu_box .menu_item{
		width: 100%;
		height: 50px;
		min-width: initial;
		padding: initial;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
	.header .menu_box .menu_item.active{
		background: initial;
	}

	/* 底部样式 */
	.footer {
		height: auto;
	}
	.footer .footer_top {
		height: 116px;
		flex-wrap: wrap;
		align-content: center;
	}
	.footer .footer_top>span {
		width: 100%;
		margin-bottom: 12px;
	}
	.footer .footer_top>a {
		margin-left: auto;
		margin-right: 20px;
	}
	.footer .footer_middle{
		display: initial;
		height: auto;
	}
	.footer .footer_middle .footer_middle_left{
		width: 100%;
		text-align: center;
	}
	.footer .footer_middle .footer_middle_left .content{
		width: auto;
		line-height: 20px;
	}
	.footer .footer_middle .footer_middle_right {
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.footer .footer_middle .footer_middle_right .footer_link_box {
		width: 110px;
		margin-bottom: 30px;
		text-align: center;
	}
	.footer .footer_middle .footer_middle_right .footer_link_box.blank {
		display: block;
	}
	.footer .footer_middle .footer_middle_right .footer_link_box + .footer_link_box{
		margin-left: 0;
	}
	.footer .footer_bottom{
		flex-wrap: wrap;
		align-content: center;
	}
	.footer .footer_bottom>div{
		width: 100%;
		text-align: center;
	}
	.footer .footer_bottom>a{
		margin-top: 4px;
		margin-left: 0;
	}
}