@charset "utf-8";

/*
*base.css需在所有页面引入,并在其他css之前引入
*base.css中样式如需更改,请先知会其他开发人员
*/


/*初始化样式*/


/* ::-webkit-scrollbar {
    width: 0;
    border: solid 0 rgba(0, 0, 0, 0);
} */

::-webkit-input-placeholder {
    color: #465d75;
}

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

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    outline: 0;
}

blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
    border: 0 none;
    -webkit-appearance: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

img {
    border: 0 none;
}

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

a:active,
a:hover,
a:link,
a:visited {
    text-decoration: none;
    color: #333;
}

.disabled,
[disabled] {
    opacity: 1;
}

input:not([type="button"]),
textarea {
    -webkit-user-select: auto;
}


/*页面基础样式*/

html {
    min-height: 100%;
}

body {
    /* overflow-x: hidden; */
    width: 100%;
    font-family: "Microsoft YaHei";
}

.clear {
    clear: both;
}


/*屏幕适配**rem基准值*/

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

@media only screen and (min-width: 320px) and (max-width: 352px) {
    html {
        font-size: 10px;
    }
}

@media only screen and (min-width: 352px) and (max-width: 384px) {
    html {
        font-size: 11px;
    }
}

@media only screen and (min-width: 384px) and (max-width: 416px) {
    html {
        font-size: 12px;
    }
}

@media only screen and (min-width: 416px) and (max-width: 448px) {
    html {
        font-size: 13px;
    }
}

@media only screen and (min-width: 448px) and (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 512px) {
    html {
        font-size: 15px;
    }
}

@media only screen and (min-width: 512px) and (max-width: 544px) {
    html {
        font-size: 16px;
    }
}

@media only screen and (min-width: 544px) and (max-width: 576px) {
    html {
        font-size: 17px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 608px) {
    html {
        font-size: 18px;
    }
}

@media only screen and (min-width: 608px) and (max-width: 640px) {
    html {
        font-size: 19px;
    }
}

@media only screen and (min-width: 640px) {
    html {
        font-size: 20px;
    }
}