.contact {
  width: 100%;
  height: 100%;
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 30px;
  box-sizing: border-box;
}
.contact .title {
  padding: 20px 0;
  font-size: 0.45rem;
  color: #fff;
}
.contact .subtitle {
  padding: 10px 0;
  padding-top: 0;
  font-size: 0.3rem;
  color: #999;
}
.contact .top,
.contact .bottom {
  overflow: hidden;
}
.contact .item {
  padding: 10px 0;
  padding-top: 0;
  display: flex;
  font-size: 0.3rem;
}
.contact .item .label {
  position: relative;
  white-space: nowrap;
  color: var(--primary-color);
  height: fit-content;
  padding-right: 10px;
  margin-right: 10px;
}
.contact .item .label::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 70%;
  background-color: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.contact .item .value {
  color: #fff;
  flex: 1;
  overflow: hidden;
  word-break: break-all;
  font-size: 0.3rem;
}
.contact .item .value img {
  width: 1.5rem;
  height: auto;
}
.contact .btn {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0.4rem;
  color: #fff;
  font-size: 0.25rem;
  box-sizing: border-box;
  margin-top: 15px;
}
.contact .btn:active {
  filter: brightness(90%);
}
.contact .footer {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 15px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.popup {
  position: fixed;
  z-index: 999;
  bottom: -100%;
  height: 100vh;
  width: 100vw;
  transition: all 0.5s;
}
.popup .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.popup .panel {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #fff;
}
.popup .panel .close-btn {
  position: absolute;
  z-index: 99;
  right: 30px;
  width: 25px;
  height: 25px;
}
.popup .panel .close-btn:active {
  filter: brightness(90%);
}
@media screen and (max-width: 430px) {
  .popup .panel .close-btn {
    top: 15px;
  }
}
@media screen and (min-width: 430px) {
  .popup .panel .close-btn {
    top: 30px;
  }
}
.popup .panel::before {
  content: '';
  width: 120%;
  height: 120px;
  position: absolute;
  z-index: -1;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 80% 80% 0 0;
  background: #fff;
}
.popup .panel .content {
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.popup .panel .content .title {
  font-size: 25px;
  font-weight: bold;
}
.popup .panel .content .desc {
  font-size: 14px;
  color: #555;
  word-break: break-all;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.popup .panel .content .desc::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 0 50% 50% 0;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 430px) {
  .popup .panel {
    position: absolute;
    bottom: 0;
    height: 75vh;
  }
}
@media screen and (min-width: 430px) {
  .popup .panel {
    position: absolute;
    bottom: 0;
    height: 85vh;
  }
}
.join-popup .subtitle {
  font-size: 16px;
  margin-top: 30px;
  box-sizing: border-box;
  padding-bottom: 20px;
}
.join-popup .jobs-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 50px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 20px;
}
.address-list-popup .title {
  margin: 0;
  margin-top: 50px;
}
.address-list-popup .subtitle {
  font-size: 14px;
  font-weight: normal;
  color: #999;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cooperation-popup .subtitle {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.cooperation-popup .code {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  min-width: 50px;
  margin: 0 auto;
}
.cooperation-popup .tip {
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}
