/*!
 * jquery-confirm v2.5.1 (http://craftpip.github.io/jquery-confirm/)
 * Author: boniface pereira
 * Website: www.craftpip.com
 * Contact: hey@craftpip.com
 *
 * Copyright 2013-2016 jquery-confirm
 * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
 */
@-webkit-keyframes jconfirm-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes jconfirm-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
body.jconfirm-noscroll {
  overflow: hidden !important;
}
.jscontainer{
	width:100%;
	margin: auto;
}
.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden;
}
.jconfirm .jconfirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.jconfirm .jconfirm-bg.seen {
  opacity: 1;
}
.jconfirm .jconfirm-scrollpane {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-perspective: 500px;
          perspective: 500px;
  -webkit-perspective-origin: center;
          perspective-origin: center;
}
.jconfirm .jconfirm-box {
  background: white;
  border-radius: 4px;
  position: relative;
  outline: none;
  padding: 15px 15px 0;
}
.jconfirm .jconfirm-box div.closeIcon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  opacity: .6;
  text-align: center;
  -webkit-transition: opacity 0.1s ease-in;
          transition: opacity 0.1s ease-in;
  display: none;
  font-size: 27px;
  line-height: 14px;
}
.jconfirm .jconfirm-box div.closeIcon .fa {
  font-size: 16px;
}
.jconfirm .jconfirm-box div.closeIcon .glyphicon {
  font-size: 16px;
}
.jconfirm .jconfirm-box div.closeIcon .zmdi {
  font-size: 16px;
}
.jconfirm .jconfirm-box div.closeIcon:hover {
  opacity: 1;
}
.jconfirm .jconfirm-box div.title-c {
  display: block;
  font-size: 35px;
  line-height: 60px;
}
.jconfirm .jconfirm-box div.title-c .icon-c {
  font-size: inherit;
  padding-bottom: 15px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.jconfirm .jconfirm-box div.title-c .icon-c i {
  vertical-align: middle;
}
.jconfirm .jconfirm-box div.title-c .icon-c:empty {
  display: none;
}
.jconfirm .jconfirm-box div.title-c .title {
  font-size: inherit;
  font-family: inherit;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 15px;
}
.jconfirm .jconfirm-box div.title-c .title:empty {
  display: none;
}
.jconfirm .jconfirm-box div.content-pane {
  margin-bottom: 15px;
  height: auto;
  -webkit-transition: height 0.4s ease-in;
          transition: height 0.4s ease-in;
  display: inline-block;
  width: 100%;
  position: relative;
}
.jconfirm .jconfirm-box div.content-pane .content {
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in;
          transition: all 0.2s ease-in;
  right: 0;
  font-size:18px;
  color:#888;
  padding:10px 0px;
}
.jconfirm .jconfirm-box div.content-pane .content img {
  height: auto;
}
.jconfirm .jconfirm-box div.content-pane .content:empty {
  display: none;
}
.jconfirm .jconfirm-box div.content-pane .content:empty.loading {
  height: 40px;
  position: relative;
  opacity: 0.6;
  display: block;
}
.jconfirm .jconfirm-box div.content-pane .content:empty.loading:before {
  content: '';
  height: 20px;
  width: 20px;
  border: solid 2px transparent;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  border-radius: 50%;
  -webkit-animation: jconfirm-rotate 1s infinite linear;
          animation: jconfirm-rotate 1s infinite linear;
  border-bottom-color: #aaa;
  top: 50%;
  margin-top: -10px;
}
.jconfirm .jconfirm-box div.content-pane .content:empty.loading:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -15px;
}
.jconfirm .jconfirm-box .buttons {
  padding-bottom: 15px;
}
.jconfirm .jconfirm-box .buttons button + button {
  margin-left: 5px;
}
.jconfirm .jquery-clear {
  clear: both;
}
.jconfirm.rtl {
  direction: rtl;
}
.jconfirm.rtl div.closeIcon {
  left: 12px;
  right: auto;
}
.jconfirm.jconfirm-white .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.2);
}
.jconfirm.jconfirm-white .jconfirm-box {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.jconfirm.jconfirm-white .jconfirm-box .buttons {
  float: right;
}
.jconfirm.jconfirm-white .jconfirm-box .buttons button {
  border: none;
  background-image: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
  -webkit-transition: background .1s;
          transition: background .1s;
  color: white;
  padding:10px 20px;
  border-radius: 5px;
}
.btn-default{
	background-color:#0097A7;;
	color:#fff;
}
.jconfirm.jconfirm-white .jconfirm-box .buttons button.btn-default {
  box-shadow: none;
  color: #fff;
}
.jconfirm.jconfirm-white .jconfirm-box .buttons button.btn-default:hover {
  background: #ddd;
}
.jconfirm.jconfirm-black .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.5);
}
.jconfirm.jconfirm-black .jconfirm-box {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #444;
  border-radius: 5px;
  color: white;
}
.jconfirm.jconfirm-black .jconfirm-box .buttons {
  float: right;
}
.jconfirm.jconfirm-black .jconfirm-box .buttons button {
  border: none;
  background-image: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
  -webkit-transition: background .1s;
          transition: background .1s;
  color: white;
}
.jconfirm.jconfirm-black .jconfirm-box .buttons button.btn-default {
  box-shadow: none;
  color: #fff;
}
.jconfirm.jconfirm-black .jconfirm-box .buttons button.btn-default:hover {
  background: #666;
}
.jconfirm .jconfirm-box.hilight {
  -webkit-animation: hilight 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: hilight 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@-webkit-keyframes hilight {
  10%,
  90% {
    -webkit-transform: translate3d(-2px, 0, 0);
            transform: translate3d(-2px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-8px, 0, 0);
            transform: translate3d(-8px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(8px, 0, 0);
            transform: translate3d(8px, 0, 0);
  }
}
@keyframes hilight {
  10%,
  90% {
    -webkit-transform: translate3d(-2px, 0, 0);
            transform: translate3d(-2px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-8px, 0, 0);
            transform: translate3d(-8px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(8px, 0, 0);
            transform: translate3d(8px, 0, 0);
  }
}
/*Transition rules*/
.jconfirm {
  -webkit-perspective: 400px;
          perspective: 400px;
}
.jconfirm .jconfirm-box {
  opacity: 1;
  -webkit-transition-property: -webkit-transform, opacity, box-shadow;
          transition-property: transform, opacity, box-shadow;
}
.jconfirm .jconfirm-box.anim-top,
.jconfirm .jconfirm-box.anim-left,
.jconfirm .jconfirm-box.anim-right,
.jconfirm .jconfirm-box.anim-bottom,
.jconfirm .jconfirm-box.anim-opacity,
.jconfirm .jconfirm-box.anim-zoom,
.jconfirm .jconfirm-box.anim-scale,
.jconfirm .jconfirm-box.anim-none,
.jconfirm .jconfirm-box.anim-rotate,
.jconfirm .jconfirm-box.anim-rotatex,
.jconfirm .jconfirm-box.anim-rotatey,
.jconfirm .jconfirm-box.anim-scaley,
.jconfirm .jconfirm-box.anim-scalex {
  opacity: 0;
}
.jconfirm .jconfirm-box.anim-rotate {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.jconfirm .jconfirm-box.anim-rotatex {
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.jconfirm .jconfirm-box.anim-rotatexr {
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.jconfirm .jconfirm-box.anim-rotatey {
  -webkit-transform: rotatey(90deg);
      -ms-transform: rotatey(90deg);
          transform: rotatey(90deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.jconfirm .jconfirm-box.anim-rotateyr {
  -webkit-transform: rotatey(-90deg);
      -ms-transform: rotatey(-90deg);
          transform: rotatey(-90deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.jconfirm .jconfirm-box.anim-scaley {
  -webkit-transform: scaley(1.5);
      -ms-transform: scaley(1.5);
          transform: scaley(1.5);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.jconfirm .jconfirm-box.anim-scalex {
  -webkit-transform: scalex(1.5);
      -ms-transform: scalex(1.5);
          transform: scalex(1.5);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.jconfirm .jconfirm-box.anim-top {
  -webkit-transform: translate(0px, -100px);
      -ms-transform: translate(0px, -100px);
          transform: translate(0px, -100px);
}
.jconfirm .jconfirm-box.anim-left {
  -webkit-transform: translate(-100px, 0px);
      -ms-transform: translate(-100px, 0px);
          transform: translate(-100px, 0px);
}
.jconfirm .jconfirm-box.anim-right {
  -webkit-transform: translate(100px, 0px);
      -ms-transform: translate(100px, 0px);
          transform: translate(100px, 0px);
}
.jconfirm .jconfirm-box.anim-bottom {
  -webkit-transform: translate(0px, 100px);
      -ms-transform: translate(0px, 100px);
          transform: translate(0px, 100px);
}
.jconfirm .jconfirm-box.anim-zoom {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.jconfirm .jconfirm-box.anim-scale {
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
}
.jconfirm .jconfirm-box.anim-none {
  display: none;
}
.jconfirm.jconfirm-supervan .jconfirm-bg {
  background-color: rgba(54, 70, 93, 0.95);
}
.jconfirm.jconfirm-supervan .jconfirm-box {
  background-color: transparent;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.closeIcon {
  color: white;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.title-c {
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: normal;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.title-c > * {
  padding-bottom: 25px;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.content-pane {
  margin-bottom: 25px;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.content {
  text-align: center;
  color: white;
}
.jconfirm.jconfirm-supervan .jconfirm-box .buttons {
  text-align: center;
}
.jconfirm.jconfirm-supervan .jconfirm-box .buttons button {
  font-size: 16px;
  border-radius: 2px;
  background: #303f53;
  text-shadow: none;
  border: none;
  color: white;
  padding: 10px;
  min-width: 100px;
}
.jconfirm.jconfirm-material .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.67);
}
.jconfirm.jconfirm-material .jconfirm-box {
  background-color: white;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 25px 10px 25px;
}
.jconfirm.jconfirm-material .jconfirm-box div.closeIcon {
  color: rgba(0, 0, 0, 0.87);
}
.jconfirm.jconfirm-material .jconfirm-box div.title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
}
.jconfirm.jconfirm-material .jconfirm-box div.content {
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
}
.jconfirm.jconfirm-material .jconfirm-box .buttons {
  text-align: right;
}
.jconfirm.jconfirm-material .jconfirm-box .buttons button {
  text-transform: uppercase;
  font-weight: 500;
}
.jconfirm.jconfirm-bootstrap .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.21);
}
.jconfirm.jconfirm-bootstrap .jconfirm-box {
  background-color: white;
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.4);
  padding: 15px 0 0;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box div.closeIcon {
  color: rgba(0, 0, 0, 0.87);
}
.jconfirm.jconfirm-bootstrap .jconfirm-box div.title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
  padding-left: 15px;
  padding-right: 15px;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box div.content {
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
  padding: 0px 15px;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box .buttons {
  text-align: right;
  padding: 0px 0 0px;
  margin: -5px 0 0px;
  border-top: solid 1px #ddd;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box .buttons button {
  font-weight: 500;
  border-radius: 0px;
  margin: 0;
  border-left: solid 1px #ddd;
}






/**
*鍏ㄥ眬
*/
input,button,a,input:focus,button:focus{
	outline:0 none !important; blr:expression(this.onFocus=this.blur());
}
.noCopy{
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-o-user-select:none;
}
.bgColor1{
	background-color:#009688;
}
.bold{
	font-weight:bold;
}
.stColor51{
	color:#515151;
}
.stColor33{
	color:#333;
}
/**
*寮瑰嚭鐧诲綍妗嗗叕鍏辨牱寮�
*/
#phoneSubBox,#snsSubBox{
	position:fixed;
	top:5%;
	width:100%;
	text-align:center;
	z-index:999;
	color:#333;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 2px 6px 0px rgba(0, 0, 0, 0.4);
}


#phoneSubBox .tit,#snsSubBox .tit{
	text-align:left;
	font-size:16px;
	padding:10px;
	background-color:#009688;
	color:#fff;
	height:30px;
	line-height:30px;
	box-sizing: unset;
}


.psp{
	width:100%;
	line-height:30px;
	margin-bottom:20px;
}
.binpt{
	height: 40px;
	line-height: 40px;
	border: 1px solid #ececec;
	color:#888;
	font-size: 14px;
	padding-left: 5px;
}
.sbtn{
	height:50px;
	line-height:50px;
}
.fleft{
	float:left;
}
.right{
	float:right;
}
.fright{
	float:right;
}
.clear{
	clear:both;
}

/**
*寮瑰嚭鏂囨湰妗嗗叕鍏辨牱寮�
*/
#popTxt{
	position:fixed;
	top:25%;
	width:100%;
	background-color:#fafafa;
	text-align:center;
	z-index:101;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
}
#popTxt .popHd{
	text-align:left;
	font-size:16px;
	background-color:#0097A7;
	color:#757575;
	margin-bottom:5px;
	height:40px;
	line-height:40px;
	box-sizing: content-box;
}
#popTxt .popHd a{
	display:inline-block;
	height:100%;
	text-align:center;
	color:#fff;
	padding-left:10px;
	padding-right:10px;
	text-decoration:none;
}	
#popTxt textarea{
	width:100%;
	height:100%;
	border:none;
	padding:5px;
	color:#757575;
}
#popTxt .popCt{
	text-align:left;
	font-size:16px;
	margin-bottom:5px;
	max-height: 120px;
}
#popTxt .popFt{
	text-align:left;
	font-size:14px;
	height:40px;
	line-height:40px;
	background-color:#F5F5F5;
}
#popTxt .popfooter{
	display:inline-block;
	width:32%;
	color:#757575;
	text-align:center;
}
#popTxt .popDelt{
	display:block;
	margin-right:5px;
	float:right;
}
#popTxt .popTitTabAct{
	border-bottom:2px solid #00796B;
}
.popUl{
	margin:0px;
	padding:5px 10px;
	list-style-type:none;
	min-height:80px;
	color:#757575;
	overflow-y:scroll;
}
#sureTxt{
	width:100%;
	height:100%;
	text-align:center;
	display:block;
	background-color: #0097A7;
	color:#fff;
}
/**
**椤堕儴瀵艰埅鏀剁缉鏍峰紡
*/
#myHeader1{
	width:100%;
	background-color:#282828;
}
#myHeader1 .topLeftNav{
	width:50px;
	height: 50px;
}
#myHeader1 svg{
	margin:10px;;
}
#myHeader1 ul{
	list-style:none;
	background-color:#282828;
	padding:0 10px;
	margin:0px;
}
#myHeader1 ul li{
	border-top:1px solid #BDBDBD;
	padding:0 10px;
	height: 50px;
	line-height:50px;
}
#myHeader1 ul li a{
	display:inline-block;
	width:100%;
	height:100%;
	color:#fff;
	text-decoration:none;
}
#myHeader1 #topRightNav{
	width:50px;
	height:50px;
}
#myHeader1 .backUrl{
	width:50px;
	height:50px;
	background: url(/Public/image/ico/NavCC.svg) no-repeat scroll 50% 50%;
}
/**
**鐧诲綍娉ㄥ唽椤甸潰锛堥潪寮瑰嚭妗嗭級
*/
#send{
	float:left;
	height:50px;
	line-height:50px;
	width:30%;
	text-align:center;
}
.cusInput{
	height:50px;
	width:68%;
	
}
.lftShow{
	float:left;
	height:50px;
	line-height:50px;
	width:30%;
	text-align:center;
}
.fleft{
	float:left;
}
.gewur{
	margin-top:15px;
	padding:0 10px;
}
.titlhz1{
	padding:10px;
	font-size:16px;
}
.gewur .button{
	margin-top:5px;
}


