/*CSS Reset*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
/*页面通用样式*/
html, body {
    width: 100%;
    height: 100%;
}
body {
    font-family: "Microsoft Yahei";
    min-width: 1200px;
}
a {
    outline: none;
    text-decoration: none;
}
strong {
    font-weight: normal;
}
.strong {
    font-weight: bold;
}
::selection {
    background: #1EACDF;
    color: #fff;
}
img {
    border: 0px;
}
::-moz-selection {
    background: #1EACDF;
    color: #fff;
}
::-webkit-selection {
    background: #1EACDF;
    color: #fff;
}
/*可用布局类*/
.autoWidth {
    margin: 0 auto;
    min-width: 1200px;
    max-width: 1200px;
    _width: 1200px;
}
.auto {
    margin: 0 auto;
    min-width: 1200px;
    max-width: 1200px;
    _width: 1200px;
}
/*@media screen and (max-width: 1233px){
	.auto {
		padding-left: 10px;
	}
}*/
.clearfix {
    *zoom: 1;
}
.clearfix:before, .clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}
.clearfix:after {
    clear: both;
}
.pull-right {
    float: right;
}
.pull-left {
    float: left;
}
.hide {
    display: none;
}
.show {
    display: block;
}
.invisible {
    visibility: hidden;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.img-rounded {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.img-polaroid {
    padding: 4px;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.img-circle {
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
}
.hide-text {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.input-block-level {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -moz-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}
.affix {
    position: fixed;
}
/* 预定义 transition */
.default-transition,
.default-transition-fast,
.default-transition-slow,
.default-transition-children > *,
.default-transition-children-fast > *,
.default-transition-children-slow > *,
.default-transition-tree *,
.default-transition-tree-fast *,
.default-transition-tree-slow * {
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;

    /*默认transition-timing-function值是 ease，可以省略*/
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -ms-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;

    /* 有的元素通过 z-index 来做突出层级，则失去 hover时也会失去 z-index，这时部分过渡效果会受到影响。所以这里加上z-index，维持与其它属性的过渡的共同作用 */
    -webkit-transition-property: background-color, background-position, color, border-color, opacity, z-index, transform, -webkit-box-shadow;
    -moz-transition-property: background-color, background-position, color, border-color, opacity, z-index, transform, -moz-box-shadow;
    -ms-transition-property: background-color, background-position, color, border-color, opacity, z-index, transform, -ms-box-shadow;
    -o-transition-property: background-color, background-position, color, border-color, opacity, z-index, transform, -o-box-shadow;
    transition-property: background-color, background-position, color, border-color, opacity, z-index, transform, box-shadow;
}
.default-transition-fast,
.default-transition-children-fast > *,
.default-transition-tree-fast * {
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.default-transition-slow,
.default-transition-children-slow > *,
.default-transition-tree-slow * {
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    -ms-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
}
/*全站通用翻页按钮样式*/
.news-pagination {
    padding-left: 30%;
    width: 100%;
    padding-top: 30px;
}
.page_text,
.page_no {
    padding: 3px;
}
.page_no {
    padding-right: 0;
}
.page_next {
    padding-left: 0;
}
.page_text a,
.page_no a {
    padding-top: 10px;
    padding-bottom: 9px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    display: block;
}
.page_no a {
    display: inline-block;
    margin-right: 6px;
    float: left;
}
.page_text a:hover,
.page_no a:hover {
    border: 1px solid #009ed6;
    color: #009ed6;
}
.page_no .page_current,
.page_no .page_current:hover {
    color: #fff;
    background-color: #00aaff;
    border: 1px solid #009ed6;
}
/* 可利用的功能类（工具类） */
.clear-float {
    clear: both;
}
.text-overflow {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.default-font {
    font-family: "Microsoft Yahei";
}
/* 自动完成插件 样式覆盖 */
.ui-autocomplete li.ui-menu-item {
    padding: 6px 1em 6px 1em;
    font-size: 13px;
    font-family: "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", tahoma, arial, simsun, "宋体";
    color: #555;
}
.ui-autocomplete li.ui-state-focus {
    background: #f7f9fa;
    border: 1px solid transparent;
    border-left-color: #ddd;
    border-right-color: #ddd;
}
.ui-autocomplete.ui-menu {
    padding-bottom: 1px;
}
.ui-autocomplete-text-highlight {
    color: #f60;
}
/* 公共皮肤样式 */
.text-primary {
    color: #00aaff;
}
.text-stress {
    color: #ff8800;
}
.text-muted {
    color: #999;
}
/* 小型警示框 */
.alert-warn {
    padding: 7px 22px 5px 37px;
    background: url(../images/tip_icon_warn_16.png) no-repeat 10px 10px #fff3e5;
    border: 1px solid #ffd4a3;
    border-radius: 2px;
    color: #ff8800;
    font-size: 12px;
    line-height: 2em;
}
/*头部+banner*/
.xixun {
				height: 44px;
				line-height: 46px;
				font-size: 16px;
				font-weight:bold;
				text-align: left;
				background: #D60000 ;
				color: #fff;
				position: fixed;
				top: 0px;
				width: 100%;
				z-index: 1000;
				padding-left: 500px;
			}
			.xixun-close {
				cursor: pointer;
				float: right;
				display: inline-block;
				width: 44px;
				height: 44px;
				margin-right: 20px;
			}
/*加banner-engine normal-header 使用于banner*/
/*top-bar*/
.global-topbar {
    height: 32px;
}
.global-topbar,
.header-main:hover .global-topbar {
    background: #0087b8;
    border-bottom-color: #0087b8;
}
.banner-engine .global-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: url(../images/topbar_bg.png) repeat-x left center;

}
.global-topbar a {
    text-decoration: none;
}
