html {
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

html * {
    outline: 0;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

html,
body {
    font-family: -apple-system, "PingFang SC", "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
    max-width: 720px;
    margin: auto;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0
}

input,
select,
textarea {
    font-size: 100%
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

fieldset,
img {
    border: 0
}

abbr,
acronym {
    border: 0;
    font-variant: normal
}

del {
    text-decoration: line-through
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 500
}

ol,
ul {
    list-style: none
}

caption,
th {
    text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500
}

q:before,
q:after {
    content: ''
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

a:hover {
    text-decoration: none;
}

ins,
a {
    text-decoration: none
}

img {
    width: 100%;
    display: block;
}

i,
cite,
em,
var,
address,
dfn｛ font-style: normal;
｝
/*input*/

button {
    border: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
    -webkit-appearance: button;
    /*渲染成button的风格*/
    text-transform: none;
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
    /*输入框提示语的字体样式*/
}

input::-webkit-inner-spin-button {
    /*解决input的type="number"在部分手机端会出现一个小按钮*/
    -webkit-appearance: none;
    /*去除系统默认appearance的样式,常用于IOS下移除原生样式*/
}

input::-webkit-outer-spin-button {
    /*解决input的type="number"在部分手机端会出现一个小按钮*/
    -webkit-appearance: none;
}

textarea {
    vertical-align: top;
}

button,
input {
    line-height: normal;
}

select {
    margin: 0;
    outline: 0;
    -webkit-appearance: none;
}

input.fixAKeyboard:focus,
textarea.fixAndroidKeyboard:focus {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-modify: read-write-plaintext-only;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

button,
input[type=button],
input[type=checkbox],
input[type=reset],
input[type=submit],
label {
    cursor: pointer;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

input[type=submit] {
    -webkit-user-modify: read-plaintext-only;
    -moz-user-modify: read-plaintext-only;
    -ms-user-modify: read-plaintext-only;
    -o-user-modify: read-plaintext-only;
    user-modify: read-plaintext-only;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}

input[type='search'] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield;
}

input::-webkit-input-placeholder {
    color: #666;
}

input::-moz-placeholder {
    color: #666;
}

input:-ms-input-placeholder {
    color: #666;
}

input[type='text'] {
    text-indent: .2rem;
}

input[type='text']:focus {
    border-color: #007cf0;
    box-shadow: 0 0 5px #61bdff;
}

/*flex box*/

.flex {
    display: box;
    /* OLD - Android 4.4- */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    -webkit-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.align-center {
    align-items: center;
    -webkit-align-items: center;
}

.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    /*所有元素以border开始计算盒子大小*/
}

.clearfix:after,
.clearfix:before {
    /*清除浮动*/
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.mt30 {
    width: 100%;
    height: .4rem;
}

.bold {
    font-weight: bold;
}

/*fontsize*/

.ft12 {
    font-size: 12px
}

[data-dpr="2"] .ft12 {
    font-size: 24px
}

[data-dpr="3"] .ft12 {
    font-size: 36px
}

.ft14 {
    font-size: 14px
}

[data-dpr="2"] .ft14 {
    font-size: 28px
}

[data-dpr="3"] .ft14 {
    font-size: 42px
}

.ft16 {
    font-size: 16px
}

[data-dpr="2"] .ft16 {
    font-size: 32px
}

[data-dpr="3"] .ft16 {
    font-size: 48px
}

.ft18 {
    font-size: 18px
}

[data-dpr="2"] .ft18 {
    font-size: 36px
}

[data-dpr="3"] .ft18 {
    font-size: 54px
}

.ft20 {
    font-size: 20px
}

[data-dpr="2"] .ft20 {
    font-size: 40px
}

[data-dpr="3"] .ft20 {
    font-size: 60px
}



/*页面公共样式*/

.banner {
    width: 100%;
}

.header {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    background: #c80600;
    z-index: 999;
}

.header>img {
    width: 9rem
}

.menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.menu .icon-caidan {
    display: block;
    font-size: 0.5rem;
    color: #fff;
    margin: .4rem;
}

.menu-list {
    position: fixed;
    right: -1rem;
    top: -1rem;
    margin: auto;
    z-index: 1001;
    background: #fff;
    width: 0%;
    height: 0px;
    transition: all .2s ease;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 50%;
}

.menu-list-show {
    width: 100%;
    top: 0;
    right: 0;
    height: 8rem;
    border-radius: 0;
}

.menu-list div {
    width: 92%;
    text-align: right;
    font-weight: bold;
    padding: .2rem 0;
}

.menu-list div .icon-close {
    margin-left: .4rem;
    font-size: .8rem;
}

.menu-list>a {
    width: 30%;
    margin-bottom: .2rem;
    border-bottom: 1px solid #e9e9e9;
    text-align: center;
    padding: .6rem 0;
    border-radius: .2rem;
}
.focus{ width:100%; margin:1.23rem auto auto; position:relative; overflow:hidden;   }
.focus .hd{ width:100%; height:5px;  position:absolute; z-index:1; bottom:0; text-align:center;  }
.focus .hd ul{ overflow:hidden; display:-moz-box; display:-webkit-box; display:box; height:5px; background-color:rgba(51,51,51,0.5);   }
.focus .hd ul li{ -moz-box-flex:1; -webkit-box-flex:1; box-flex:1; }
.focus .hd ul .on{ background:#FF4000;  }
.focus .bd{ position:relative; z-index:0; }
.focus .bd li img{ width:100%;}
.focus .bd li a{ -webkit-tap-highlight-color:rgba(0, 0, 0, 0); /* 取消链接高亮 */ }
.foot{
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content:space-between;
    background: #c80600;
}
.foot>a{
    width: 25%;
    color: #fff;
    padding-bottom: .1rem;
    text-align: center;
}
.foot>a>img{
    width: 50%;
    margin: auto;
}