@charset "UTF-8";
/**
 * reset v1.0.0
 * 2021/06/30
 * 重置浏览器样式
 */


*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

body{
	font-family: "Microsoft YaHei", STXihei, "PingFang SC", Tahoma, Arial, "Helvetica Neue", Helvetica;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*body, ul, ol, li, th, tr, td, dl, dt, dd, hr, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, textarea, button, p, blockquote, article, aside, details, figure, figcaption, header, footer, menu, nav, section{*/
body, ul, ol, li, th, tr, td, dl, dt, dd, hr, h1, h2, h3, h4, h5, h6, input, textarea, button, p, header, footer, menu, nav, section{
	margin: 0;
	padding: 0;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

img{
	border: 0;
}

ul, ol{
	list-style: none;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 100;
	line-height: 1.35;
}

sub, sup{
	position: relative;
	font-size: 75%;
	line-height: 0;
}
sup{
	top: -.5em;
}
sub{
	bottom: -.25em;
}

a, a:hover, a:link, a:visited, a:active{
	color: #333;
	text-decoration: none;
}

input, textarea, select, button{
	outline: none;
	background-color: #fff;
}

hr{
	border: none;
	height: 1px;
}

/*文本对齐*/
.text-r{
	text-align: right;
}
.text-l{
    text-align: left;
}
.text-c{
	text-align: center;
}

/*浮动*/
.float-l{
	float: left;
}
.float-r{
	float: right;
}

/*清除浮动*/
.clearfix:before, .clearfix:after{
	content: "";
	display: block;
	clear: both;
}
.clearfix {
  zoom: 1;
}

/*元素类型*/
.display-b{
	display: block;
}
.display-ib{
	display: inline-block;
}
.display-i{
	display: inline;
}
.display-f{
	display: flex;
}


.col-mo-1{
    width: calc(1/12*100%);
}
.col-mo-2{
    width: calc(1/6*100%);
}
.col-mo-3{
    width: 25%;
}
.col-mo-4{
    width: calc(1/3*100%);
}
.col-mo-5{
    width: calc(5/12*100%);
}
.col-mo-6{
    width: 50%;
}
.col-mo-7{
    width: calc(7/12*100%);
}
.col-mo-8{
    width: calc(2/3*100%);
}
.col-mo-9{
    width: 75%;
}
.col-mo-10{
    width: calc(5/6*100%);
}
.col-mo-11{
    width: calc(11/12*100%);
}
.col-mo-12{
    width: 100%;
}

@media (min-width: 768px){
    .col-pd-1{
        width: calc(1/12*100%);
    }
    .col-pd-2{
        width: calc(1/6*100%);
    }
    .col-pd-3{
        width: 25%;
    }
    .col-pd-4{
        width: calc(1/3*100%);
    }
    .col-pd-5{
        width: calc(5/12*100%);
    }
    .col-pd-6{
        width: 50%;
    }
    .col-pd-7{
        width: calc(7/12*100%);
    }
    .col-pd-8{
        width: calc(2/3*100%);
    }
    .col-pd-9{
        width: 75%;
    }
    .col-pd-10{
        width: calc(5/6*100%);
    }
    .col-pd-11{
        width: calc(11/12*100%);
    }
    .col-pd-12{
        width: 100%;
    }    
}
@media (min-width: 992px){
    .col-pc-1{
        width: calc(1/12*100%);
    }
    .col-pc-2{
        width: calc(1/6*100%);
    }
    .col-pc-3{
        width: 25%;
    }
    .col-pc-4{
        width: calc(1/3*100%);
    }
    .col-pc-5{
        width: calc(5/12*100%);
    }
    .col-pc-6{
        width: 50%;
    }
    .col-pc-7{
        width: calc(7/12*100%);
    }
    .col-pc-8{
        width: calc(2/3*100%);
    }
    .col-pc-9{
        width: 75%;
    }
    .col-pc-10{
        width: calc(5/6*100%);
    }
    .col-pc-11{
        width: calc(11/12*100%);
    }
    .col-pc-12{
        width: 100%;
    }
}















