/* base start */
* {
    outline: none !important;
    -moz-outline:none !important;
}
body {
    font-family: Roboto-Regular, 微软雅黑, Helvetica, Arial, sans-serif;
    /*-webkit-text-size-adjust: 100%; 值为none，当样式表里font-size<12px时，中文版chrome浏览器里字体显示仍为12px*/
    /*-ms-text-size-adjust: 100%;*/
    -webkit-font-smoothing: antialiased; /* 让页面里的字体变清晰 */
    -moz-osx-font-smoothing: grayscale; /*抗锯齿属性*/
    -webkit-text-stroke: 1px transparent;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, figure, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
audio, canvas, video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden] {
    display: none;
}
a {
    color: #222325;
    text-decoration: none;
    outline: none;
}
a:hover {
    zoom: 1;
    text-decoration: none;
    outline: none;
}
abbr[title] {
    border-bottom: 1px dotted;
}
hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}
b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}
small {
    font-size: 80%;
}
mark {
    background: #ff0;
    color: #000;
}
code, kbd, pre, samp {
    font-family: monospace, serif;
    font-size: 1em;
}
pre {
    white-space: pre-wrap;
}
q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}
svg:not(:root) {
    overflow: hidden;
}
fieldset { /*组合表单中的相关元素*/
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}
button, input {
    line-height: normal;
}
button, select {
    text-transform: none; /*定义文本的大小写状态 uppercase: 大写 capitalize: 首字母大写*/
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button; /*使 div 元素看上去像一个按钮：*/
    -moz-appearance: button;
    appearance: button;
    cursor: pointer;
}
button[disabled], html input[disabled] {
    cursor: default;
}
input[type="checkbox"], input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
textarea::-moz-placeholder {
    color: #c2c8d1;
    opacity: 1;
}
textarea:-ms-input-placeholder {
    color: #c2c8d1;
}
textarea::-webkit-input-placeholder {
    color: #c2c8d1;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
	/*width: 100%;
    border: none;性。
    border-spacing: 10px;*/
    border-collapse: separate;/*边框会合并为一个单一的边框。collapse会忽略 border-spacing 和 empty-cells 属*/
}
img {
    border: 0;
    -ms-interpolation-mode:bicubic;/*iE7.0中自带的属性 可以解决缩放失真问题*/
}
