@charset "utf-8";
/*****************************************
* @Author: StoryPeanut
* @Date: 2017-04-11
********************************************/

/*flex*/
.box{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box; /* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox; /* 混合版本语法: IE 10 */
	display: -webkit-flex; /* Safari */
	display: flex;
}
.box_start{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box; /* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox; /* 混合版本语法: IE 10 */
	display: -webkit-flex; /* Safari */
	display: flex;

	-webkit-box-pack: start; /*兼容老版本写法*/
	-moz-justify-content: flex-start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;

	-webkit-box-align: center; /*兼容老版本写法*/
	-moz-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}
/*弹性盒子左浮动对齐*/
.box_fstart{
	display:-webkit-flex;
	display:flex;
	flex-wrap:wrap;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content:flex-start;
	justify-content: flex-start;
}
.box_tstart{
  display:-webkit-flex;
  display:flex;
  
  -webkit-justify-content:flex-start;
  justify-content: flex-start;
}
.box_center{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box; /* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox; /* 混合版本语法: IE 10 */
	display: -webkit-flex; /* Safari */
	display: flex;

	-webkit-box-pack: center; /*兼容老版本写法*/
	-moz-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center;

	-webkit-box-align: center; /*兼容老版本写法*/
	-moz-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}
.box_between{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box; /* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox; /* 混合版本语法: IE 10 */
	display: -webkit-flex; /* Safari */
	display: flex;

	-webkit-box-pack: justify; /*兼容老版本写法*/
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;

	-webkit-box-align: center; /*兼容老版本写法*/
	-moz-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}
.box_arou{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box; /* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox; /* 混合版本语法: IE 10 */
	display: -webkit-flex; /* Safari */
	display: flex;
	justify-content: space-around;

	-webkit-box-align: center; /*兼容老版本写法*/
	-moz-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}
.box_end{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box; /* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox; /* 混合版本语法: IE 10 */
	display: -webkit-flex; /* Safari */
	display: flex;

	-webkit-box-pack: end; /*兼容老版本写法*/
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;

	-webkit-box-align: center; /*兼容老版本写法*/
	-moz-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}
.media{
	display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box; /* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox; /* 混合版本语法: IE 10 */
	display: -webkit-flex; /* Safari */
  display: flex;

  -webkit-box-align: start; /*兼容老版本写法*/
	-moz-align-items: flex-start;
	-webkit-align-items: flex-start;
  align-items: flex-start;
}
/*项目排不下会换行*/
.flex_wrap{
	flex-wrap: wrap;
}
.grid_cell {
	-moz-box-flex: 1; 
  -webkit-box-flex: 1; 
  box-flex: 1;
  flex: 1;
}
.grid_cell2{
	-moz-box-flex: 2; 
  -webkit-box-flex: 2; 
  box-flex: 2;
	flex: 2;
}
.grid_cell.u_full {
  flex: 0 0 100%;
}
.grid_cell.u_1of2 {
  flex: 0 0 50%;
}
.grid_cell.u_1of3 {
  flex: 0 0 33.3333%;
}
.grid_cell.u_1of4 {
  flex: 0 0 25%;
}

.grid_cell.u_lof60 {
	flex: 0 0 60%;
}
.grid_cell.u_lof70 {
	flex: 0 0 70%;
}
.flex-direction{  display: -webkit-box;  display: -ms-flexbox;  display: flex;  -webkit-box-orient: vertical;  -webkit-box-direction: normal;  -ms-flex-direction: column;  flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center;  }
.flex-justify_center{  -webkit-box-pack: center;  -ms-flex-pack: center;  justify-content: center;  }
.flex-justify_between{  -webkit-box-pack: justify;  -ms-flex-pack: justify;  justify-content: space-between;  }
.flex-justify_around{  -ms-flex-pack: distribute;  justify-content: space-around;  }
.flex-justify_evenly{  -webkit-box-pack: space-evenly;  -ms-flex-pack: space-evenly;  justify-content: space-evenly;  }
.align_self_start{-ms-flex-item-align: start;align-self: flex-start;}
.align_self_end{-ms-flex-item-align: end;align-self: flex-end;}
.align_self_around{-ms-flex-item-align: around;align-self: around;}
.align_item_start{-webkit-box-align: flex-start;-ms-flex-align: flex-start;align-items: flex-start;}
.align_item_end{-webkit-box-align: end;-ms-flex-align: end;align-items: end;}
.align_item_flex_end{-webkit-box-align: flex-end;-ms-flex-align: flex-end;align-items: flex-end;}

