.h3 {
  font-family: Poppins, Poppins;
  font-weight: 600;
  font-size: 18px;
  color: #1ab394;
  line-height: 27px;
  text-align: center;
}
.h2 {
  font-family: Poppins, Poppins;
  font-weight: bold;
  font-size: 54px;
  color: #041e39;
  line-height: 81px;
  text-align: center;
  font-style: normal;
}
.aboutText {
  width: 80%;
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 18px;
  color: #4f5c65;
  line-height: 27px;
  text-align: center;
  font-style: normal;
}
.footerMessageBox {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
}
.leftBoxSend {
  width: 705px;
  border-right: 1px solid #dfe6f3;
}
.sendTitle {
  font-family: Poppins, Poppins;
  font-weight: 600;
  font-size: 22px;
  color: #041e39;
  line-height: 33px;
  text-align: left;
  font-style: normal;
}
.input1 {
  margin-top: 20px;
}
.input1 p {
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #041e39;
  line-height: 22px;
  text-align: left;
  font-style: normal;
}
.input1 span {
  color: #f44336;
  font-size: 16px;
}
.input1 input {
  width: 666px;
  height: 46px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dadcde;
  margin-top: 10px;
  padding-left: 16px;
  font-size: 16px;
  color: #041e39;
  font-family: Poppins, Poppins;
  font-weight: 400;
  outline: none;
}
.input1 input::placeholder {
  color: #929BA5; 
  opacity: 1; 
}
.input1 input:hover {
  border: 1px solid #041E39;
}
.input1 input:focus {
  border: 1px solid #1ab394; /* 输入时边框颜色 */
  outline: none; 
}
.input1 select {
  width: 666px;
  height: 46px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dadcde;
  margin-top: 10px;
  padding-left: 16px;
  font-size: 16px;
  color: #929BA5;
  font-family: Poppins, Poppins;
  font-weight: 400;
  outline: none;
}

.input1 textarea {
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #041e39;
  text-align: left;
  font-style: normal;
  width: 666px;
  height: 130px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dadcde;
  margin-top: 10px;
  padding-left: 16px;
  padding-top: 12px;
  outline: none;
  resize: none;
}
.input1 textarea::placeholder {
  color: #929BA5; 
  opacity: 1; 
}
.input1 textarea:hover {
  border: 1px solid #041E39;
}
.input1 textarea:focus {
  border:1px solid #1ab394; /* 输入时边框颜色 */
  outline: none; 
}
.custom-select {
  position: relative;
  width: 666px;
  border: 1px solid #dadcde;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 12px;
  position: relative;
}
.selectD {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 15px;
  right: 13px;
  transition: all 0.3s ease;
}
.custom-select:hover .selectD {
  transform: rotate(180deg);
}

/* 显示当前选中的选项 */
.selected-option {
  padding: 10px 16px;
  font-size: 16px;
  color: #929BA5;
  background: #ffffff;
  border-radius: 8px;
}

/* 隐藏选项列表 */
.options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #dadcde;
  border-radius: 8px;
  z-index: 10;
  box-shadow: 0px 4px 4px 0px rgba(154, 154, 154, 0.3);
}
.selected-option:hover {
  border: 1px solid #041E39;
}

.selected-option:focus {
  border: 1px solid #1ab394; /* 输入时边框颜色 */
}
/* 显示选项列表 */
.custom-select.active .options {
  display: block;
}

/* 单个选项的样式 */
.options li {
  padding: 10px 16px;
  font-size: 14px;
  color: #041e39;
  background: #ffffff;
  cursor: pointer;
}

/* 选项的悬浮样式 */
.options li:hover {
  background-color: #f7fafc;
  color: #041e39;
}

/* 选项的选中样式 */
.options li.selected {
  background-color: #e8f7f4;
  color: #041e39;
}
.uploadBox {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px dashed #dadcde;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.uploadText {
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #929ba5;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  margin-left: 16px;
}
.contatusBtn {
  width: 666px;
  height: 46px;
  background: #1ab394;
  border-radius: 8px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 25px;
  text-align: center;
  font-style: normal;
  text-align: center;
  line-height: 46px;
  margin-top: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contatusBtn:hover {
  background: #008266;
}
.leftBox {
  padding-left: 38px;
}
.Support {
  font-family: Poppins, Poppins;
  font-weight: 600;
  font-size: 22px;
  color: #041e39;
  line-height: 33px;
  text-align: left;
  font-style: normal;
  margin-top: 30px;
}
.supportEmail {
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #4f5c65;
  line-height: 25px;
  text-align: left;
  font-style: normal;
}
.Business {
  font-family: Poppins, Poppins;
  font-weight: 600;
  font-size: 22px;
  color: #041e39;
  line-height: 33px;
  text-align: left;
  font-style: normal;
  margin-top: 45px;
}
.line {
  width: 100%;
  height: 1px;
  margin-top: 30px;
  background: #dfe6f3;
}
.uploadTop{
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imgageUrl {
  width:121px;
  height: 121px;
  border-radius: 4px;
  display: none;
}
.supportSpan {
  color: #008266;
  margin-left: 10px;
}
.supportSpan:hover {
  text-decoration: underline;
}
.off{
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.uploadMiddle{
  position: relative;
}
.uploadMiddle:hover .off {
  display: block; /* 鼠标悬停时显示 */
}
.contact-icon {
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease; /* 添加平滑过渡效果 */
}


@media (max-width: 992px) {
  .leftBoxSend {
    width: 100%;
    border-right: 0px solid #dfe6f3;
  }
  .input1 input {
    width: 100%;
  }
  .custom-select {
    width: 100%;
  }
  .input1 textarea {
    width: 100%;
  }
  .contatusBtn {
    width: 100%;
  }
  .leftBox {
    margin-top: 30px;
  }
}
