@charset "utf-8";
/*
Copyright 2010, KISSY UI Library v1.1.6
MIT Licensed
build time: Dec 14 18:01
*/
/*
KISSY CSS Reset
理念：
1. reset 的目的不是清除浏览器的默认样式, 这仅是部分工作. 清除和重置是紧密不可分的.
2. reset 的目的不是让默认样式在所有浏览器下一致, 而是减少默认样式有可能带来的问题.
3. reset 期望提供一套普适通用的基础样式. 但没有银弹, 推荐根据具体需求, 裁剪和修改后再使用.

特色：
1. 适应中文；
2. 基于最新主流浏览器.

维护：玉伯<lifesinger@gmail.com>, 正淳<ragecarrier@gmail.com>
*/
/** 清除内外边距 **/
/* structural elements 结构元素 */
/* list elements 列表元素 */
/* text formatting elements 文本格式元素 */
/* form elements 表单元素 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}
/** 设置默认字体 **/
body,
button,
input,
select,
textarea {
  font-size: 62.5%;
  /*未调整：1em=16px  0.75em=12px 0.625em=10px  调整后：1.2emX62.5%=0.75em -> 12px;*/
  font-family: "微软雅黑";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
/* 将斜体扶正 */
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}
/* 统一等宽字体 */
small {
  font-size: 12px;
}
/* 小于 12px 的中文很难阅读, 让 small 正常化 */
/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}
/** 重置文本格式元素 **/
a {
  text-decoration: none;
  color: #333;
}
sup {
  vertical-align: text-top;
}
/* 重置, 减少对行高的影响 */
sub {
  vertical-align: text-bottom;
}
/** 重置表单元素 **/
legend {
  color: #000;
}
/* for ie6 */
fieldset,
img {
  border: 0;
}
/* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
  font-size: 100%;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
/* 使得表单元素在 ie 下能继承字体大小 */
/* 注：optgroup 无法扶正 */
/** 重置表格元素 **/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 重置 HTML5 元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  display: block;
  margin: 0;
  padding: 0;
}
mark {
  background: #ff0;
}
/*页面基本设置*/
* {
  word-wrap: break-word;
  outline: none;
  /*去除所有元素点击时周围有浏览器默认线框，是webapp更像原生app*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
/*设置文档高度百分百，解决使用position:fixed高度不是百分百*/
html,
body {
  height: 100%;
}
body {
  background-color: #f5f5f5;
}
/*清除浮动*/
.clearfix {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
/*样式控制字符长度，需指定宽度*/
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
}
.get-loading {
  text-align: center;
  font-size: 1.6em;
  color: #999;
  padding: 60px 0;
}
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("../images/loadding.gif") no-repeat center center;
  z-index: 9999;
}
.abs-reg-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0 0 20px 0;
}
.abs-reg-btn a {
  font-size: 1.4em;
  color: #fff;
}
/*没有数据样式*/
.NODATA {
  padding: 80px 0;
}
.NODATA:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: url("../images/nodata.png") no-repeat center center;
  background-size: 100% auto;
  opacity: .1;
}
.NODATA:after {
  content: "当前没有数据";
  font-size: 1.4em;
  text-align: center;
  display: block;
  padding-top: 14px;
  color: #ccc;
}
/*没有登陆*/
.NOLOGIN {
  padding: 80px 0;
}
.NOLOGIN:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: url("../images/nodata.png") no-repeat center center;
  background-size: 100% auto;
  opacity: .1;
}
.NOLOGIN:after {
  content: "未登陆，请先登陆";
  font-size: 1.6em;
  text-align: center;
  display: block;
  padding-top: 14px;
  color: #999;
}
/*详细页面  返回按钮*/
.gray-back-btn {
  width: 90%;
  margin: 30px auto;
  padding: 12px 0;
  text-align: center;
  color: #999;
  background-color: #e5e5e5;
  font-size: 1.4em;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
}
.gray-back-btn:active {
  background-color: #e0e0e0;
  border: 1px solid #d4d4d4;
}
/*滚动加载数据*/
.ui-scroll-loadtip {
  width: 100%;
  font-size: 1.4em;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
  color: #666;
}
.ui-scroll-loadtip:before {
  content: '';
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
  background: url("../images/layer-loadding.gif") no-repeat center center;
  background-size: 100% auto;
  margin-bottom: -2px;
  margin-right: 5px;
}
.ui-scroll-nodata {
  width: 100%;
  font-size: 1.4em;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
  color: #999;
}
header {
  height: 50px;
  background-color: #fff;
  padding: 0 4%;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}
header .back {
  float: left;
  font-size: 1.4em;
  padding: 0 0 0 18px;
  line-height: 50px;
  background: url("../images/arrow_left_gray.png") no-repeat left center;
  background-size: 18px auto;
}
header .side {
  float: right;
  margin: 0 -4% 0 0;
  overflow: hidden;
}
header .side .add {
  float: left;
  width: 20px;
  height: 50px;
  background: url("../images/add.png") no-repeat center center;
  background-size: auto 16px;
}
header .side .filter {
  float: left;
  width: 50px;
  height: 50px;
  background: url("../images/filter.png") no-repeat center center;
  background-size: auto 16px;
}
.search {
  position: relative;
  width: 92%;
  margin: 14px auto;
  line-height: 24px;
  padding: 8px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}
