/* ------------------------------------------
 * IT书包
 * 网址：www.itshubao.com
 * 整理：yinq<3331653644@qq.com> 
 -------------------------------------------- */
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #393943;
  font-family: "Microsoft YaHei";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 100%;
  line-height: 1.6;
  color: #818194;
}

.content {
  overflow: hidden;
  display: block;
  width: 900px;
  margin: 0 auto;
  padding-bottom: 100px;
}

section {
  width: 400px;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  float: left;
  margin-right: 100px;
}
section:last-child {
  margin-right: 0;
}

/*
 * GRADIENT BAR LINE STYLING
 */
.health, .progress {
  height: 15px;
  width: 100%;
  margin-bottom: 30px;
  padding-top: 1px;
  border-radius: 7px;
  background-color: #26262d;
  border-bottom: 1px solid #1f1f21;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}
.health .progress-bar, .progress .progress-bar {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
  margin-left: 1px;
  border-radius: 7px;
  min-width: 13px;
}
.health .progress-bar:after, .progress .progress-bar:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 6px;
  height: 6px;
  top: 4px;
  right: 4px;
  border-radius: 3px;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.3), 0 1px 1px rgba(255, 255, 255, 0.5);
}

.health .shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.warm {
  background: #e83d89;
  background: -moz-linear-gradient(left, #e83d89 30%, #ffa894 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #e83d89), color-stop(100%, #ffa894));
  background: -webkit-linear-gradient(left, #e83d89 30%, #ffa894 100%);
  background: -o-linear-gradient(left, #e83d89 30%, #ffa894 100%);
  background: -ms-linear-gradient(left, #e83d89 30%, #ffa894 100%);
  background: linear-gradient(to right, #e83d89 30%, #ffa894 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#67cecd', endColorstr='#eaef91',GradientType=1 );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -3px 4px rgba(216, 26, 110, 0.4);
}

.cool {
  background: #67cecd;
  background: -moz-linear-gradient(left, #67cecd 30%, #eaef91 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #67cecd), color-stop(100%, #eaef91));
  background: -webkit-linear-gradient(left, #67cecd 30%, #eaef91 100%);
  background: -o-linear-gradient(left, #67cecd 30%, #ffa894 100%);
  background: -ms-linear-gradient(left, #67cecd 30%, #eaef91 100%);
  background: linear-gradient(to right, #67cecd 30%, #eaef91 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#67cecd', endColorstr='#eaef91',GradientType=1 );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -3px 4px rgba(142, 218, 218, 0.4);
}

/*
 * END GRADIENT BAR STYLING
 */
p {
  font-size: .8rem;
}

h2 {
  font-family: "Microsoft YaHei";
  font-size: 1.5rem;
  color: #9d9dab;
  display: block;
  text-align: center;
}

b {
  font-weight: 400;
  font-family: "Microsoft YaHei";
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 10px 6px 10px;
  font-size: .8rem;
  line-height: .8;
  position: relative;
}
b:before, b:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #5c5c6c;
  top: 0;
}
b:before {
  left: 0;
}
b:after {
  right: 0;
}

.content > p {
  text-align: center;
}
