@charset "utf-8";
/* CSS Document */
body{
    font-family: "SourceHanSansSC-Regular", "Microsoft YaHei", Arial, Helvetica, sans-serif, "SimSun";
}
/* 遮罩层样式 */
.window_mask {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
/* 弹窗样式调整 */
.window_cont {
  position: fixed; 
  display: block; /* 初始隐藏 */    
  width: 1100px;
  height: calc(100vh - 220px);
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  left: 50%;
  margin-left: -600px;
  top: 70px;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  padding: 0 50px 40px 50px;
}
.window_icon {
  background: url("../img/window_icon.png") no-repeat;
  display: block;
  background-size: cover;
  width: 110px;
  height: 110px;
  margin: -40px auto 6px auto;
}
.window_cont .tit {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.window_cont .window_article {
  font-size: 18px;
  color: #000;
  line-height: 36px;
  height: calc(100vh - 445px);
  overflow: auto;
  padding: 20px 20px;
  text-align: justify;
}
.window_cont .window_article p {
  padding-bottom: 10px;
  margin: 0;
}
.window_cont .window_article img {
  max-width: 94%;
  margin: 10px auto;
  text-align: center;
  display: block;
}
.window_cont .window_yy a {
  background: #df0629;
  color: #fff;
  font-size: 16px;
  padding: 8px 40px;
  border-radius: 30px;
  text-decoration: none;
}
.window_cont .window_yy a:hover {
  background: #d00626;
}
.window_cont .window_yy {
  text-align: center;
  margin: 35px auto 0 auto;
}
.window_cont .window_close a {
  background: url("../img/window_close.png") no-repeat;
  display: block;
  background-size: cover;
  width: 50px;
  height: 50px;
  margin: 60px auto 0 auto;
}