.news-box {
  display: flex;
  justify-content: space-between;
}
.news-box a {
  color: inherit;
}
.news-box .left {
  width: 885px;
}
.news-box .left .detail {
  padding: 0 30px;
}
.news-box .left .title {
  font-weight: 400;
  font-size: 28px;
  color: #333;
  line-height: 34px;
  position: relative;
  z-index: 10;
  margin-top: -20px;
}
.news-box .left .info {
  font-size: 14px;
  color: #999;
  line-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-box .left .parse {
  margin: 5px 0 20px;
}
.news-box .left .links {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 30px;
  gap: 30px;
}
.news-box .left .links-item {
  flex: 1;
  overflow: hidden;
  color: #1d479c;
  font-size: 14px;
  line-height: 34px;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.24s ease;
}
.news-box .left .links-item:last-child {
  text-align: right;
}
.news-box .left .links-item:hover {
  color: #6e95e4;
}
.news-box .left .file-list .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.news-box .left .file-list .item.hide {
  display: none;
}
.news-box .left .file-list .item .icon {
  width: 86px;
  height: 74px;
  background: url("../images/file.png") no-repeat center/100% 100%;
}
.news-box .left .file-list .item .name {
  flex: 1;
  padding-left: 20px;
  color: #333;
  font-size: 16px;
}
.news-box .left .file-list .item .btn {
  width: 120px;
  height: 32px;
  color: #fff;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  background: #1d479c;
  border-radius: 16px;
  cursor: pointer;
}
.news-box .left .article .con-title {
  position: relative;
  height: 28px;
  padding-left: 10px;
  color: #1d479c;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.news-box .left .article .con-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 20px;
  background: #1d479c;
  border-radius: 2px;
  transform: translateY(-50%);
  content: "";
}
.news-box .left .article-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
}
.news-box .left .article-list .item {
  width: 360px;
  overflow: hidden;
  color: #333;
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.24s ease;
}
.news-box .left .article-list .item:hover {
  color: #1d479c;
}
.news-box .right {
  width: 295px;
}

.file-pop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.24s ease;
}
.file-pop.show {
  z-index: 120;
  opacity: 1;
}
.file-pop .file {
  position: relative;
  width: 400px;
  height: 300px;
  background: #fff;
  border-radius: 17px;
}
.file-pop .file .close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 20px;
  height: 20px;
  padding: 10px;
  background: url("../images/pop-close2.png") no-repeat center;
  cursor: pointer;
}
.file-pop .file .head {
  height: 46px;
  background: linear-gradient(to bottom, rgba(22, 87, 218, 0.07), rgb(255, 255, 255));
}
.file-pop .file .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -15px 25px 35px;
}
.file-pop .file .title .name {
  color: #333;
  font-weight: 500;
  font-size: 21px;
}
.file-pop .file .form {
  margin-top: -15px;
  padding: 0 30px;
}
.file-pop .file .form .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 340px;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.file-pop .file .form .form-item .label {
  width: 60px;
  margin-right: 15px;
  font-weight: bold;
}
.file-pop .file .form .form-item .label span {
  margin-right: 4px;
  color: #ff4500;
}
.file-pop .file .form .form-item .form-input {
  flex: 1;
  width: 120px;
  height: 100%;
  border: none;
  outline: 0;
}
.file-pop .file .form .form-item .kaptcha-btn {
  padding: 0 20px;
  color: #1d479c;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.file-pop .file .form .form-item .kaptcha-btn.disabled {
  opacity: 0.5;
}
.file-pop .file .form .form-item .kaptcha-btn:active {
  color: #0d2046;
}
.file-pop .file .form .form-btn {
  width: 100%;
  height: 42px;
  margin-top: 30px;
  color: #fff;
  font-size: 14px;
  line-height: 42px;
  text-align: center;
  background: #1d479c;
  border-radius: 21px;
  cursor: pointer;
}
.file-pop .file .form .form-btn:active {
  background: #153371;
}