﻿
/* 项目部 2017.3.31   版本: V2.7*/

/* 更新说明：
    1. 都掉弱标签的默认边距属性
	2. 增加栏目名称一类用到的标准样式
*/

/* 使用注意：
    1. hanweb全局定义缺少页面字体的整体大小和风格定义。（请在个性表中按项目PSD 定义）
	2. 默认 a 标签的link hover 等交互色和默认值同样未定义，（同上）。
	3. 如项目需兼容ie7，请将所有加了“border”和“padding”两个属性值的class固定宽度/高度值，用“ *+宽度/高度” 兼容IE7的写法减去所设的两个属性占的px；
	  （详情请参阅 “JCMS 模板制作规范文档”）

*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* Prevent iOS text size adjust after orientation change, without disabling user zoom. */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: none;
}
/* Remove default margin. */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/* HTML5 display definitions */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
main,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template,
script {
  display: none;
}
/* Links
   ========================================================================== */
/*  默认背景色透明*/
a {
  background-color: transparent;
}
/* 获取焦点字段，并设计其样式*/
a:focus {
  outline: thin dotted;
}
/* 当使用TAB键盘控制页面时，取消默认选中模块的虚线框 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
     =============