@charset "UTF-8";
/*文章页面*/
.article-con {
  min-height: 500px;
  padding: 35px 60px 40px;
  margin: 0 auto 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px #e2dfdf;
  background: #fff;
}

.article-con .article-top {
  text-align: center;
}

.article-con .article-top h2 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}

.article-con .article-top h3 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 16px;
}

.article-con .article-top .title {
  font-size: 26px;
  font-weight: 700;
  line-height: 35px;
}

.article-con .article-top .line {
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 20px;
  background: #ddd;
}

.article-con .article-top .option-info {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  margin-bottom: 7px;
}

.article-con .article-top .option-info .info {
  margin-right: 26px;
}

.article-con .article-top .option-info .info .set-font {
  cursor: pointer;
  color: #0051c0;
}

.article-con .article-top .option-info .info .icon-weixin {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 18px;
  color: #3CB035;
  border-radius: 50%;
  border: 1px solid #3CB035;
  cursor: pointer;
}

.article-con .article-top .option-info .info .icon-weixin:hover {
  background: #3CB035;
  color: #fff;
}

.article-con .article-top .option-info .info .icon-weibo {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 18px;
  color: #E6152B;
  border-radius: 50%;
  border: 1px solid #E6152B;
  cursor: pointer;
}

.article-con .article-top .option-info .info .icon-weibo:hover {
  background: #E6152B;
  color: #fff;
}

.article-con .content {
  padding: 50px 0 38px;
  font-size: 16px;
}

.article-con .content img {
  display: inline-block;
  max-width: 900px;
}

.article-con .content p {
  line-height: 30px;
  margin-bottom: 10px;
}

.article-con .content .last-p {
  text-align: right;
  margin-top: 10px;
}

.article-con .article-btn {
  width: 100%;
  text-align: right;
}

.article-con .article-btn button {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  height: 40px;
  margin-left: 15px;
  outline: 0;
  color: #333;
  border: 1px solid #0051c0;
  background-color: #fff;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: inset 0 0 10px 0 #d0e6ff;
  -moz-box-shadow: inset 0 0 10px 0 #d0e6ff;
  -webkit-box-shadow: inset 0 0 10px 0 #d0e6ff;
  cursor: pointer;
}

.article-con .article-btn button:hover {
  box-shadow: none;
  color: #fff;
  background: #0051c0;
}