﻿@charset "utf-8";

/*定义公共样式*/

* {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

html {
    /*在750下 让页面根元素字体等于60px  设计图的元素宽除以60  就是最后的？rem*/
    /*font-size: 6.6666666667vw;*/
}

body {
    font: 14px "微软雅黑";
    color: #111;
    background: #fff
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal
}

b {
    font-weight: normal;
}

input,
button,
textarea {
    outline: none;
    border: none;
    background: none;
}

button,
input,
optgroup,
select,
textarea {
    border: none;
    vertical-align: middle;
    font-family: 'Microsoft Yahei';
    outline: none;
}

button,
input {
    border-radius: 0;
    padding: 0;
}

textarea,
input {
    -webkit-user-modify: read-write-plaintext-only;
    /*Android 下 input focus 消除高亮外框*/
}

textarea {
    resize: none;
}

input[type="button"],
input[type="submit"] {
    cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
    vertical-align: -2px;
}

img {
    border: none;
    /*width: 100%;
  display: block;*/
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #111;
}

.clear {
    clear: both;
}

a,
input {
    outline: none;
}

.clearfix:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

i,
em {
    font-style: normal;
}

.clearfix:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

button {
    cursor: pointer;
}

.cur {
    cursor: pointer;
}

.clear {
    clear: both;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

* {
    box-sizing: border-box;
    max-width: 100%;
}