﻿@charset "utf-8";
/* CSS Document */

/** 初始化CSS 清除内外边距 **/
body,h1, h2, h3, h4, h5, h6, hr, p, div, a
blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, textarea, /* form elements 表单元素 */
th, td, /* table elements 表格元素 */
img/* img elements 图片元素 */ {
  /* border:medium none; */
  margin: 0px;
  padding: 0px;
  border:0px;
}
/* 短引用的内容可取值：''或"" */
q:before,q:after {content:"";}
input {margin: 0px;padding: 0px;outline:none;}
/** 设置默认字体 **/
body {font: 14px/1.2 'Hiragino Sans GB', 'Microsoft YaHei', 'WenQuanYi Micro Hei', 'sans-serif';}
em {font-style:normal;}
/** 重置列表元素 **/
ul,ol {list-style: none;}
/** 重置超链接元素并且取消掉链接虚线框 **/
a {text-decoration:none;color:#666;}
a:hover {color:#c40000;text-decoration: underline;}
/** 重置图片元素 **/
fieldset,img,abbr,acronym {border:0px;vertical-align:middle;font-size: 0;}
abbr,acronym {font-variant: normal;}
legend {color:#000;}
dl, dt, dd, ul, ol, li {overflow:hidden;zoom:1;}
/* 上下标 */
sup {vertical-align: text-top;}
sub {vertical-align: text-bottom;}
/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/
table {border-collapse: collapse;border-spacing: 0;border: none;margin: 0 0 0 0;padding: 0 0 0 0;}
/* 输入控件字体 */
input,button,textarea,select,optgroup,option {font-size:inherit;font-style:inherit;font-weight:inherit;}
/* 鼠标样式 */
input[type="submit"],input[type=radio],input[type=checkbox] {cursor:pointer;}
button,label {cursor: pointer;}
input::-moz-focus-inner {border: 0;padding: 0;}

/* 清除浮动 */
.clear {width: 0px;display: block;clear: both;font-size: 0;line-height: 0;visibility: hidden;}