@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
}

ol, ul, li {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before, q:after {
    content: '';
}

/* 首字母缩写*/
abbr, acronym {
    border: 0;
}

body {
    background-color: #fff;
    font: 17px/1em "Microsoft YaHei", 宋体;
}

.clear:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
    font-size: 0;
}

.clear {
    clear: both;
    zoom: 1;
}

a {
    color: #000;
    text-decoration: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

/*图片放大效果*/
img {
    width: 120px;
    transition: all 0.6s;
    cursor: pointer;
}

img:hover {
    transform: scale(2);
    transition: .6s transform;
}

/*图片默认最大宽度与高度*/
.gf {
    width: 200px;
    height: 200px;
    max-height: 200px;
    max-width: 200px;
}
