﻿*{margin:0; padding:0;}
ul,li {list-style-type:none;}
body {font-family: 微软雅黑,Regular,Source Han Sans CN ;color: #000; font-size: 14px; }
a{color: #000;text-decoration:none;}
a:hover{text-decoration: none;}
.clear {LINE-HEIGHT: 0; HEIGHT: 0px; VISIBILITY: hidden; CLEAR: both; FONT-SIZE: 0px; OVERFLOW: hidden}
img{vertical-align: top;border:none;}

.content{ margin: 0 auto; box-sizing: border-box; }
.w1300{ margin: 0 auto; width: 1300px; }
/* .left{float: left;} */
/* .right{float: right;} */
.hide{display: none;}
.oneLine{ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.twoLine{-webkit-line-clamp: 2; /* 这里是超出几行省略 */ word-break: break-all;   text-overflow: ellipsis;  display: -webkit-box;  -webkit-box-orient: vertical;overflow: hidden; }
.threeLine{-webkit-line-clamp: 3; /* 这里是超出几行省略 */ word-break: break-all;   text-overflow: ellipsis;  display: -webkit-box;  -webkit-box-orient: vertical;overflow: hidden; }
.fourLine{-webkit-line-clamp: 4; /* 这里是超出几行省略 */ word-break: break-all;   text-overflow: ellipsis;  display: -webkit-box;  -webkit-box-orient: vertical;overflow: hidden; }


input[type='button']{-webkit-appearance:none;}
textarea,select,input[type="text"],input[type="button"],input[type="password"], 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="password"],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;}


.left {
	float: left;
}

.right {
	float: right;
} 
/*伸缩盒子*/
	
	.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}
