body{
	font-size: 19px;
    color: rgba(92, 92, 92, 1);
}
.article-page h2 {
    font-size: 24px;
}
.article-page h3 {
    font-size: 22px;
}
.article-page h4 {
    font-size: 20px;
}
.article-page h2, .article-page h3, .article-page h4 {
    background: linear-gradient(0deg, #646fde, #3d458c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #444DA0;
    font-weight: bold;
    margin: 30px 0;
}
.article-page ul{    
	margin: 20px 0 20px 11px;
    padding: 0;
    list-style: none;
}
.article-page ul li{
	padding-top: 0;
	padding-bottom: 0;
	margin: .7em 0;
}
.article-page ul > li:before{
    background-color: #5a80b1;
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #5a80b1;
    margin: 0 11px 0 0;
}
.article-page ol > li::marker{color: #5a80b1;font-weight: bold;padding-right: 10px}
.article-page a{color: #428bca;text-decoration: none}
.article-page a.button-link{
	padding: 10px 30px;
    display: table;
    margin: 30px auto;
    background: #444DA0;
    color: #fff;
    font-size: 24px;
}
/*
ol{
	list-style-type: none;
	counter-reset: my-counter;
}
ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
}
*/
.btn-up {
  position: fixed;
  background-color: #cccccc;
  opacity: .7;
  left: 20px;
  bottom: 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.btn-up::before {
  content: "";
  width: 40px;
  height: 40px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
}
.btn-up_hide {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-up:hover {
    background-color: #5a80b1;
  }
}