@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    -webkit-tap-highlight-color: transparent; /*点击高亮我们需要清除清除  设置为transparent 完成透明*/
}

body {
    font-size: 14px;
    font-family: -apple-system, Helvetica, sans-serif; /* 如果是苹果就是用苹果默认字体  如果不是苹果手机 就使用后啊面的字体 */
    color: #000;
    line-height: 1.5; /* 行高 */
    
    overflow-x: hidden; /* 水平方向超出隐藏 */
}

input {
    -webkit-appearance: none; /*在移动端浏览器默认的外观在iOS上加上这个属性才能给按钮和输入框自定义样式*/
}
input[type="checkbox"] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    border: initial;
}
input::-webkit-input-placeholder {
    color: #999;
}
img,a {
    -webkit-touch-callout: none; /*禁用长按页面时的弹出菜单*/
}

a {
    color: #000;
    /* 取消链接的下划线样式 */
    text-decoration: none;
	border:none;
}

ul {
    /* 设置列表的默认样式 */
    margin: 0;
    padding: 0;
    /* 去掉小圆点 */
    list-style: none;
}

img {
    /* 图片与文字对齐样式 默认是与文字基线对齐 */
    vertical-align: middle;
}

div {
    /* css3 盒子模型 */
    box-sizing: border-box;
}
i,em{
	/* 去除斜杠 */
	font-style: normal;
	}
.clearfix:after {
    /* 清除浮动样式 */
    content: "";
    display: block;
    line-height: 0;
    visibility: hidden;
    height: 0;
    clear: both;
}
/* 图标 */
.a_img{ 
	background-size:contain; 
	background-position:center; 
	background-repeat:no-repeat; 
}


/* 通用按钮样式 */
.btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}


/* 上面是 CSS 的默认样式, 每个 CSS 文件都有上述样式