.company-detail-wrap {
  display: flex;
  width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.section-divider {
  height: 10px;
  background-color: #F6F7F9;
  margin: 50px 0;
}

/* MARK: 우측 플로팅 배너 스타일 */
.floating-banner {
  position: fixed;
  left: calc(50% + 590px);
  /* 컨텐츠 영역 width(1100px)의 절반 + 여유공간 */
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.banner-item {
  cursor: pointer;
}

.banner-item img {
  /* max-width: 100%; */
  width: 160px;
  height: auto;
  display: block;
}

.alarm-banner {
  transition: transform 0.2s ease;
}

/* MARK: 우측 컨텐츠 영역 */
.content-area {
  flex: 1;
}

/* MARK: 기업 헤더 */
.company-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.company-logo {
  width: 172px;
  height: 100px;
  margin-right: 25px;
  border: 1px solid #E0E5EB;
  padding: 10px;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
  /* company-logo와 동일한 높이로 설정 */
}

.company-title h1 {
  margin: 0 0 15px 0;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* MARK: 채용 중 배지 */
.recruit-badge {
  height: 22px;
  padding: 0 6px;
  background: #F14040;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  vertical-align: middle;
}

/* MARK: 관심기업 버튼 */
.favorite-btn, .share-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px 8px 16px;
  background: #fff;
  border: 1px solid #AFBBCC;
  border-radius: 90px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
}

.favorite-btn::before {
  content: '';
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  background: url('/assets/data/img/datalab/main/unfollow.png') no-repeat center;
  background-size: contain;
}
.share-btn {
  margin-left: 10px;
}
.share-btn::before {
  content: '';
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  background: url('/assets/data/img/datalab/main/share.png') no-repeat center;
  background-size: contain;
}

.favorite-btn.active::before {
  background-image: url('/assets/data/img/datalab/main/follow.png');
}

/* MARK: 상세 정보 테이블 */
.company-detail-info {
  color: #495264;
  background: #FAFAFA;
  border: 1px solid #E0E5EB;
  padding: 14px 14px 30px 30px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border: none;
}

.info-table th,
.info-table td {
  padding: 12px 10px;
  text-align: left;
  border: none;
  font-size: 14px;
  line-height: 1.5;
  background: transparent;
}

.info-table th {
  color: #666;
  width: 80px;
  font-weight: normal;
}

.info-table td {
  color: #333;
}

.info-table td a {
  color: #1428a0;
  text-decoration: none;
}

.info-table td a:hover {
  text-decoration: underline;
}

.edit-request {
  text-align: right;
}

.edit-request a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
}

.edit-request a:hover {
  text-decoration: underline;
}

.company-detail-info.company-overview {
  padding: 20px;
}

.company-detail-info .info-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.company-detail-info .company-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  white-space: pre-line;
}

/* MARK: 좌측 메뉴 */
.left-menu {
  width: 111px;
  margin-right: 40px;
  position: sticky;
  top: 80px;
  height: fit-content;
  transition: all 0.3s ease-out;
}

.timeline-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* 타임라인 세로선 위치 조정 */
.timeline-nav::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 10px;
  width: 1px;
  height: calc(100% - 16px);
  background-color: #e0e0e0;
}

.nav-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background-color: #e0e0e0;
  z-index: 1;
}

.nav-item.active .timeline-dot {
  border-color: #1428a0;
  background-color: #1428a0;
}

.nav-item a {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-item.active a {
  color: #1428a0;
  font-weight: 600;
}

/* 정보 아이콘 스타일 */
.info-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #A7A7A7;
  border-radius: 90px;
  text-align: center;
  line-height: 16px;
  color: #A7A7A7;
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
  cursor: help;
  position: relative;
}

.info-icon:hover .tooltip {
  display: block;
}

.tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 8px 12px;
  background: #333;
  color: #fff;
  font-size: 12px;
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
  border-radius: 4px;
  z-index: 10;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* MARK: 채용공고정보 섹션 */
