*{margin:0; padding:0; box-sizing: border-box;}
ul,li {list-style-type:none;}
body {font-family: "Microsoft YAHEI";color:#333;  font-size: 14px;}
a{color:#757575;font:400 /24px "Microsoft YAHEI";text-decoration:none;color: #333333;}
.clear {LINE-HEIGHT: 0; HEIGHT: 0px; VISIBILITY: hidden; CLEAR: both; FONT-SIZE: 0px; OVERFLOW: hidden}
img{vertical-align: top;border:none;}

.content{width: 1200px; margin: 0 auto;}
.left{float: left;}
.right{float: right;}
.hide{display: none;}

input[type='button']{-webkit-appearance:none;}
textarea,select,input[type="text"],input[type="button"], input[type="submit"], input[type="reset"] {
    -webkit-appearance: none;
    appearance:none;
    outline:none;
	border: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    border-radius:0;
    background: none;
}
input[type="button"],input[type="submit"],input[type="reset"],input[type="text"]{-webkit-appearance:none;}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none!important;margin:0;}


/*伸缩盒子*/
	
	.flex{
	 display: flex;
	 display: -webkit-flex;
	}
	.flex-1{flex: 1;}
	.flex-center{
	 align-content: center;
	 align-items: center;
	}
	.flex-wrap{
	 flex-flow: wrap;
	}
	.justify-content-c{
	 justify-content: center;
	}
	.flex-between{
	 justify-content: space-between;
	}
	.flex-column{flex-direction:column}
