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: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
*{
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
input {
  -webkit-user-select:auto;
}
body,html {
  font-family: 'Microsoft YaHei UI','ArialMT','SimSun';
  line-height: 1;
  
	background: #F5FAFF;
  font-size: 10px;
  color: #666;
}

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;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
.flex-box {
	display: -webkit-flex;
	display: flex;
}
.flex-li {
	flex: 1;
}
.text-center {
	text-align: center;
}
.header {
	position: relative;
	/* height: 32rem; */
	color: rgba(250,250,250,.6);
	background: url('../img/qfbg.png') no-repeat;
	background-position: center left;
	background-size: cover;
	padding-bottom: 3rem;
	line-height: 1.5rem;
}
.title {
	padding: 1.5rem;
	font-size: 1.2rem;
	color: #fff;
	border-bottom: 1px solid #979797;
}
.ml10 {
	margin-left: 1rem;
}
.header-wrap {
	
	
}
.lo {
	width: 38px;
	height: 40px;
	background: url('../img/logo.png') no-repeat;
	background-size: 100% 100%;
}
.text-right {
	text-align: right;
}
.btn {
	display: inline-block;
	width: 6.6rem;
	height: 3rem;
	margin-top: .5rem;
	text-align: center;
	line-height: 3rem;
	background: #F78C56;
	border-radius: .2rem;
}
.btn.big {
	width: 80%;
	height: 4rem;
	margin-top: 1.4rem;
	margin-bottom: 3rem;
	line-height: 4rem;
	font-size: 1.6rem;
	color: #fff;
}
.pc-title{
	font-size: 1.8rem;
	line-height: 2.5rem;
}
.big-title {
	margin-top: 3.8rem;
	margin-bottom: 1.5rem;
	font-size: 2.8rem;
	line-height: 4rem;
	color: #fff;
}
.big-title_sub {
	margin-bottom: 3.8rem;
	font-size: 1.5rem;
	line-height: 2.3rem;
	color: #fff;
}
.fcw {
	color: #fff;
}
.box{
	position: relative;
	padding: 1.2rem;
	margin-bottom: 1rem;
	background-color: #fff;
}
.swiper-title {
	color: #666;
	font-size: 1.2rem;
}
.swiper-title>h2 {
	margin-bottom: 1rem;
	color: #333;
	font-size: 2rem;
	line-height: 2.8rem;
}
.swiper-slide {
	font-size: 1.2rem;
	padding: 1.6rem;
	color: #666;
	line-height: 1.7rem;
}
h3 {
	margin-top: .5rem;
	/* margin-bottom: 1rem; */
	color: #333;
	font-size: 1.4rem;
}
.des {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.modal {
	position: fixed;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999999;
	background-color: rgba(0,0,0,.3);
	display: none;
}
.modal-content {
	position: fixed;
	top: 2rem;
	/* max-height: 40rem; */
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	font-size: 1.2rem;
	color: #666;
	overflow: auto;
	line-height: 3rem;
}
.modal-header {
	position: relative;
	padding: 1.5rem 1.5rem 0;
	font-size: 1.6rem;
	color: #333;
}
.close {
	position: absolute;
	left: 2rem;
	top: 2rem;
	width: 2rem;
	height: 2rem;
	background: url('../img/close.png') no-repeat;
	background-size: 100% 100%;
}
.modal-body {
	padding: 0 1.5rem;
}
.modal-body>p {
	margin-top: 1rem;
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.4rem;
}
.modal-body>ol {
	list-style-type: disc;
	margin-left: 2rem;
}
.title.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	/* padding: 2rem; */
	
	background-color: #000;
	transition: padding ease .3s;
	/* animation: mymove 3s ease-in-out 0s 1 alternate forwards; */
}
.title .btn {
	/* color: #000; */
	/* background-color: #fff; */
}
.title.fixed .btn {
	color: #fff;
	background-color: #F78C56;
}
@keyframes mymove{
	from{opacity: 1;}
	to{opacity: 0.5;}			
}