.search input {
  width: 100%;
  height: 24px;
  line-height: 24px;
  border: none;
  display: block;
  font-size: 1.4em;
  padding: 0 14px;
  box-sizing: border-box;
}
.search .submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  padding: 0 20px;
  font-size: 1.4em;
  border-left: 1px solid #e5e5e5;
  color: #666;
}
.search .submit:active {
  color: #333;
}
.history-wrap {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.history-wrap .back {
  position: relative;
  line-height: 53px;
  padding: 0 0 0 25px;
  margin: 0 0 0 3%;
  font-size: 1.4em;
}
/*
----------------------------------------------  
    微助手登陆绑定及绑定信息
----------------------------------------------  
*/
.login {
  width: 85%;
  margin: 0 auto;
}
.login .logo {
  padding: 8% 0 44px 0;
}
.login .logo > * {
  display: block;
}
.login .logo span {
  width: 180px;
  height: 130px;

  margin: 0 auto;
  background: url("../images/logo.png?aa=1") no-repeat center center;
  background-size: 100% auto;
  display: block;
  overflow: hidden;
}
.login .logo strong {
  font-weight: normal;
  font-size: 2.0em;
  color: #fff;
  text-align: center;
}
.login form .item {
  position: relative;
  padding: 0 0 0 30px;
  border-bottom: 1px solid #fff;
}
.login form .item input[name='username'],
.login form .item input[name='password'] {
  position: relative;
  width: 100%;
  border: none;
  height: 50px;
  font-size: 1.5em;
  color: #fff;
  background-color: transparent;
}
.login form .item input::-webkit-input-placeholder {
  color: #fff;
}
.login form .item.username {
  border-top: 1px solid #fff;
  background: url("../images/login_user_icon.png") no-repeat left center;
  background-size: 20px auto;
}
.login form .item.password {
  background: url("../images/login_password_icon.png") no-repeat left center;
  background-size: 20px auto;
}
.login form .ifunc {
  padding: 20px 0 0 0;
  overflow: hidden;
}
.login form .ifunc .remember {
  float: left;
}
.login form .ifunc .forgetpw {
  float: right;
  font-size: 1.4em;
  color: #fff;
}
.login form .remember label {
  position: relative;
  font-size: 1.4em;
  color: #fff;
  padding: 0 0 0 24px;
}
.login form .remember label i {
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background-color: transparent;
  display: inline-block;
  box-sizing: border-box;
}
.login form .remember label input[type="checkbox"] {
  display: none;
}
.login form .remember label input[type="checkbox"]:checked + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 80% auto;
  background-color: #eebe16;
  border-color: #eebe16;
}
.login form .remember label input[type="checkbox"]:disabled + i {
  border-color: #cccccc;
}
.login form .remember label input[type="checkbox"]:checked:disabled + i {
  background-size: 88% auto;
  background-color: #cccccc;
}
.login form input[type='submit'] {
  width: 100%;
  border: none;
  font-size: 1.6em;
  height: 46px;
  color: #fff;
  text-align: center;
  background-color: #bc2530;
  border-radius: 3px;
  margin: 32px 0;
}
.login form input[type='submit']:active {
  background-color: #eea416;
}
.info-panle {
  position: relative;
  width: 100%;
  height: 120px;
  background-color: #1d81ba;
  overflow: hidden;
}
.info-panle .create {
  position: absolute;
  right: 15px;
  top: 30%;
  color: #fff;
  font-size: 1.4em;
  width: 50px;
  height: 50px;
  background: url("../images/add-postage.png") no-repeat center center;
  background-size: 28px auto;
  border-radius: 3px;
}
.info-panle .contarea {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.info-panle .contarea:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.info-panle .contarea .face {
  float: left;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  display: block;
  overflow: hidden;
}
.info-panle .contarea .info {
  float: left;
  padding-left: 15px;
}
.info-panle .contarea .info span {
  font-size: 1.8em;
  color: #fff;
  display: block;
  padding: 10px 0 8px 0;
}
.info-panle .contarea .info p {
  font-size: 1.2em;
  color: #fff;
}
.chart_short_panle {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
  background-color: #fff;
}
.chart_short_panle .date {
  padding: 0 0 10px 20px;
  font-size: 1.5em;
}
.chart_short_panle .title {
  font-size: 1.4em;
  padding: 0 0 10px 20px;
}
.chart_short_panle .contents:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.chart_short_panle .contents .item {
  float: left;
  width: 25%;
  box-sizing: border-box;
  padding: 0 0 0 20px;
}
.chart_short_panle .contents .item .money {
  font-size: 1.7em;
  color: #333;
  display: block;
}
.chart_short_panle .contents .item .label {
  font-size: 1.2em;
  color: #999;
  display: block;
  padding: 2px 0 0 0;
}
.search-wrap {
  padding: 14px 4%;
}
.search-wrap .box {
  position: relative;
  width: 100%;
  line-height: 24px;
  padding: 10px 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}
.search-wrap .box .COMSET {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  font-size: 1.4em;
  border-right: 1px solid #e5e5e5;
  color: #666;
}
.search-wrap .box .COMSET:active {
  opacity: .6;
}
.search-wrap .box .group {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  font-size: 1.4em;
  border-right: 1px solid #e5e5e5;
  color: #666;
  background: url("../images/category.png") no-repeat center center;
  background-size: 18px auto;
}
.search-wrap .box .group:active {
  opacity: .6;
}
.search-wrap .box .query {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  font-size: 1.4em;
  border-right: 1px solid #e5e5e5;
  color: #666;
  background: url("../images/query.png") no-repeat center center;
  background-size: 22px auto;
}
.search-wrap .box .query:active {
  opacity: .6;
}
.search-wrap .box input {
  width: 100%;
  height: 24px;
  line-height: 24px;
  border: none;
  display: block;
  font-size: 1.4em;
  padding: 0 0 0 64px;
  box-sizing: border-box;
}
.search-wrap .box .empty {
  position: absolute;
  right: 8.5em;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: url("../images/close.png") no-repeat center center;
  background-size: 56% auto;
  background-color: #ddd;
  display: none;
}
.search-wrap .box .empty:active {
  opacity: .6;
}
.search-wrap .box .submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  padding: 0 20px;
  font-size: 1.4em;
  border-left: 1px solid #e5e5e5;
  color: #666;
}
.search-wrap .box .submit:active {
  color: #333;
}
.help-search-wrap {
  padding: 14px 4%;
}
.help-search-wrap .box {
  position: relative;
  width: 100%;
  line-height: 24px;
  padding: 10px 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}
