.wrapper {
  min-width: 1200px;
  background-color: #F5F5F5;
}

/* header */
.header-box {
  height: 60px;
  min-width: 1200px;
  position: relative;
  z-index: 99;
  padding-top: 10px;
}

.header {
  display: flex;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  align-items: center;
  padding-left: 30px;
  box-sizing: border-box;
}

.header .logo-box {
  display: flex;
  align-items: center;
  margin-right: 100px;
  font-size: 20px;
  color: #000;
}

.header .logo {
  margin-right: 10px;
}

.header .nav-item {
  position: relative;
  font-size: 16px;
  color: #888888;
  margin-right: 54px;
  padding-bottom: 12px;
}

.header .nav-item:hover {
  color: #000;
}

.header .nav-item.active {
  color: #000;
  font-weight: bold;
}

.header .nav-item.active::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #77C360;
  border-radius: 4px;
}


/* main */
.main {
  position: relative;
}

.content {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  margin-top: 30px;
  border-radius: 100px 100px 0 0;
  padding: 70px 30px 30px 60px;
  box-sizing: border-box;
}

.info {
  text-align: center;
}

.info .logo {
  width: 70px;
  margin-top: 30px;
}

.info .info-title {
  font-size: 42px;
  color: #000;
  margin-bottom: 6px;
}

.info .info-txt {
  font-size: 20px;
  color: #888;
  margin-bottom: 42px;
}

.download-box {
  text-align: center;
}

.download-btn {
  display: inline-block;
  width: 153px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #518F00;
  color: #518F00;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-right: 30px;
  margin-bottom: 16px;
  cursor: pointer;
  border-radius: 50px;
}

.download-btn:last-child {
  border-color: #9BA0B0;
  color: #9BA0B0;
  margin-right: 0;
}

.download-btn>img {
  vertical-align: sub;
}

.qrDiv {
  width: 180px;
  height: 180px;
  border-radius: 10px;
  background-color: #fff;
  padding: 18px;
  border: 1px dotted #ddd;
  box-sizing: border-box;
  margin: 40px auto 24px;
}

.pic-box {
  width: 760px;
  /* margin-right: -110px; */
}

.pic-box .pic {
  width: 100%;
}

/* footer */
.footer-box {
  height: 60px;
  min-width: 1200px;
  background-color: #518F00;
}

.footer {}

.copyright {
  color: #F4F4F4;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  padding-top: 10px;
}

/* 公司主页 */
.article-content {
  position: relative;
  width: 1200px;
  min-height: 752px;
  background-color: #fff;
  border-radius: 100px 100px 0 0;
  margin: 30px auto 0;
  border: 1px solid #EEEEEE;
  padding: 30px 30px;
  box-sizing: border-box;
}

.article-content-title {
  font-size: 30px;
  color: #000;
  font-weight: bold;
  padding: 40px 0 30px;
  text-align: center;
}

.con-txt {
  height: 570px;
  margin-top: 20px;
  font-size: 16px;
  color: #333;
  line-height: 32px;
  margin-bottom: 58px;
  overflow: auto;
  padding-right: 50px;
}

/* 设置滚动条的样式 */
.con-txt::-webkit-scrollbar {
  width: 10px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
  border-radius: 30px;
  background-color: #E8E8E8;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: #518F00;
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}