@charset "UTF-8";
/* style ----------------------------------------- */
html {
  scroll-behavior: smooth;
}
body {
  color: #333;
  background: #fff;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  height: 100%;
}
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
header {
  width: 100%;
  text-align: center;
  padding: 60px 0;
  margin-bottom: 50px;
}
.main {
  flex: 1;
  min-width: 0;
  padding-right: 40px;
  box-sizing: border-box;
}
.sidebar {
  width: 320px;
  flex-shrink: 0;
}
.sidebar-inner {
  background: #eef3ee;
  padding: 30px;
}
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu li {
  margin-bottom: 20px;
}
.sidebar-menu li a {
  transition: .3s;
}
.sidebar-menu li a:hover {
  color: #899395;
}

h1{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 50px;
}
h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
p {
  text-align: left;
  margin-bottom: 60px;
}
.img {
  margin-bottom: 60px;
}
.img img {
  width: 100%;
}

@media (max-width: 768px) {
  .main {
    width: 100%;
    flex: none;
    padding-right: 0;
  }
  .sidebar {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .article-item {
    flex: 0 0 100%;
  }
  .attention {
    font-size: 11px;
  }
}