/*格式化样式*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: ''
}

abbr,
acronym {
  border: 0;
}

input,
button,
select,
textarea {
  outline: none;
  border-radius: 0;
}

/*通用类*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-shadow: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: PingFangSC-Regular;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* {
  font-family: 'MicrosoftYaHei', 'Microsoft YaHei';
}

input {
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.picker-item {
  text-align: center !important;
}

img {
  display: block;
  width: 100%;
}

/*CSS垂直居中
.holder {
width:740px;
height:300px;
border:1px solid #777;
text-align:center;
display:table-cell;
vertical-align:middle;
}*/

/*正常页面*/

.absolute-div {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
}

/* 主页中 */

.normal-div {
  width: 100%;
  height: 100%;
  overflow: auto;
}

/* 通用title布局样式 */

/* .title-div {
  height: 6%;
  width: 100%;
  background: #333333;
  position: relative;
}



/* 预报名流程页通用样式 */

.signup-page {
  width: 100%;
  height: 100%;
}

/* 底部按钮通用样式 */

.page-footer {
  box-sizing: border-box;
  border-top: 0.04rem solid #E6E6E6;
  width: 100%;
  height: 8%;
}

.page-footer-last {
  float: left;
  color: #7E7E7E;
  transform: translate(0, 0);
  height: 100%;
  background: #FAFAFA;
  font-size: 0.96rem;
  box-sizing: border-box;
  border-right: 0.02rem solid #E6E6E6;
}

.page-footer-skip {
  width: 33.4%;
  height: 100%;
  float: left;
  color: #7E7E7E;
  font-size: 0.96rem;
  transform: translate(0, 0);
  background: #FAFAFA;
}

.page-footer-sure {
  color: #FFFFFF;
  float: left;
  background: #7BBCBC;
  height: 100%;
  font-size: 0.96rem;
  transform: translate(0, 0);
  box-sizing: border-box;
  border-left: 0.02rem solid #E6E6E6;
}

.page-footer-text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.popup-atfer-pay {
  width: 70%;
  height: 10rem;
  border-radius: 0.36rem;
}

.pay-ok {
  width: 60%;
  left: 20%;
  height: 2rem;
  line-height: 2rem;
  border-radius: 0.36rem;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  top: 2rem;
  background: #7BBCBC;
}

.pay-no {
  line-height: 2rem;
  height: 2rem;
  border-radius: 0.36rem;
  background: #7BBCBC;
  color: #FFFFFF;
  width: 60%;
  left: 20%;
  text-align: center;
  position: absolute;
  bottom: 2rem;
}

.box1 {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
}

.box2 {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
}


.full-layout {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.box-row {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
}

.box-col {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
}

.box-gravity-center {
  justify-content: center;
  align-items: center;
}















/* 根本配置 */
.flex-col {
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
}

.flex-row {
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
}

.flex-col-vertical-center,
.flex-row-horizontal-center {
  justify-content: center;
}

.flex-col-horizontal-center,
.flex-row-vertical-center {
  align-items: center;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-item-grow {
  flex-grow: 1;
}

.flex-item-no-shrink {
  flex-shrink: 0;
}

.layout-root,
.layout-full {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
}

.text-shrink {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

._100 {
  width: 100%;
  height: 100%;
}

._100h {
  height: 100%;
}

._100w {
  width: 100%;
}

._999z {
  z-index: 999;

}

.z-high {
  z-index: 3000;
}

.z-higher {
  z-index: 3001;
}

.z-highest {
  z-index: 3002;
}

/*  */

/* 通用title返回键样式 */

.title-back-btn {
  font-size: 1.2em;
  color: #000000;
  z-index: 999;
}

/* 通用title标题文字样式 */

.title-text {
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  color: #030303;
}

.title-search-btn {
  width: 1.2rem;
  height: 1.2rem;
  z-index: 999;
}