.company-info-section {
  margin-top: 30px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.recruit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruit-item {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 16px 20px;
  cursor: pointer;
}

.recruit-item:hover {
  background: #f1f3f5;
}

.recruit-position {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.recruit-position h4 {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.recruit-essay {
  display: flex;
  align-items: center;
  gap: 4px;
}

.essay-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.essay-list h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 20px;
}

.essay-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 4px;
}

.essay-number {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
  min-width: 40px;
}

.essay-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.essay-question {
  font-size: 14px;
  color: #495057;
  width: 800px;
}

.essay-limit {
  font-size: 14px;
  color: #868e96;
}

.no-data {
  text-align: center;
  padding: 40px 0;
  color: #868e96;
  font-size: 14px;
}

/* MARK: 채용공고 컨테이너 */
.recruit-info-container {
  background-color: #F6F7F9;
  padding: 20px;
}

.recruit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.recruit-select {
  flex: 1;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
  color: #495057;
  background-color: #fff;
  margin-right: 12px;
}

.recruit-select option {
  padding: 100px !important;
  line-height: 1.5;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  width: 150px;
  height: 48px;
  background: #495264;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s;
}

/* 채용공고 포지션 영역 추가 */
.recruit-positions {
  margin-top: 20px;
}

.position-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.position-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 12px;
  background: #fff;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.position-item:hover .position-name {
  color: #2561FA;
}

.position-item.active {
  background: #2561FA;
}

.position-item.active .position-name,
.position-item.active .position-title {
  color: #fff;
}

.position-item.active .career-type {
  color: #2561FA;
  padding: 4px 5px 4px 5px;
  border-radius: 5px;
  background-color: #EBF0FF;
}

.position-name {
  font-size: 14px;
  font-weight: 700;
  color: #858585;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.position-title {
  flex: 1;
}

.career-type {
  font-size: 13px;
  color: #626F87;
  padding: 4px 5px 4px 5px;
  border-radius: 5px;
  background-color: #EBF0FF;
}

/* MARK: 로그인한 사용자의 학교 표시 */
.stats-list li.highlight .rank,
.stats-list li.highlight .name,
.stats-list li.highlight .percentage {
  color: #2561FA;
}

.stats-list li.highlight .name {
  font-weight: 700;
}

/* 마감 메시지 스타일 */
.deadline-message {
  font-size: 16px;
  font-weight: 500;
  color: #495264;
  text-align: center;
  padding: 80px 40px;
  background: #F6F7F9;
  line-height: 1.5;
  width: 100%;
  margin: 0;
  border-radius: 0;
}

/* MARK: 통계 데이터 없음 컨테이너 */
.insufficient-data-container {
  width: 800px;
  position: absolute;
  z-index: 1;
  top: 216px;
  left: 70px;
  /* background-color: rgba(255, 255, 255, 0.812); */
  padding: 20px 0;
  text-align: center;
  /* border: 1px solid #1428a0; */
}

.spec-input-text {
  text-decoration: underline;
}

.insufficient-data-container._poFx {
  position: fixed;
  top: 150px;
  width: 800px;
  left: calc(50% - 329px);
  /* box-shadow: 0 4px 6px 0px #00000008; */
  /* border: 1px solid #1428a0; */
}

/* .tab-area._poFx {
  position: fixed;
  top: 150px;
  width: 800px;
  left: calc(50% - 329px);
} */

.insufficient-data-image {
  width: 100%;
  text-align: center;
}
.btn-container {
  padding: 54px 0;
  background-color: rgba(255, 255, 255, 1.812);
  border: 1px solid #1428a0;
}

.insufficient-data-image img {
  height: auto;
  margin: 0 auto;
}

.insufficient-data-message {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 20px 0;
}

.spec-submit-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 350px;
  margin: 0 auto;
  padding: 20px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  /* margin-top: 10px; */
}

.button-text {
  text-align: left;
}

.button-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: white;
}

.button-arrow {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-left: 16px;
  font-size: 24px;
  font-family: sans-serif;
  line-height: 1;
  padding-left: 3px;
  padding-bottom: 4px;
}