/*浮动*/
.fl{float: left;}
.fr{float: right;}
/*清除浮动*/
.clearfix{ zoom:1; }
.clearfix:after{display: block;visibility: hidden;voerflow: hidden;content: ".";clear: both;height: 0;}

/*定位*/
.p_r{position: relative;}
.p_a{position: absolute;}
.p_f{position: fixed;}
.t0{top: 0;}
.t10{top: 10px;}
.t15{top: 15px;}
.t35{top: 35px;}
.t50{top: 50px;}
.l0{left: 0;}
.l10{left: 10px;}
.l15{left: 15px;}
.l20{left: 20px;}
.r0{right: 0;}
.r10{right: 10px;}
.r15{right: 15px;}
.r20{right: 20px;}
.r40{right: 40px;}
.r270{right: 270px;}
.r_f5{right: -5px;}
.b0{bottom: 0;}
.b10{bottom: 10px;}
.b70{bottom: 70px;}
.b100{bottom: 100px;}
.b250{bottom: 250px;}
/*层级*/
.z99{z-index: 99;}
.z100{z-index: 100;}
.z101{z-index: 101;}
.z102{z-index: 102;}
.z103{z-index: 103;}
.z999{z-index: 999;}
/*文本溢出*/
.wbyc{overflow: hidden;text-overflow:ellipsis;white-space: nowrap;}
.wbyc2{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.wbyc3{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;}
.wbyc4{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 4;overflow: hidden;}
.wbyc5{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 5;overflow: hidden;}
/*显示隐藏*/
.hide{display: none;}
.show{display: block;}
.dis_in{display: inline-block;}
.visibility_h{visibility: hidden;}
/*遮罩*/
.mk{background: #3a3a3a; filter:alpha(opacity=50);-moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;position: fixed;left: 0;top: 0;bottom: 0;right: 0;z-index: 100;}
.mk0{background: #3a3a3a; filter:alpha(opacity=0);-moz-opacity:0; -khtml-opacity: 0; opacity: 0;position: fixed;left: 0;top: 0;bottom: 0;right: 0;z-index: 100;}
/*删除线*/
.scx{text-decoration:line-through;}
/*滚动条*/
.over_y{overflow-y: auto;}
.over_x{overflow-x: auto;white-space: nowrap;}
.over{overflow: auto;}
.over_hidden{overflow: hidden;}
/*透明*/
.opacity{filter: alpha(opacity=0);-moz-opacity: 0; -khtml-opacity: 0;opacity: 0;}
/*iphone手机position:fixed定位解决*/
.scrollBox{overflow:hidden;overflow-y:scroll;height: 100%;-webkit-overflow-scrolling: touch;padding-bottom: 1rem;}
/*文字居中*/
.t_c{text-align: center;}
.t_r{text-align: right;}
.t_l{text-align: left;}
/*圆角*/
.br3{border-radius: .06rem;}
.br15_top_left{border-top-left-radius: 15px}
.br15_bottom_left{border-bottom-left-radius: .3rem}
.br3_top_right{border-top-right-radius: .06rem}
.br3_bottom_right{border-bottom-right-radius: .06rem}
.br3_bottom_left{border-bottom-left-radius: .06rem;}
.br5{border-radius: 5px;}
.br10{border-radius: 10px;}
.br15{border-radius: 15px;}
.br18{border-radius: 18px;}
.br50{border-radius: 50%;}
/*边框线*/
.bor{border: 1px solid #ccc;}
.bor_ea{border: 1px solid #eaeaea;}
.bor_t{border-top: 1px solid #ccc}
.bor_t_n{border-top: none;}
.bor_b{border-bottom: 1px solid #ccc}
.bor_b_x{border-bottom: 1px dashed #ccc}
.bor_b_d{border-bottom: 3px dotted #ccc}
.bor_b_main{border-bottom: 2px solid #F68034}
.bor_t5_main{border-top: 5px solid #F68034}
.bor6_main{border: 6px solid #85A1D4}
.bor_main{border: 1px solid #f4813f}
.bor_d09{border: 1px solid #d09631}
.bor_b_b4{border-bottom: 1px solid #b4b4b4;}

.bor_l{border-left: 1px solid #eaeaea}
.bor_l_n{border-left: none;}
.bor_r{border-right: 1px solid #eaeaea}
.bor_r_b{border-right: 1px solid #999}
.bor_n{border: none;}
/*自适应iphone6设计稿*/
/*字体*/
.f_w{font-weight: bold;}
.f10{font-size:10px}
.f11{font-size:11px}
.f12{font-size:12px}
.f13{font-size:13px}
.f14{font-size:14px}
.f15{font-size:15px}
.f16{font-size:16px}
.f18{font-size:18px}
.f20{font-size:20px}
.f22{font-size:22px}
.f24{font-size:24px}
.f25{font-size:25px}
.f30{font-size:30px}
.f32{font-size:32px}
.f36{font-size:36px}
.f44{font-size:44px}
/*粗体*/
.f_w{font-weight: 600;}

.t_i{text-indent: 2em;}
/*基础颜色*/
.col_fff{color: #fff;}
.col_000{color: #000;}
.col_333{color: #333;}
.col_666{color: #666;}
.col_f{color: #fff;}
.col_999{color: #999;}
.col_red{color: red;}
.col_5f9{color: #5F90FF;} /*淡蓝色*/
.col_61a{color: #61aa25;} /*淡绿色*/
.back_fff{background-color: #fff;}
.back_f2{background-color: #f2f2f2;}
.back_e0{background-color: #e0e0e0;}
.back_000{background-color: #000;}
.back_333{background-color: #333;}
.back_999{background-color: #999;}
.back_f9{background-color: #F9F9F9;}
.back_e9e9e9{background-color: #EEF1F5;}
.back_red{background-color: red;}
.back_ccc{background-color: #ccc;}
.back_fdd{background-color: #FDD7C2;} /*淡红色*/
.back_fef{background-color: #fef4e9;}
.back_ecf{background-color: #ECFFDC;}
.backRgba_black_5{background-color: rgba(0,0,0,.5);}
.backRgba_black_8{background-color: rgba(0,0,0,.8);}
.back_tm{background-color:transparent;} /*透明*/
.jjb{  
	background: -webkit-linear-gradient(#e8e8e8, #fff); /* Safari 5.1 - 6.0 */ 
	background: -o-linear-gradient(#e8e8e8, #fff); /* Opera 11.1 - 12.0 */  
	background: -moz-linear-gradient(#e8e8e8, #fff); /* Firefox 3.6 - 15 */  
	background: linear-gradient(#e8e8e8, #fff); /* 标准的语法 */ 
}
.jjt{  
	background: -webkit-linear-gradient(#fff, #e8e8e8); /* Safari 5.1 - 6.0 */ 
	background: -o-linear-gradient(#fff, #e8e8e8); /* Opera 11.1 - 12.0 */  
	background: -moz-linear-gradient(#fff, #e8e8e8); /* Firefox 3.6 - 15 */  
	background: linear-gradient(#fff, #e8e8e8); /* 标准的语法 */ 
}
/********项目颜色*********/
/*字体颜色*/
.col_main{color: #F68034 !important;} /*主色调命名*/
.col_d09{color: #d09631;}
.col_orgin{color: #E97C36;}
.col_green{color: #A0B81E}

.col_1E399A{color: #1E399A;} /*字体蓝色*/
/*背景颜色*/
.back_main{background: #f4813f;} /*主色调命名*/
.back_e35{background-color: #E35A08;}
.back_d09{background: #d09631;}
.back_f9d{background: #fff9da;}
.back_f9{background-color: #f9f9f9;}
.back_ffc{background-color: #fffcfc;}
.back_d9{background-color: #d9d9d9;}
/*居中*/
.m0a{margin: 0 auto;}
.ma0{margin: auto 0;}
/*外边距*/
.m0{margin:0px !important;}
.m5{margin:.5px !important;}
.m10{margin:.10px !important;}
.m15{margin:.15px !important;}
.m20{margin:.20px !important;}
.m30{margin:.30px !important;}
.m40{margin:.40px !important;}
/*外边距-上*/
.mt0{margin-top:0px !important;}
.mt5{margin-top:5px !important;}
.mt10{margin-top:10px !important;}
.mt15{margin-top:15px !important;}
.mt18{margin-top:18px !important;}
.mt20{margin-top:20px !important;}
.mt25{margin-top:25px !important;}
.mt30{margin-top:30px !important;}
.mt35{margin-top:35px !important;}
.mt40{margin-top:40px !important;}
.mt45{margin-top:45px !important;}
.mt50{margin-top:50px !important;}
.mt60{margin-top:60px !important;}
.mt-60{margin-top:-60px !important;}
.mt80{margin-top:80px !important;}
.mt100{margin-top: 100px !important;;}
.mt-100{margin-top: -100px !important;;}
/*外边距-右*/
.mr0{margin-right:0px !important;}
.mr2{margin-right:2px !important;}
.mr5{margin-right:5px !important;}
.mr8{margin-right:8px !important;}
.mr10{margin-right:10px !important;}
.mr15{margin-right:15px !important;}
.mr20{margin-right:20px !important;}
.mr25{margin-right:25px !important;}
.mr30{margin-right:30px !important;}
.mr40{margin-right:40px !important;}
.mr60{margin-right:60px !important;}
.mr80{margin-right:80px !important;}
/*外边距-下*/
.mb0{margin-bottom:0px !important;}
.mb5{margin-bottom:5px !important;}
.mb10{margin-bottom:10px !important;}
.mb15{margin-bottom:15px !important;}
.mb20{margin-bottom:20px !important;}
.mb25{margin-bottom:25px !important;}
.mb30{margin-bottom:30px !important;}
.mb40{margin-bottom:40px !important;}
.mb50{margin-bottom:50px !important;}
.mb60{margin-bottom:60px !important;}
.mb-100{margin-bottom:-100px !important;}

/*外边距-左*/
.ml0{margin-left:0px !important;}
.ml5{margin-left:5px !important;}
.ml8{margin-left:8px !important;}
.ml10{margin-left:10px !important;}
.ml15{margin-left:15px !important;}
.ml20{margin-left:20px !important;}
.ml25{margin-left:25px !important;}
.ml30{margin-left:30px !important;}
.ml40{margin-left:40px !important;}
.ml50{margin-left:50px !important;}
.ml60{margin-left:60px !important;}
.ml80{margin-left:80px !important;}
.ml100{margin-left:100px !important;}
.ml150{margin-left:150px !important;}
/*内边距*/
.p0{padding:0px !important;}
.p5{padding:5px !important;}
.p8{padding:8px !important;}
.p10{padding:10px !important;}
.p12{padding:12px !important;}
.p15{padding:15px !important;}
.p20{padding:20px !important;}
.p30{padding:30px !important;}
.p40{padding:40px !important;}
/*内边距-下*/
.pb0{padding-bottom:0px !important;}
.pb5{padding-bottom:5px !important;}
.pb10{padding-bottom:10px !important;}
.pb15{padding-bottom:15px !important;}
.pb20{padding-bottom:20px !important;}
.pb25{padding-bottom:25px !important;}
.pb30{padding-bottom:30px !important;}
.pb40{padding-bottom:40px !important;}
.pb50{padding-bottom:50px !important;}
.pb60{padding-bottom:60px !important;}
.pb70{padding-bottom: 70px !important;}
.pb100{padding-bottom: 100px !important;}
.pb120{padding-bottom: 120px !important;}
/*内边距-上*/
.pt0{padding-top:0px !important;}
.pt5{padding-top:5px !important;}
.pt10{padding-top:10px !important;}
.pt15{padding-top:15px !important;}
.pt20{padding-top:20px !important;}
.pt25{padding-top:25px !important;}
.pt30{padding-top:30px !important;}
.pt40{padding-top:40px !important;}
.pt45{padding-top: 45rem !important;}
.pt50{padding-top: 50px !important;}
.pt60{padding-top: 60px !important;}
.pt90{padding-top: 90rem !important;}
.pt100{padding-top: 100rem !important;}
/*内边距-左*/
.pl0{padding-left:0px !important;}
.pl5{padding-left:5px !important;}
.pl8{padding-left:8px !important;}
.pl10{padding-left:10px !important;}
.pl15{padding-left:15px !important;}
.pl20{padding-left:20px !important;}
.pl25{padding-left:25px !important;}
.pl30{padding-left:30px !important;}
.pl40{padding-left:40px !important;}
.pl50{padding-left:50px !important;}
.pl80{padding-left:80px !important;}
.pl360{padding-left:360px !important;}
/*内边距-右*/
.pr0{padding-right:0px !important;}
.pr5{padding-right:5px !important;}
.pr8{padding-right:8px !important;}
.pr10{padding-right:10px !important;}
.pr15{padding-right:15px !important;}
.pr20{padding-right:20px !important;}
.pr25{padding-right:25px !important;}
.pr30{padding-right:30px !important;}
.pr40{padding-right:40px !important;}
.pr50{padding-right:50px !important;}
.pr360{padding-right:360px !important;}

/*高度*/
.h_i{height: inherit;} /*继承父元素高度*/
.h_b100{height: 100%;}
.h_b30{height: 30%;}
.h_b50{height: 50%;}
.h_b80{height: 80%;}
.h_b90{height: 90%;}
.maxH_b100{max-height: 100%;}
.minH_b100{min-height: 100%;}
.minH_120{min-height: 120px;}
.h1{height: 1px;}
.h3{height: 3px;}
.h5{height: 5px;}
.h8{height: 8px;}
.h10{height: 10px;}
.h12{height: 12px;}
.h15{height: 15px;}
.h20{height: 20px;}
.h25{height: 25px;}
.h30{height: 30px;}
.h32{height: 32px;}
.h35{height: 35px;}
.h40{height: 40px;}
.h45{height: 45px;}
.h50{height: 50px;}
.h55{height: 55px;}
.h60{height: 60px;}
.h65{height: 65px;}
.h70{height: 70px;}
.h75{height: 75px;}
.h80{height: 80px;}
.h90{height: 90px;}
.h100{height: 100px;}
.h110{height: 110px;}
.h120{height: 120px;}
.h125{height: 125px;}
.h130{height: 130px;}
.h135{height: 135px;}
.h140{height: 140px;}
.h150{height: 150px;}
.h150{height: 150px;}
.h160{height: 160px;}
.h165{height: 165px;}
.h170{height: 170px;}
.h175{height: 175px;}
.h180{height: 180px;}
.h200{height: 200px;}
.h220{height: 220px;}
.h240{height: 240px;}
.h260{height: 260px;}
.h270{height: 270px;}
.h275{height: 275px;}
.h287{height: 287px;}
.h290{height: 290px;}
.h295{height: 295px;}
.h300{height: 300px;}
.h320{height: 320px;}
.h350{height: 350px;}
.h360{height: 360px;}
.h375{height: 375px;}
.h400{height: 400px;}
.h420{height: 420px;}
.h500{height: 500px;}
.h550{height: 550px;}
.h595{height: 595px;}
.h600{height: 600px;}
.h608{height: 608px;}
.h610{height: 610px;}
.h620{height: 620px;}
.h700{height: 700px;}

/*行高*/
.lh10{line-height: 10px;}
.lh15{line-height: 15px;}
.lh20{line-height: 20px;}
.lh25{line-height: 25px;}
.lh30{line-height: 30px;}
.lh40{line-height: 40px;}
.lh45{line-height: 45px;}
.lh50{line-height: 50px;}
.lh60{line-height: 60px;}
.lh70{line-height: 70px;}

/*宽度*/
.w_i{width: inherit;} /*继承父元素宽度*/
.w_b100{width: 100%;}
.w_b10{width: 10%;}
.w_b15{width: 15%;}
.w_b20{width: 20%;}
.w_b25{width: 25%;}
.w_b30{width: 30%;}
.w_b33{width: 33.3%;}
.w_b40{width: 40%;}
.w_b45{width: 45%;}
.w_b50{width: 50%;}
.w_b55{width: 55%;}
.w_b60{width: 60%;}
.w_b65{width: 65%;}
.w_b70{width: 70%;}
.w_b75{width: 75%;}
.w_b80{width: 80%;}
.w_b85{width: 85%;}
.w_b90{width: 90%;}
.w_b95{width: 95%;}
.maxW_b50{max-width: 50%;}
.maxW_b60{max-width: 60%;}
.maxW_b70{max-width: 70%;}
.maxW_b80{max-width: 80%;}
.maxW_b90{max-width: 90%;}
.maxW_b100{max-width: 100%;}
.minW_b50{min-width: 50%;}
.minW_b60{min-width: 60%;}
.minW_b70{min-width: 70%;}
.minW_b80{min-width: 80%;}
.minW_b90{min-width: 90%;}
.minW_b100{min-width: 100%;}
.minW_16{min-width: 16px;}
.w5{width: 5px;}
.w10{width: 10px;}
.w11{width: 11px;}
.w12{width: 12px;}
.w15{width: 15px;}
.w18{width: 18px}
.w20{width: 20px;}
.w22{width: 22px;}
.w25{width: 25px;}
.w30{width: 30px;}
.w35{width: 35px;}
.w40{width: 40px;}
.w45{width: 45px}
.w50{width: 50px;}
.w55{width: 55px;}
.w60{width: 60px;}
.w65{width: 65px;}
.w70{width: 70px;}
.w75{width: 75px;}
.w80{width: 80px;}
.w90{width: 90px;}
.w100{width: 100px;}
.w110{width: 110px;}
.w120{width: 120px;}
.w125{width: 125px;}
.w130{width: 130px;}
.w140{width: 140px;}
.w150{width: 150px;}
.w160{width: 160px;}
.w175{width: 175px;}
.w200{width: 200px;}
.w215{width: 215px;}
.w220{width: 220px;}
.w280{width: 280px;}
.w300{width: 300px;}
.w320{width: 320px;}
.w360{width: 360px;}
.w380{width: 380px;}
.w385{width: 385px;}
.w400{width: 400px;}
.w470{width: 470px;}
.w500{width: 500px;}
.w450{width: 450px;}
.w460{width: 460px;}
.w550{width: 550px;}
.w600{width: 600px;}
.w608{width: 608px;}
.w650{width: 650px;}
.w700{width: 700px;}
.w1000{width: 1000px;}
.w1200{width: 1200px;}


/*新增*/
.c_p{cursor:pointer;}  /*鼠标经过变小手*/
.c_p:hover{color: #F68034}
.imgAuto img{border:0;vertical-align:middle;width: auto;}；

/*提示*/
.prompt_back{position:fixed;z-index:9999;top:0px;left:0px;width:100%;height:100%;}
.prompt_back .text{position:fixed;z-index:9999;width:250px;height:100px;top:0;left:0;right:0;bottom:0;margin:auto;padding-left:20px;padding-right:20px;background:#777;color:#fff;font-size:18px;text-align:center;border-radius:5px;}
/*提示*/
.Prompt-back{position:fixed;z-index:9999;top:0px;left:0px;width:100%;height:100%;}
.Prompt-back .tips{position:fixed;display:inline-block;width:4.96rem;height:1.08rem;line-height:1.08rem;top:0;left:0;right:0;bottom:0;margin:auto;background:#242424;color:#fff;font-size:.28rem;text-align:center;border-radius:.1rem;}
.Prompt-back .tips2{position:fixed;display:inline-block;height:6rem;width:12rem;top:0;left:0;right:0;bottom:0;margin:auto;background:#fff;color:#666;font-size:1.2rem;text-align:center;border-radius:3px;}
.Prompt-back .tips2 p{line-height:3rem;}
.Prompt-back .tips2 span{display:inline-block;width:49%;height:1.08rem;border-top:1px solid #ccc;border-bottom-left-radius:3px;line-height:3rem;box-sizing:border-box;}
.Prompt-back .tips2 span:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:0px!important;border-left:1px solid #ccc;color:#999;box-sizing:border-box;}
.tck-btn{cursor:pointer}
.point{cursor: hand}

/*新增 消息提示小圆点背景色*/
.new_msg_tips_background_color{
	background: #c3d72a;
}