@charset "utf-8";

*, :after, :before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    color: #333;
    font: 16px/1.4 "Microsoft Yahei", "SimSun", Helvetica, Arial;
}

body, p, dl, dd {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
    transition: color .3s ease-in;
}

a:hover {
    color: #e9330b;
}

img {
    max-width: 100% !important;
    border: 0 none; /*去除 IE6-9 和 Firefox 3 中 a 内部 img 元素默认的边框*/
    height: auto;
    vertical-align: top; /*去除现代浏览器图片底部的空隙*/
    -ms-interpolation-mode: bicubic; /*修复 IE7 图片缩放失真*/
}

input,
button {
    border: 1px solid #000;
    background-color: #fff;
}

label,
button,
input[type=button],
input[type=submit] {
    cursor: pointer;
}

i,
cite,
em,
var,
address,
dfn {
    font-style: normal;
}

del,
ins,
u,
s {
    text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

textarea {
    overflow: auto; /*ie8下有滚动条*/
    resize: vertical; /*让其只能垂直拖动，防止宽度改变破坏布局。*/
}

table {
    border-spacing: 0; /* 设置相邻单元格的边框间的距离为0 */
    border-collapse: collapse; /* 为表格设置合并边框模型 */
}

th {
    text-align: left;
    font-weight: normal;
}

caption {
    text-align: left;
}

iframe {
    border: 0; /*ie8中设置frameborder才有效*/
}

small {
    font-size: 12px;
}

/*
	
*/

/*
	代码字体选择如下：
	Windows 优先使用 Consolas
	OS X 优先使用 Monaco
*/
code,
kbd,
pre,
samp {
    font-family: monaco, menlo, consolas, 'courier new', courier, monospace;
}


/*----------------------------------------
 h5新特性的设置
-----------------------------------------*/


/*placeholder设置颜色*/
::-webkit-input-placeholder,
::-moz-placeholder,
:-moz-placeholder,
:-ms-input-placeholder {
    color: #999;
}

/*Firefox下input button内文字不能垂直居中及安卓手机按钮文字不垂直居中*/
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
    padding: 0;
}

/*----------------------------------------
 公共类
-----------------------------------------*/
.fl {
    float: left;
    display: inline;
}

.fr {
    float: right;
    display: inline;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.rgba {
    background-color: rgba(0, 0, 0, .5);
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr=#7F000000, endColorstr=#7F000000);
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.triangle_down {
    width: 0;
    height: 0;
    content: "";
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #333 transparent transparent;
}

.triangle_up {
    width: 0;
    height: 0;
    content: "";
    border-width: 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent #333;
}

.r-d {
    -webkit-user-modify: read-write-plaintext-only;
}

.cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 240px;
    height: 180px;
    border: 1px solid #666;
}
.pages {
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
	margin-bottom:60px;
}
.pages .page-active {
    border: 1px solid #26a0d3;
    background-color: #26a0d3;
}
.pages .page {
    width: 30px;
    text-align: center;
    font-size: 13px;
}
.pages .page-active a {
    color: #fff;
}
.pages .page a {
    display: block;
    width: 100%;
    height: 100%;
}
.pages > li a{
	color: #333;
}

.pages > li {
    border: 1px solid #ccc;
    line-height: 30px;
    height: 30px;
    display: inline-block;
    margin: 0 5px;
}
.tab-hot__title a{
	color:#216BA3;
}