/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a{
	color: #000;
	vertical-align: baseline;
	list-style: none;
	text-decoration: none;
}


.pd-x-15{
    padding-right: .3rem;
    padding-left: .3rem;
}
.pd-x-10{
    padding-right: .2rem /* 10/50 */;
    padding-left: .2rem /* 10/50 */;
}
.pd-x-20{
    padding-right: .4rem /* 20/50 */;
    padding-left: .4rem /* 20/50 */;
}
.pd-x-35{
    padding-right: .7rem /* 35/50 */;
    padding-left: .7rem /* 35/50 */;
}
.pd-y-10{
    padding-top: .2rem /* 10/50 */;
    padding-bottom: .2rem /* 10/50 */;
}
.pd-y-15{
    padding-top: .3rem /* 15/50 */;
    padding-bottom: .3rem /* 15/50 */;
}
.pd-y-20{
    padding-top: .4rem /* 20/50 */;
    padding-bottom: .4rem /* 20/50 */;
}
.pd-b-20{
    padding-bottom: .4rem /* 20/50 */;
}
/* 上内间距 */
.pd-t-10{
    padding-top: .2rem /* 10/50 */;
}
.pd-t-15{
    padding-top: .3rem /* 15/50 */;
}

/* 上内间距 end*/
/* 左内边距 */
.pd-l-10{
    padding-left: .2rem /* 10/50 */;
}
/* 左内边距 end*/

/* 下内间距 */
.pd-b-10{
    padding-bottom: .2rem /* 10/50 */;
}
.pd-b-25{
    padding-bottom: .5rem /* 25/50 */;
}
.pd-b-40{
    padding-bottom: .8rem /* 40/50 */;
}
/* 下内间距 end*/

/* 上外间距 */
.mg-t-5{
    margin-top: .1rem /* 5/50 */;;
}
.mg-t-10{
    margin-top: .2rem /* 10/50 */;
}
.mg-t-15{
    margin-top: .3rem /* 15/50 */;
}
.mg-t-20{
    margin-top: .4rem /* 20/50 */;
}
.mg-t-30{
    margin-top: .6rem /* 30/50 */;
}
.mg-t-40{
    margin-top: .8rem /* 40/50 */;
}
.mg-t-50{
    margin-top: 1rem /* 50/50 */;
}
.mg-t-140{
    margin-top: 2.8rem /* 140/50 */;
}
/* 上外间距 end*/

/* 下外间距 */
.mg-b-5{
    margin-bottom: .1rem /* 5/50 */;
}
.mg-b-10{
    margin-bottom: .2rem /* 10/50 */;
}
.mg-b-12{
    margin-bottom: .24rem /* 12/50 */;
}
.mg-b-15{
    margin-bottom: .3rem /* 15/50 */;
}
.mg-b-20{
    margin-bottom: .4rem /* 20/50 */;
}
.mg-b-44{
    margin-bottom: .88rem /* 44/50 */;
}
/* 下外间距 end*/
/* 左外间距 */
.mg-l-5{
    margin-left: .1rem /* 5/50 */;
}
.mg-l-10{
    margin-left: .2rem /* 10/50 */;
}
/* 左外间距 end*/

/* 右外间距 */
.mg-r-5{
    margin-right: .1rem /* 5/50 */;
}
.mg-r-10{
    margin-right: .2rem /* 10/50 */;
}
.mg-r-20{
    margin-right: .4rem /* 20/50 */;
}
/* 有外间距 end*/
/* 文字溢出省略号 */
.line-one{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.line-two{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.line-three{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
/* 文字溢出省略号 end*/

/* 文字对齐方式 */
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
/* 文字对齐方式 end*/

.float-r{
    float: right;
}

.d-flex{
    display: flex;
    justify-content: space-between;
}
.d-flex-wap {
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
}
.flex-1{
    flex: 1;
}
.align-center{
    align-items: center;
}


.bg-gray{
    background-color: #f4f5f7;
}
.bg-white{
    background-color: #fff;
}
