@charset "utf-8";
/* CSS Document */
/** body **/
body {
/** 清除内外边距 **/
margin: 0px;
padding: 0px;
/** 设置默认字体 **/
font-family: "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", Helvetica, Tahoma, Arial, sans-serif;
/** 设置默认字体大小 **/
font-size: 14px;
color: #333333;
background: #fff8f8;
}
/** 重置列表元素 **/
ul,
ol {
list-style: none;
}
/** 重置超链接元素 **/
a {
text-decoration: none;
color: #000;
}
/*a:link {color:#FF0000;} 未被访问的链接 */
/*a:visited {color:#00FF00;} 已被访问的链接 */
/* 鼠标指针移动到链接上 */
a:hover {
color: #0099FF;
text-decoration: none;
}
/*a:active {color:#0000FF;} 正在被点击的链接 */
/** 重置图片元素 **/
img {
border: 0px;
}
/** 浮动元素 **/
.fl {
float: left
}
.fr {
float: right
}
.clear {
clear: both;
height: 0px !important;
width: 0px !important;
}
/**隐藏**/
.none {
display: none;
}
/** 鼠标变手 **/
.pointer {
cursor: pointer;
}
/** 区域居中 **/
.center {
width: 1008px;
/**代表对象上下间隔为0px,左右间隔根据对象宽度自适应。 **/
margin: 0px auto;
}
/** 文本居左 **/
.tl {
text-align: left;
}
/** 文本居中 **/
.tc {
text-align: center;
}
/** 文本居右 **/
.tr {
text-align: right;
}
/** 块垂直居上 **/
.vt {
vertical-align: top;
}
/** 块垂直居中 **/
.vm {
vertical-align: middle;
}
/* 文本超出换点 以块元素长度*/
.text_intercept {
/* 内容会被修剪,并且其余内容是不可见的 */
overflow: hidden;
/* 显示省略符号来代表被修剪的文本 */
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-webkit-text-overflow: ellipsis;
/ -moz-text-overflow: ellipsis;
/*文本不会换行,文本会在在同一行上继续,直到遇到 <br> 标签为止*/
white-space: nowrap;
/*
扩展知识
-o代表opera浏览器私有属性
-moz代表firefox浏览器私有属性
-ms代表IE浏览器私有属性
-webkit代表chrome、safari私有属性
*/
}
.top ul {
margin: 0px;
padding: 0px;
height: 40px;
width: 1008px;
overflow: hidden;
}
.top ul li {
float: left;
height: 40px;
position: relative;
padding: 6px 33px;
}
.top ul li a {
font-size: 15px;
font-weight: bold;
color: #fff;
text-decoration: none;
}
.top ul li a:hover {
font-size: 15px;
font-weight: bold;
color: #0099FF;
text-decoration: none;
}
.tpl-content table {
border-collapse: collapse;
border-spacing: 0;
width: 100% !important;
}
.tpl-content img {
max-width: 100% !important;
height: auto !important;
}
.tpl-content p {
text-indent: 2em;
line-height: 25px;
margin-top: 10px;
}