.cardView {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cardView .contentView {
  width: 100%;
  overflow-y: auto;
  position: relative;
  background: #fff;
  overflow-x: hidden;
}
.cardView .contentView .loading {
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  padding: 2em;
  border-radius: 0.75em;
  background: rgba(0, 0, 0, 0.6);
  top: 50%;
  left: 50%;
  margin-top: -2.75em;
  margin-left: -2.75em;
  z-index: 100;
}
.cardView .contentView .errMsg {
  margin-top: 5em;
  text-align: center;
}
.segmentControl {
  height: 29px;
  width: 60%;
  line-height: 29px;
  margin: 0 auto;
  text-align: center;
  display: table;
}
.segmentControl .segment-item {
  height: 27px;
  border: #808080 solid;
  background: #fff;
  border-width: 1px 1px 1px 0;
  color: #666666;
  display: table-cell;
}
.segmentControl .segment-item.active {
  background: #808080;
  color: #fff;
}
.segmentControl .segment-item:first-child {
  border-radius: 5px 0 0 5px;
  border-width: 1px;
}
.segmentControl .segment-item:last-child {
  border-radius: 0 5px 5px 0;
  border-width: 1px 1px 1px 0;
}
.navigationBar {
  height: 43px;
  width: 100%;
  overflow: hidden;
  border-bottom: #ccc 1px solid;
  background: #f8f8f8;
  text-align: center;
}
.navigationBar .search {
  margin: 7px 15px;
  height: 29px;
  position: relative;
}
.navigationBar .search input {
  position: absolute;
  left: 0;
  width: 94%;
  height: 29px;
  line-height: 29px;
  background: #b3b3b3;
  color: #fff;
  border-width: 0;
  border-radius: 5px;
  padding: 0 3%;
}
.navigationBar .goBack {
  display: inline-block;
  height: 43px;
  line-height: 45px;
  padding: 0 15px 0 25px;
  background-image: url('img/back.png');
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left center;
  position: absolute;
  left: 0;
  top: 0;
  color: #ff3b30;
  font-size: 1.2em;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  .navigationBar .goBack {
    background-image: url('img/back@1.5x.png');
  }
}
@media all and (-webkit-min-device-pixel-ratio: 2) {
  .navigationBar .goBack {
    background-image: url('img/back@2x.png');
  }
}
.navigationBar .segmentControl {
  margin-top: 7px;
}
.navigationBar .title {
  max-width: 58%;
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
  font-size: 1.3em;
  color: #000;
  line-height: 43px;
  display: block;
  margin: 0 auto;
}
