@charset "utf-8";
/* 新华网专题通用css框架。随项目修改宽度、背景色等 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    color: #1b1b1b;
    background-color: #eee;
	line-height:1.8em;
}


body, ul, li, input, img, a, dl, dt, dd, textarea, button, input, select {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: Arial, Helvetica, "微软雅黑";
    font-weight: normal;
}

img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    border: 0;
}

a {
    text-decoration: none;
    color: #1b1b1b;
}
a:hover{text-decoration: underline}

    a:link {
        cursor: pointer;
    }
/*common style start*/
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.pointer {
    cursor: pointer;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}


.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.block-center {
    margin-left: auto;
    margin-right: auto;
}

button {
    border: none;
    cursor: pointer;
}
.show-xs {
    display: none ;
}

.show-lg {
    display: block;
}


.bg-xinhua-bar {
    background-color: #a40000;
    min-width: 1188px;
}


.top-bar {
    height: 57px;
    color: #fff;
    text-decoration: none;
    padding-left: 14px;
}
.top-bar a{
	color:#fff;
}
.top-bar.container{width:1188px;}

    .top-bar ul li {
        list-style: none;
        float: left;
        line-height: 57px;
        margin-right: 5px;
    }

        .top-bar ul li a {
            margin-right: 5px;
            font-size: 15px;
        }
.footer {
    color: #fff;
    background: #a40000;
    line-height: 65px;
    font-size: 12px;
    margin: 0 auto;
}
/*页面容器，定义了最小宽度(本次项目设计的最小宽度)*/
.page-container {
    min-width: 1200px;
	background:#eee;
}
/*设计的背景图最大宽度。*/
.bg-max-container{
	max-width:1920px;
	margin:0 auto;
	background-color:#FFF;
	background-size:cover;
	background-position:center center;
	background-repeat: no-repeat;
}
.container {
    margin: 0 auto;
    position: relative;
	width:1200px;
}
.sub-title{
	display:block;
	margin:0 auto;
	margin-bottom:30px;
	
}
@media (max-width: 768px) {
	.show-lg {
        display: none;
    }

    .show-xs {
        display: block;
    }
    ::-webkit-scrollbar {
        width: 0px;
        height: 0px;
        background: transparent;
    }
	.block{padding-top:10px;}
	.page-container{
		min-width:auto;
		
	}
    .container {
        margin: 0 10px;
        width: auto;
		overflow:hidden;
		padding-top:10px;
    }
}


