* {
	color: #333;
}

html,
body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: "微软雅黑";
	width: 100%;
	height: 100%;
	color: #333;
}

h1,
h2,
h3,
h4,
h5,
ul,
p {
	margin: 0;
	padding: 0;
}

img[src=""] {
	opacity: 0;
}

[v-cloak] {
	display: none
}

ul {
	list-style-type: none;
}

input[type=number] {
	outline: none;
	border: none;
	padding: 0;
	margin: 0;
}

a:hover,
a:visited,
a:link,
a:active {
	text-decoration: none;
	color: #fff;
}

body {
	width: 100%;
	height: 100%;
}

select,
input[type=search] {
	padding: 0;
	margin: 0;
	background-color: rgba(255, 255, 255, 0);
}

.disabled {
	pointer-events: none;
}


/**flex布局公共样式**/

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.flex_1 {
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}


/*隐藏多余 2行*/

.txthidden_2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
/*jms svg*/
.jmsicon {
	width: 1.8em;
	height: 1.8em;
	vertical-align: middle;
	fill: currentColor;
	overflow: hidden
}


/*加载动画*/

.jmsLoading {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #fff;
	z-index: 8;
}

.spinner {
	margin: 0 auto;
	margin-top: 250px;
	width: 25px;
	height: 25px;
	position: relative;
}

.container1>div,
.container2>div,
.container3>div {
	width: 6px;
	height: 6px;
	background-color: #ff6c00;
	border-radius: 100%;
	position: absolute;
	-webkit-animation: bouncedelay 1.2s infinite ease-in-out;
	animation: bouncedelay 1.2s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.spinner .spinner-container {
	position: absolute;
	width: 100%;
	height: 100%;
}

.container2 {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.container3 {
	-webkit-transform: rotateZ(90deg);
	transform: rotateZ(90deg);
}

.circle1 {
	top: 0;
	left: 0;
}

.circle2 {
	top: 0;
	right: 0;
}

.circle3 {
	right: 0;
	bottom: 0;
}

.circle4 {
	left: 0;
	bottom: 0;
}

.container2 .circle1 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.container3 .circle1 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.container1 .circle2 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.container2 .circle2 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

.container3 .circle2 {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}

.container1 .circle3 {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s;
}

.container2 .circle3 {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}

.container3 .circle3 {
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s;
}

.container1 .circle4 {
	-webkit-animation-delay: -0.3s;
	animation-delay: -0.3s;
}

.container2 .circle4 {
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s;
}

.container3 .circle4 {
	-webkit-animation-delay: -0.1s;
	animation-delay: -0.1s;
}


/*jms蒙层*/

.jms-layer-wrapper.jms-active .jms-drop {
	position: fixed;
	z-index: 998;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: background 350ms cubic-bezier(.165, .84, .44, 1);
	background: rgba(0, 0, 0, .4);
	box-shadow: -4px 0 4px rgba(0, 0, 0, .5), 4px 0 4px rgba(0, 0, 0, .5);
	-webkit-tap-highlight-color: transparent;
}


/*jms弹出层 ** 底部*/

.jms-layer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	border-top-left-radius: 0.4rem;
	border-top-right-radius: 0.4rem;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	z-index: 1000;
	display: none;
}

.jms-layer-wrapper.jms-active .jms-layer {
	display: block;
}


/*jms 基本样式库*/

.jms-container {
	padding: 0 2.5%;
	background: #fff;
}

.jms-title {
	width: 100%;
	text-align: center;
	padding: 1rem 0;
	font-size: 1.1rem;
	color: #000;
}

.jms-table {
	padding: 0.6rem 0 1rem 0;
}

.jms-table ul li {
	text-align: center;
}

.jms-table ul li img {
	width: 3.5rem;
}

.jms-table ul li p {
	font-size: 0.85rem;
}

.jms-close-bottom {
	text-align: center;
	padding: 1rem 0;
	border-top: 1px solid #f3f3f3;
}

@-webkit-keyframes bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0.0)
	}
	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes bouncedelay {
	0%,
	80%,
	100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	40% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}


/*屏幕分辨率兼容*/

@media screen and (min-width: 320px) {
	html {
		font-size: 12px;
	}
}

@media screen and (min-width: 321px) and (max-width: 750px) {
	html {
		font-size: 14px;
	}
}

@media screen and (min-width: 751px) {
	html {
		font-size: 16px;
	}
}


.jms-wenjuan{
    position: fixed;
    right: 2.5%;
    bottom: 25%;
    width: 2.9rem;
    height: 2.9rem;
    background: url(../img/jms-wenjuan.png) no-repeat;
    background-size: 100% 100%;
    border-radius:50%;
    border:1px solid #ff202b;
    font-size: 0.7rem;
    color: #fff;
    box-shadow: 0px 1px 2.97px 0.03px rgba(120, 120, 120, 0.18);
    z-index: 9;
}

.toutiao-list{
	position: absolute;
	daiplay:block;
	width:20%;
	height:3.2rem;
	top:0;
	left:0;
	z-index:2rem;
}

.big_img {
	position: fixed;
	z-index: -1;
	opacity: 0;
	background: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.big_img .swiper-container2 {
	position: relative;
	width: 100%;
	height: 100%;
}

.big_img .swiper-container2 .swiper-wrapper {
	width: 100%;
	height: 100%;
}

.big_img .swiper-slide {
	width: 100%;
	height: 100%;
	display: table
}

.big_img .swiper-slide .cell {
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.big_img .swiper-slide img {
	max-width: 90%;
	max-height: 80%;
	margin: 0 auto;
}

.big_img .swiper-pagination2 {
	position: absolute;
	top: 0.2rem;
	text-align: center;
	width: 100%;
}

.big_img .swiper-pagination2 span {
	margin: 0 0.05rem;
}