@charset "UTF-8";
/*
 *  uni-app flex 布局盒子
 *  作者:helang
 *  邮箱:helang.love@qq.com
*/
/* 分列式弹性盒子，以X轴从左到右排列 */
.h-flex-x {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  /* 水平左对齐 */
  /* 水平居中对齐 */
  /* 水平右对齐 */
  /* 水平两端对齐 */
  /* 垂直顶部对齐 */
  /* 垂直底部对齐 */
  /* 允许换行 */
  /* 等比分列，2-6列 */
  /* 弹性元素 */
}

.h-flex-x.h-flex-left {
  justify-content: flex-start;
}

.h-flex-x.h-flex-center {
  justify-content: center;
}

.h-flex-x.h-flex-right {
  justify-content: flex-end;
}

.h-flex-x.h-flex-space {
  justify-content: space-between;
}

.h-flex-x.h-flex-top {
  align-items: flex-start;
  align-content: flex-start;
}

.h-flex-x.h-flex-bottom {
  align-items: flex-end;
  align-content: flex-end;
}

.h-flex-x.h-flex-wrap {
  flex-wrap: wrap;
}

.h-flex-x.h-flex-2 > * {
  width: 50%;
}

.h-flex-x.h-flex-3 > * {
  width: 33.33333%;
}

.h-flex-x.h-flex-4 > * {
  width: 25%;
}

.h-flex-x.h-flex-5 > * {
  width: 20%;
}

.h-flex-x.h-flex-6 > * {
  width: 16.66667%;
}

.h-flex-x > *.h-flex-item-grow {
  flex-grow: 1;
  width: 0;
}

/* 分行式弹性盒子，以Y轴从上到下排列 */
.h-flex-y {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  /* 垂直居中对齐 */
  /* 水平左对齐 */
  /* 水平右对齐 */
  /* 垂直两端对齐 */
  /* 垂直顶部对齐 */
  /* 垂直底部对齐 */
  /* 等比分行，2-6行 */
  /* 弹性元素 */
}

.h-flex-y.h-flex-center {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.h-flex-y.h-flex-left {
  align-items: flex-start;
  align-content: flex-start;
}

.h-flex-y.h-flex-right {
  align-items: flex-end;
  align-content: flex-end;
}

.h-flex-y.h-flex-space {
  justify-content: space-between;
}

.h-flex-y.h-flex-top {
  justify-content: flex-start;
}

.h-flex-y.h-flex-bottom {
  justify-content: flex-end;
}

.h-flex-y.h-flex-2 > * {
  height: 50%;
}

.h-flex-y.h-flex-3 > * {
  height: 33.33333%;
}

.h-flex-y.h-flex-4 > * {
  height: 25%;
}

.h-flex-y.h-flex-5 > * {
  height: 20%;
}

.h-flex-y.h-flex-6 > * {
  height: 16.66667%;
}

.h-flex-y > *.h-flex-item-grow {
  flex-grow: 1;
  height: 0;
}

/* 元素尺寸规则 & 删除轮廓 & 点击高亮颜色 */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* 页面 body 设置，默认14px字体大小 */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-size: 14px;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  word-wrap: break-word;
  -webkit-touch-callout: none;
  color: #333;
  line-height: normal;
}

/*表单元素默认字体大小及字体*/
input,
select,
textarea {
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
}

/* 取消超链接默认下划线 */
a {
  text-decoration: none;
}

.font-c {
  text-align: center;
}

/*容器盒子*/
.container {
  position: relative;
  max-width: 750px;
  background-color: #33C6F7;
  margin: 0 auto;
  padding-bottom: 16px;
}

.container .content {
  background-color: #fff;
  border-radius: 8px;
  margin: 16px 12px 0 12px;
  padding: 0 12px;
}

.container .content a {
  color: #33C6F7;
}

.banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 12px 0;
}

.page-title {
  font-weight: normal;
  text-align: center;
  padding: 18px 0;
  font-size: 16px;
  color: #33C6F7;
  text-shadow: 0 0 1px black;
}

.paragraph {
  text-indent: 2em;
}

hr {
  border: none;
  margin: 0;
  padding: 0;
  height: 1px;
}

hr.blue {
  background-color: #33C6F7;
  margin: 12px 0;
}

.form-item {
  margin-top: 12px;
  padding-top: 12px;
}

.form-item + .form-item {
  border-top: #c6c6c6 dashed 1px;
}

.form-item .text {
  font-size: 16px;
}

.form-item .required {
  color: red;
  font-style: normal;
  font-size: 18px;
}

.form-item .input {
  border-left: #33C6F7 solid 3px;
  border-radius: 4px 0 0 4px;
  height: 42px;
  margin-top: 8px;
}

.form-item .input > input, .form-item .input > select {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 12px;
  border: #c6c6c6 solid 1px;
  border-radius: 0 4px 4px 0;
  border-left-width: 0;
  background-color: #fff;
}

.form-item .input > input:focus, .form-item .input > select:focus {
  border-color: #33C6F7;
  box-shadow: 0 0 5px 0 #33C6F7;
}

.form-item button[type='submit'] {
  background-color: #33C6F7;
  box-shadow: 0 0 5px 0 #33C6F7;
  color: #fff;
  font-size: 16px;
  border: none;
  width: 100%;
  height: 42px;
  border-radius: 4px;
}

h3.title {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin: 24px 0 8px 0;
}

h4.title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}

.album {
  margin: 12px 0;
  border-color: #c6c6c6;
  border-style: dashed;
  border-width: 1px 0 0 1px;
}

.album > div {
  padding: 4px;
  border-color: #c6c6c6;
  border-style: dashed;
  border-width: 0 1px 1px 0;
}

.album .photo {
  height: 66px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.album .photo.size-2 {
  height: 100px;
}

.album .name {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 4px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.teacher-1 {
  margin-top: 16px;
  overflow: hidden;
}

.teacher-1 > img {
  display: block;
  width: 120px;
  height: auto;
}

.teacher-2 {
  margin: 16px -4px 0 -4px;
}

.teacher-2 > div {
  padding: 0 4px;
  margin-bottom: 8px;
}

.teacher-2 .photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 110px;
}

.teacher-2 .des {
  margin-top: 4px;
}

.qrcode {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 420px) {
  .album .photo {
    height: 100px;
  }
  .album .photo.size-2 {
    height: 140px;
  }
  .teacher-1 > img {
    width: 150px;
  }
  .teacher-2 .photo {
    height: 150px;
  }
}

.type-1, .type-2, .type-4 {
  display: none;
}

@media (min-width: 620px) {
  .album .photo {
    height: 140px;
  }
  .album .photo.size-2 {
    height: 180px;
  }
  .teacher-2 .photo {
    height: 220px;
  }
  .qrcode-list > div {
    width: 25% !important;
  }
}
