@charset "UTF-8";
.no-onclick {
  pointer-events: none;
}

.flex-item-vertical, #select-toast .box .text .msg, .body .wrap .tabs .box {
  overflow: auto;
  /* winphone8和android4+ */
  -webkit-overflow-scrolling: touch;
  /* ios5+ */
}
.flex-item-vertical::-webkit-scrollbar, #select-toast .box .text .msg::-webkit-scrollbar, .body .wrap .tabs .box::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html {
  min-width: 1200px;
  height: 100%;
  background-color: transparent;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  font-size: 32px;
  font-family: '微软雅黑','PingFangSC-Regular','Helvetica Neue','San Francisco','Muli','sans-serif';
}

html::-webkit-scrollbar {
  width: 0px;
}

@font-face {
  font-family: Alternate;
  src: url("../framework/Alternate.ttf");
}
body {
  min-height: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #333;
}

a,
aside,
article,
body,
blockquote,
code,
cite,
div,
dl,
dt,
dd,
del,
em,
footer,
figcaption,
figure,
form,
fieldset,
header,
h1,
h2,
h3,
h4,
h5,
h6,
input,
img,
li,
legend,
mark,
nav,
ol,
p,
pre,
section,
span,
strong,
th,
td,
time,
textarea,
ul,
var {
  margin: 0;
  padding: 0;
}

article,
aside,
div,
header,
section,
footer,
nav,
figure,
li {
  display: block;
}

th {
  font-weight: normal;
}

input,
textarea,
button,
select,
label,
[contenteditable] {
  outline: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  padding: 0;
  background: transparent;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: text;
}

input,
textarea {
  width: 100%;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

select, textarea {
  width: 100%;
}

textarea {
  resize: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  font-weight: normal;
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

img {
  border: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  pointer-events: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}

[contenteditable]:empty::before {
  content: attr(placeholder);
  color: #ccc;
}
[contenteditable]:focus::before:empty::before {
  content: attr(placeholder);
}
[contenteditable]:focus::before:not(:empty)::before {
  content: initial;
}

video {
  width: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=number] {
  width: 100%;
}

input[type=radio] + label {
  cursor: pointer;
  position: relative;
  padding-left: 1.5em;
  font-size: 1em;
  color: inherit;
}
input[type=radio] + label::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  left: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 0 1px #bbb;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
input[type=radio] + label::before {
  border-radius: 50%;
  border: .25em solid #fff;
}
input[type=radio]:checked + label::before {
  background-color: #00a0e9;
  box-shadow: 0 0 0 1px #00a0e9;
}

.model-fixd {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3);
}

.show {
  display: block;
}

.hide {
  display: none !important;
}

.color-success {
  background-color: #67C23A;
}

.color-warning {
  background-color: #E6A23C;
}

.color-danger {
  background-color: #F56C6C;
}

.hover {
  opacity: .8;
}

.clear::after {
  content: '';
  display: block;
  clear: both;
}

.flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
}

.flex-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex-item-vertical {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

#toast {
  z-index: 2;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(56, 56, 56, 0.8);
  border-radius: 45px;
  max-width: 90%;
  font-size: 13px;
  color: #fff;
  text-align: center;
  word-break: break-all;
  padding: 3px 10px;
}

#select-toast .box {
  width: 270px;
  text-align: center;
  background-color: white;
  border-radius: 4px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 999;
}
#select-toast .box .text {
  padding: 25px 15px 20px;
}
#select-toast .box .text .title {
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}
#select-toast .box .text .msg {
  color: #888888;
  line-height: 22.5px;
  max-height: 200px;
}
#select-toast .box .select-list {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
#select-toast .box .select-list::before {
  border-top: 1px solid #eee;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleY(0.5);
  -moz-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  -o-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 50% 0 0;
  -moz-transform-origin: 50% 0 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0 0;
}
#select-toast .box .select-list .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  line-height: 41px;
  color: #999;
}
#select-toast .box .select-list .item:not(:first-child) {
  position: relative;
}
#select-toast .box .select-list .item:not(:first-child)::after {
  border-left: 1px solid #eee;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0.5);
  -moz-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  -o-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50%;
  -o-transform-origin: 0 50%;
  transform-origin: 0 50% 0;
}
#select-toast .box .select-list .item.active {
  color: #D75C23;
}

