/** Powered by yuen@iacd.cn */
/**
 * No one is allowed to edit this file without written permission from yuen.
 */

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

.entry-tag-cha {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 8px;
    background-color: #0071e3;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-right: 8px;
    box-sizing: border-box;
}

.entry-tag-ser {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 8px;
    background-color: #CC9902;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-right: 8px;
    box-sizing: border-box;
}

.entry-tag--green {
    background-color: #34c759;
}

.entry-tag--purple {
    background-color: #af52de;
}

.entry-tag--server {
    background-color: #CC9902;
}

h3 {
    display: inline;
    margin: 0;
}

.notice-container {
    width: 80%;
    max-width: 2000px;
    margin: 20px auto;
    border-radius: 12px;
    background: linear-gradient(135deg, #0071e3 0%, #003566 100%);
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.add-container {
    width: 80%;
    max-width: 2000px;
    margin: 20px auto;
    border-radius: 12px;
    background: linear-gradient(135deg, #1b1b1f 0%, #3E3E42 100%);
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.notice-title {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.notice-content {
    font-size: 14px;
    color: #f5f5f7;
    margin: 0;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (max-width: 768px) {
    .notice-container {
        width: 80%;
        padding: 14px 16px;
    }
    .notice-title {
        font-size: 16px;
    }
    .notice-content {
        font-size: 13px;
    }
}