body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: white;
  text-decoration: underline;
}
.container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.container .header {
  width: 100%;
  background: #20559b;
  padding: 5px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .header .guidelist {
  margin: 0 auto;

  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.container .header .guidelist .guideitem {
  float: left;
  font-size: 16px;
  font-weight: bold;
  margin: 10px;
}
.container .adver_news {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.adver_news img,.adver_title{
	position: relative;

}
.container .adver_news .adver_title {
  background: #dd401c;
  color: white;
  margin-left: 20px;
  width: 70px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  white-space: nowrap;
}
.container .newspaper_home {
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
  background: url('../image/newsbg.png');
  background-size: 100% 100%;
}
.container .newspaper_home .paper_item {
  width: 270px;
  min-width: 270px;
  float: left;
  margin: 0 50px;
}
.container .newspaper_home .paper_item .paper_container {
  width: 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 1s;
  -moz-transition: transform 1s;
  /* Firefox 4 */
  -webkit-transition: transform 1s;
  /* Safari 和 Chrome */
  -o-transition: transform 1s;
  /* Opera */
  box-sizing: border-box;
  height: 404px;
  background-size: 100% 100%;
}
.container .newspaper_home .paper_item .paper_container .start_read {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  /* Firefox 4 */
  -webkit-transition: opacity 1s;
  /* Safari 和 Chrome */
  -o-transition: opacity 1s;
}
/* Opera */
.container .newspaper_home .paper_item .paper_container .start_read .read_button {
  background: linear-gradient(to right, #08317c 0%, #0d8dd3 100%);
  border-width: 0;
  color: white;
  border-radius: 5px;
  width: 100px;
  padding: 10px 20px;
}
.container .newspaper_home .paper_item .paper_container:hover {
  transform: scale(1.03);
}
.container .newspaper_home .paper_item .paper_container:hover .start_read {
  opacity: 1;
}
.container .newspaper_home .paper_item .paper_item img {
  width: 100%;
}
.container .newspaper_home .paper_item img {
  width: 100%;
}
.container .newspaper_home .paper_item .paper_des {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 20px;
  line-height: 20px;
  margin: 0 auto;
}
.container .newspaper_home .paper_item .paper_des .read_button {
  color: black;
  font-size: 12px;
  padding: 3px 20px;
  border-radius: 5px;
  margin-top: 20px;
  background: url('../image/readbutton_bg.jpg');
  background-size: cover;
}
.container .newspaper_home .paper_item .paper_des .read_button a {
  color: #20559b;
}
.container .footer {
  background: #0560ac;
  width: 100%;
  color: white;
  font-size: 12px;
  padding: 5px 0;
  text-align: center;
  font-family: SimSun;
}
.container .footer .connect_action {
  margin: 0 10px;
}
@media only screen and (max-width: 1000px) {
  .container {
    width: 100%;
  }
  .paper_des {
    margin: 0 0 10px 0;
  }
  .footer {
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (max-width: 480px){
	.szblogo{
		display: none;
		}
	.container .newspaper_home{
		height: 400px;
	}
		.container .newspaper_home .paper_item {
		    width: 50%;
			min-width: auto;
		    margin: 0 10px;
		}
		.container .newspaper_home .paper_item .paper_container{
			height: 300px;
		}
	}