.aboutus-container {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
}

.development-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-left: 100px;
}

.about-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 120px;
}

.about-tab {
  height: 200px;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 200px;
  letter-spacing: 5px;
  flex-basis: 25%;
}

.about-tab-active {
  background: white;
  border: 3px solid #ededed;
}

.about-container {
  background: #ffffff;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;  
  height: calc(100vh - 300px);
  padding-top: 70px;
}
.about-top{
  padding: 0 120px 120px 120px;
  width: 100%;
  box-sizing: border-box;
}
.about-title {
  color: #000;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 2.5px;
  margin-bottom: 30px;
}

.about-title span{
  font-weight: 200;
  display: inline;
  font-size: 13px;
  line-height: 1.2;
}

.about-desc {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 2.2px;
}
.about-bottom{
  width: 100%;
  height: auto;
  padding-bottom: 120px;
}
.about-bottom img{
  width: 100%;
  height: auto;
}
.about-right {
  margin-left: 20px;
}

.report {
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 2.2px;
  text-decoration: none;
}

.report::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  margin-right: 8px;
  margin-bottom: 3px;
}

.report:hover {
  text-decoration: underline;
}

.abouts-title-container {
  margin-top: 122px;
}

.abouts-title {
  color: #000;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 12px;
}



.protocol {
  margin: 20px 157px 80px 157px;
  /* width: 870px; */
}

.protocol-title {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 6px;
  text-align: center;
}

.protocol-subtitle {
  width: fit-content;
  padding: 3px 12px;
  gap: 10px;
  border-radius: 15px;
  background: #bcbcbc;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 149.1%;
  letter-spacing: 2.2px;
  margin-top: 20px;
}

.protocol-subtitle:first-child {
  background: #000;
}

.content {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 149.1%;
  letter-spacing: 2.2px;
  color: #575757;
}

.animate-about-tab-enter {
  animation: about-tab-enter 1s linear;
}

@keyframes about-tab-enter {
  0% {
    transform: translate3d(0, 50%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.animate-protocol-tab-enter {
  animation: protocol-tab-enter 1s linear;
}

@keyframes protocol-tab-enter {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.animate-development-enter {
  animation: development-enter 1.5s linear;
}

@keyframes development-enter {
  0% {
    margin-top: 200px;
  }

  100% {
    margin-top: 0;
  }
}
.ProductContainer {
  list-style-type: none; /* 移除默认列表样式 */
  padding: 0; /* 移除padding */
}
 
.ProductContainer li {
  display: flex; /* 使用flex布局 */
  align-items: center; /* 垂直居中 */
  padding-bottom: 10px;
  border-bottom: 1px darkgray dashed;
}
 
.productName {
  flex-grow: 1; /* 左边内容占据剩余空间 */
  padding-right: 10px; /* 右边留出一定空间 */
}
 
.productPrice {
  width: 140px; /* 右边内容固定宽度 */
  background-color: #047c20; /* 右边内容的背景色 */
  color: #ffffff;
  text-align: right; /* 文字居中 */
  padding-right: 10px;
  cursor: pointer;
}

/* 背景遮罩样式 */
.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}
 
/* 弹窗容器样式 */
.modal-container {
  width: 400px;
  margin: 100px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}
 
/* 显示弹窗时给背景遮罩和容器添加此类 */
.modal-show {
  display: block;
}
 
/* 隐藏弹窗时给背景遮罩和容器添加此类 */
.modal-hide {
  display: none;
}

.modal-content{
  background-color: #ffffff;
  padding: 20px;
  margin: 0 auto;
}
.modal-top{
  text-align: center;
}
.weixin-container{
  background-color: green;
  text-align: center;
  padding: 20px;
}
.weixin-title{
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  padding: 20px 0;
}
.qrcode{
  width: 70%;
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}

.weixin-qrcode{
 width: 100%;
}
.weixin-qrcode img{
  width: 100%;
}
.price{
  font-size: 25px;
  font-weight: 600;
}
.weixin-icon{
  width: 150px;
  margin: 0 auto;
}
.weixin-icon img{
  width: 100%;
}
.modal-btn{
  width: 100%;
  text-align: center;
}
.modal-btn button{
 border-radius: 20px;
 width: 90px;
 background-color: green;
 text-align: center;
 color: #ffff;
 margin: 15px auto;
 padding: 5px;
 box-shadow: none;
 outline: none; 
 border: 0px; 
 font-size: 20px;
 cursor: pointer;
}