/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background-color: $background-color;
    color: $text-color;
    line-height: 1.6;
}*/
.notification-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.notification-bar .notification-icon {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  white-space: nowrap;
  z-index: 2;
}
.notification-bar .notification-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.notification-content {
  position: absolute;
  white-space: nowrap;
  line-height: 40px;
  animation: scroll-left 40s linear infinite;
}

.notification-item {
  display: inline-block;
  margin-right: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.notification-item:hover {
  color: #ffeb3b;
  text-shadow: 0 0 5px rgba(255, 235, 59, 0.7);
}

.notification-title {
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 5px;
}

.content {
  margin-top: 60px;
  padding: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

p {
  margin-bottom: 15px;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  background-color: white;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: modal-appear 0.3s ease-out;
}
.modal .modal-header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-header .modal-title {
  font-size: 1.2rem;
  font-weight: bold;
}
.modal .modal-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.modal .modal-body {
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.formatted-content {
  line-height: 1.6;
}
.formatted-content h3 {
  color: #2c3e50;
  margin: 15px 0 10px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
.formatted-content p {
  margin-bottom: 10px;
}
.formatted-content ul, .formatted-content ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
.formatted-content li {
  margin-bottom: 5px;
}
.formatted-content code {
  background-color: #f5f5f5;
  padding: 2px 5px;
  border-radius: 3px;
  font-family: Consolas, monospace;
}
.formatted-content blockquote {
  border-left: 4px solid #6a11cb;
  padding-left: 15px;
  margin: 10px 0;
  color: #555;
  font-style: italic;
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 768px) {
  .notification-bar {
    height: 35px;
    font-size: 14px;
  }
  .notification-content {
    line-height: 35px;
  }
  .content {
    margin-top: 45px;
  }
  .notification-item {
    margin-right: 30px;
  }
}

/*# sourceMappingURL=Notice.css.map */