.spec-submit-button.spec-input {
  background: linear-gradient(to right, #1F99E5, #2A2DE1);
}

.spec-submit-button.status-submit,
.user-spec.status-submit {
  background: linear-gradient(to right, #1FE5AD, #068CCF);
}

/* .spec-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

/* .spec-submit-button:active {
  transform: translateY(0);
} */

/* MARK: 현재 상태 모달 스타일 */
.status-select-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.status-modal-content {
  background: white;
  border-radius: 20px;
  width: 600px;
  padding: 30px;
  position: relative;
}

.status-modal-header {
  text-align: center;
  position: relative;
}

.status-modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.status-modal-subtitle {
  width: 211px;
  font-size: 15px;
  color: #666;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #F6F7F9;
  border-radius: 90px;
  padding: 10px 20px 10px 20px;
  opacity: 90%;
}

.close-button {
  position: absolute;
  right: -10px;
  top: -10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.status-options {
  display: flex;
  justify-content: center;
  padding: 0;
  gap: 10px;
}

.status-option {
  text-align: center;
  cursor: pointer;
  width: 180px;
}

.status-option img {
  transition: all 0.2s ease;
  display: block;
  border: none;
}

.notification-text {
  text-align: center;
  color: #333;
  font-size: 14px;
  margin: 40px 0;
}

.submit-button {
  display: block;
  width: 200px;
  padding: 15px 0;
  background: #2561FA;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.submit-button:hover {
  background: #183EA0;
}

/* MARK: 관심기업 모달 */
.favorite-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.favorite-modal-content {
  background: white;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.favorite-modal-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* MARK: 지원 인증 모달 스타일 수정 */
.verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.verification-modal-content {
  background: white;
  border-radius: 20px;
  width: 600px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

/* 선물상자 이미지 스타일 수정 */
.verification-modal-content::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 0px;
  width: 100px;
  height: 126px;
  background: url('/assets/data/img/datalab/common/recruitAuthGiftBox.png') no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 0.9;
}

.verification-modal-header {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.verification-modal-header h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.verification-modal-header .close-button {
  position: absolute;
  right: -10px;
  top: -10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.verification-modal-body {
  padding: 20px 0;
  display: flex;
  gap: 20px;
}

.image-guide-area {
  flex: 1;
  background: #F6F7F9;
  border-radius: 8px;
  padding: 20px;
}

.image-guide-area h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 12px 0;
}

.image-guide-area ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.image-guide-area ul li {
  position: relative;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.image-guide-area ul li::before {
  content: "•";
  position: absolute;
  left: -15px;
}

.file-upload-area {
  flex: 1;
  text-align: left;
}

.file-upload-area label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 20px;
  padding: 12px 20px 12px 20px;
  background: #495264;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.file-upload-area .upload-limit {
  color: #666;
  font-size: 13px;
  margin-top: 10px;
}

.file-list {
  margin-top: 15px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.file-item .file-name {
  color: #333;
  font-size: 14px;
  flex: 1;
  cursor: pointer;
}

.file-item .file-name:hover {
  text-decoration: underline;
}

.file-item .remove-file {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  margin-left: 8px;
  border: 1px solid #999;
  border-radius: 50%;
  line-height: 1;
}

.file-item .remove-file:hover {
  color: #666;
  border-color: #666;
}

.verification-modal-footer {
  text-align: center;
  margin-top: 30px;
}

.verification-modal-footer .submit-button {
  display: block;
  width: 200px;
  padding: 15px 0;
  background: #2561FA;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.verification-modal-footer .submit-button:hover {
  background: #183EA0;
}

.verification-modal-header .verification-subtitle {
  font-size: 15px;
  color: #414141;
  margin: 15px 0 0 0;
}

.verification-modal-header .verification-subtitle .underline {
  text-decoration: underline;
}

.verification-modal-header .verification-subtitle .highlight {
  color: #183EA0;
  font-weight: 500;
}

.spec-submit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spec-submit-modal-content {
  position: relative;
  max-width: 600px;
}

.spec-submit-modal-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* MARK: 통계 데이터 블라인드 처리 수정 */
.stats-blind-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.blur-content {
  filter: blur(5px);
  opacity: 0.7;
  user-select: none;
  pointer-events: none;
}

/* 블러 처리에서 제외할 요소들 */
.stats-header,
.section-title,
.stats-box h3,
.more-btn,
.detail-btn,
.total-count,
.category-title {
  filter: none !important;
  opacity: 1 !important;
  user-select: auto !important;
  pointer-events: auto !important;
}

/* 상태 체크 버튼 컨테이너 */
.status-check-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  text-align: center;
}

/* MARK: 그래프 영역 컨테이너 */
.base-graph-area,
.language-and-certificate-graph-area,
.activity-and-career-graph-area {
  position: relative;
}

.status-check-button {
  cursor: pointer;
  /* 기존 버튼 스타일 유지 */
}

/* MARK: 합격/응시 후기 섹션 스타일 */
.pass-review {
  padding: 0;
}

.pass-review .section-title {
  margin-bottom: 30px;
}

.pass-review .section-title h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pass-review .section-title p {
  color: #666;
  font-size: 14px;
}

.review-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.review-tabs .tab-btn {
  padding: 13px 16px;
  border: 1px solid #EBEEF2;
  border-radius: 8px;
  background: none;
  font-size: 14px;
  cursor: pointer;
  width: auto;
  min-width: min-content;
  white-space: nowrap;
}

.review-tabs .tab-btn.active {
  background-color: #282D37;
  color: white;
  border-color: #282D37;
}

.review-tabs .more-btn {
  padding: 8px 10px 8px 10px;
  border: 1px solid #AFBBCC;
  border-radius: 5px;
  font-weight: 500;
  color: #414141;
  text-decoration: none;
  font-size: 13px;
}

.review-tabs .more-btn:hover {
  text-decoration: underline;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-item {
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-type {
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}

.review-type.apply {
  color: #626F87;
}

.review-type.paper-pass {
  color: #53AB76;
}

.review-type.final-pass {
  color: #EB6262;
}

.review-type.pass {
  color: #2561FA;
}

.review-title {
  flex: 1;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  color: #333;
}

.review-title:hover {
  text-decoration: underline;
}

.reviewer-info {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
}
.graph-content {
  position: relative;
}

.stats-blind-container {
  position: relative;
  width: 100%;
  text-align: center;
}

.user-spec.status-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 350px;
  margin: 0 auto;
  padding: 20px 32px;
  border-radius: 6px;
  cursor: pointer;
  background: linear-gradient(to right, #1FE5AD, #068CCF);
}

.statistics-container {
  position: relative;
}


.chart-content {
  position: relative;
}

.stats-blind-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-guide-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.spec-guide-message {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
}

.spec-submit-button,
.status-submit-button {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
}

/* 블라인드 이미지 영역 스타일 */
.blind-one-column-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 100%; /* 너비를 100%로 설정 */
}

.blind-two-column-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  /* background-color: #f9f9f9; */
  border-radius: 8px;
  margin-bottom: 15px;
}

.blind-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.pass-info-sts {
  position: absolute;
  z-index: 1;
  top: 1850px;
  left: 550px;
}
.btn-container-wrap {
  text-align: center;
}

/* Modal */
._modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  font-size: 0;
  opacity: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

._modalBg {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9001;
  cursor: pointer;
}

._modalWrp {
  background: #FFFFFF;
  z-index: 10001;
  position: absolute;
  top: 50px;
  left: calc(50% - 325px);
  width: 651px;
  height: 451px;
  box-sizing: border-box;
  border-radius: 8px;
}

._modalTit {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color: #020202;
}

._modalShare ._modalWrp {
  width: 359px;
  height: 269px;
  left: calc(50% - 178px);
  padding: 40px 107px;
  text-align: center;
  top: 100px !important;
}
._modalShare ._modalWrp{
  padding: 40px 0;
}

