/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
}

/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}

/* input,
select {
  -webkit-appearance: none;
  appearance: none;
} */

/* 取消链接高亮  */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
textarea {
  outline: none;
}
em,
i {
  font-style: normal;
}
ul,
li {
  list-style-type: none;
}
strong {
  font-weight: normal;
}
.page-common {
  padding: 0.12rem 0.16rem;
  font-size: 0.14rem;
}
.page-common h3 {
  padding-bottom: 0.16rem;
  text-align: center;
}
.page-common h4 {
  margin-bottom: 0.12rem;
}
.page-common p {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  text-align: justify;
  line-height: 1.5;
}
.page-common p.textIndent {
  text-indent: 2em;
}
.page-common.rule{
  padding: 0;
}


.border-bottom-1px,
.border-top-1px{
  position: relative;
}
/*1像素边框*/ 
.border-bottom-1px:after{
  position: relative;
  content: '';
  position: absolute;
  z-index: 2;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scaleY(0.5) translateY(100%);
  transform: scaleY(0.5) translateY(100%);
  bottom: 1px;
  left: 0;
  right: auto;
  width: 100%;
  height: 1px;
  background-color: #EBEBEB;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

/*1像素边框*/ 
.border-top-1px:before{
  position: relative;
  content: '';
  position: absolute;
  z-index: 2;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scaleY(0.5) translateY(100%);
  transform: scaleY(0.5) translateY(100%);
  top: 1px;
  left: 0;
  right: auto;
  width: 100%;
  height: 1px;
  background-color: #EBEBEB;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.common-rule-set img{
  width: 100%;
}
