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

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

.block {
    display: block;
}

/* html */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    margin: 0 auto;
    padding: 0;
    max-width: 540px;
    height: 100vh;
    font-family: '微软雅黑', Helvetica, sans-serif;
}

a {
    text-decoration: none;
    font-weight: normal;
}

a:visited {
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}

p {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0; 
}

input[type="number"]{-moz-appearance:textfield;}

input {
    border: none;
    outline: none;
    background: none;
    /* background-color: #474747;
    color: #ffffff; */
    background: #1A2050;
    color: #ADAFC1;
    font-size: 14px
}

input:focus {
    outline: none;
}

input, textarea {
    height: 45px;
    border-radius: 10px;
    opacity: 1;
    padding: 16px 24px;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #ADAFC1;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #ADAFC1;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #ADAFC1;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #ADAFC1;
}

.input-lable {
    font-size: 16px;
    font-weight: bold;
    line-height: 140%;
    color: #03133D;
}

textarea {
    outline: none;/*边线不显示*/
    resize: none;/*禁止拉伸*/
    appearance: none;
    min-height: 160px;
}

button {
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 20px;
}

.button {
    height: 55px;
    width: 50%;
    border-radius: 6px;
}

/* width height */
.w-full {
    width: 100%;
}

.w-max {
    max-width: 540px !important;
}

.h-full {
    height: 100%;
}

.w-10 {
    width: 10px;
}

.h-10 {
    height: 10px;
}

.w-15 {
    width: 15px;
}

.h-15 {
    height: 15px;
}

.w-20 {
    width: 20px;
}

.h-20 {
    height: 20px;
}

.w-25 {
    width: 25px;
}

.h-25 {
    height: 25px;
}

.w-30 {
    width: 30px;
}

.h-30 {
    height: 30px;
}

.w-40 {
    width: 40px;
}

.h-40 {
    height: 40px;
}

.w-50 {
    width: 50px;
}

.h-50 {
    height: 50px;
}

.w-60 {
    width: 60px;
}

.h-60 {
    height: 60px;
}

.w-24-bl {
    width: 24%;
}

.w-30-bl {
    width: 30%;
}

.w-32-bl {
    width: 32%;
}

.w-40-bl {
    width: 40%;
}

.w-45-bl {
    width: 45%;
}

.w-50-bl {
    width: 50%;
}

.w-60-bl {
    width: 60%;
}

.w-70-bl {
    width: 70%;
}

/* flex */
.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

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

.items-end {
    align-items: end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-end {
    justify-content: flex-end;
}

.flex-column {
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

/* position */
.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* z-index */
.z-index-10 {
    z-index: 10;
}

.z-index-20 {
    z-index: 20;
}

.z-index-30 {
    z-index: 30;
}

/* text align */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* border */
.border-1-c-0 {
    border: 1px solid #ffffff;
}

.border-2-c-0 {
    border: 2px solid #ccc;
}

/* margin */
.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-100 {
    margin-top: 100px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

/* padding */
.py-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.p-5-bl {
    padding: 5%;
}

.py-5-bl {
    padding-left: 5%;
    padding-right: 5%;
}

.px-5 {

    padding-left: 5%;
    padding-right: 5%;
}

.px-10 {

    padding-left: 10%;
    padding-right: 10%;
}

.pb-30 {
    padding-bottom: 30px;
}

.p-10-bl {
    padding: 10%;
}

/* container */
.container {
    width: 100%;
    padding: 0 10%;
}

/* font-size */
.f-s-10 {
    font-size: 10px;
}

.f-s-12 {
    font-size: 12px;
}

.f-s-14 {
    font-size: 14px;
}

.f-s-15 {
    font-size: 15px;
}

.f-s-16 {
    font-size: 16px;
}

.f-s-18 {
    font-size: 18px;
}

.f-s-20 {
    font-size: 20px;
}

.f-s-22 {
    font-size: 22px;
}

.f-s-24 {
    font-size: 24px;
}

.f-s-26 {
    font-size: 26px;
}

.f-s-30 {
    font-size: 30px;
}

.f-s-35 {
    font-size: 35px;
}

.f-s-36 {
    font-size: 36px;
}

/* line height */
.l-h-150 {
    line-height: 150%;
}

.l-h-160 {
    line-height: 160%;
}

.l-h-170 {
    line-height: 170%;
}

.l-h-180 {
    line-height: 180%;
}

.l-h-190 {
    line-height: 190%;
}

/* font weight */

.f-w-1 {
    font-weight: 100;
}

.f-w-b {
    font-weight: bold;
}

.pointer {
    cursor: pointer;
}


.levitate-service {
    right: 10px;
    top: 65%;
    z-index: 999;
    background-image: url(../../image/kefu.png);
    background-size: cover;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}