#footerNav{
	position:fixed;
	bottom:0;
	height:50px;
	line-height:50px;
	width:100%;
	border-top:1px solid #ececec;
	background-color:#fff;
	box-shadow: 0 0 10px #ececec;
}
#footerNav .fnyts{
	float:left;
	color:#515151;
	width:25%;
	text-align:center;
}
#footerNav .fnyts a{
	text-decoration:none;
	color:#515151;
}
#dsd_fnds{
	background: rgba(0, 0, 0, 0) url("/Public/image/ico/fnDesign.svg") no-repeat scroll 50% 50%;
}

#dsd_fnmy{
	background: rgba(0, 0, 0, 0) url("/Public/image/ico/fnCenter.svg") no-repeat scroll 50% 50%;
}
#dsd_fnhome{
	background: rgba(0, 0, 0, 0) url("/Public/image/ico/fnHome.svg") no-repeat scroll 50% 50%;
}
#dsd_fnfind{
	background: rgba(0, 0, 0, 0) url("/Public/image/ico/fnFind.svg") no-repeat scroll 50% 50%;
}
.dsd_all{
	width:34px;
	height:50px;
	float:left;
}
.dsd_fntit{
	float:left;
	height:50px;
	line-height:50px;
	color:#515151;
	font-size:14px;
}
.dsd_cen{
	width:90%;
	margin:auto;
}
input,button,a {  
	outline:0 none !important; blr:expression(this.onFocus=this.blur());  
}
/**
*
* 鎸夐挳娓愬彉鍔ㄧ敾
* 
*/
.anbutton:active,.circleSbtn:active{
	outline:none;
	/*鎵ц鍔ㄧ敾*/
	-webkit-animation:showBtn 0.2s 1;
	animation:showBtn 0.2s 1;
	/*鍋滄鍦ㄦ渶鍚庝竴甯�*/
	-webkit-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}
