@charset "utf-8";

.wrap {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
    table-layout: fixed;
    word-break: break-all;
}

.main {
    min-height: 100vh;
    background: #F7F9FC;
    position: relative;
}

.flex-box {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /*旧*/
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    box-align: center;
    /*新*/
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.flex-row {
    /*旧*/
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-box-direction: normal;
    box-direction: normal;
    /*新*/
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    /*旧*/
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-box-direction: reverse;
    box-direction: reverse;
    /*新*/
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-col {
    /*旧*/
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-box-direction: normal;
    box-direction: normal;
    /*新*/
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-col-reverse {
    /*旧*/
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-box-direction: reverse;
    box-direction: reverse;
    /*新*/
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex-wrap {
    /*旧*/
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-box-lines: multiple;
    box-lines: multiple;
    /*新*/
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-grow-1 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 20px;
    width: 0;
}

.flex-grow-2 {
    -webkit-box-flex: 2;
    -moz-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
    min-width: 20px;
    width: 0;
}

/* --------reset-------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

ol,
ul {
    list-style: none;
}

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

a img {
    border: none;
}

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

input,
textarea,
button {
    font: inherit;
    color: inherit;
}

fieldset,
img,
abbr,
acronym {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
strong,
th,
var {
    font-style: normal;
    vertical-align: middle;
}

em,
i {
    font-style: normal;
}

blockquote,
q {
    quotes: none;
}

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

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

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

button,
textarea,
input:not([type="radio"]):not([type="checkbox"]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

:focus {
    outline: 0;
}

/* Form selected style modification */

/* --------global-------- */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Pingfang SC, Microsoft Yahei, WenQuanYi Micro Hei, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    background: #F7F9FC;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 500;
    color: inherit;
}

.bg_color {
    background: linear-gradient(180deg, #019595 0%, #86F2BF 100%);
}

main.content {
    padding: 0;
    /* padding-top: 20px; */
}

.main_box {
    padding: 30px 20px;
}

.box {
    width: 100%;
    max-width: 690px;
    min-height: 490px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 40px 20px;
    margin-left: auto;
    margin-right: auto;
}

.login_title {
    font-weight: bold;
    font-size: 20px;
    color: #101010;
}

.mt35 {
    margin-top: 35px;
}

.mt20 {
    margin-top: 20px;
}

.inp_item {
    width: 100%;
    height: 50px;
    background: #F4F8FC;
    border-radius: 5px;
    padding: 0 15px;
}

.icon15 {
    width: 15px;
    height: auto;
}

.inp_item .left {
    font-size: 15px;
    margin-left: 10px;
    color: #898989;
}

.inp_item .inp {
    font-size: 15px;
    color: #101010;
    text-align: right;
    padding-left: 15px;
    border: none;
    background: transparent;
}

.submit_btn {
    width: 100%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 17px;
    margin-top: 70px;
    color: #FFFFFF;
    background: #009486;
    border-radius: 24px;
    border: none;
}

.search_box_nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    box-sizing: border-box;
    padding: 20px 20px;
    background: #F7F9FC;
}

.search_box {
    width: 100%;
    height: 35px;
    background: rgba(255, 255, 255, 1);
    border-radius: 25px;
    line-height: 35px;
    font-size: 11px;
    color: #101010;
    padding-left: 15px;
    padding-right: 15px;
}

.icon_search {
    width: 12px;
    height: auto;
    margin-right: 5px;
}

.search_box .inp {
    border: none;
    font-size: 14px;
}

.pt10 {
    padding-top: 94px;
}


.list .item {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 15px;
    padding: 15px;



}


.list .item .cover_mini {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

.list .item .cover {
    width: 80px;
    height: 80px;
    border-radius: 2.5px;
}

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

.m-ellipsis-l2,
.m-ellipsis-l3,
.m-ellipsis-l4 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.m-ellipsis-l2 {
    -webkit-line-clamp: 2;
}

.m-ellipsis-l3 {
    -webkit-line-clamp: 3;
}

.m-ellipsis-l4 {
    -webkit-line-clamp: 4;
}

.pl15 {
    padding-left: 7.5px;
}

.pr10 {
    padding-right: 10px;
}

.fs30 {
    font-size: 15px;
}

.col3 {
    color: #333;
}

.ico26 {
    width: 13px;
    height: auto;
}

.colff5 {
    color: #FF5232;
}

.mt20 {
    margin-top: 10px;
}

.pl20 {
    padding-left: 10px;
}

.fs28 {
    font-size: 14px;
}

.lh40 {
    line-height: 20px;
}

.col89 {
    color: #898989;
}

.fs24 {
    font-size: 12px;
}

.fs20 {
    font-size: 10px;
}

.fwb {
    font-weight: bold;
}

.col1 {
    color: #009486;
}

.pl5 {
    padding-left: 2.5px;
}

.fs36 {
    font-size: 18px;
}

.fs22 {
    font-size: 11px;
}

.cola {
    color: #aaa;
}

.mt10 {
    margin-top: 5px;
}

.col10 {
    color: #101010;
}

.info_html .bb {
    border-bottom: 1px solid #EEEEEE;
}

.info_html .box2 {
    width: 100%;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 22.5px 15px 15px;
    ;
}

.info_html .label {
    width: 84px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: #515354;
    background: #F2F7FA;
    border-radius: 22.5px;
    display: inline-block;
    vertical-align: top;
    margin-top: 20px;
    margin-right: 22.5px;


}

.info_html .label.active {
    background: #009486;
    color: #FFFFFF;
}

.info_html .label:nth-of-type(3n) {
    margin-right: 0;
}

.info_html .shop_item {
    margin-top: 15px;


}

.info_html .cover {
    width: 75px;
    height: 75px;
    border-radius: 7.5px;
}

.mt60 {
    margin-top: 30px;
}

.info_html .pay_btn {
    font-size: 15px;
    color: #FFFFFF;
    width: 90px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #009486;
    box-shadow: 0px 1px 2px 0px rgba(2, 159, 89, 0.3);
    border-radius: 8px;
}

.info_html .new_btn1 {
    font-size: 15px;
    color: #009486;
    width: 90px;
    height: 40px;
    line-height: 40px;
    background: rgba(0, 148, 134, .1);
    border-radius: 8px;
    text-align: center;
}

.info_html .new_btn2 {
    width: 90px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #FF9D1C;
    border-radius: 8px;
    font-size: 15px;
    color: #FFFFFF;
}

.info_html .new_btn3 {
    width: 90px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #009486;
    box-shadow: 0px 1px 2px 0px rgba(2, 159, 89, 0.3);
    border-radius: 8px;
    font-size: 15px;
    color: #FFFFFF;
}

.pr140 {
    padding-right: 80px;
}

.info_html .return_btn {
    width: 70px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    font-size: 15px;
    color: #009486;
    border-radius: 22.5px;
    border: 1px solid #009486;

}

.flex {
    display: flex;
}

.tr {
    text-align: right;
}

.pl30 {
    padding-left: 15px;
}

.box1 {
    width: 100%;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 0 15px 20px;
}

.ptb40 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.mt30 {
    margin-top: 30px;
}

.pt40 {
    padding-top: 20px;
}

.mt40 {
    margin-top: 20px;
}

.pb80 {
    padding-bottom: 20px;
}

.ml30 {
    margin-left: 30px;
}



.item_server {
    width: 100%;
    border-radius: 10px;


}

.item_server .icon {
    width: 15px;
    height: 15px;
}

.item_server .ss {
    width: 100%;
    height: 2px;
}

.item_server .info_img {
    width: 85px;
    height: 85px;
    border-radius: 5px;
}

.item_server .goods_name {
    line-height: 21px;
}

.item_server .time {
    padding: 0 7.5px;
    display: inline-flex;
    height: 22px;
    background: rgba(253, 204, 37, 0.2);
    border-radius: 11px;
}

.item_server .icon1 {
    width: 12px;
    height: 12px;
}
.bg-white{background: #fff;}
.btn3 {
	background-color: #FF9D1C;
	color: #fff;
	width: 68px;
	height: 30px;
	border-radius: 5px;
	text-align: center;
	font-size: 12px;;
	line-height: 30px;
}

.btn4 {
	background-color: #009486;
	color: #fff;
	width: 68px;
	height: 30px;
	line-height: 30px;
	box-shadow: 0px 1px 2px 0px rgba(2, 159, 89, 0.3);
	border-radius: 5px;
	text-align: center;
	font-size: 12px;
}