body {
    font-family: -apple-system-font, "Helvetica Neue", sans-serif;
}

body,
html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background: #f8f8f8;
    /*max-width: 640px;*/
}

body * {
    /*max-width: 640px;*/
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #000;
}

a img {
    border: 0;
}

@charset "utf-8";
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul,
li {
    list-style-type: none;
}

a:hover,
a:link,
a:active {
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    /*background: transparent;*/
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    clear: both;
}

html {
    font-size: 650%;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}
@media only screen and (min-width: 960px) {
    html {
        font-size: 800%;
    }
}
@media only screen and (max-width: 360px) {
    html {
        font-size: 625%;
    }
}

@media only screen and (max-width: 320px) {
    html {
        font-size: 540%;
    }
}

body {
    color: #4a4a4a;
    font-size: .16rem;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

div,
span,
a,
p,
li,
ul,
button,
input,
textarea {
    font-size: .16rem;
}

input,
input:focus,
textarea,
textarea:focus {
    -webkit-appearance: none;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: transparent;
    -webkit-user-modify: read-write-plaintext-only;
    resize: none;
}

/*纵向排列，居中*/

.flex_box_v {
    display: -webkit-box;
    display: -webkit-flex;
    /*webkit*/
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex_box_h {
    display: -webkit-box;
    display: -webkit-flex;
    /*webkit*/
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    flex-direction: row;
}



.flex_box_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex_box_ai_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex_box_jc_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex_box_jc_between {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex_box_jc_space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex_box_jc_space-around {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.flex_box_between_center {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;

}
.flex_box_end {
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.flex_box_start {
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.flex_box_grow {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

input::-webkit-input-placeholder {
    font-size: .14rem;
    color: #9b9b9b;
}

textarea::-webkit-input-placeholder {
    font-size: .16rem;
    color: #c2c2c2;
}

.container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: top 0.3s;
}

.container .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: .4rem;
}

.container .content {
    position: absolute;
    top: .4rem;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.container .footer {
    z-index: 400;
}


/*右边小箭头*/

.rightarrow {
    background: url("../../img/right_arrow.jpg") no-repeat;
    background-size: contain;
    width: 0.036rem;
    height: 0.08rem;
    display: inline-block;
    margin-left: 0.05rem;
}


/*公共标题栏titlebar*/

.titlebar {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 0.16rem;
    color: #000;
    background-color: #f8f8f8;
}

.titlebar > * {
    display: block;
}

.titlebar:after {
    content: " ";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    border-bottom: 1px solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.titlebar a,
.titlebar a:hover,
.titlebar a:link,
.titlebar a:active {
    color: inherit;
}

.titlebar .titlebar-icon {
    width: 0.4rem;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.titlebar .titlebar-left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 0.4rem;
    height: 100%;
}

.titlebar .titlebar-left > * {
    display: block;
}

.titlebar .titlebar-left > .titlebar-text {
    height: 100%;
    padding: 0 0.07rem;
    font-size: 0.14rem;
    line-height: 0.4rem;
    color: #999;
}

.titlebar .titlebar-left > a:first-child {
    margin-left: 0;
}

.titlebar .titlebar-title {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    flex: none;
    max-width: 1.8rem;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}

.titlebar .titlebar-right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 0.4rem;
    height: 100%;
}

.titlebar .titlebar-right > * {
    display: block;
}

.titlebar .titlebar-right > .titlebar-text {
    height: 100%;
    padding: 0 0.07rem;
    font-size: 0.14rem;
    line-height: 0.4rem;
    color: #999;
}

.titlebar .titlebar-right > a:last-child {
    margin-right: .1rem;
}

.titlebar .titlebar-back {
    background-image: url("../img/left.png");
    background-size: .1rem .2rem;
}


.arrow {
    position: absolute;
    right: .2rem;
    /*width: 5px;*/
    font-size: 0;
    line-height: 0; 
    border-width: 10px;
    border-color: #fe716d;
    border-bottom-width: 0;
    border-style: dashed;
    border-top-style: solid;
    border-left-color: transparent;
    border-right-color: transparent;
}

