:root {
  --icon-quotation: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.7143 15.1186V28.2727H1V15.4559L8.14286 4H13.7692L9.43956 15.1186H14.7143ZM31.9451 15.1186V28.2727H18.2308V15.4559L25.3736 4H31L26.6703 15.1186H31.9451Z" fill="%23013EF8"/></svg>');
  --icon-arrow:url('data:image/svg+xml,<svg width="13" height="7" viewBox="0 0 13 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.260067 0.327334C0.631574 -0.0813234 1.26402 -0.11144 1.67268 0.260067L6.50001 4.64855L11.3273 0.260067C11.736 -0.11144 12.3684 -0.0813234 12.7399 0.327334C13.1115 0.735992 13.0813 1.36844 12.6727 1.73995L7.17268 6.73995C6.79126 7.08669 6.20876 7.08669 5.82733 6.73995L0.327334 1.73995C-0.0813234 1.36844 -0.11144 0.735992 0.260067 0.327334Z" fill="%23999999"/></svg>');
}

.icon-quotation {
  display: inline-block;
}
.icon-quotation::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: var(--icon-quotation);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.join-banner {
  position: relative;
  z-index: 1;
}
.join-banner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.join-banner video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.join-banner .info {
  position: relative;
  z-index: 5;
}
.join-banner .container {
  height: calc(100vh - 80px);
}
@media screen and (max-width: 1024px) {
  .join-banner .container {
    height: 50vh;
  }
}

.join-post .cont {
  position: relative;
  border-radius: 0.875rem;
  overflow: hidden;
}
.join-post .cont picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.join-post .cont .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2rem;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 768px) {
  .join-post .cont .title {
    font-size: 18px;
  }
}

.box-column {
  text-align: center;
}
.box-column::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #FE8049, #B041FF, #49C3FF, #3DFFB9);
}

.life-office {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.life-office .item picture {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.life-office .item picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.life-office .item:nth-of-type(1) {
  grid-column: 2/2;
  grid-row: 1/3;
}
.life-office .item:nth-of-type(2) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.life-office .item:nth-of-type(3) {
  grid-row: 2/2;
  grid-column: 1/2;
}
.life-office .item:nth-of-type(4) {
  grid-column: 3/3;
  grid-row: 1/2;
}
.life-office .item:nth-of-type(5) {
  grid-column: 3/3;
  grid-row: 2/2;
}
@media screen and (max-width: 767px) {
  .life-office {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr 1fr;
  }
  .life-office .item:nth-of-type(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
  .life-office .item:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/2;
  }
  .life-office .item:nth-of-type(3) {
    grid-row: 2/2;
    grid-column: 2/2;
  }
  .life-office .item:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 3/3;
  }
  .life-office .item:nth-of-type(5) {
    grid-column: 2/2;
    grid-row: 3/3;
  }
}

.user-swiper {
  font-size: 18px;
}
@media screen and (min-width: 992px) {
  .user-swiper .swiper-slide {
    display: flex;
    position: relative;
  }
  .user-swiper .swiper-slide::before {
    display: block;
    content: "";
    width: 0px;
    height: 100%;
    border-left: solid 1px #DFDFDF;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .user-swiper .swiper-slide:first-child::before {
    display: none;
  }
  .user-swiper .swiper-slide .item {
    padding: 0 3rem !important;
  }
}

.page-search-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
}
.page-search-box .search-input {
  background: none;
  width: 100%;
  flex-shrink: 1;
  border: 0;
  outline: 0;
  padding: 10px;
}
.page-search-box .search-input::-moz-placeholder {
  color: #a8a8a8;
}
.page-search-box .search-input::placeholder {
  color: #a8a8a8;
}
.page-search-box .btn {
  flex-shrink: 0;
}

.join-rp-main .navBox .nav {
  flex-wrap: nowrap;
}
.join-rp-main .navBox .nav .item {
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  color: #999;
  padding: 14px;
  border-bottom: solid 4px transparent;
}
.join-rp-main .navBox .nav .item.active {
  color: var(--bs-primary);
  border-bottom: solid 4px var(--bs-primary);
}

