﻿/*=================initalize==================*/

/*html{font-size: 40px}*/

* {
    /* touch-action: pan-y; */
    box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    font-family: PingFang SC "PingFang SC"Source Han Sans SC;
}

body {
    background: #fff;
    color: #333;
    font-size: 14px;
    font-family: "PingFang SC", "Microsoft Yahei", Tahoma, Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

a {
    color: #555;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

img {
    border: none;
    object-fit: cover;
}

ol,
ul,
li {
    list-style: none;
}

i,
em {
    font-style: normal;
}

input,
textarea,
select,
button {
    font: 14px Verdana, Helvetica, Arial, sans-serif;
    border: 1px solid #999;
    outline: none;
}

table {
    border-collapse: collapse;
}

.cf:after {
    content: "";
    display: block;
    clear: both;
}

.cf {
    display: inline-table;
}

/* Hides from IE-mac \*/

* html .cf {
    height: 1%;
}

.cf {
    display: block;
}

/* End hide from IE-mac */

.fl {
    float: left;
}

.fr {
    float: right;
}

button {
    cursor: pointer;
    outline: none;
    border: 0;
}

.blue {
    color: #165be1;
}

.gray {
    color: #666;
}

/*=================public==================*/

/* header {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: #fff !important;
}

header .mui-title {
    color: #333 !important;
    font-size: .34rem !important;
    font-weight: bold;
}

.mui-content {
    background: #fff;
    max-width: 12rem;
    margin: 0 auto;
} */

.flex {
    display: flex;
}

input {
    margin-bottom: 0 !important;
    color: #555;
}

input::-webkit-input-placeholder {
    color: #999;
}

input::placeholder {
    color: #999;
}

input[type="radio"] {
    height: 0.46rem;
    width: 0.46rem;
    border: solid 1px #dfdfdf;
    background-color: transparent;
    -webkit-appearance: none;
    border-radius: 50%;
    position: relative;
}



.flex-nowrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.flex-just {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.flex-around {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.one-letter {
    /*设置文本框大小*/
    white-space: nowrap;
    /*设置内容不换行*/
    text-overflow: ellipsis;
    /*设置文字超出文本框的内容显示成...*/
    overflow: hidden;
    /*超出部分隐藏*/
}

.two-letter {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

.three-letter {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    word-break: break-all;
    -webkit-box-orient: vertical;
}