/** 基础样式 **/
/** 重置所有的浏览器CSS样式 **/
body, h1, h2, h3, h4, h5, h6, hr, p,
blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td, /* table elements 表格元素 */
img /* images elements 图片元素 */
{
    border: medium none;
    margin: 0;
    padding: 0;
}

/** 设置默认字体 **/
body, button, input, select, textarea {
    font:1em Helvetica Neue,Helvetica,PingFang SC,微软雅黑,Tahoma,Arial,sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}
em {
    font-style: normal;
}
/** 重置列表元素 **/
ul, ol {
    list-style: none;
}
/** 重置超链接元素 **/
a {
    text-decoration: none;
    color: #4C4C4C;
}
a:hover {
    text-decoration: none;
    color: #1470B4;
}
/** 重置图片元素 **/
img {
    border: 0;
}
/** 重置表格元素 **/
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/** 自定义样式 **/
.position-container{
    width:1200px;
    margin: 0 auto;
}
.title-banner{
    width:1200px;
    line-height: 60px;
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
}
.content-container{
    width:1200px;
}
.menu-container{
    width: 150px;
    position: fixed;
    float: left;
    border: 1px solid #d2d2d2;
    background-color: #FFFFFF;
}
.menu-title{
    padding: 0 80px 0 20px;
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    background-color: #F8F8F8;
    border-radius: 2px 2px 0 0;
}
.menu-list{
    padding: 10px;
}
.menu-list ul li{
    line-height: 26px;
    margin-left: 20px;
    overflow: visible;
    list-style-type: disc;
    font-size: 0.8em;
}
.iframe-container{
    width: 830px;
    margin: 0 auto;
    border: 1px solid #d2d2d2;

}
.iframe-container div p{
    padding: 0 80px 0 20px;
    height: 42px;
    line-height: 42px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    background-color: #F8F8F8;
    border-radius: 2px 2px 0 0;
}
.img-container{
    padding: 10px;
}
.img-container img{
    width: 810px;
}
.clean{
    clear: both;
}
