/* reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
    margin: 0;
    padding: 0;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
    font-weight: normal;
}

html,
body,
fieldset,
img,
iframe,
abbr {
    border: 0;
}

i,
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

input,
textarea,
select {
    outline: none;
    font-size: 100%;
}

img {
    display: inline-block;
}

[hidefocus],
summary {
    outline: 0;
}

ol,
ul {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
small {
    font-size: 100%;
}

q:before,
q:after {
    content: none;
}

textarea {
    overflow: auto;
    resize: none;
}

label,
summary {
    cursor: default;
}

a,
button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
    font-weight: bold;
}

body {
    background: white;
}

body,
html {
    height: 100%;
    /*-webkit-overflow-scrolling: touch;*/

}

/*设置a标签不显示下划线*/
a {
    text-decoration: none;
    border: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/*春柳定义的样式*/
html,
body {
    border: 0;
    margin: 0;
    list-style: none;
    font-size: 62.5%;
    overflow: hidden;
    width: 100%;
    overflow-y: auto;
    background-color: #f4fafa;
    -webkit-text-size-adjust: 100%;
}

/*ios滚动卡顿兼容*/

.page {
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    padding-bottom: 5rem;
}

::-webkit-scrollbar {
    display: none;
}

.fr {
    float: right;
}

.fl {
    float: left;
}

.textL {
    text-align: left;
}

.textC {
    text-align: center;
}

.textR {
    text-align: right;
}

.maginAuto {
    margin: 0 auto;
}

.positionR {
    position: relative;
}

.mgR08 {
    margin-right: 0.8rem;
}

.mgL08 {
    margin-left: 0.8rem;
}

.pdL08 {
    padding-left: 0.8rem;
}

.pdR08 {
    padding-right: 0.8rem;
}

.fontweightnormal {
    font-weight: normal;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    -webkit-appearance: none;
}

.img {
    width: 100%;
    height: 100%;
}

/*页面动画切换特效*/
.slide-up-enter-active,
.slide-up-leave-active {
    transition: all 0.5s;
}

.slide-up-enter,
.slide-up-leave-to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}

.slide-go-enter-active,
.slide-go-leave-active {
    transition: all .5s;
    opacity: .8;
}

.slide-go-enter,
.slide-go-leave-to {
    transition: all .5s;
    transform: translate3d(100%, 0, 0);
    opacity: .8;
}

.slide-back-enter-active,
.slide-back-leave-active {
    transition: all .5s;
}

.slide-back-enter,
.slide-back-leave-to {
    transition: all .5s;
    transform: translate3d(-100%, 0, 0);
}

.bullet-enter-active,
.bullet-leave-active {
    transition: 1s all cubic-bezier(0.83, 0.97, 0.05, 1.44);
}

.bullet-enter,
.bullet-leave-to {
    opacity: 0;
    transform: translate3d(0, 0, -100%);
}

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

.page {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.container {
    flex: 1;
    padding-bottom: .88rem;
}

.fullheight {
    height: 100%;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
}

.flex-center-column {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-align-row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-space-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #a9aaab;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #a9aaab;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #a9aaab;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #a9aaab;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}


