/* Body */
body2 {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  color: rgba(0, 0, 0, 0.87);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

/* 表单容器样式 */
.form-container {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

.weui-cells__title {
    padding: 15 15px;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    color: #000000;
}

.weui-cells {
    margin-top: 15px;
}

.weui-cell {
    display: flex;
    padding: 10px 15px;
}

.weui-cell__bd {
    flex: 1;
}

.weui-input {
    width: 100%;
    height: 44px;
    padding: 0 5px;
    font-size: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    background-color: transparent;
    box-sizing: border-box; /* 确保padding和border包含在宽度内 */
}

.weui-btn {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 5px;
    line-height: 44px;
    border: 1px solid #E5E5E5;
    background-color: #1AAD19;
    color: white;
    text-align: center;
    border-radius: 4px;
    margin-top: 20px;
    box-sizing: border-box; /* 确保padding和border包含在宽度内 */
}

.weui-btn_primary:not(.weui-btn_disabled):active {
    background-color: #179B16;
}
.container {
align-items: center;
display: flex;
justify-content: center;
width: 1200px;  
max-width: 100%;
height:200px;
margin: 0px 0px 00px;

}

.button23 {
 margin: 20px;
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: transparent; /* 修改底色为透明 */
  max-width: 100%;
  min-width: 400px;
  border: 2px solid #FFFFFF; /* 设置边框为白色线 */
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 16px 20px;
  color: #FFFFFF; /* 保留文字颜色为白色 */
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
}
.button23:hover {
  background: rgba(255, 255, 255, 0.2); /* 半透明白色背景 */
  color: rgba(255, 255, 255);
}
.button23:focus .dropdown, .button23:active .dropdown {
  transform: translate(0, 20px);
  opacity: 1;
  visibility: visible;
  
}


.button23 .material-icons {
  border-radius: 100%;
  -webkit-animation: ripple 0.6s linear infinite;
          animation: ripple 0.6s linear infinite;
}
.button23 .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.button23 .dropdown:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  box-shadow: 2px -2px 6px rgba(0, 0, 0, 0.05);
  border-top: 6px solid #FFFFFF;
  border-right: 6px solid #FFFFFF;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: rotate(-45deg);
  mix-blend-mode: multiple;
}
.button23 .dropdown li {
  z-index: 1;
  position: relative;
  background: #FFFFFF;
  padding: 0 20px;
  color: #666;
}
.button23 .dropdown li.active {
  color: #5380F7;
}
.button23 .dropdown li:first-child {
  border-radius: 4px 4px 0 0;
}
.button23 .dropdown li:last-child {
  border-radius: 0 0 4px 4px;
}
.button23 .dropdown li:last-child a {
  border-bottom: 0;
}
.button23 .dropdown a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 60px 0;
  color: inherit;
  font-size: 10px;
  text-decoration: none;
}


.button23:focus .dropdownright, .button23:active .dropdown {
  transform: translate(0, 20px);
  opacity: 1;
  visibility: visible;
}
.button23 .material-icons {
  border-radius: 100%;
  -webkit-animation: ripple 0.6s linear infinite;
          animation: ripple 0.6s linear infinite;
}
.button23 .dropdownright {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.button23 .dropdownright:before {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;
  width: 0;
  height: 0;
  box-shadow: 2px -2px 6px rgba(0, 0, 0, 0.05);
  border-top: 6px solid #FFFFFF;
  border-right: 6px solid #FFFFFF;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: rotate(-45deg);
  mix-blend-mode: multiple;
}
.button23 .dropdownright li {
  z-index: 1;
  position: relative;
  background: #FFFFFF;
  padding: 0 20px;
  color: #666;
}
.button23 .dropdownright li.active {
  color: #5380F7;
}
.button23 .dropdownright li:first-child {
  border-radius: 4px 4px 0 0;
}
.button23 .dropdownright li:last-child {
  border-radius: 0 0 4px 4px;
}
.button23 .dropdownright li:last-child a {
  border-bottom: 0;
}
.button23 .dropdownright a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  color: inherit;
  font-size: 10px;
  text-decoration: none;
}

@-webkit-keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}