/* this website */
/* flex */
/* font-size */
/* color */
/* margin */
/* padding */
/* 动画 */
/* other */
.whmax {
  width: 100%;
  height: 100%;
}
.join-page01 {
  padding: 10rem 7rem;
  background: #fff;
}
.join-page01 .join-concept-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
}
.join-page01 .join-concept-container .concept-left {
  padding-right: 8rem;
  flex: 0 0 50rem;
  position: sticky;
  top: 15rem;
}
.join-page01 .join-concept-container .concept-left .concept-desc p {
  font-size: 1.8rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.join-page01 .join-concept-container .concept-right {
  width: 70rem;
}
.join-page01 .join-concept-container .concept-right .stack-card-list {
  position: relative;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card {
  width: 100%;
  height: 28rem;
  border-radius: 2rem;
  overflow: hidden;
  position: sticky;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
  transform-origin: top center;
  background: #333;
  transition: box-shadow 0.3s;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card:last-child {
  margin-bottom: 0;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card.card1 {
  z-index: 1;
  top: 10rem;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card.card2 {
  z-index: 2;
  top: 14rem;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card.card3 {
  z-index: 3;
  top: 18rem;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card .mimg {
  width: 100%;
  height: 100%;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s transform;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card .minfo {
  position: absolute;
  left: 4rem;
  bottom: 4rem;
  z-index: 2;
  max-width: 80%;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card .minfo .mfont {
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 1.2rem;
  transform: translateY(0);
  transition: 0.5s;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card .minfo .mtext {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  transform: translateY(0);
  transition: 0.5s;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  pointer-events: none;
  transition: 0.5s opacity;
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card:hover {
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.25);
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card:hover .mimg img {
  transform: scale(1.05);
}
.join-page01 .join-concept-container .concept-right .stack-card-list .stack-card.is-covered::after {
  background: rgba(0, 0, 0, 0.4);
}
.join-page02 .mtitle {
  margin-bottom: 6rem;
}
.join-page02 .marquee_box {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 2rem;
}
.join-page02 .marquee_box .myMarquee {
  width: 100%;
  height: auto;
}
.join-page02 .marquee_box .myMarquee .swiper-wrapper {
  transition-timing-function: linear;
}
.join-page02 .marquee_box .myMarquee .mitem {
  flex-shrink: 0;
  width: 40rem;
  height: 26rem;
  margin-right: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}
.join-page02 .marquee_box .myMarquee .mitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.join-page02 .marquee_box .myMarquee .mitem:hover img {
  transform: scale(1.1);
}
.join-page03 {
  background: #F8F9FB;
}
.join-page03 .mtitle {
  margin-bottom: 4rem;
}
.join-page03 .join-filter-box {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  border-radius: 1rem;
  flex-wrap: wrap;
}
.join-page03 .join-filter-box .filter-group {
  display: flex;
  margin-right: auto;
}
.join-page03 .join-filter-box .filter-group .custom-select {
  position: relative;
  width: 16rem;
  margin-right: 2rem;
  user-select: none;
}
.join-page03 .join-filter-box .filter-group .custom-select .select-trigger {
  width: 100%;
  height: 4rem;
  border: 1px solid #EEEEEE;
  border-radius: 0.4rem;
  padding: 0 1rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #fff;
  transition: 0.3s all;
}
.join-page03 .join-filter-box .filter-group .custom-select .select-trigger span {
  font-size: 1.5rem;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.join-page03 .join-filter-box .filter-group .custom-select .select-trigger i {
  font-size: 1.2rem;
  color: #999;
  transition: 0.3s all;
}
.join-page03 .join-filter-box .filter-group .custom-select .select-trigger:hover {
  border-color: #FE7310;
}
.join-page03 .join-filter-box .filter-group .custom-select.open .select-trigger {
  border-color: #FE7310;
}
.join-page03 .join-filter-box .filter-group .custom-select.open .select-trigger i {
  transform: rotate(180deg);
  color: #FE7310;
}
.join-page03 .join-filter-box .filter-group .custom-select.open .options-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.join-page03 .join-filter-box .filter-group .custom-select .options-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 0.4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s all;
  z-index: 10;
  max-height: 25rem;
  overflow-y: auto;
}
.join-page03 .join-filter-box .filter-group .custom-select .options-list .option {
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  color: #666;
  cursor: pointer;
  transition: 0.2s all;
}
.join-page03 .join-filter-box .filter-group .custom-select .options-list .option:hover {
  color: #FE7310;
  background: #F9F9F9;
}
.join-page03 .join-filter-box .filter-group .custom-select .options-list .option.selected {
  color: #FE7310;
  font-weight: bold;
  background: #FFF7F2;
}
.join-page03 .join-filter-box .filter-group .custom-select .options-list::-webkit-scrollbar {
  width: 4px;
}
.join-page03 .join-filter-box .filter-group .custom-select .options-list::-webkit-scrollbar-thumb {
  background: #DDD;
  border-radius: 2px;
}
.join-page03 .join-filter-box .search-box {
  position: relative;
  width: 30rem;
}
.join-page03 .join-filter-box .search-box input {
  width: 100%;
  height: 4rem;
  border: 1px solid #EEEEEE;
  border-radius: 0.4rem;
  padding: 0 4rem 0 1.5rem;
  font-size: 1.5rem;
}
.join-page03 .join-filter-box .search-box i {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
}
.join-page03 .job-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.join-page03 .job-list .job-item {
  width: 33.33%;
  padding: 1rem;
}
.join-page03 .job-list .job-item .inner {
  background: #fff;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  transition: 0.3s all;
  cursor: pointer;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.join-page03 .job-list .job-item .inner .j-role {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}
.join-page03 .job-list .job-item .inner .j-info {
  margin-bottom: 2rem;
}
.join-page03 .job-list .job-item .inner .j-info li {
  display: flex;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.join-page03 .job-list .job-item .inner .j-info li span:first-child {
  color: #999;
  width: 8rem;
  flex-shrink: 0;
}
.join-page03 .job-list .job-item .inner .j-info li span:last-child {
  color: #666;
}
.join-page03 .job-list .job-item .inner .j-link {
  margin-top: auto;
  font-size: 1.4rem;
  color: #FE7310;
  display: flex;
  align-items: center;
}
.join-page03 .job-list .job-item .inner .j-link i {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  transition: 0.3s all;
}
.join-page03 .job-list .job-item .inner:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transform: translateY(-0.5rem);
}
.join-page03 .job-list .job-item .inner:hover .j-link i {
  transform: translateX(0.5rem);
}
.join-page03 .more-tip {
  text-align: center;
  margin: 5rem 0;
  font-size: 2rem;
  color: #666;
}
.join-page03 .channel-logos {
  display: flex;
  margin: 0 -1.5rem;
}
.join-page03 .channel-logos .c-item {
  flex: 1;
  padding: 0 1.5rem;
}
.join-page03 .channel-logos .c-item .inner {
  background: #fff;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  transition: 0.3s all;
}
.join-page03 .channel-logos .c-item .inner img {
  height: 4rem;
  margin-bottom: 1rem;
  object-fit: contain;
}
.join-page03 .channel-logos .c-item .inner p {
  font-size: 1.6rem;
  color: #666;
}
.join-page03 .channel-logos .c-item .inner:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transform: translateY(-0.5rem);
}
.job-popup-mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.job-popup-mask .job-popup-content {
  width: 100rem;
  max-width: 90%;
  height: 80vh;
  background: #fff;
  border-radius: 1rem;
  position: relative;
  padding: 3rem 6rem;
  overflow: hidden;
  animation: jobPopUp 0.3s ease-out forwards;
  display: flex;
  flex-direction: column;
}
.job-popup-mask .job-popup-content .close-btn {
  position: absolute;
  right: 3rem;
  top: 3rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.job-popup-mask .job-popup-content .close-btn i {
  font-size: 2.4rem;
  color: #999;
  transition: 0.3s all;
}
.job-popup-mask .job-popup-content .close-btn:hover i {
  color: #333;
  transform: rotate(90deg);
}
.job-popup-mask .job-popup-content .p-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 2rem;
  flex-shrink: 0;
}
.job-popup-mask .job-popup-content .p-header h2 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.job-popup-mask .job-popup-content .p-header .p-tags {
  display: flex;
}
.job-popup-mask .job-popup-content .p-header .p-tags span {
  margin-right: 4rem;
  font-size: 1.6rem;
  color: #999;
}
.job-popup-mask .job-popup-content .p-header .p-tags span b {
  color: #666;
  font-weight: normal;
  margin-right: 1rem;
}
.job-popup-mask .job-popup-content .p-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 1rem;
  min-height: 0;
}
.job-popup-mask .job-popup-content .p-body::-webkit-scrollbar {
  width: 4px;
}
.job-popup-mask .job-popup-content .p-body::-webkit-scrollbar-thumb {
  background: #DDD;
  border-radius: 2px;
}
.job-popup-mask .job-popup-content .p-body .block {
  margin-bottom: 4rem;
}
.job-popup-mask .job-popup-content .p-body .block .b-title {
  font-size: 2rem;
  font-weight: bold;
  color: #FE7310;
  margin-bottom: 2rem;
}
.job-popup-mask .job-popup-content .p-body .block .b-text {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
}
.job-popup-mask .job-popup-content .p-body .block .b-text p {
  margin-bottom: 1rem;
}
.job-popup-mask .job-popup-content .p-body .block .b-list li {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}
.job-popup-mask .job-popup-content .p-body .block .b-list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
}
.job-popup-mask .job-popup-content .mbom-btn {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 0 0;
  flex-shrink: 0;
}
.job-popup-mask .job-popup-content .apply-btn {
  display: block;
  width: 26rem;
  height: 6rem;
  line-height: 6rem;
  text-align: center;
  background: #FE7310;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 0.8rem;
  transition: 0.3s all;
}
.job-popup-mask .job-popup-content .apply-btn:hover {
  background: #1B368E;
}
@keyframes jobPopUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 769px) {
  .join-page01 {
    padding: 0rem 2.2rem 4rem 2.2rem;
  }
  .join-page01 .join-concept-container {
    display: block;
  }
  .join-page01 .join-concept-container .concept-right .stack-card-list .stack-card {
    position: relative;
    top: 0;
    height: 24rem;
    margin-bottom: 2rem;
  }
  .join-page01 .join-concept-container .concept-right {
    width: 100%;
    margin-top: 3rem;
  }
  .join-page01 .join-concept-container .concept-right .stack-card-list .stack-card::after {
    display: none;
  }
  .join-page01 .join-concept-container .concept-right .stack-card-list .stack-card.card1 {
    top: 0;
  }
  .join-page01 .join-concept-container .concept-left {
    position: relative;
    top: 0;
  }
  .join-page01 .join-concept-container .concept-right .stack-card-list .stack-card.card2 {
    top: 0;
  }
  .join-page01 .join-concept-container .concept-right .stack-card-list .stack-card.card3 {
    top: 0;
  }
  .join-page01 .join-concept-container .concept-right .stack-card-list .stack-card .minfo {
    left: 3rem;
    bottom: 3rem;
    right: auto;
  }
  .join-page01 .join-concept-container .concept-right .stack-card-list .stack-card .minfo .mfont {
    font-size: 2.2rem;
  }
  .join-page03 .join-filter-box .filter-group .custom-select .select-trigger span {
    font-size: 1.8rem;
  }
  .join-page03 .join-filter-box .search-box {
    display: none;
  }
  .join-page03 .join-filter-box .filter-group .custom-select .options-list .option.selected {
    font-size: 1.8rem;
  }
  .join-page03 .join-filter-box .filter-group .custom-select .options-list .option {
    font-size: 1.8rem;
  }
  .join-page03 .job-list .job-item {
    width: 50%;
  }
  .join-page03 .job-list .job-item .inner {
    padding: 2rem;
  }
  .job-popup-mask .job-popup-content {
    padding: 3rem 2rem;
  }
  .job-popup-mask .job-popup-content .p-header h2 {
    font-size: 2.6rem;
  }
  .job-popup-mask .job-popup-content .p-header .p-tags {
    flex-wrap: wrap;
  }
  .job-popup-mask .job-popup-content .mbom-btn {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    left: 0;
  }
  .job-popup-mask .job-popup-content .p-body {
    height: 40rem;
  }
}
