

#footer {
     position: fixed;
    background-color: #ebebeb;
    bottom: 0;
    text-align: center;
    width: 100%;
    font-size: 12px;
}




.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px 35px;
  border-radius: 5px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
}


.file-name {
  /* Default file name styling */
}

.file-text.imported {
color: #0075ff;
    font-size: 13px;
}

/* Form container */
.upload-form {
padding: 25px 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* File input container */
.file-input-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.file-input {
    background: #e2e2e2;
    padding: 12px 12px 8px;
    width: 100%;
    text-align: center;
    border-radius: 7px;
}

.file-input label {
  display: block;
  margin-top: 8px;
}

.file-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

input[type="file"] {
  display: none;
}

input[type="file"] + label {
  background-color: #0969e0;
  color: white;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

input[type="file"]:hover + label {
  background-color: #00a3ff;
}

/* Password input styling */
.password-input {
  margin-bottom: 20px;
}

.password-input label {
  font-size: 13px;
  color: #295073;
}

.password-input input {
  width: 100%;
  box-sizing: border-box; 
  padding: 10px;
  font-size: 14px;
  color: #295073;
    background-color: #f5f5f5;
    margin-top: 8px;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
}

.password-input input:focus {
  border-color: #4CAF50;
  outline: none;
}

/* Submit button styling */
.submit-container {
  text-align: center;
}

button {
  background-image: linear-gradient(90deg,#006eff,#139dff);
  box-shadow: 3px 5px 10px 0 rgba(16,110,253,.3);
  color: white;
  margin-bottom: 0.2rem;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #00a3ff;
}

button:disabled {
  background-image: linear-gradient(90deg,#cdcdcd,#d4d4d4);
  box-shadow: none;
  cursor: not-allowed;
}

/* Displaying upload results */
.upload-result {
  margin-top: 20px;
  padding: 10px;
  background-color: #f1f1f1;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
}

.upload-result h3 {
  font-size: 18px;
  color: #444;
}
.file-text {  
  font-size: 13px;
  color: #295073;
}

.upload-result p {
  margin-bottom: 10px;
}

.upload-result strong {
  font-weight: bold;
  color: #333;
}

body {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-heading {
  text-align: center;
  position: relative;
}

.icon-heading::before {
  content: "";
  display: inline-block;
  background-image: url('../images/cer.png'); /* 替换成你的图标路径 */
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px; /* 图标宽度 */
  height: 35px; /* 图标高度 */
  margin-right: 10px; /* 图标与文字之间的间距 */
  vertical-align: middle; /* 确保图标与文字垂直居中 */
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

hr.custom-hr {
    border: 0;
    margin-top: -5px;
    height: 1px;
    background-color: #e1e1e1;
}
.content{
    font-size: 14px;
    line-height: 1;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

label {
  position: relative; /* 确保伪元素能够相对于label定位 */
  display: inline-block; /* 使label保持块级元素，以便控制其大小 */
  margin-bottom: 2px; /* 可以为label添加间距 */
}

label::after {
    content: "*";
    position: absolute;
    bottom: 0;
    margin-left: 3px;
    font-size: 18px;
    color: #f1416c;
    font-weight: 700;
    transform: translateY(3px);
}


body {
  margin: 0;
  background-color: #ebebeb;
  color: #295073;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

#app {
  max-width: 480px;
  margin: 40px auto 40px;
  padding: 1rem;
}

