/* favicon.css - 原版样式（保持不变） */

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

body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

#favicon-area {
    max-width: 960px;
    margin: 20px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

#favicon-area h1 {
    font-size: 22px;
    color: #333;
    border-bottom: 2px solid #20a53a;
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-align: center;
}

#favicon-source {
    float: left;
    width: 42%;
    text-align: center;
    padding: 10px;
}

#favicon-source img#preview {
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: #fafafa;
    object-fit: contain;
}

#favicon-output {
    float: right;
    width: 52%;
    padding: 10px 0;
}

#favicon-notice h2 {
    font-size: 15px;
    color: #555;
    margin: 12px 0 8px;
}

#favicon-notice label {
    font-size: 13px;
    margin-right: 6px;
    cursor: pointer;
    user-select: none;
}

#favicon-notice input[type="checkbox"] {
    margin-right: 2px;
    vertical-align: middle;
    cursor: pointer;
}

#favicon-notice p {
    font-size: 12px;
    color: #999;
    margin: 6px 0;
    line-height: 1.6;
}

input[type="file"] {
    font-size: 13px;
}

input[type="submit"] {
    background: #20a53a;
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

input[type="submit"]:hover {
    background: #1a8a30;
}

#favicon-text {
    clear: both;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#favicon-text h1 {
    font-size: 18px;
    color: #444;
    margin-bottom: 12px;
    border: none;
    text-align: left;
}

#favicon-text p {
    font-size: 13px;
    color: #666;
    text-indent: 2em;
    margin-bottom: 10px;
    line-height: 1.8;
}

#favicon-area-copyright {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin: 20px 0;
}

#favicon-area-copyright a {
    color: #20a53a;
    text-decoration: none;
}

#favicon-area-copyright a:hover {
    text-decoration: underline;
}