.help-search-wrap .box .group {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  font-size: 1.4em;
  border-right: 1px solid #e5e5e5;
  color: #666;
  background: url("../images/category.png") no-repeat center center;
  background-size: 18px auto;
}
.help-search-wrap .box .group:active {
  opacity: .6;
}
.help-search-wrap .box .selected {
  font-size: 1.4em;
  text-align: center;
}
.help-search-wrap .box .submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  border-left: 1px solid #e5e5e5;
  background: url("../images/arrow_down.png") no-repeat center center;
  background-size: 24px auto;
}
.select-full-wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 14px 0;
  border-bottom: 2px solid #0b94e1;
  box-sizing: border-box;
}
.select-full-wrap:active {
  background-color: #f5f5f5;
}
.select-full-wrap span {
  position: relative;
  display: block;
  font-size: 1.6em;
  text-align: center;
  color: #0b94e1;
  font-weight: bold;
}
.select-full-wrap span:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 14px;
  background: url("../images/arrow_down_color.png") no-repeat center center;
  background-size: 18px auto;
}
.product-list-wrap {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.product-list-wrap ul li {
  padding: 0 4%;
  background-color: #fff;
}
.product-list-wrap ul li:last-child a {
  border-bottom: none;
}
.product-list-wrap ul li:active {
  background-color: #fffaf5;
}
.product-list-wrap ul li a {
  position: relative;
  border-bottom: 1px solid #f5f5f5;
  padding: 12px 0;
  display: block;
}
.product-list-wrap ul li a .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 20px;
  height: 16px;
  background: url("../images/arrow_right.png") no-repeat right center;
  background-size: 100% auto;
  opacity: .6;
}
.product-list-wrap ul li a .imgbox {
  width: 54px;
  height: 54px;
  display: block;
  border: 1px solid #eaeaea;
  background-size: 100% auto !important;
  box-sizing: border-box;
  overflow: hidden;
}
.product-list-wrap ul li a .imgbox.radius {
  border-radius: 54px;
  border: none;
}
.product-list-wrap ul li a .info {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  padding: 0 0 0 64px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  box-sizing: border-box;
}
.product-list-wrap ul li a .info .title {
  font-size: 1.4em;
  color: #333;
  display: block;
}
.product-list-wrap ul li a .info .title strong {
  color: #999;
  font-weight: normal;
  padding-left: 5px;
}
.product-list-wrap ul li a .info .subtitle {
  display: block;
  font-size: 1.4em;
  color: #999;
  padding-top: 5px;
}
.news-list-wrap {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.news-list-wrap ul li {
  padding: 0 4%;
  background-color: #fff;
}
.news-list-wrap ul li:last-child a {
  border-bottom: none;
}
.news-list-wrap ul li:active {
  background-color: #fffaf5;
}
.news-list-wrap ul li a {
  position: relative;
  border-bottom: 1px solid #f5f5f5;
  padding: 14px 0;
  display: block;
}
.news-list-wrap ul li a .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 20px;
  height: 16px;
  background: url("../images/arrow_right.png") no-repeat right center;
  background-size: 100% auto;
  opacity: .6;
}
.news-list-wrap ul li a .title {
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  font-size: 1.4em;
  color: #333;
  display: block;
}
.news-list-wrap ul li a .title strong {
  color: #999;
  font-weight: normal;
  padding-left: 5px;
}
.news-list-wrap ul li a .subtitle {
  display: block;
  font-size: 1.4em;
  color: #999;
  padding-top: 5px;
}
.news-show {
  padding: 20px 4%;
}
.news-show .title {
  font-size: 2.4em;
}
.news-show .brief {
  font-size: 1.4em;
  color: #999;
  padding: .7em 0 0 0;
}
.news-show .content {
  font-size: 1.6em;
  line-height: 1.6em;
  color: #333;
  text-align: justify;
  padding: 1.6em 0 0 0;
}
.news-show .content img {
  max-width: 100%;
  display: block;
}
/*分析排行榜*/
.rank-wrap {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.rank-wrap .rank-item {
  display: block;
}
.rank-wrap .rank-item:last-child .box {
  border-bottom: none;
}
.rank-wrap .rank-item:active {
  background-color: #f5f5f5;
}
.rank-wrap .rank-item .box {
  position: relative;
  width: 92%;
  margin: 0 auto;
  border-bottom: 1px solid #efefef;
  padding: 16px 0;
}
.rank-wrap .rank-item .box .face {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  border: 1px solid #eaeaea;
  box-sizing: border-box;
  overflow: hidden;
}
.rank-wrap .rank-item .box .face.radius {
  border-radius: 50px;
  border: none;
}
.rank-wrap .rank-item .box .sort {
  position: absolute;
  left: 30px;
  top: 8px;
  width: 23px;
  height: 23px;
  text-align: center;
  color: #fff;
  line-height: 23px;
  font-size: 1.4em;
  background-color: #ff601a;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 23px;
  z-index: 1;
}
.rank-wrap .rank-item .box .info {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.rank-wrap .rank-item .box .info .title {
  font-size: 1.4em;
  color: #333;
  display: block;
}
.rank-wrap .rank-item .box .info .title strong {
  color: #999;
  font-weight: normal;
  padding-left: 5px;
}
.rank-wrap .rank-item .box .info .subtitle {
  display: block;
  font-size: 1.4em;
  color: #999;
  padding-top: 5px;
}
.rank-wrap .rank-item .box .side {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 1.6em;
  color: #666;
}
/*利润报表详细*/
.profit-item {
  position: relative;
  background-color: #fff;
  margin-top: 10px;
}
.profit-item a {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: block;
  padding: 0 15px;
  box-sizing: border-box;
}
.profit-item a:active {
  background-color: #fffaf5;
}
.profit-item a .header {
  padding: 16px 0;
  font-size: 1.4em;
  color: #666;
  border-bottom: 1px solid #ededed;
}
.profit-item a .header:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.profit-item a .header span {
  display: block;
}
.profit-item a .header span:first-child {
  float: left;
}
.profit-item a .header span:last-child {
  float: right;
}
.profit-item a .center {
  padding: 16px 0;
}
.profit-item a .center p {
  font-size: 1.4em;
  line-height: 1.8em;
}
.panle-head {
  margin: 10px 0 0 0;
  padding: 14px 4%;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.panle-head .box {
  position: relative;
}
.panle-head .box .imgbox {
  width: 66px;
  height: 66px;
  border: 1px solid #e5e5e5;
  background-size: 100% auto !important;
  box-sizing: border-box;
}
.panle-head .box .txtbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 0 0 80px;
  text-align: right;
  box-sizing: border-box;
}
.panle-head .box .txtbox > * {
  display: block;
}
.panle-head .box .txtbox strong {
  font-size: 1.6em;
  font-weight: normal;
  padding: 10px 0 5px 0;
}
.panle-head .box .txtbox span {
  font-size: 1.4em;
  line-height: 1.4em;
  color: #999;
}
.panle-info {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 10px;
}
.panle-info .item {
  position: relative;
  width: 92%;
  margin: 0 auto;
  line-height: 46px;
  border-bottom: 1px solid #f5f5f5;
  box-sizing: border-box;
  display: block;
}
.panle-info .item:last-child {
  border-bottom: none;
}
.panle-info .item:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.panle-info .item.arrow {
  background: url("../images/arrow_right_gray.png") no-repeat right center;
  background-size: 12px auto;
}
.panle-info .item span {
  font-size: 1.4em;
  color: #666;
}
.panle-info .item span:last-child {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  display: block;
}
.panle-info .item span:last-child img {
  width: 40px;
  height: 40px;
  display: block;
}
.panle-info .item span strong {
  color: #f00;
  font-weight: normal;
}
.panle-info .slist {
  padding: 0 4%;
}
.panle-info .slist ul li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.panle-info .slist ul li:last-child {
  border-bottom: none;
}
.panle-info .slist ul li .imgbox {
  width: 50px;
  height: 50px;
  border: 1px solid #e5e5e5;
  background-size: 100% auto !important;
  box-sizing: border-box;
}
.panle-info .slist ul li .txtbox {
  position: absolute;
  right: 0;
  top: 16px;
  text-align: right;
  box-sizing: border-box;
}
.panle-info .slist ul li span {
  font-size: 1.4em;
  line-height: 1.4em;
  color: #666;
  display: block;
}
/*弹层岗位*/
.post-wrap {
  max-height: 408px;
  overflow: auto;
}
.post-wrap a {
  font-size: 1.4em;
  display: block;
  box-sizing: border-box;
}
.post-wrap a:last-child {
  border-bottom: none;
}
.post-wrap a:active {
  background-color: #f5f5f5;
}
.post-wrap a span {
  width: 90%;
  margin: 0 auto;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f5;
}
.query-wrap {
  background-color: #fff;
  margin-bottom: 14px;
}
.query-wrap .tab-panle {
  border-bottom: 1px solid #e5e5e5;
}
.query-wrap .tab-panle.two a {
  width: 50%;
}
.query-wrap .tab-panle.four a {
  width: 25%;
}
.query-wrap .tab-panle:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.query-wrap .tab-panle a {
  float: left;
  width: 33.3333%;
  display: block;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
}
.query-wrap .tab-panle a.current {
  color: #0b94e1;
  font-weight: bold;
  border-bottom: 2px solid #0b94e1;
}
.query-wrap .tab-panle .more {
  background: url("../images/filter.png") no-repeat 1.2em center;
  background-size: 14px auto;
}
.preanalyze-wrap a {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: block;
  box-sizing: border-box;
  padding: 0 14px;
}
.preanalyze-wrap a:active {
  background-color: #f5f5f5;
}
.preanalyze-wrap a span {
  display: block;
}
.preanalyze-wrap a span:first-child {
  font-size: 1.4em;
  line-height: 54px;
}
.preanalyze-wrap a span:last-child {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 28px;
  height: 14px;
  background: url("../images/arrow_right.png") no-repeat center center;
  background-size: 18px auto;
  opacity: .7;
}
.more-filter-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.more-filter-wrap .condition-box {
  padding: 20px 4% 0 4%;
  box-sizing: border-box;
  overflow: auto;
}
.more-filter-wrap .condition-box .item {
  padding: 0 0 20px 0;
}
.more-filter-wrap .condition-box .item .bar {
  font-size: 1.4em;
  padding: 0 0 10px 0;
}
.more-filter-wrap .condition-box .item .conts:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.more-filter-wrap .condition-box .item .conts span {
  float: left;
  font-size: 1.4em;
  color: #666;
  padding: 6px 12px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  margin: 0 8px 8px 0;
  box-sizing: border-box;
  display: block;
}
.more-filter-wrap .condition-box .item .conts span:last-child {
  margin: 0;
}
.more-filter-wrap .condition-box .item .conts span.current {
  border: 1px solid #ff7f00;
  background: url("../images/right-arrow.png") no-repeat right bottom;
  background-color: #f5f5f5;
  background-size: 6px auto;
}
.more-filter-wrap .condition-box .item .conts span.not-select {
  color: #ccc;
}
.more-filter-wrap .condition-box .item .conts input {
  border: 1px solid #e5e5e5;
  width: 100%;
  font-size: 1.4em;
  color: #333;
  padding: 10px 12px;
  box-sizing: border-box;
}
.more-filter-wrap .condition-box .item .conts input[name="start_time"] {
  margin: 0 0 10px 0;
}
.more-filter-wrap .btn-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #e5e5e5;
  box-sizing: border-box;
}
.more-filter-wrap .btn-box:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.more-filter-wrap .btn-box .COMSET {
  float: left;
  width: 50%;
  font-size: 1.4em;
  text-align: center;
  padding: 14px 0;
  color: #666;
  background-color: #fff;
  box-sizing: border-box;
}
.more-filter-wrap .btn-box .save {
  float: left;
  width: 50%;
  font-size: 1.4em;
  text-align: center;
  padding: 14px 0;
  color: #666;
  background-color: #fff;
  box-sizing: border-box;
  background-color: #ff7f00;
  color: #fff;
}
.more-filter-wrap .btn-box .cancel {
  float: left;
  width: 50%;
  font-size: 1.4em;
  text-align: center;
  padding: 14px 0;
  color: #666;
  background-color: #fff;
  box-sizing: border-box;
}
.more-filter-wrap .confirm-btn {
  width: 50%;
  text-align: center;
  font-size: 1.5em;
  padding: 10px 0;
  background-color: #f88912;
  color: #fff;
  border-radius: 3px;
}
.more-filter-wrap .confirm-btn:active {
  background-color: #ff7200;
}
.postage-wrap .part {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 10px;
}
.postage-wrap .part ul {
  position: relative;
  width: 100%;
  display: block;
}
.postage-wrap .part ul li {
  padding: 0 4%;
  font-size: 1.4em;
  color: #666;
}
.postage-wrap .part ul li:active {
  background-color: #f5f5f5;
}
.postage-wrap .part ul li:last-child .box {
  border-bottom: none;
}
.postage-wrap .part ul li .box {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}
.postage-wrap .part ul li .box.arrow {
  background: url("../images/arrow_right.png") no-repeat right center;
  background-size: 18px auto;
}
.postage-wrap .part ul li .box:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.postage-wrap .part ul li .box .label {
  float: left;
}
.postage-wrap .part ul li .box .text {
  float: right;
  display: block;
}
.postage-wrap .part ul li .box .text img {
  width: 40px;
  height: 40px;
  display: block;
}
.postage-wrap .part ul li .box .text input {
  width: 100%;
  text-align: right;
  border: none;
  background-color: transparent;
}
.postage-wrap .part ul li .box .text input.canedit {
  background: url("../images/edit.png") no-repeat right center;
  background-size: 13px auto;
}
.postage-wrap .part ul li textarea {
  width: 100%;
  height: 5.6em;
  border: 1px solid #f5f5f5;
  margin: 1.4em 0;
  padding: .7em;
  box-sizing: border-box;
  resize: none;
}
.postage-wrap .projects {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 10px;
}
.postage-wrap .projects .bar {
  font-size: 1.4em;
  color: #666;
  padding: 0 4%;
}
.postage-wrap .projects .bar:active {
  background-color: #f5f5f5;
}
.postage-wrap .projects .bar.arrow span {
  background: url("../images/arrow_right.png") no-repeat right center;
  background-size: 18px auto;
}
.postage-wrap .projects .bar span {
  padding: 16px 0;
  display: block;
  border-bottom: 1px solid #f5f5f5;
}
.postage-wrap .projects ul .empty-block-area {
  height: 76px;
}
.postage-wrap .projects ul li {
  padding: 0 4%;
}
.postage-wrap .projects ul li:active {
  background-color: #f5f5f5;
}
.postage-wrap .projects ul li:last-child .box {
  border-bottom: none;
}
.postage-wrap .projects ul li .box {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.postage-wrap .projects ul li .box.onlytxt .txt {
  position: inherit;
  left: 0;
  top: 0;
  text-align: left;
  box-sizing: border-box;
}
.postage-wrap .projects ul li .box .img {
  width: 52px;
  height: 52px;
  border: 1px solid #e5e5e5;
  background-size: 100% auto !important;
  box-sizing: border-box;
}
.postage-wrap .projects ul li .box .txt {
  position: absolute;
  left: 62px;
  top: 11px;
  text-align: left;
  box-sizing: border-box;
}
.postage-wrap .projects ul li .box .del {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/close.png") no-repeat center center;
  background-size: 10px auto;
}
.postage-wrap .projects ul li span {
  font-size: 1.4em;
  line-height: 1.3em;
  color: #666;
  display: block;
}
.fixed-btn-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.fixed-btn-wrap:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.fixed-btn-wrap span {
  width: 50%;
  font-size: 1.4em;
  line-height: 52px;
  text-align: center;
  box-sizing: border-box;
  display: block;
}
.fixed-btn-wrap .save {
  float: left;
  color: #666;
}
.fixed-btn-wrap .settle {
  float: right;
  color: #fff;
  background-color: #ff7f00;
}
.spas-head-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 4%;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
  z-index: 2;
  box-sizing: border-box;
}
.spas-head-wrap:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.spas-head-wrap .back {
  position: relative;
  float: left;
  font-size: 1.4em;
  line-height: 50px;
  padding: 0 0 0 20px;
  color: #666;
}
.spas-head-wrap .back:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/arrow_left.png") no-repeat -4px center;
  background-size: 100% auto;
}
.spas-head-wrap .side {
  float: right;
}
.spas-head-wrap .side:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.spas-head-wrap .side a {
  float: left;
  width: 20px;
  height: 50px;
  font-size: 1.4em;
  line-height: 50px;
  display: block;
  opacity: .6;
}
.spas-head-wrap .side a.search-icon {
  background: url("../images/spas-search.png") no-repeat right center;
  background-size: 100% auto;
}
.spas-head-wrap .side a.search-icon:active {
  background: url("../images/spas-search-hover.png") no-repeat right center;
  background-size: 100% auto;
}
.spas-head-wrap .side a.step-icon {
  background: url("../images/spas-step.png") no-repeat right center;
  background-size: 100% auto;
  margin: 0 0 0 16px;
}
.spas-head-wrap .side a.step-icon:active {
  background: url("../images/spas-step-hover.png") no-repeat right center;
  background-size: 100% auto;
}
.spas-head-wrap .side a:active {
  opacity: 1;
}
.spas-head-wrap .search {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  line-height: 24px;
  padding: 12px 0;
  background-color: #fff;
  box-sizing: border-box;
  display: none;
}
.spas-head-wrap .search .COMSET {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  font-size: 1.4em;
  border-right: 1px solid #e5e5e5;
  color: #666;
}
.spas-head-wrap .search .COMSET:active {
  opacity: .6;
}
.spas-head-wrap .search .group {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  font-size: 1.4em;
  border-right: 1px solid #e5e5e5;
  color: #666;
  background: url("../images/category.png") no-repeat center center;
  background-size: 18px auto;
}
.spas-head-wrap .search .group:active {
  opacity: .6;
}
.spas-head-wrap .search .query {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  font-size: 1.4em;
  border-right: 1px solid #e5e5e5;
  color: #666;
  background: url("../images/query.png") no-repeat center center;
  background-size: 22px auto;
}
.spas-head-wrap .search .query:active {
  opacity: .6;
}
.spas-head-wrap .search input {
  width: 100%;
  height: 24px;
  line-height: 24px;
  border: none;
  display: block;
  font-size: 1.4em;
  padding: 0 0 0 64px;
  box-sizing: border-box;
}
.spas-head-wrap .search .empty {
  position: absolute;
  right: 8.5em;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: url("../images/close.png") no-repeat center center;
  background-size: 56% auto;
  background-color: #ddd;
  display: none;
}
.spas-head-wrap .search .empty:active {
  opacity: .6;
}
.spas-head-wrap .search .submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  padding: 0 20px;
  font-size: 1.4em;
  border-left: 1px solid #e5e5e5;
  color: #666;
}
.spas-head-wrap .search .submit:active {
  color: #333;
}
.check-list-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  z-index: 1;
}
.check-list-wrap ul li {
  padding: 0 4%;
  background-color: #fff;
}
.check-list-wrap ul li:first-child {
  border-top: 1px solid #e5e5e5;
}
.check-list-wrap ul li:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.check-list-wrap ul li:last-child label {
  border-bottom: none;
}
.check-list-wrap ul li:active {
  background-color: #f5f5f5;
}
.check-list-wrap ul li.wipeoff {
  background-color: #fffae8;
}
.check-list-wrap ul li.wipeoff label {
  border-bottom: 1px solid #f6efd7;
}
.check-list-wrap ul li.wipeoff label .imgbox {
  width: 36px;
  height: 36px;
  border: none;
}
.check-list-wrap ul li.wipeoff label .info .title {
  color: #666;
}
.check-list-wrap ul li.wipeoff label i {
  width: 17px;
  height: 17px;
}
.check-list-wrap ul li.onlytxt label {
  padding: 16px 0;
}
.check-list-wrap ul li.onlytxt label .info {
  position: inherit !important;
  width: 100%;
  padding: 0;
  transform: none;
  -webkit-transform: none;
  box-sizing: border-box;
}
.check-list-wrap ul li.onlytxt label .info .title {
  font-size: 1.4em;
  color: #333;
  font-weight: normal;
  display: block;
}
.check-list-wrap ul li label {
  position: relative;
  border-bottom: 1px solid #f5f5f5;
  padding: 12px 0;
  display: block;
}
.check-list-wrap ul li label .imgbox {
  width: 54px;
  height: 54px;
  display: block;
  border: 1px solid #eaeaea;
  background-size: 100% auto !important;
  box-sizing: border-box;
  overflow: hidden;
}
.check-list-wrap ul li label .imgbox.radius {
  border-radius: 54px;
  border: none;
}
.check-list-wrap ul li label .info {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  padding: 0 0 0 64px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  box-sizing: border-box;
}
.check-list-wrap ul li label .info .title {
  font-size: 1.4em;
  color: #333;
  font-weight: normal;
  display: block;
}
.check-list-wrap ul li label .info .brief {
  display: block;
  font-size: 1.4em;
  color: #999;
  padding-top: 5px;
}
.check-list-wrap ul li label i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
}
.check-list-wrap ul li label input[type="checkbox"] {
  display: none;
}
.check-list-wrap ul li label input[type="checkbox"]:checked + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #09bb07;
  border-color: #09bb07;
}
.check-list-wrap ul li label input[type="checkbox"]:disabled + i {
  border-color: #cccccc;
}
.check-list-wrap ul li label input[type="checkbox"]:checked:disabled + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #cccccc;
}
.check-list-wrap ul li label input[type="radio"] {
  display: none;
}
.check-list-wrap ul li label input[type="radio"] + i {
  border-radius: 50%;
  overflow: hidden;
}
.check-list-wrap ul li label input[type="radio"]:checked + i {
  background-color: #f00;
  background: url("../images/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #09bb07;
  border-color: #09bb07;
}
.check-list-wrap ul li label input[type="radio"]:disabled + i {
  border-color: #cccccc;
}
.check-list-wrap ul li label input[type="radio"]:checked:disabled + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #cccccc;
}
.spas-wrap .bracebox {
  height: 65px;
}
.spas-wrap .bracebox-creat {
  height: 90px;
}
.spas-wrap .creat {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 50px;
  text-align: center;
  text-indent: 20px;
  color: #ff8533;
  font-size: 1.4em;
  background: url("../images/spas-add.png") no-repeat 42% center;
  background-size: 12px auto;
  background-color: #fff;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.066);
  box-sizing: border-box;
  z-index: 3;
}
.spas-wrap .form-edit-wrap {
  margin: 0 0 14px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.form-edit-wrap form {
  background-color: #fff;
}
.form-edit-wrap form .item {
  padding: 0 4%;
}
.form-edit-wrap form .item:last-child .box {
  border-bottom: none;
}
.form-edit-wrap form .item .box {
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.form-edit-wrap form .item .box.large .colspan {
  padding: 50px 2em 0 5em !important;
}
.form-edit-wrap form .item .label {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 50px;
  font-size: 1.4em;
  color: #666;
}
.form-edit-wrap form .item input {
  width: 100%;
  line-height: 50px;
  border: none;
  font-size: 1.4em;
  padding: 0 2em 0 6em;
  box-sizing: border-box;
}
.form-edit-wrap form .item input[readonly='readonly'] {
  color: #666;
}
.form-edit-wrap form .item .tips {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 1.4em;
  color: #bbb;
}
.form-edit-wrap form .item .tips.scand {
  right: 0;
  width: 60px;
  height: 50px;
  background: url("../images/scand.png") no-repeat right center;
  background-size: 22px auto;
  opacity: .33;
}
.form-edit-wrap form .item .tips.scand:active {
  opacity: .66;
}
.form-edit-wrap form .item .colspan {
  width: 100%;
  border: none;
  font-size: 1.4em;
  padding: 1.2em 2em 0 6em;
  box-sizing: border-box;
}
.form-edit-wrap form .item .colspan:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.form-edit-wrap form .item .colspan label {
  float: left;
  margin: 0 14px .9em 0;
  display: block;
  color: #666;
  cursor: pointer;
}
.form-edit-wrap form .item .colspan label i {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
}
.form-edit-wrap form .item .colspan label input[type="checkbox"] {
  display: none;
}
.form-edit-wrap form .item .colspan label input[type="checkbox"]:checked + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #09bb07;
  border-color: #09bb07;
}
.form-edit-wrap form .item .colspan label input[type="checkbox"]:disabled + i {
  border-color: #cccccc;
}
.form-edit-wrap form .item .colspan label input[type="checkbox"]:checked:disabled + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 90% auto;
  background-color: #cccccc;
}
.form-edit-wrap form .item .colspan label input[type="radio"] {
  display: none;
}
.form-edit-wrap form .item .colspan label input[type="radio"] + i {
  border-radius: 50%;
  overflow: hidden;
}
.form-edit-wrap form .item .colspan label input[type="radio"]:checked + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #09bb07;
  border-color: #09bb07;
}
.form-edit-wrap form .item .colspan label input[type="radio"]:disabled + i {
  border-color: #cccccc;
}
.form-edit-wrap form .item .colspan label input[type="radio"]:checked:disabled + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 90% auto;
  background-color: #cccccc;
}
.form-edit-wrap form .item.arrow:active {
  background-color: #f5f5f5;
}
.form-edit-wrap form .item.arrow input {
  background: url("../images/arrow_right_gray.png") no-repeat 99% center;
  background-size: 14px auto;
}
.form-edit-wrap form .item.textarea {
  height: 150px;
}
.form-edit-wrap form .item.textarea .box {
  border: none;
}
.form-edit-wrap form .item.textarea textarea {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 100px;
  line-height: 100%;
  border: 1px solid #f5f5f5;
  font-size: 1.4em;
  line-height: 1.6em;
  box-sizing: border-box;
  resize: none;
}
.form-edit-wrap form .item.textarea.large {
  height: 270px !important;
}
.form-edit-wrap form .item.textarea.large textarea {
  height: 200px !important;
}
.form-edit-wrap .submit {
  position: relative;
  width: 92%;
  font-size: 1.6em;
  border-radius: 3px;
  background-color: #ff8533;
  line-height: 46px;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin: 26px auto 16px auto;
}
.form-edit-wrap .submit:active {
  background-color: #ff6633;
}
.form-edit-wrap .delete {
  position: relative;
  width: 92%;
  font-size: 1.6em;
  border-radius: 3px;
  background-color: #ff8533;
  line-height: 46px;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin: 0 auto 26px auto;
  background-color: #c8c9cc;
  color: #888;
}
.form-edit-wrap .delete:active {
  background-color: #ff6633;
}
.form-edit-wrap .delete:active {
  background-color: #bebfc2;
}
.COM-SUBMIT-BTN {
  position: relative;
  width: 92%;
  font-size: 1.6em;
  border-radius: 3px;
  background-color: #ff8533;
  line-height: 46px;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.COM-SUBMIT-BTN:active {
  background-color: #ff6633;
}
.toast-edit-wrap {
  padding: 20px 0;
}
.toast-edit-wrap form {
  background-color: #fff;
}
.toast-edit-wrap form .item {
  padding: 0 4% 20px 4%;
}
.toast-edit-wrap form .item:last-child .box {
  border-bottom: none;
}
.toast-edit-wrap form .item .box {
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.toast-edit-wrap form .item input {
  width: 100%;
  line-height: 46px;
  border: 1px solid #ccc;
  font-size: 1.4em;
  padding: 0 14px;
  border-radius: 3px;
  box-sizing: border-box;
}
.toast-edit-wrap form .item input[readonly='readonly'] {
  color: #666;
}
.toast-edit-wrap form .item input:focus {
  border-color: #ff8533;
}
.toast-edit-wrap form .item textarea {
  width: 100%;
  height: 80px;
  line-height: 20px;
  border: 1px solid #ccc;
  font-size: 1.4em;
  padding: 14px;
  border-radius: 3px;
  box-sizing: border-box;
}
.toast-edit-wrap form .item textarea:focus {
  border-color: #ff8533;
}
.toast-edit-wrap form .item .colspan {
  width: 100%;
  border: none;
  font-size: 1.4em;
  padding: 1.2em 2em 0 0;
  box-sizing: border-box;
}
.toast-edit-wrap form .item .colspan:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.toast-edit-wrap form .item .colspan label {
  float: left;
  margin: 0 14px .9em 0;
  display: block;
  color: #666;
  cursor: pointer;
}
.toast-edit-wrap form .item .colspan label i {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
}
.toast-edit-wrap form .item .colspan label input[type="checkbox"] {
  display: none;
}
.toast-edit-wrap form .item .colspan label input[type="checkbox"]:checked + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #09bb07;
  border-color: #09bb07;
}
.toast-edit-wrap form .item .colspan label input[type="checkbox"]:disabled + i {
  border-color: #cccccc;
}
.toast-edit-wrap form .item .colspan label input[type="checkbox"]:checked:disabled + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 90% auto;
  background-color: #cccccc;
}
.toast-edit-wrap form .item .colspan label input[type="radio"] {
  display: none;
}
.toast-edit-wrap form .item .colspan label input[type="radio"] + i {
  border-radius: 50%;
  overflow: hidden;
}
.toast-edit-wrap form .item .colspan label input[type="radio"]:checked + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #09bb07;
  border-color: #09bb07;
}
.toast-edit-wrap form .item .colspan label input[type="radio"]:disabled + i {
  border-color: #cccccc;
}
.toast-edit-wrap form .item .colspan label input[type="radio"]:checked:disabled + i {
  background: url("../images/check.png") no-repeat center center;
  background-size: 90% auto;
  background-color: #cccccc;
}
.toast-edit-wrap .btn {
  overflow: hidden;
}
.toast-edit-wrap .submit {
  position: relative;
  width: 92%;
  font-size: 1.6em;
  border-radius: 3px;
  background-color: #ff8533;
  line-height: 46px;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin: 6px auto 0 auto;
}
.toast-edit-wrap .submit:active {
  background-color: #ff6633;
}
.toast-edit-wrap .submit.half {
  float: right;
  width: 44%;
  margin: 0 4% 0 0;
}
.toast-edit-wrap .delete {
  position: relative;
  width: 92%;
  font-size: 1.6em;
  border-radius: 3px;
  background-color: #ff8533;
  line-height: 46px;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin: 16px auto 0 auto;
  background-color: #c8c9cc;
  color: #888;
}
.toast-edit-wrap .delete:active {
  background-color: #ff6633;
}
.toast-edit-wrap .delete:active {
  background-color: #bebfc2;
}
.toast-edit-wrap .delete.half {
  float: left;
  width: 44%;
  margin: 0 0 0 4%;
}
.edit-postage-btn {
  padding: 26px 0;
}
.edit-postage-btn a {
  position: relative;
  width: 92%;
  font-size: 1.6em;
  border-radius: 3px;
  background-color: #ff8533;
  line-height: 46px;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.edit-postage-btn a:active {
  background-color: #ff6633;
}
.edit-postage-btn .edit {
  position: relative;
  width: 92%;
  font-size: 1.6em;
  border-radius: 3px;
  background-color: #ff8533;
  line-height: 46px;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin: 0 auto 16px auto;
}
.edit-postage-btn .edit:active {
  background-color: #ff6633;
}
.edit-postage-btn .delete {
  position: relative;
  width: 92%;
  font-size: 1.6em;
  border-radius: 3px;
  background-color: #ff8533;
  line-height: 46px;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #888;
  background-color: #c8c9cc;
}
.edit-postage-btn .delete:active {
  background-color: #ff6633;
}
.edit-postage-btn .delete:active {
  background-color: #bebfc2;
}
.fixed-links-wrap {
  position: fixed;
  right: 4%;
  bottom: 4%;
  z-index: 1;
}
.fixed-links-wrap a {
  width: 40px;
  height: 40px;
  display: block;
  background-color: #f00;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6) !important;
  color: #fff;
  overflow: hidden;
}
.fixed-links-wrap a.scand {
  background: url("../images/fixed-scand-btn.png") no-repeat center center;
  background-size: 24px auto;
}
.fixed-links-wrap a.home {
  background: url("../images/fixed-home-btn.png") no-repeat center center;
  background-size: 24px auto;
  margin: 10px 0;
}
.fixed-links-wrap a.add {
  background: url("../images/fixed-add-btn.png") no-repeat center center;
  background-size: 16px auto;
}
.fixed-links-wrap a.back {
  background: url("../images/fixed-back-btn.png") no-repeat center center;
  background-size: 18px auto;
}
.fixed-links-wrap a.back.sp {
  background: url("../images/fixed-back-sp-btn.png") no-repeat center center;
  background-size: 18px auto;
}
.fixed-links-wrap a:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.guide-list-wrap .bar {
  padding: 0 4%;
  font-size: 1.4em;
  line-height: 3em;
}
.guide-list-wrap ul {
  background-color: #fff;
}
.guide-list-wrap ul li {
  padding: 0 4% 0 10%;
}
.guide-list-wrap ul li.ca {
  background: url("../images/ca.png") no-repeat 4% center;
  background-size: 17px auto;
}
.guide-list-wrap ul li.cb {
  background: url("../images/cb.png") no-repeat 4% center;
  background-size: 17px auto;
}
.guide-list-wrap ul li:active {
  background-color: #f5f5f5;
}
.guide-list-wrap ul li:last-child a {
  border-bottom: none;
}
.guide-list-wrap ul li a {
  font-size: 1.4em;
  padding: 20px 0;
  border-bottom: 1px solid #f5f5f5;
  background: url("../images/arrow_right_gray.png") no-repeat right center;
  background-size: 14px auto;
  display: block;
}
.guide-list2-wrap .bar {
  padding: 0 4%;
  font-size: 1.4em;
  line-height: 3em;
}
.guide-list2-wrap ul {
  background-color: #fff;
}
.guide-list2-wrap ul li {
  position: relative;
  padding: 0 4% 0 10%;
}
.guide-list2-wrap ul li.ca {
  background: url("../images/ca.png") no-repeat 4% center;
  background-size: 17px auto;
}
.guide-list2-wrap ul li.cb {
  background: url("../images/cb.png") no-repeat 4% center;
  background-size: 17px auto;
}
.guide-list2-wrap ul li:last-child a {
  border-bottom: none;
}
.guide-list2-wrap ul li a {
  display: block;
}
.guide-list2-wrap ul li a.record {
  font-size: 1.4em;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}
.guide-list2-wrap ul li a.add {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 80px;
  height: 50%;
  border-left: 1px solid #e5e5e5;
  background: url("../images/add.png") no-repeat center center;
  background-size: 14px auto;
  z-index: 1;
  opacity: .6;
}
.guide-list2-wrap ul li a.arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 80px;
  height: 50%;
  background: url("../images/arrow_right_gray.png") no-repeat center center;
  background-size: 14px auto;
  z-index: 1;
}
.select-panle {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  background-color: #fff;
  margin: 0 0 14px 0;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
  overflow: hidden;
}
.select-panle .part {
  padding: 0 4%;
}
.select-panle .part:last-child .box {
  border-bottom: none;
}
.select-panle .part .box {
  position: relative;
  height: 50px;
  border-bottom: 1px solid #f5f5f5;
  box-sizing: border-box;
}
.select-panle .part .box:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.select-panle .part .show-label {
  float: left;
  line-height: 50px;
  padding: 0 0 0 20px;
  color: #666;
  font-size: 1.4em;
}
.select-panle .part .show-label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 14px;
  height: 14px;
  opacity: .3;
}
.select-panle .part .side {
  float: right;
  line-height: 50px;
  font-size: 1.4em;
  color: #666;
}
.select-panle .part .side:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.select-panle .part.date .COMSET {
  float: left;
  width: 44px;
  height: 50px;
  opacity: .5;
}
.select-panle .part.date .COMSET:active {
  background-color: #e5e5e5;
}
.select-panle .part.date .prev {
  float: left;
  width: 44px;
  height: 50px;
  opacity: .5;
  background: url("../images/arrow_left.png") no-repeat center center;
  background-size: 22px auto;
}
.select-panle .part.date .prev:active {
  background-color: #e5e5e5;
}
.select-panle .part.date .next {
  float: left;
  width: 44px;
  height: 50px;
  opacity: .5;
  background: url("../images/arrow_right.png") no-repeat center center;
  background-size: 22px auto;
}
.select-panle .part.date .next:active {
  background-color: #e5e5e5;
}
.select-panle .part.date .show-label:before {
  background: url("../images/filter_date.png") no-repeat center center;
  background-size: 14px auto;
  opacity: .4;
}
.select-panle .part.date .side {
  margin: 0 -4% 0 0;
}
.select-panle .part.branch .show-label:before {
  background: url("../images/filter_branch.png") no-repeat center center;
  background-size: 14px 11px;
}
.select-panle .part.normal .show-label:before {
  background: url("../images/filter_branch.png") no-repeat center center;
  background-size: 14px 11px;
}
.select-panle .part.normal .side {
  width: 50px;
  height: 50px;
  background: url("../images/arrow_right.png") no-repeat right center;
  background-size: 20px auto;
  opacity: .5;
}
.chart-list-wrap .loadding {
  text-align: center;
  line-height: 200px;
}
.chart-list-wrap .data-head-wrap {
  padding: 0 4%;
  background-color: #fff;
}
.chart-list-wrap .data-list-wrap {
  padding: 0 4% 50px 4%;
  background-color: #fff;
}
.chart-list-wrap table thead tr th {
  height: 50px;
  font-size: 1.4em;
  text-align: left;
  font-weight: normal;
  border-bottom: 1px solid #f5f5f5;
}
.chart-list-wrap table tbody tr td {
  height: 50px;
  font-size: 1.4em;
  text-align: left;
  color: #666;
  border-bottom: 1px solid #f5f5f5;
}
.chart-list-wrap ul {
  background-color: #fff;
}
.chart-list-wrap ul li {
  padding: 0 4%;
}
.chart-list-wrap ul li:last-child .box {
  border-bottom: none;
}
.chart-list-wrap ul li .box {
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}
.chart-list-wrap ul li .box:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.chart-list-wrap ul li .box .left {
  float: left;
}
.chart-list-wrap ul li .box .left > * {
  display: block;
}
.chart-list-wrap ul li .box .left strong {
  font-size: 1.4em;
  font-weight: normal;
}
.chart-list-wrap ul li .box .left span {
  font-size: 1.4em;
  color: #999;
  padding: 3px 0 0 0;
}
.chart-list-wrap ul li .box .right {
  float: right;
  font-size: 1.4em;
}
.chart-total-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 0 4%;
  box-sizing: border-box;
}
.chart-total-wrap table tbody tr td {
  font-weight: bold;
  height: 50px;
  font-size: 1.4em;
  text-align: left;
  color: #666;
}
.period .item {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
  box-sizing: border-box;
}
.period .item input {
  width: 100%;
  height: 50px;
  line-height: 100%;
  font-size: 1.4em;
  color: #666;
  box-sizing: border-box;
  border: none;
  text-align: center;
}
.period .item input::placeholder {
  color: #000;
}
.period .btn:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.period .btn span {
  float: left;
  width: 50%;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  box-sizing: border-box;
  display: block;
}
.period .btn span:active {
  background-color: #f5f5f5;
}
.period .btn .confirm {
  width: 100%;
  color: #666;
}
.setup-list-wrap ul li {
  padding: 0 4%;
  background-color: #fff;
}
.setup-list-wrap ul li:active {
  background-color: #f5f5f5;
}
.setup-list-wrap ul li:last-child a {
  border-bottom: none;
}
.setup-list-wrap ul li.level2 a {
  color: #666;
}
.setup-list-wrap ul li.level3 a {
  color: #999;
}
.setup-list-wrap ul li a {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #f5f5f5;
  box-sizing: border-box;
  display: block;
}
.setup-list-wrap ul li a .title {
  font-size: 1.4em;
}
.setup-list-wrap ul li a .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 20px;
  height: 16px;
  background: url("../images/arrow_right.png") no-repeat center center;
  background-size: 100% auto;
  opacity: .66;
}
.layer-tips {
  padding: 40px 0;
}
.layer-tips > * {
  text-align: center;
  display: block;
}
.layer-tips img {
  width: 60px;
  margin: 0 auto;
}
.layer-tips span {
  padding: 15px 0 0 0;
  color: #333;
  font-size: 1.6em;
}
.lock-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10% 0 0 0;
  box-sizing: border-box;
}
.lock-wrap .avtar {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
}
.lock-wrap .tips {
  position: relative;
  text-align: center;
  font-size: 1.6em;
  color: #666;
  margin: 0 0 -20px 0;
}
.lock-wrap .drawbox canvas {
  margin: 0 auto;
  display: block;
}
.lock-wrap .reset {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  font-size: 1.4em;
  color: #999;
}
.lock-wrap .reset a {
  color: #999;
}
