html,body{
	/* width: 100%;
	height: 100%;
	overflow-x: hidden; */
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Chrome/Safari/Opera */
	-khtml-user-select: none; /* Konqueror */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; 
}
/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;padding: 0;
}

/** 设置默认字体 **/
/* 
    宋体：\5B8B\4F53
    新宋体：\65B0\5B8B\4F53
    黑体：\9ED1\4F53
    微软雅黑：\5FAE\8F6F\96C5\9ED1
    楷体：\6977\4F53_GB2312
    思源黑体： Source Han Sans CN
 */
body,button, input, select, textarea /* for ie */ {font: 14px/1.5 tahoma, \5FAE\8F6F\96C5\9ED1, sans-serif, Arial;}
body {background:#fff;-webkit-text-size-adjust:100%;color: #333;}
.body-maxwidth{max-width: 1920px;margin: 0 auto;}

h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal;overflow: visible;line-height: 1em;}
address, cite, dfn, var{ font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读, 让 small 正常化 */
/* em, strong, b, i {font-style:normal;font-weight:normal;} */
a,button,input{-webkit-tap-highlight-color:rgba(255,0,0,0);}
/** 重置列表元素 **/
ul, ol {list-style-type: none;margin: 0;padding: 0;}
ul, ol ,li { list-style: none;}

/** 重置文本格式元素 **/
a,a:active {color: inherit;text-decoration: none;cursor: pointer;border: 0;}
sup { vertical-align: text-top; } /* 重置, 减少对行高的影响 */
sub { vertical-align: text-bottom; }
span{line-height: normal;}
/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; border-radius: 0;} /* 使得表单元素在 ie 下能继承字体大小 */
button{border:0;background-color:none;outline:none;-webkit-appearance: none;}
select {border: none;appearance:none;-moz-appearance:none;-webkit-appearance:none;padding-right: 14px;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("https://www.yisiy.com/wt_imgs/select_arr.png") no-repeat scroll right center transparent;
}
textarea { resize:none; } /* 禁用了文本的拖拉，尤其在谷歌下 */
select, button, input,img {vertical-align: middle;}
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }

/* 重置 HTML5 元素 */
article, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section,
summary, time, mark, audio, video {display: block;margin: 0;padding: 0;}
mark { background: #ff0; }

/* <input>标签 */
input{border: none;appearance:none;-moz-appearance:none;outline:none;-webkit-appearance: none;}
input:focus{ outline:none; }/* input标签聚焦不出现默认边框 */

/* input标签placeholder样式重设 */
:-moz-placeholder { color:#666; opacity:1; font-size: 14px;text-align: left;}
::-moz-placeholder { color:#666; opacity:1; font-size: 14px;text-align: left;}
input:-ms-input-placeholder{ color:#666; opacity:1; font-size: 14px;text-align: left;}
input::-webkit-input-placeholder{ color:#666; opacity:1; font-size: 14px;text-align: left;}

/* 重绘元素边框盒 */
*{ box-sizing:border-box;}
*::before, *::after{ box-sizing:border-box;}
*:focus{ outline:none;}

/* 为了使文本段落左右两边对齐 */
/* p{text-align:justify; text-justify:distribute;} */
p{line-height: 1em;}

img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.clear:after{content:"";display:block;clear:both;}

/* =======================================winter==自定义=========================================== */
/* ::-webkit-scrollbar{/*隐藏滚动条*/ width: 0; height: 0; color: transparent;}
 */
/* 禁止文本复制粘贴 */
.banSelect {-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;user-select: none;}

/*移动端文字*/
@media screen and (max-width:321px){
	body{font-size:15px}
}
@media screen and (min-width:321px) and (max-width:400px){
	body{font-size:16px}
}
@media screen and (min-width:400px){
	body{font-size:18px}
}

.flex{/*设置弹性布局*/
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */

    display: -webkit-flex; /* 新版本语法: Chrome 21+ */

    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
}

.flex-wrap{
    flex-wrap: wrap
}

.flex-1{/*子元素占比*/
  -webkit-flex: 1; /* Chrome */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1; /* OLD - Firefox 19- */
}

.flex-v{/*切换主轴*/
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-center-x{/*水平居中*/
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-center-y{/*垂直居中*/
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-justify{/*两端对齐*/
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-around{/*间距相等*/
    -webkit-box-pack: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: center;
    justify-content: space-around;
}

.text-ellipsis{ /*单行文本显示省略号*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text2-ellipsis{ /*2行文本显示省略号*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text3-ellipsis{ /*3行文本显示省略号*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
