@charset "utf-8";

/*reset css  重置默认的一些样式  浏览器子自带的  目的是保持各种终端显示一致*/
/*所有的标签和伪类  before after*/
*,
::before,
::after {
  padding: 0;
  margin: 0;
  -webkit-touch-callout: none;
  /*在移动端特殊的设置*/
  /*清除点击高亮效果*/
  -webkit-tap-highlight-color: transparent;
  /*设置所有的盒子的宽度以边框开始计算*/
  -webkit-box-sizing: border-box;
  /*要兼容 webkit 浏览器内核厂商 这种情况一般是老的移动端浏览器*/
  box-sizing: border-box;
  /*     设置内嵌的元素在 3D 空间如何呈现：保留3D
   -webkit-transform-style: preserve-3d;
  设置进行转换的元素的背面在面对用户时是否可见：隐藏 */

  -webkit-backface-visibility: hidden;
}

html,
body {
  font-size: 14px;
  color: #333;
  font-family: "PingFangSC-Medium", "MicroSoft YaHei", "sans-serif";
  /*是设备默认的字体*/
  height: 100%;

}

input,
button {
  outline: none;
}

/*上下拉动滚动条时卡顿、慢*/
body {
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  overflow-scrolling: touch;
  background: #fff;
}

a {
  text-decoration: none;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.layui-layer-setwin {
  display: none;
}

.layui-layer-page {
  overflow: hidden;
}

.layui-layer-btn {
  text-align: center;
}


/*报名系统*/
.top-bg {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.top-bg img {
  width: 100%;
  height: auto;
}
.top-bg .top-bg-title{
      position: absolute;
      width: 100%;
      font-size: 20px;
      color: white;
      transform: translateY(-50%);
      top: 50%;
      text-align: center;
}

.register_form {
  margin: 0 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  /* border: 1px solid rgba(246,246,246,1); */
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}

.layui-form-item .layui-form-label {
  padding-left: 16px;
  padding-right: 10px;
  width: 90px;
  color: #000;
  font-weight: bold;
  text-align: justify;
  text-align-last: justify;
  white-space: unset;
}

.layui-form-label::after {
  content: "";
  width: 100%;
  height: 0;
  margin: 0;
  display: inline-block;
  overflow: hidden;
}

.layui-input-block {
  margin-left: 120px;
  margin-right: 20px;
}

.layui-input-block .layui-input {
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding-left: 0;
  border-radius: 0;
}

.layui-form-item {
  position: relative;
  margin-bottom: 0;
}

.layui-form-item .required_tips {
  position: relative;
  /* right:10px;
  top:10px; */
  float: left;
  color: #f00;
  font-size: 18px;
  font-weight: 700;
  padding: 9px 0;
}
