/* styles.css */
/* 清除默认样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg.jpg); /* 替换为你的背景图片路径 */
  background-size: cover; /* 调整大小以填充整个容器 */
  background-position: center;
  background-repeat: repeat-y;
  font-family: Arial, sans-serif;
}

.container {
  width: 687px;
  margin: 0 auto;
  padding-top: 50px;
}

h1.title {
  text-align: center;
  margin-bottom: 31px;
  font-size: 0;
}
h1.title::before{
  content: "";
  display: inline-block;
  width: 135px;
  height: 30px;
  background: url(../images/360.png) center center no-repeat;
  margin-right: 13px;
  vertical-align: middle;
}
h1.title span{
  padding-left: 13px;
  border-left: 2px solid #ff9932;
  color: #333333;
  display: inline-block;
  line-height: 26px;
  font-size: 22px;
  vertical-align: middle;
}
form {
  display: flex;
  flex-direction: column;
}

/* 单选框的自定义样式 */
input[type="radio"] {
  appearance: none; /* 移除默认样式 */
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s;
  margin-right: 13px;
  vertical-align: middle;
}
input[type="radio"]+span{
  vertical-align: middle;
  font-size: 16px;
}
input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f5a50a;
}
input[type="radio"]:checked{
  border-color: #f5a50a;
}
input[type=radio]:focus {
    outline:initial
}
.radio-container {
    line-height: 41px;
}
.radio-container label{
  display: inline-block;
  /*min-width: 119px;*/
  margin-right: 10px;
}
.group-table{
  padding: 0 20px;
  border: 1px solid #eeeeef;
  background-color: #fff;
  padding-top: 7px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 27px;
}
table th,
table td {
    padding: 8px;
    text-align: left;
    border: 0;
    height: 44px;
    border-top: 1px solid #eeeeef;
    border-bottom: 1px solid #eeeeef;
    padding-left: 24px;
    font-size: 14px;
    
}
table th{
  background-color: #fff;
  border-bottom-color: #000000;
  border-top: 0;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
}
table td{
  color: #333333;
}
table tr td:last-child{
  color: #0fb264;
}
table tr.error td{
  background-color: #f5fdf5;
}
table tr.error td:last-child{
  color: #f5a50a;
}
th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.input-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.input-container input[type="text"] {
  flex: 1;
  padding: 13px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  height: 41px;
  width: 244px;
}

.input-container .btn {
  border: none;
  background-color: #0fb264;
  color: white;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  width: 81px;
  height: 41px;
  transition: background-color 0.3s;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
}

.input-container .btn:hover {
  background-color: #3bb87b;
}

.search-box {
    display: flex;
    justify-content: space-between;
    padding-left: 10px
}

input[type="text"]:focus-visible {
  border-color: #ccc; /* 保持相同的边框颜色 */
  box-shadow: none; /* 取消默认的阴影效果 */
  outline: 0;
}
.tips{
  text-align: center;
  color: #ff0000;
  margin-top: 17px;
  font-size: 12px;
}

.customBootstrap .pagination > li > a {
    margin-right: 5px;
    border-radius: 2px;
    background: #fff;
    color: #333;
    border-color: #ccc;
    padding: 6px 15px;
}

    .customBootstrap .pagination > li > a:hover,
    .customBootstrap .pagination > li > a:focus {
        color: #fff;
        background: #fb9400;
        border-color: #fb9400;
    }

.customBootstrap .pagination > .active > a,
.customBootstrap .pagination > .active > a:hover,
.customBootstrap .pagination > .active > a:focus {
    color: #fff;
    background: #fb9400;
    border-color: #fb9400;
}

.customBootstrap .pagination > .disabled > a,
.customBootstrap .pagination > .disabled > a:hover,
.customBootstrap .pagination > .disabled > a:focus {
    color: #999;
    background: #fff;
    border-color: #ddd;
    cursor: not-allowed;
}

#mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 70%);
    z-index: 1000;
    display: none
}
.onload {
    width: 156px;
    height: 95px;
    background: url(../images/loading.gif) center center no-repeat;
    position: fixed;
    top: 49%;
    left: 45%;
}

td.red {
    color:red !important;
}