.evaluation-intro-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.evaluation-intro-popup.show {
  display: block;
}
.evaluation-intro-popup .popup-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.evaluation-intro-popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 90vh;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.evaluation-intro-popup .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2;
}
.evaluation-intro-popup .popup-close i {
  font-size: 30px;
  color: #333;
  transition: all 0.3s;
}
.evaluation-intro-popup .popup-close i:hover {
  color: #000;
}
.evaluation-intro-popup .popup-scroll {
  height: calc(90vh - 80px);
  overflow-y: auto;
  padding: 20px;
}
.evaluation-intro-popup .popup-scroll img {
  display: block;
  width: 100%;
  height: auto;
}
.evaluation-intro-popup .popup-scroll::-webkit-scrollbar {
  width: 6px;
}
.evaluation-intro-popup .popup-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.evaluation-intro-popup .popup-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.evaluation-intro-popup .popup-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.evaluation-intro-popup .popup-btn .start-evaluation {
  display: inline-block;
  padding: 12px 40px;
  background: #2B87FF;
  color: #fff;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s;
}
.evaluation-intro-popup .popup-btn .start-evaluation:hover {
  background: #1a76e8;
}
@media screen and (max-width: 768px) {
  .evaluation-intro-popup .popup-content {
    width: 90%;
  }
}
