﻿@charset "utf-8";

/* common */
* {
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
}
html, body {
    font-family: "微软雅黑", Arial, "宋体";
    width: 100%;
    min-height: 100%;
    position: relative;
    margin: 0 auto;
    color: #333333;
    -webkit-text-size-adjust: none;
    word-wrap: break-word;
    font-size: 12px;
}
body {
    background-color: rgb(255,255,255);
    line-height: 1;
}
address, caption, cite, code, dfn, em, strong, th, var, i {
    font-style: normal;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th {
    text-align: left;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}
input, select, textarea {
    outline: medium;
}
img, abbr, acronym, fieldset, input {
    border: 0;
    margin: 0;
}
img {
    max-width: 100%;
}
ul, ol {
    list-style-image: none;
    list-style-type: none;
    list-style-position: inside;
}
ul, li {
    list-style-type: none;
}
a {
    color: rgb(51,51,51);
}
a:hover, a:focus, a:link, a:visited {
    text-decoration: none;
    color: rgb(51,51,51);
}
.clear {
    clear: both;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/*placeholder的css*/
::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999999;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999999;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999999;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999999;
}