.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1000px;
  background-color: #333333;
  border-bottom: 3px solid #333333;
}
.header .header-box {
  background-color: #333333;
  color: #fff;
  max-width: 1200px;
  height: 70px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-box .header-left {
  display: flex;
  align-items: center;
}
.header .header-box .header-left .logo {
  width: 45px;
  margin-right: 18px;
}
.header .header-box .header-left .title {
  font-size: 24px;
  white-space: nowrap;
}
.header .header-box .header-left .title span {
  font-size: 16px;
}
.header .header-box .header-right {
  flex: 1;
  max-width: 600px;
  margin-left: auto;
}
.header .header-box .header-right .list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .header-box .header-right .list .item {
  position: relative;
  color: #999;
  text-align: center;
  font-size: 16px;
  height: 70px;
  line-height: 70px;
  cursor: pointer;
  padding: 0 20px;
  transition: all 0.3s;
}
.header .header-box .header-right .list .item.active,
.header .header-box .header-right .list .item:hover {
  color: #fff;
  font-size: 16px;
}
.header .header-box .header-right .list .item.more:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border: 6px solid;
  border-color: #999 transparent transparent;
  border-bottom: 0;
  margin-left: 6px;
  vertical-align: middle;
}
.header .header-box .header-right .list .item.more:hover .option {
  display: block;
}
.header .header-box .header-right .list .item.more:hover:after {
  border-color: #fff transparent transparent;
}
.header .header-box .header-right .list .item .option {
  display: none;
  position: absolute;
  top: 70px;
  right: 0;
  width: 180px;
  background-color: rgba(15, 15, 14, 0.9);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  z-index: 100;
  padding: 5px 0;
}
.header .header-box .header-right .list .item .option .op {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #999;
  transition: all 0.3s;
  cursor: pointer;
}
.header .header-box .header-right .list .item .option .op:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer {
  background-color: #3e3e3e;
}
.footer .foot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 70px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.footer .foot .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.footer .foot .item.explain {
  text-align: left;
}
.footer .foot .info .info-logo {
  width: 80px;
}
.footer .foot .info .name {
  font-size: 30px;
  color: #fff;
}
.footer .foot .text {
  line-height: 30px;
}
.footer .foot .text.record:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url("../images/logo-1.png") center/cover no-repeat transparent;
}
.footer .foot .box img {
  width: 150px;
  border-radius: 2px;
}
.footer .foot .box img:first-child {
  margin-right: 10px;
}

.ios-select-widget-box.olay.five-level-box {
  background-color: rgba(0, 0, 0, 0.5);
}

[contenteditable]:empty::before {
  color: #BEBFC0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

#no-data {
  height: 100vh;
  text-align: center;
  color: #999999;
  font-size: 13px;
  line-height: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
#no-data.height1 {
  height: 10vh;
}
#no-data.height2 {
  height: 20vh;
}
#no-data.height3 {
  height: 30vh;
}
#no-data.height4 {
  height: 40vh;
}
#no-data.height5 {
  height: 50vh;
}
#no-data.height6 {
  height: 60vh;
}
#no-data.height7 {
  height: 70vh;
}
#no-data.height8 {
  height: 80vh;
}
#no-data.height9 {
  height: 90vh;
}
#no-data::before {
  content: '';
  display: block;
  height: 178px;
  width: 186px;
  margin: 0 auto 17px;
  background: url("../images/icon-home.png") center bottom/186px auto no-repeat transparent;
}
#no-data.wallet::before {
  background: url("../images/bitmap-wallet-detail.png") center bottom/186px auto no-repeat transparent;
}

.rich-text {
  max-width: 100%;
}

.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.screen {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 6px;
  width: 260px;
  text-align: center;
}
.screen .scr-title {
  font-size: 15px;
  color: #000;
  font-weight: bold;
  padding: 25px 0 15px;
  line-height: 21px;
}
.screen .scr-message {
  font-size: 14px;
  color: #666;
  padding: 0 15px 20px;
  line-height: 20px;
}
.screen .scr-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
}
.screen .scr-box::before {
  border-top: 1px solid #706776;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleY(0.5);
  -moz-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  -o-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 50% 0 0;
  -moz-transform-origin: 50% 0 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0 0;
}
.screen .scr-box::before {
  border-color: #ddd;
}
.screen .scr-box .scr-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  height: 41px;
  line-height: 41px;
  font-size: 15px;
  color: #999;
  position: relative;
}
.screen .scr-box .scr-item::before {
  border-right: 1px solid #706776;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: scaleX(0.5);
  -moz-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  -o-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: 100% 50% 0;
  -moz-transform-origin: 100% 50% 0;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50% 0;
}
.screen .scr-box .scr-item::before {
  border-color: #ddd;
}
.screen .scr-box .scr-item:last-of-type::before {
  border: none;
}
.screen .scr-box .scr-item.color {
  color: #D75C23;
}

.body {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.body .wrap {
  position: relative;
  height: 100%;
  padding-top: 73px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.body .wrap .tabs {
  position: fixed;
  height: 100%;
  top: 73px;
  left: 0;
  background-color: #fafafa;
  width: 300px;
  border-right: 1px solid #ddd;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.body .wrap .tabs .title {
  padding: 0 12px;
  border-bottom: 1px solid #ddd;
  line-height: 55px;
  color: inherit;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
}
.body .wrap .tabs .box {
  cursor: pointer;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.body .wrap .tabs .box .box-list {
  min-height: 40px;
  line-height: 40px;
  width: 300px;
}
.body .wrap .tabs .box .box-list .list-item {
  padding-left: 25px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  background-color: #fff;
  position: relative;
}
.body .wrap .tabs .box .box-list .list-item span {
  position: absolute;
  top: 13px;
  right: 30px;
  width: 14px;
  height: 14px;
  background: url("../images/book_right.png") no-repeat;
  background-size: 100% 100%;
}
.body .wrap .tabs .box .box-list .list-item span.show {
  background: url("../images/book_down.png") no-repeat;
  background-size: 100% 100%;
}
.body .wrap .tabs .box .box-list .list-cont {
  display: none;
}
.body .wrap .tabs .box .box-list .list-cont.show {
  display: block;
}
.body .wrap .tabs .box .box-list .list-cont .tab-item {
  width: 265px;
  height: 40px;
  padding-left: 35px;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.body .wrap .tabs .box .box-list .list-cont .tab-item.active {
  background-color: #e5e5e5 !important;
}
.body .wrap .content {
  padding-left: 300px;
  margin: 0 auto;
}

/*# sourceMappingURL=book.css.map */
