/* 弹窗 Modal 样式 */
.modal {
  display: none; /* 隐藏默认 */
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.5); /* 背景遮罩 */
}

.modal-open {
    overflow: hidden; /* 确保这一行存在以禁用背景滚动 */
}

.modal-dialog {
  position: relative;
  margin: 1.75rem auto;
  max-width: 500px; /* 可以根据需要调整宽度 */
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.modal-title {
  margin: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
/* 弹窗 Modal 样式 */

/* msg 容器的基本样式 */
.layui-layer-msg {
    padding: 12px 20px; 
    background-color: rgba(0, 0, 0, 0.7); 
    color: #fff; 
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
/* msg 容器的基本样式 */

/* footer */

.footer__container-top.brxe-block {
  display: flex;
  flex-direction: column;
}

.footer__container-top.brxe-block > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 186px;
  max-width: unset;
  color: var(--light);
  row-gap: var(--space-xl);
  flex-grow: 3;
}

.footer__container-top.brxe-block .brxe-container {
  margin: 0;
  width: 100%;
}

.footer__menu-container.brxe-block {
  justify-content: space-between;
}

footer .brxe-container.footer__container {
  width: 1372px;
}

#brxe-nzqplr {
  align-items: flex-start !important;
}

#brxe-qxjgcc,
#brxe-jlxhxe{
    width: 36px;
    min-width: 36px;
    height: 40px;
    min-height: 40px;
}

#brxe-fescdu .brxe-fescdu-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.subscribe-footer {
  width: 100%;
  max-width: 330px;
}

.subscribe-footer p {
  font-size: 12px;
  font-weight: normal;
  line-height: 22px;
  letter-spacing: 0em;
  color: #ffffff;
}

.subscribe-footer .input_area {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 40px;
  border-radius: 4px;
}

.subscribe-footer .input_area input {
  width: 100%;
  height: 100%;
  /* background: transparent; */
  border: none;
  font-size: 14px;
  color: #ffffff;
  border-radius: 4px 0 0 4px;
  border: 1px solid rgba(230, 230, 230, 0.4);
  padding-left: 10px !important;
  border-right: none;
  background: rgba(255, 255, 255, 0.2);
}

.subscribe-footer .input_area input::placeholder {
  color: #ffffff;
  opacity: 1;
  font-style: normal !important;
}

.subscribe-footer .input_area input:focus {
  outline: none;
}

.subscribe-footer .input_area button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: #186dee;
  border: none;
  box-shadow: none;
  color: #ffffff;
  border-radius: 0 4px 16px 0;

  font-size: 16px;
  font-weight: bold;
}

.subscribe-footer p.title {
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (max-width: 1200px) {
    .footer__container-top.brxe-block > div{
        gap: 60px;
    }
}

@media only screen and (max-width: 800px) {
    .subscribe-footer {
        max-width: unset;
        margin-top: 0;
    }

    #brxe-nzqplr{
        display: flex;
        flex-direction: column-reverse;
    }

    .footer__menu-section.brxe-block{
        max-width: unset;
    }

    .footer__container-top.brxe-block > div{
        gap: 40px;
    }
}
/* footer */
