html {
	font-size: 100px;
}

@media only screen and (max-width: 768px) {
	html {
		font-size: 80px;
	}
	body {
		font-size: 14px;
	}
}

body {
	font-size: 16px;
	margin: 0;
	background-color: #f7f7f7;
	-webkit-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
	-moz-text-size-adjust: 100% !important;
	--main-color: #009874;
	--background-color: #f7f7f7;
}

p {
	margin: 0;
}

h2 {
    text-align: center;
    line-height: 1.75;
    font-size: 0.15rem;
    font-weight: bold;
    display: table;
    margin: 4em auto 2em;
    padding: 0 0.2em;
    background: rgba(0, 152, 116, 1);
    color: #fff;
    border-radius: 0.04rem;
    padding-left: 0.16rem;
    padding-right: 0.06rem;
    border-bottom: 0.04rem solid #f3f3f3;
    border-right: 0.1rem solid transparent;

}

/* 内容 */
.container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-height: calc(100vh - 420px);
}

.max-screen {
	width: 80%;
	max-width: 1200px;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0 100px 0;
}

.header-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.7rem;
  overflow: hidden;
}

.header-content-bg {
  position: absolute;
  background-color: #009874;
  border-radius: 0 0 50% 50%;
  width: 160%;
  height: 100%;
}

.header-content-info {
  padding-top: 0.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-avatar {
  width: 180px;
  height: 180px;
  background: #2c3d49;
  padding: 14px;
  border-radius: 50%;
}

.img-avatar:hover {
  border-width: 5px;
  animation: rotation .5s;
  border-width: 5px;
  border-color: #009874;
  animation-fill-mode: forwards;
}

.img-avatar:not(:hover) {
  animation: rotationV .5s;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotationV {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);

  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotationV {
  from {
    -webkit-transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
  }
}

.header-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.1rem;
}

.header-links-icon {
  width: 0.24rem;
  height: 0.24rem;
  padding: 0.08rem;
  margin: 0.12rem;
  border-radius: 50%;
  background-color: #1a1a1a;
  animation: fadeInUp 1s ease-in-out;
}

.header-links-icon:hover {
  background-color: #1a1a1a;
  box-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.5);
  transform: scale(1.15);
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}

.header-content-info-name {
  color: #fff;
}

.menu-button-list {
  margin: 0;
  margin-top: 0.3rem;
  display: flex;
  flex-direction: row;
}

.menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 0.08rem;
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
  margin: 0.1rem;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.menu-button-text {
  color: #fff;
  font-size: 0.18rem;
  font-weight: bold;
  margin-left: 0.1rem;
}

.menu-button:hover {
  box-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.5);
  transform: scale(1.03);
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}

@keyframes scaleFrames {
  0% {
    transform: scale(1.0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1.0);
  }
}

.scaleAnimation {
  animation: scaleFrames;
  animation-duration: 1.0s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.bg-color {
  background-color: var(--main-color) !important;
}


.blog-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 11rem;
  width: 80%;
  margin-top: 30px;
}

/* 手机版 */
@media screen and (max-width: 600px) {
  .blog-list {
    width: 100%;
  }
}

.blog-list-title {
  font-size: 0.20rem;
  margin: 0.3rem;
}

.blog-list-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.blog-list-item {
  position: relative;
  width: 2rem;
  margin: 0.2rem;
  height: 2rem;
  background-color: #fcfcfc;
  border-radius: 0.1rem;
  box-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
}

.blog-list-item:hover {
  background-color: #ffffff;
  box-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}

.blog-list-item-title-icon {
  font-size: 0.38rem;
}

.blog-list-item-title-text {
  margin-top: 6px;
  font-size: 0.19rem;
  font-weight: bold;
}

.blog-list-item-title-des {
  font-size: 0.14rem;
  color: #666666;
  margin-top: 3px;
}

.el-divider__text {
  background-color: var(--background-color);
}

.more-version {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}



.version-button {
  /* background-color: rgba(255, 255, 255, 0.15); */
  /* border-radius: 0.08rem; */
  color: #fff;
  font-size: 16rpx;
  /* padding: 0.1rem 0.5rem 0.1rem 0.5rem; */
  margin: 0.1rem;
  cursor: pointer;
}

/* 抽屉 */
.el-drawer__title {
  font-size: 0.24rem;
  color: #000;
  font-weight: bold;
}

.catogary-list {
  display: flex;
  flex-direction: column;
}

.catogary-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f7f7;
  padding: 0.1rem 0.2rem 0.1rem 0.2rem;
  border-radius: 0.1rem;
  margin-bottom: 0.2rem;
}

.catogary-list-item-text {
  font-size: 0.18rem;
  font-weight: bold;
  color: #1a1a1a;
}

.el-dialog__header.show-close {
  padding-right: 0;
}
.icon-text {
  font-style: normal;
  font-weight: bold;
  font-size: 0.24rem;
  color: #fff;
}