.join-sideNav {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 24px;
}
.join-sideNav .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.join-sideNav .top .name {
  font-size: 24px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .join-sideNav .cont {
    display: none;
  }
}
.join-sideNav .cont .name {
  font-size: 20px;
  margin-bottom: 12px;
}
.join-sideNav .cont .item {
  border-top: solid 1px #DFDFDF;
  padding-top: 24px;
  margin-top: 24px;
}
.join-sideNav .cont .item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.join-sideNav .cont .item ul li {
  margin: 8px 0;
}
.join-sideNav .cont .item ul li label {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.join-cont {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 32px;
}
@media screen and (max-width: 992px) {
  .join-cont {
    padding: 24px;
  }
}

.join-box .top {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-bottom: 20px;
}
.join-box .top .name {
  font-size: 28px;
  margin-bottom: 0;
}
.join-box .top span {
  display: inline-block;
  font-size: 14px;
  color: var(--bs-primary);
  padding: 4px 16px;
  background-color: #eef3ff;
  border-radius: 100px;
}
.join-box .cont a {
  display: block;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  padding: 14px 0;
  border-bottom: solid 1px #DFDFDF;
  transition: all 0.3s;
}
.join-box .cont a:hover {
  background-color: #eef3ff;
  padding-left: 14px;
}
.join-box .cont a .name {
  font-size: 20px;
  margin-bottom: 10px;
}
.join-box .cont a .info {
  display: flex;
  align-items: center;
}
.join-box .cont a .info span {
  display: inline-flex;
  align-items: center;
}
.join-box .cont a .info span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #DFDFDF;
  margin: 0 10px;
}

.join-post-main {
  background-color: #F4F6F9;
}
.join-post-main .cont {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 64px;
}
@media screen and (max-width: 767px) {
  .join-post-main .cont {
    padding: 32px;
  }
}
.join-post-main .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #DFDFDF;
  padding-bottom: 32px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .join-post-main .top {
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }
}
.join-post-main .top .name {
  font-size: 36px;
}
.join-post-main .top .txt {
  display: flex;
  align-items: center;
}
.join-post-main .top .txt span {
  display: inline-flex;
  align-items: center;
}
.join-post-main .top .txt span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #DFDFDF;
  margin: 0 10px;
}
.join-post-main .info .item {
  padding-top: 32px;
}

#jofin-popupform .btn-close {
  border: 0;
  padding: 16px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  outline: none;
}

#upload-file-form .send-btn {
  border: 1px dashed #013EF8;
  border-radius: 8px;
  color: rgba(40, 40, 40, 0.8);
  padding: 40px 24px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #upload-file-form .send-btn {
    padding: 32px 16px;
  }
}
#upload-file-form .send-btn svg {
  color: rgb(230, 236, 254);
  transition: all 0.3s;
}
#upload-file-form .send-btn:hover svg {
  color: #013EF8;
}
#upload-file-form .file_content .file_p {
  background: rgba(236, 238, 245, 0.6);
  border-radius: 4px;
  margin-bottom: 0;
  position: relative;
  padding: 6px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
#upload-file-form .file_content .file_p::after {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 13px;
  height: 7px;
  background: var(--icon-arrow);
}
#upload-file-form .file_content .file_p:not(:last-child) {
  margin-bottom: 8px;
}
#upload-file-form .file_content .file_p .asideBox {
  display: flex;
  align-items: center;
  gap: 10px;
}
#upload-file-form .file_content .file_p .asideBox span {
  display: inline-block;
}
#upload-file-form .file_content .file_p .asideBox span:hover {
  color: var(--bs-primary);
}
#upload-file-form .file_content .file_p:hover {
  background: #ECEEF5;
}
#upload-file-form .text-tips {
  color: rgba(40, 40, 40, 0.8);
  line-height: 180%;
  margin-top: 38px;
}/*# sourceMappingURL=joinus.css.map */