header,section{
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

img{
	width: 100%;
}

.mui-bar-nav {
	background: #006634;
}

.mui-title {
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 1px;
}

.mui-card {}

.mui-card-header {
	font-size: 20px;
}

.mui-card-content {
	font-size: 16px;
	line-height: 30px;
}

b {
	color: #ca0000;
	font-weight: normal;
}

p {
	font-size: 16px;
}

.ptit {
	font-size: 20px;
	color: #009900;
	font-weight: bold;
	border-bottom: 1px dashed #f1f1f1;
	padding-bottom: 8px;
}

.pblack{
	color: #333;
}


.cimg{
	width: 100%;
	display: block;
	padding-top: 6px;
	pointer-events: none;
	-wekit-user-select:none;
	-moz-user-select:none;
	-o-user-select:none;
	user-select: none;
}

.cimg2{
	padding-bottom: 14px;
}

.bq{
	display: block;
	font-size: 14px;
	text-align: center;
	padding-bottom: 5.4rem;
	text-align: center;
}

/*navbar*/

.wxnav{
	padding: 0;
	width: 100%;
}

.navbar{
	width: 25%;
	font-size: 16px;
	text-align: center;
	color: #fff;
	padding: 0;
	float: left;
	line-height: 44px;
}

.navbar:hover{
	color: #ffd200;
	font-weight: bold;
	font-size: 17px;
}

/*引导语*/

.wxcolor{
	color: #dd524d;
	font-weight: bold;
	text-align: center;
	display: block;
}

.wxcenter{
	text-align: center;
}

.wxcode{
	background: #006634;
	border-radius: 4px;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	display: inline-block;
	padding: 4px 6px;
}

.yibo{
	color: #333;
	font-size: 16px;
}

/*foot*/

footer {
	padding: .4rem 0;
	width: 100%;
	position: fixed;
	bottom: 0;
	background: #fff;
	max-width: 640px;
	margin: 0 auto;
	box-shadow: #dbdbdb 0 0 10px;
	z-index: 999;
}

footer p {
	text-align: center;
	font-size: 1.1rem;
	margin: 0;
}

footer .small{
	padding-top: .4rem;
	font-size: .9rem;
}

footer .wxcode{
	font-size: 1.2rem;
	font-weight: bold;
	color: #fff;
	background: #dd524d;
	padding: 4px;
	border-radius: 4px;
}

footer b{
	color: #ca0000;
	font-size: 1rem;
}

/*图片点击放大*/

.mui-preview-image.mui-fullscreen {
	position: fixed;
	z-index: 20;
	background-color: #000;
}

.mui-preview-header,
.mui-preview-footer {
	position: absolute;
	width: 100%;
	left: 0;
	z-index: 10;
}

.mui-preview-header {
	height: 44px;
	top: 0;
}

.mui-preview-footer {
	height: 50px;
	bottom: 0px;
}

.mui-preview-header .mui-preview-indicator {
	display: block;
	line-height: 25px;
	color: #fff;
	text-align: center;
	margin: 15px auto 4;
	width: 70px;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 12px;
	font-size: 16px;
}

.mui-preview-image {
	display: none;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.mui-preview-image.mui-preview-in {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.mui-preview-image.mui-preview-out {
	background: none;
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

.mui-preview-image.mui-preview-out .mui-preview-header,
.mui-preview-image.mui-preview-out .mui-preview-footer {
	display: none;
}

.mui-zoom-scroller {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	-webkit-backface-visibility: hidden;
}

.mui-zoom {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.mui-slider .mui-slider-group .mui-slider-item img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.mui-android-4-1 .mui-slider .mui-slider-group .mui-slider-item img {
	width: 100%;
}

.mui-android-4-1 .mui-slider.mui-preview-image .mui-slider-group .mui-slider-item {
	display: inline-table;
}

.mui-android-4-1 .mui-slider.mui-preview-image .mui-zoom-scroller img {
	display: table-cell;
	vertical-align: middle;
}

.mui-preview-loading {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}

.mui-preview-loading.mui-active {
	display: block;
}

.mui-preview-loading .mui-spinner-white {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	height: 50px;
	width: 50px;
}

.mui-preview-image img.mui-transitioning {
	-webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

p img {
	max-width: 100%;
	height: auto;
}

/*btn*/

.btn_box {
	z-index: 5 !important;
	width: 120% !important;
	background: transparent !important;
	position: absolute !important;
	text-align: center !important;
	box-sizing: content-box !important;
	top: -50% !important;
	left: -10%;
	font-weight: 400 !important;
	line-height: 200% !important;
	height: 200% !important;
	font-size: 0.8em;
	border-radius: 4px;
	color: white;
}

.btn_copy {
	display: none;
	padding: 0;
	z-index: 10 !important;
	outline: none !important;
	border: none !important;
	width: 60px !important;
	position: relative !important;
	text-align: center !important;
	box-sizing: content-box !important;
	margin: -30px auto 0 !important;
	font-weight: 400 !important;
	line-height: 32px;
	height: 32px;
	font-size: 16px !important;
	border-radius: 4px;
	color: white;
	background: #777;
}

.t_copyy {
	position: absolute;
	left: 50%;
	top: 32px;
	width: 0;
	height: 0;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top-color: #777;
}

.show_ {
	display: block !important;
}

.copy_bk {
	background-color: blue !important;
	color: white !important;
}

@media only screen and (min-width: 640px) {
	.mui-card-media{
		height: 20vw !important;
	}
}
