
/* 必要布局样式css */
.flexView {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 3vw;
  border-radius: 5px;
}

.scrollView {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 1vw 0;
}

.navBar {
  height: 44px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1002;
  background: #f6f6f6;
}

.navBar-item {
  height: 44px;
  min-width: 25%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  padding: 0 0.9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  color: #808080;
  position: relative;
}

.navBar-item:first-child {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-right: -25%;
  font-size: 0.9rem;
  font-weight: bold;
}

.navBar-item:last-child {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.center {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 44px;
  width: 50%;
  margin-left: 25%;
}

.center-title {
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  font-size: 0.95rem;
  color: #333;
}

.icon {
  width: 20px;
  height: 20px;
  display: block;
  border: none;
  float: left;
  background-size: 20px;
  background-repeat: no-repeat;
}

.my-user {
  width: 70px;
  height: 70px;
}

.my-user img {
  width: 70px;
  height: 70px;
  display: block;
  border: 1px solid #c1c0be;
  border-radius: 100%;
}

.flex-box h1 {
  font-size: 2rem;
}

.flex-box h2 {
  font-size: 1rem;
  font-weight: normal;
}

.icon-sml {
  width: 25px;
  height: 25px;
  background-size: 25px;
  margin-right: 0.5rem;
  background-image: url('data:image/png;base64,');
}

.icon-sal {
  width: 25px;
  height: 25px;
  background-size: 25px;
  margin-right: 0.5rem;
  background-image: url('data:image/png;base64,');
}

.flex-color .flex-box {
  background: #fff;
  border-radius: 3px;
  padding: 0.8rem 1.5rem;
}

.flex-box-one {
  margin-right: 0.4rem;
}

.flex-box-two {
  margin-left: 0.4rem;
}

.flex-color .flex-box h3 {
  font-size: 0.9rem;
  color: #0a0a0a;
  line-height: 1.5rem;
}

.course-list {
  background: #fff;
  border-radius: 5px;
}

.course-list .flex {
  padding-top: 10px;
  padding-bottom: 10px;
}

.cou-img {
  width: 25px;
  height: 25px;
  margin-right: 0.5rem;
}

.cou-img img {
  width: 25px;
  height: 25px;
  display: block;
  border: none;
}

.flex-box p {
  font-size: 0.9rem;
  color: #373737;
}

.ren-arrow {
  text-align: right;
  color: #a5a5a5;
  padding-right: 13px;
  position: relative;
}

.ren-arrow span {
  font-size: 0.8rem;
  color: #a5a5a5;
}

.ren-arrow:after {
  content: " ";
  display: inline-block;
  height: 7px;
  width: 7px;
  border-width: 2px 2px 0 0;
  border-color: #cccccc;
  border-style: solid;
  -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: relative;
  top: -2px;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 2px;
}




/*  */





.footer{
  width: 100vw;
  height: 15vw;
  position: fixed;
  left: 0;bottom: 0;
  background: #fff;
}
.footer ul{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}
.footer ul li{
  width: 16vw;
  height: 100%;
}
.footer ul li a{
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 2vw 0;
  color: gray;
}
.footer ul li a span{
  font-size: 6vw;
}
.footer ul li a p{
  font-size: 3vw;
}
.footer .active{
  color: #22ac38;
}