/* 通用样式 */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #4CAF50;
    margin: 20px 0;
}

h2 {
    color: #333;
    margin-top: 30px;
    text-align: center;
}

/* 上传表单样式 */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    width: 300px;
}

label {
    font-weight: bold;
    margin-bottom: 10px;
}

input[type="file"],
textarea {
    margin-bottom: 15px;
    width: 100%;
    padding: 5px;
    font-size: 14px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

/* 软件列表样式 */
ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

ul li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

ul li:last-child {
    border-bottom: none;
}

ul li a {
    color: #4CAF50;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

/* 上传进度条样式 */
#progressContainer {
    text-align: center;
}

#progressBar {
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
}

#progressText {
    margin-top: 10px;
    font-size: 14px;
}
