/*reset css  重置默认的一些样式  浏览器子自带的  目的是保持各种终端显示一致*/
/*所有的标签和伪类  before after*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    /*在移动端特殊的设置*/
    /*清除点击高亮效果*/
    -webkit-tap-highlight-color: transparent;
    /*设置所有的盒子的宽度以边框开始计算*/
    -webkit-box-sizing: border-box;
    /*要兼容 webkit 浏览器内核厂商 这种情况一般是老的移动端浏览器*/
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

html,body {
    font-size: 3.2vw;
    color: #333;
    /*是设备默认的字体*/
    font-family: 'PingFangSC','Microsoft YaHei','sans-serif','楷体';
    max-width: 540px;
    margin: 0 auto;
	overflow-x: hidden;
	width:100%;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #333;
}

input[type="text"], input[type="number"],
button,
textarea {
    border: 0;
    border: none;
    outline: none;
    resize: none;
    /*特殊的属性定义  清除浏览器给input自带的样式*/
    -webkit-appearance: none;
    /*组件默认的样式空*/
}

input[type=button], input[type=submit], input[type=file], button {
    cursor: pointer;
    -webkit-appearance: none !important;
}

/* 选用样式 */
.none{ display: none !important; }


#topbar{
    width: 100%;
    height: 92.5px;
    background-color: pink;
}
#tip{
	text-align: center;
	margin-top: 100px;
}
.modal-open {
    position: fixed;
    width: 100%;
}