html{font-family:"微软雅黑",Arial,sans-serif}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,fieldset,input,button,textarea,p,th,td{padding:0;margin:0;font-family:Microsoft YaHei,sans-serif,Arial}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
a{text-decoration:none;color:#000;outline:none}
li{list-style:none}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit}
input,button,textarea,select{*font-size:100%}
a{-webkit-transition:all 0.5s linear;-moz-transition:all 0.5s linear;-ms-transition:all 0.5s linear;-o-transition:all 0.5s linear}

/* iphoneX 的适配 */
body{
	padding-bottom: constant(safe-area-inset-bottom);
}



.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	width: 100%;
	margin-right: 0;
	text-align: center;
	background: #fff;
	box-sizing: border-box;
	margin: 0rem;
	overflow: hidden;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
input {
    outline: none;
    -webkit-appearance: none; /*去除系统默认的样式*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 点击高亮的颜色*/
}
/* 动动按钮样式 */

.dongdongBtn {
	width: 1.2rem;
	height: 1.2rem;
	position: fixed;
	right: 0.3rem;
	bottom: 1.3rem;
	border-radius: 50%;
	background: #FFC000;
	color: #FFFFFF;
	font-size: 0.36rem;
	text-align: center;
	line-height: 1.2rem;
	z-index: 99999;
}

.dongdongBtn span {
	display: inline-block;
	transform: rotate(15deg);
}
/*  div提示框  */
.hint{
	/*width: 100%;*/
	
	font-size: 0.3rem;
	text-align: center;
	/*display: none;*/
	
	background: #fff;
	position: fixed;
	border-radius: 0.2rem 0.2rem;
	top: 70%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10000;
}
.hint .hintBox{
	color: #FFFFFF;
	line-height: 0.6rem;
		padding: 0 0.3rem;
	background: rgba(0,0,0,.4);
	/*opacity: 0.3;*/
	border-radius: 0.2rem 0.2rem;
}
/* vue  的提示样式   */
.tipNoData {
    width: 100%;
    position: fixed;
    bottom: 1.8rem;
    z-index: 999999;
    left: 0;
    text-align: center;
    animation: 300ms  tmBotmAnm;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}

.tipNoData .tipText {
    display: block;
    padding: 0 0.3rem;
    font-size: 0.24rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    line-height: 0.46rem;
    border-radius: 0.23rem;
}

@keyframes tmBotmAnm {
    0% {
        bottom: 0;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        bottom: 1.8rem;
    }
}

/* 加载  */
#loading {
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
}

#loading img {
	display: block;
	position: absolute;
	width: 0.8rem;
	height: 0.8rem;
	object-fit: cover;
	z-index: 10000;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* 分享动画 */
.maskArrow{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: none;
	height: 100%;
	background: rgba(0,0,0,.8);
	z-index: 3333333;
}
.maskArrow .iconJsantou{
	width: 1.52rem;
	height: 1.52rem;
	background: url('https://qw.jiansport.com/course_img_icon-jiantou.png') no-repeat center;
	background-size: 1.12rem 100%;
	position: absolute;
	top: 0%;
	/*left: 74%;*/
	right:0.3rem;
	transform: rotate(740deg);
	/*transform: translate(-50%,-50%);*/
	animation: 1s linear  point;
}
.maskArrow .menbText{
	font-size: 0.3rem;
	color: #FFFFFF;
	position: absolute;
	line-height: 0.52rem;
	top: 13%;
	letter-spacing: 0.01rem;
	text-align: right;
	right: 0.3rem;
	animation:  0.8s linear menbTextName;
	/*animation-delay: 1s;*/
	/*animation-fill-mode: backwards;*/
}
@keyframes menbTextName{
	0%{
		top: -3.4rem;
	}
	50%{
		top: -3.4rem;
	}
	100%{
		top: 13%;
	}
}
@keyframes point{
	0%{
		top: 40%;
		right: 40%;
		transform: rotate(0);
	}
	50%{
		top: 40%;
		right: 40%;
		transform: rotate(740deg);
	}
	100%{
		transform: rotate(740deg);
		top: 0%;
		right: 0.3rem;
	}
}
