body {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

* {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #fff;
}

h1 {
  font-size: 50px;
  padding: 0;
  margin: 0;
}

input,
button {
  border: none;
  outline: none;
  background: none;
}

input {
  border: 1px solid #000000;
  margin: 5px;
  height: 30px;
  width: calc(100% - 150px);
  color: #000000;
  letter-spacing: 2px;
  padding: 0 1em;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

input:focus {
  transition: all 0.3s;
  outline: 3px solid rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

input::placeholder {
  color: #bebdbd;
}

.container {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.left {
  width: 250px;
  height: 100vh;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}

.left.active {
  filter: blur(10px);
}

.left_container {
  margin-top: 50px;
}

.left img {
  width: 120px;
}

.right {
  width: 100%;
  background: #000 url(./images/bg.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}

.right_container {
  width: 33%;
  transition: all 0.3s;
}

.right_container.active {
  filter: blur(100px);
}

.head,
.body,
.input_group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.head,
.body {
  width: 150%;
  text-align: center;
  margin-left: -25%;
  padding: 30px 0 40px;
  margin-bottom: 20px;
  font-family: Avenir Next;
}

.input_group div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  /* margin-left: -25%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* width: 150%; */
  text-align: center;
  margin-bottom: 35px;
  font-family: Avenir Next;
}

.btn_bar {
  width: 70%;
  height: 166px;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.s {
  margin-top: 20px;
}

.btn_bar button {
  display: flex;
  border-radius: 20px;
  cursor: pointer;
  width: 80%;
  justify-content: center;
  align-items: center;
  height: 70px;
  line-height: 70px;
  padding: 0;
  font-family: AvenirNext-Medium;
  font-size: 17px;
  font-weight: 500;
  /* background: #ce98c7; */
  background: linear-gradient(
    135deg,
    #ff7e5f,
    #feb47b,
    #fddb92,
    #d4fc79,
    #96e6a1
  );
  color: #333;
  position: relative;
}

.btn_bar button .b2 {
  background: linear-gradient(
    135deg,
    #f8f9d2,
    #e1f7d5,
    #d1f0e1,
    #cde8e7,
    #fad4d8
  );
}

.btn_bar button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
}

.zz {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.popover_container {
  margin-top: 20%;
  margin-left: 20%;
  padding: 20px;
  border-radius: 10px;
  color: #000;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  flex-direction: column;
  transform-origin: center center;
  transition: all 0.5s;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.popover_container.active {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.input_group {
  width: 80%;
}

.input_group div {
  width: 100%;
}

.btn_group {
  /* background-color: #5915e1; */
  display: flex;
  justify-content: center;
}

.btn_group a {
  background-color: #5915e1;
  height: 30px;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.btn_group img {
  width: 20px;
}

.btn_group button {
  margin-left: 50px;
  cursor: pointer;
  background-color: #ee4b05;
  height: 40px;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  color: #fff;
  -o-border-radius: 5px;
  transition: all 3s;
  -webkit-transition: all 3s;
  -moz-transition: all 3s;
  -ms-transition: all 3s;
  -o-transition: all 3s;
}

.btn_group button:hover {
  background-color: #ff1205;
}

.info {
  margin: 0 auto;
  width: 80%;
  padding: 10px 0;
  font-size: 14px;
  color: #999;
}

.info > div {
  display: flex;
  margin: 5px 0;
  justify-content: left;
}

.info span {
  width: auto;
  word-wrap: break-word;
}

.select {
  margin-bottom: 0px;
}

.select div {
  margin: 10px auto;
  width: 80%;
  text-align: left;
  color: #949191;
  font-size: 14px;
}

select {
  margin: 0px 0;
  width: 80%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #5915e1;
  border-radius: 4px;
  background-color: #fff;
  color: #495057;
}

select:active {
  border: 1px solid #5915e1;
  outline: none;
}

/* 样式化option元素 */
option {
  padding: 150px;
  font-size: 16px;
  background-color: #ffffff;
  color: #495057;
}

/* 针对悬停和选中的option进行样式设置 */
option:hover {
  background-color: #007bff;
  color: #ffffff;
}

option:checked {
  background-color: #007bff;
  color: #ffffff;
}

/* 全屏遮罩样式 */
.overlay {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none; /* 默认隐藏 */
  justify-content: center;
  align-items: center;
}

/* 弹窗样式 */
.modal {
  background: rgba(255, 255, 255, 1); /* 半透明的白色背景 */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 18.5%;
  margin-left: 30%;
  width: 40%;
  text-align: center;
  backdrop-filter: blur(10px); /* 毛玻璃效果 */
  -webkit-backdrop-filter: blur(10px); /* 适用于Safari浏览器的前缀 */
  backdrop-filter: blur(10px);
}

.modal .info {
  margin-top: -40px;
}

.select > div {
  display: flex;
}

.select > div input {
  width: 100%;
  letter-spacing: 1px;
}

#close-button {
}