/*
瀹氫箟鍔ㄧ敾
*/
@-webkit-keyframes showBtn{
	10%{
	background:-webkit-radial-gradient(Circle,#ECECEC 28%, #e9e6e6 30%, #e8e4e4 48%,#e8e3e3 60%); 
	background:radial-gradient(Circle,#ECECEC 28%, #e9e6e6 30%, #e8e4e4 48%,#e8e3e3 60%); 
	}
	
	20%{
	background:-webkit-radial-gradient(Circle,#ECECEC 32%, #e9e6e6 34%, #e8e4e4 52%,#e8e3e3 60%);
	background:radial-gradient(Circle,#ECECEC 32%, #e9e6e6 34%, #e8e4e4 52%,#e8e3e3 60%); 
	}
	
	40%{
	background:-webkit-radial-gradient(Circle,#ECECEC 34%, #e9e6e6 36%, #e8e4e4 54%,#e8e3e3 60%);
	background:radial-gradient(Circle,#ECECEC 34%, #e9e6e6 36%, #e8e4e4 54%,#e8e3e3 60%);
	}
	
	60%{
	background:-webkit-radial-gradient(Circle,#ECECEC 36%, #e9e6e6 38%, #e8e4e4 56%,#e8e3e3 60%);
	background:radial-gradient(Circle,#ECECEC 36%, #e9e6e6 38%, #e8e4e4 56%,#e8e3e3 60%);
	}
	
	80%{
	background:-webkit-radial-gradient(Circle,#ECECEC 38%, #e9e6e6 40%, #e8e4e4 58%,#e8e3e3 60%);
	background:radial-gradient(Circle,#ECECEC 38%, #e9e6e6 40%, #e8e4e4 58%,#e8e3e3 60%);
	}
	
	100%{
	background:-webkit-radial-gradient(Circle,#ECECEC 40%, #e9e6e6 42%, #e8e4e4 60%,#e8e3e3 60%);
	background:radial-gradient(Circle,#ECECEC 40%, #e9e6e6 42%, #e8e4e4 60%,#e8e3e3 60%);
	}
}

.npwpe a{
	color:#515151;
}
#sureTxt{
	background-color:#e1e1e1;
	width:100%;
	height:50px;
	line-height:50px;
	text-align:center;
	color:#515151;
}
.tit{
	box-sizing: none;
}
#topNavUl{
	position:fixed;top:-1px;
	z-index:1000;
	width:100%;
}
.articleDetail img{
	max-width:100%;
}
.textLeft{
	text-align:left;
}
.stdA{
	text-decoration:none;
	color:#888;
}
.btnDiv1{
	background-color:#e1e1e1;
	margin: 10px;
	cursor:pointer;
}
.btnDiv2{
	margin: 10px;
}
.sendCode{
	background-color:#e1e1e1;
}
.iuge{
	height:40px;
	line-height:40px;
	text-align:center;
	margin-left:10px;
}
#shapeBox{
	position:fixed;
	top:0;
	height:100%;
	width:100%;
	background-color:#fff;
	z-index:999;
}
#shapeBox ul{
	list-style-type:none;
	margin:0px;
	padding:0px;
	height:100%;
	overflow-y:scroll;
	background-color:#e1e1e1;
}
#shapeBox li{
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size: 13px;
}	
#spboxleft{
	width:15%;
	height:100%;
	float:left;
	margin-bottom:30px;
}
#spboxright{
	width:82%;
	height:90%;
	overflow-y:scroll;
	float:right;
	margin-bottom:30px;	
}
#spboxright .oihjw{
	float:left;
	width:80px;
	height:100px;
	margin:3px;
	text-align:center;
}
#gwett,.bottomClose{
	position:fixed;
	bottom:0;
	width:100%;
	height:50px;
	line-height:50px;
	background-color:#009688;
	color:#fff;
	text-align:center;
}
.actOF{
	background-color:#fff;
}
#popCommentsBox{
	position:fixed;
	bottom:-5px;
	width:100%;
	background-color:#fff;
	z-index:999;
	border-top: 1px solid #ececec;
	box-shadow: 0 0 10px #ececec;
}
#popCtCts{
	float:left;
	width:60%;
	min-height: 50px;
}
.sendComments{
	float:right;
	width:19%;
	text-align:center;
	height:50px;
	line-height:50px;
	background-color:#009688;
	color:#fff;
}
.ctsListClose{
	float:right;
	width:20%;
	text-align:center;
	height:50px;
	line-height:50px;
	background-color:#e1e1e1;
}
#popCtContents{
	height:50px;
	width:98%;
	padding:1px;
	border:none;
	font-size:16px;
}
.ctsListBox{
	position:fixed;
	bottom:0;
	width:100%;
	height:80%;
	overflow:scroll;
	background-color:#fafafa;
	border-top: 1px solid #ececec;
	box-shadow: 0 0 10px #ececec;
}
.ctsListItem{
	padding:10px;
	border-bottom: 1px solid #ececec;
}
.ctsListUser{
	float:left;
	width:20%;
	text-align:center;
}
.ctsListUser img{
	border-radius: 50px;
	border: 2px #fff solid;
}
.ctsListRt{
	float:left;
	width:78%;
}
.ctsListInfor{
	
	
}
.ctsListCtt{
	color: #515151;
	font-size: 16px;
	padding: 5px 0px;
	word-wrap:break-word;
}
.marginlft5{
	margin-left:5px;
}
.marginlft10{
	margin-left:10px;
}
.ctsListTime{
	float:left;
}
.ctsListTop,.ctsListRy{
	float:right;
	overflow:hidden;
	text-align:center;
}
.ctsListCttRt{
	padding:10px;
	background-color:#e1e1e1;
}
.ctxListMore,.ctxListNo{
	width:100%;
	text-align:center;
	height:50px;
	line-height:50px;
}
.umywbtn{
	display:block;
	padding:0 10px;
	text-align:center;
	height:50px;
	line-height:50px;
	float:right;
	color:#555;
	font-size:18px;
}
.icsellno{
	height:50px;
	line-height:50px;
	float:right;
	border-radius: 2px;
	border: 1px solid #e1e1e1;
	padding:0 12px;
}
.lists_loader{
	width:100%;
	height:80px;
	line-height:80px;
	text-align:center;
}
.litlist{
	padding:10px;
	border: 1px solid #e1e1e1;
	background-color:#fff;
	margin-bottom:5px;
}
#pushsellbox{
	position:fixed;
	top:0px;
	z-index:123;
	width:100%;
	height:100%;
	margin:auto;
	background-color:#fff;
	padding:10px;
	border-top: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
	
}
#psbtit,#psbipt{
	width:100%;
}
#psbipt textarea{
	width:100%;
	border:1px solid #e1e1e1;
	height:120px;
	color:#333;
}
#psbagree{
	display:block;
	width:100%;
	background-color:#009688;
	color:#fff;
	padding:10px 20px;
	border-radius:2px;
	text-align:center;
	margin-bottom:10px;
}
#closepsb{
	display:block;
	text-align:center;
	width:100%;	
	background-color:#e1e1e1;
	color:#fff;
	padding:10px 20px;
	border-radius:2px;
	
}
.myh1{
	font-size:18px;
	color:#000;
	height:35px;
	line-height:35px;
	font-weight:bold;
}
.mytxt1{
	font-size:15px;
	line-height:30px;
	padding:10px 0px;
	color:#333;
}
.centerWord{
	text-align:center;
	background-color:#fff;
	height:50px;
	line-height:50px;
	text-align:center;width:100%;
}
.myotit{
	background-color:#fff;
	text-align:center;
	height:50px;
	line-height:50px;
	font-size:18px;
	margin-bottom:1px;
}
.mymblock{
	width:100%;
	padding:0;
	border-bottom:1px solid #ececec;
}
.mymbksit{
	padding:0;
	float:left;
}
.myimga{
	display:block;
}
.myimga img{
	width:100%;
}
.clear{
	clear:both;
}
.imgBows{
	float:left;
	width:45%;
}
.imgBows .featuredAt{
	display:block;
}
.imgBows .featuredAt img{
	width:80pt;
}
.introBows{
	float:left;
	width:55%;
	padding-left:20px;
}
.mybox{
	background-color:#fff;
	padding:30px;
}
.mybox2{
	background-color:#fff;
	padding:20px 5px;
}
.dzmdiv{
	height:50px;
	line-height:50px;
	font-size:18px;
	position: relative;
}
.myimgsit img{
	width:100%;
}
.mycontainer{
	width:100%;
}
#catMore{
	position: fixed;
	bottom: 60px;
	width: 40px;
	height: 40px;
	right: 30px;
	border-radius:20px;
	text-align:center;
	line-height:40px;
	background-color:#fff;
	border:1px solid #e1e1e1;
}
#goTopPage{
	position: fixed;
	bottom: 112px;
	width: 40px;
	height: 40px;
	right: 30px;
	border-radius:20px;
	text-align:center;
	line-height:40px;
	background-color:#fff;
	border:1px solid #e1e1e1;
}
#catMoreBox{
	box-shadow: 0 0 10px #ececec;
	border-top:1px solid #e1e1e1;
	position:fixed;
	bottom:0;
	height:450px;
	width:100%;
	background-color:#fff;
	z-index: 100;
}
.hgegw5{
	padding:10px;
	font-size:18px;
}
.hgegw5 a{
	text-decoration:none;
	font-size:16px;
	display:block;
	float:left;
	margin-left:20px;
	height:40px;
	line-height:40px;
}
a{
	text-decoration:none;
}
.stdTit1{
	width: 100%;
	text-align: center;
	height: 50px;
	line-height: 50px;
	font-size:18px;
	color: #000;
	font-weight:bold;
}
.bgcits{
	display:inline-block;
	width:20px;
	height:12px;
}
.pubclosePP{
	background-color:#009688;
	color:#fff;
	width:100%;
	height:50px;
	line-height:50px;
	text-align:center;
	position: fixed;
	bottom: 0px;
}
.getoutcat{
	background-color:#fff;
	width:100%;
	line-height:50px;
	margin-bottom:1px;
}
.getoutcat .ghegt{
	display:block;
	float:left;
	padding: 0 10px;
	text-align: center;
	font-size:16px;
	
}
.suckmyass{
	width:100%;
	height:30px;
	white-space: nowrap;
	overflow-x:scroll;
	overflow-y:hidden;
	padding:0px;
}
.getoutcat .gergy6{
	display:inline-block;
	width:50px;
	height:28px;
}
#proDtBox{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	background-color:#fff;
}
#givemeFive{
	width:100%;
	background-size:100%;
}
.ftc888{
	color:#888;
}
.cukers{ 	
	display: block;
	padding:0 10px;
	text-align: center;
	height: 30px;
	line-height: 30px;
	background-color: #ececec;
	color: #009688;
	float:left;
	margin-right:5px;
	margin-bottom:5px;
	border-radius: 2px;
}
.whitePage a,.whitePage span{
	color:#fff;
}
.geotite{
	padding:15px 20px;
	text-align:left;
	margin-bottom: 1px;
	height: 60px;
	background-color:#fff;
}
.arttite{
	padding: 20px 15px;
	text-align: left;
	margin-bottom: 1px;
	background-color: #fff;
	font-weight: bold;
	font-size: 24px;
	color: #555;
}
.marttite{
	padding: 20px 15px;
	line-height:30px;
	text-align: left;
	margin-bottom: 1px;
	background-color: #fff;
	font-weight: bold;
	font-size: 24px;
	color: #555;
}
.articleDetail{
	background-color:#fff;
	color:#666;
	padding:15px 15px;
	line-height:30px;
	font-size:18px;
	min-height:400px;
}
.martics p{
	background-color:#fff;
	font-size:18px;
	line-height:30px;
	color:#666;
	text-indent:20px;
}
.artics p{
	background-color: #fff;
	font-size: 20px;
	line-height: 40px;
	color: #666;
	text-indent: 20px;
}
.fixCom{
	background-color:#fff;		

}
.ytutxs{
	margin-top: 30px;
	padding: 10px;
	padding-left:20px;
	width: 100%;
	background-color: #fff;
	margin-bottom: 2px;
}
.ccbktit{
	height: 50px;
	line-height: 50px;
	background-color: #282828;
	color: #fff;
	text-align: center;
}
.fsttr{
	height: 50px;
	line-height: 50px;
	background-color: #ececec;
	text-align:center;
}
.scttr{
	height: 50px;
	border-bottom:1px solid #ececec;
	text-align:center;
}
.tdccb{
	width:60px;
	height:30px;
}
.bdtop{
	border-top:1px solid #ececec;
}
.smdesp{
	font-size:14px;
	text-align:center;
	padding-top: 5px;
}
.scttr td{
	vertical-align:middle;
}
.smalltit{
	font-size:12px;
	text-align:right;
	background-color:#fff;
	padding: 0 20px;
}
.userifos{
	font-size:14px;
	background-color:#fafafa;
	padding: 10px 0;
}
.prottite{
	line-height: 30px;
	text-align: left;
	margin-bottom: 1px;
	background-color: #fff;
	font-weight: bold;
	font-size: 24px;
	color: #555;
}
.proDetail{
	margin-top:10px;	
	
}