
.concat {
  height: 100%;
  display: flex;
  justify-content: center;
}
.concat iframe {
  width: 50%;
  height: 100%;
  border: none;
}
iframe::-webkit-scrollbar {
  width: 0 !important;
}
.contact-form-wrapper {
  width: 34rem;
  min-width: 400px;
  margin: 54px auto;
  font-size: .83rem;
}
.m-contact .contact-form-wrapper{
  width: 80%;
  min-width: unset;
  margin: 70px auto;
  font-size: .6rem;
}

 
.mobile-contact .menu-bar {
  background: #fafafa;
  position: fixed;
  width: 100%;
  height: 2.3rem;
  display: flex;
  align-items: center;
  color: #00305a;
  top: 0;
}
.mobile-contact .menu-bar img {
  width: 2.2rem;
  height: 100%;
  display: block;
  margin-left: 1rem;
}
.mobile-contact .btn_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.3rem;
  margin-left: auto;
  background: #2e3242;
}
.mobile-contact .btn_close .iconfont {
  font-size: 20px;
  color: #fff;
}
.mobile-contact .icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.contact-form-item {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
  position: relative;
}
.contact-form-item label {
  width: 28%;
  margin-bottom: 13px;
}
.contact-form-item-error {
  position: absolute;
  bottom: 0;
  left: 10px;
  font-size: 12px;
  color: red;
  transform: translateY(100%);
  display: none;
}
.contact-form-item label:not(.not-required)::after {
  content: "*";
  color: red;
}
.contact-form-item input,
.contact-form-item textarea {
  width: 100%;
  outline: none;
  border: 1px solid #ccc;
  resize: none;
  padding: 10px;
  box-sizing: border-box;
}
.contact-form-item input {
  height: 40px;
}
.textarea-comment-tip {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #ccc;
  font-size: 12px;
}
.contact-form-submit {
  text-align: center;
  background-color:#FC0372;
  border-radius: 3px;
  width: 100%;
  align-self: center;
  padding: 10px;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}
.contact-form-submit:hover {
  background-color:#414453;
}

.checkbox {
  display: flex;
  align-items: center;
}
.checkbox input {
  display: none;
}
.checkbox label {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  margin-right: 8px;
}
.checkbox label::before {
  display: inline-block;
  content: " ";
  width: 12px;
  border: 2px solid #fff;
  height: 4px;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  top: 5px;
  left: 3px;
  position: absolute;
  opacity: 0;
}
.checkbox input:checked+label {
  background: #FC0372;
}
.checkbox input:checked+label::before{
  opacity: 1;
  transform: all 0.5s;
}
.contact-form-item .selectbox {
  display: flex;
  gap: 20px;
}
.contact-form-item select {
  border: 1px solid #ccc;
  height: 40px;
  outline: none;
  width: 50%;
  padding: 0 10px;
}