﻿/* 整体框架 */
/* body  
--------------------------------------------------------------------*/
html {
    overflow-y: scroll;
}

body {
    font-size: 12px;
    text-align: left;
    color: #333;
    background: #fff;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    _padding-bottom: 30px; /*IE6提示升级浏览器填充*/
}
/* link   全局链接样式  
--------------------------------------------------------------------*/
a:link {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

a:visited {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

a:hover {
    color: #2c0000;
    text-decoration: underline;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

a:active {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
/* H1~6 text   标题文字设置  
--------------------------------------------------------------------*/
/*h1标题*/
h1 {
    font-weight: bold;
    font-size: 20px;
    color: #000;
}
/*h2标题*/
h2 {
    font-weight: bold;
    font-size: 16px;
    color: #000;
}
/*h3标题*/
h3 {
    font-weight: bold;
    font-size: 12px;
}
/*h4标题*/
h4 {
}
/*全局控制*/
.page_container {
    width: 1270px;
    margin: 0 auto;
}

.clear:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clear {
    clear: both; /*控制分类后，各行高度不一样对不齐问题*/
    width: 100%;
    height: 0px;
    font-size: 0;
    overflow: hidden; /*控制分类后，各行高度不一样对不齐问题*/
}

