@charset "UTF-8";

/* yui3 reset.css */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid #e8e8e8;
}

table th,
table td {
  border: 1px solid #e8e8e8;
  padding: 10px 14px;
  text-align: left;
}

/* 表头样式 */
table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

/* 表格行悬停效果 */
/* table tbody tr:hover {
  background: #f0f0f0;
} */

/* 斑马纹样式（可选，如需启用取消注释） */
/* table tbody tr:nth-child(even) {
  background: #fafafa;
} */

/* option-panel 样式优化 */
.option-panel {
  background: #fafbfc;
  /* border-radius: 8px; */
  padding: 16px 20px;
  /* margin: 15px 0; */
  /* border: 1px solid #e8eef5; */
}

/* 表格单元格内容换行 */
table td {
  word-break: break-word;
  vertical-align: middle;
}

/* 响应式适配 */
/* 通用 search-box 去除内部输入框默认边框，避免双层边框 */
.search-box input,
.search-box .input-text {
  border: none;
  outline: none;
}

/* 表格操作列居中 */
.col-operator,
.col-status,
.col-action {
  text-align: center !important;
}

@media (max-width: 1200px) {
  .container {
    margin: 0 10px;
  }

  .option-wrap {
    width: 100%;
    max-width: 100%;
  }

  .search-wrap {
    float: none;
    clear: both;
    padding: 10px 0;
  }

  .search-wrap .search-box {
    width: 100%;
    max-width: 300px;
  }
}

/* 顶部导航栏 */
.top-nav-bar {
  display: none;
  /*display: flex;*/
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px 0px rgba(217, 217, 217, 0.56);
  margin-bottom: 12px;
}

/* 面包屑导航 */
.breadcrumb-nav {
  flex: 1;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: #2563eb;
}

.breadcrumb-icon {
  width: 16px;
  height: 16px;
}

.breadcrumb-separator {
  color: #d1d5db;
  font-size: 14px;
}

.breadcrumb-current {
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
}

/* 移动端筛选按钮 */
.mobile-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.mobile-filter-toggle svg {
  width: 16px;
  height: 16px;
}

.mobile-filter-toggle:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
}

.mobile-filter-toggle:active {
  opacity: .85;
}

@media (max-width: 768px) {
  table {
    font-size: 13px;
  }

  table th,
  table td {
    padding: 8px 6px;
  }

  .step-legend {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tags-box span {
    font-size: 11px;
    padding: 2px 6px;
  }

  /* 顶部导航栏移动端适配 */
  .top-nav-bar {
    padding: 10px 12px;
    margin-bottom: 10px;
  }

  .breadcrumb-list {
    gap: 6px;
  }

  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 13px;
  }

  .breadcrumb-icon {
    width: 14px;
    height: 14px;
  }

  .mobile-filter-toggle {
    display: flex;
  }

  /* 隐藏 PC 端筛选区域，显示移动端版本 */
  .search-wrap {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    transition: max-height .4s ease, opacity .3s ease, padding .3s ease, margin .3s ease;
  }

  .search-wrap.mobile-expanded {
    max-height: 500px;
    opacity: 1;
    overflow: visible;
    display: flex !important;
    flex-direction: column;
    padding: 12px !important;
    gap: 12px !important;
  }

  .search-wrap.mobile-expanded form {
    min-width: 100% !important;
  }

  .search-wrap.mobile-expanded .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .search-wrap.mobile-expanded .filter-group {
    width: 100%;
  }

  .search-wrap.mobile-expanded .filter-group select {
    width: 100%;
  }

  .search-wrap.mobile-expanded .filter-actions {
    justify-content: flex-end;
  }

  .search-wrap.mobile-expanded > div:last-child {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-left: 0;
  }

  .search-wrap.mobile-expanded .search-box {
    width: 100%;
  }

  .search-wrap.mobile-expanded .search-box .input-box {
    width: 100%;
  }

  /* 隐藏 PC 端标题 */
  .common-head {
    display: none;
  }
}

fieldset,
img {
  border: 0;
}
textarea {
  resize: none;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

legend {
  color: #000;
}

iframe {
  display: block;
}

/* yui3 fonts */

body {
  color: #333;
  font-size: 14px;
  font-family: "Microsoft YaHei";
}

select,
input,
button,
textarea {
  font:
    99% arial,
    helvetica,
    clean,
    sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s;
}
a:visited {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  color: #0052a3;
  text-decoration: underline;
}
input,
button,
textarea {
  font-family: "Microsoft YaHei";
  border: 0;
  outline: 0;
}

input[type="text"]::-ms-clear,
input[type="password"]::-ms-reveal {
  display: none;
}

/* checkbox 样式优化 */
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  margin-right: 4px;
}

input[type="checkbox"]:checked {
  background: #0066cc;
  border-color: #0066cc;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* name="checkAll" 的 checkbox 更显眼 */
input[name="checkAll"] {
  width: 18px;
  height: 18px;
  border: 2px solid #0066cc;
  border-radius: 3px;
}

input[name="checkAll"]:checked {
  background: #0066cc;
}

input[name="checkAll"]:checked::after {
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
}

/* 包含 checkAll 的 td 中文字更显眼 */
td:has(input[name="checkAll"]) {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

/* id=allAgreeCbx 的 td 中文字更显眼 */
td:has(input[id="allAgreeCbx"]) {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
  color: #999;
}

textarea:-moz-placeholder,
input:-moz-placeholder {
  color: #999;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #999;
}

.placeholder {
  color: #999;
}

/* utilities */

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* 筛选栏样式优化 */
.filter-bar {
  /*padding: 20px 24px;*/
  /*background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);*/
  /*border-bottom: 1px solid #e8ecf0;*/
}

.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-label {
  font-size: 14px;
  font-weight: 600;
  color: #34495e;
  white-space: nowrap;
}

.filter-group select {
  min-width: 140px;
  height: 36px;
  padding: 0 32px 0 12px;
  font-size: 14px;
  color: #2c3e50;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid #d1d8e0;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-group select:hover {
  border-color: #49cecd;
  box-shadow: 0 0 0 3px rgba(73, 206, 205, 0.1);
}

.filter-group select:focus {
  border-color: #49cecd;
  box-shadow: 0 0 0 3px rgba(73, 206, 205, 0.2);
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  /* margin-left: auto; */
}

.filter-actions .btn {
  height: 36px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-actions .btn-primary {
  background: linear-gradient(135deg, #49cecd 0%, #3db9b7 100%);
  color: #fff;
}

.filter-actions .btn-primary:hover {
  background: linear-gradient(135deg, #3db9b7 0%, #35a5a3 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(73, 206, 205, 0.3);
}

.filter-actions .btn-default {
  background: #fff;
  color: #666;
  border: 1px solid #d1d8e0;
}

.filter-actions .btn-default:hover {
  background: #f5f7fa;
  border-color: #c0c9d2;
}

/* 响应式适配 */
/* work-list 表格响应式适配 - 移动端优化 */
@media (max-width: 768px) {
  .work-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -10px;
    padding: 0 10px;
  }

  .mini-grid-table {
    font-size: 14px;
    table-layout: fixed;
  }

  .mini-grid-table td:nth-child(2),
  .mini-grid-table th:nth-child(2) {
    display: none;
  }

  .mini-grid-table td:nth-child(3),
  .mini-grid-table th:nth-child(3) {
    display: none;
  }

  .mini-grid-table td,
  .mini-grid-table th {
    padding: 12px 8px;
    word-break: break-word;
  }

  .mini-grid-table .tb-head td {
    font-weight: 600;
    background-color: #f5f7fa;
    position: sticky;
    top: 0;
  }

  .mini-grid-table td:first-child,
  .mini-grid-table th:first-child {
    width: 35%;
  }

  .mini-grid-table td:nth-child(4),
  .mini-grid-table th:nth-child(4) {
    width: 25%;
  }

  .mini-grid-table td:nth-child(5),
  .mini-grid-table th:nth-child(5) {
    width: 15%;
  }
}

@media (max-width: 480px) {
  .mini-grid-table {
    font-size: 13px;
  }

  .mini-grid-table td,
  .mini-grid-table th {
    padding: 10px 6px;
  }

  .mini-grid-table .tb-head td {
    font-size: 12px;
  }

  .work-list {
    margin: 0 -8px;
    padding: 0 8px;
  }

  /* 超小屏幕顶部导航适配 */
  .top-nav-bar {
    padding: 8px 10px;
    margin-bottom: 8px;
  }

  .breadcrumb-list {
    gap: 4px;
  }

  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 12px;
  }

  .breadcrumb-icon {
    width: 12px;
    height: 12px;
  }

  .mobile-filter-toggle {
    padding: 6px 10px;
    font-size: 12px;
  }

  .mobile-filter-toggle svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 1400px) {
  .search-wrap {
    padding: 10px 14px;
    gap: 10px;
  }

  .filter-row {
    gap: 10px;
  }

  .filter-group select {
    min-width: 110px;
    font-size: 13px;
    padding: 6px 10px;
  }

  .filter-label {
    font-size: 13px;
    margin-right: 4px;
  }

  .filter-actions .btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

@media (max-width: 1260px) {
  .search-wrap {
    padding: 8px 12px;
    gap: 8px;
  }

  .filter-row {
    gap: 8px;
  }

  .filter-group select {
    min-width: 100px;
    font-size: 12px;
    padding: 5px 8px;
  }

  .filter-label {
    font-size: 12px;
    margin-right: 3px;
  }

  .filter-actions .btn {
    padding: 5px 10px;
    font-size: 12px;
  }

  .search-box .input-text {
    padding: 6px 10px;
    font-size: 12px;
  }

  .step-legend {
    gap: 12px;
  }

  .step-legend .item {
    font-size: 12px;
    padding: 3px 8px;
  }
}

@media (max-width: 1200px) {
  .filter-row {
    gap: 16px;
  }

  .filter-group select {
    min-width: 120px;
  }
}

@media (max-width: 992px) {
  .search-wrap {
    padding: 10px 12px !important;
    gap: 10px !important;
  }

  .filter-row {
    gap: 10px;
  }

  .filter-group select {
    min-width: 100px;
    font-size: 12px;
    padding: 6px 8px;
  }

  .filter-label {
    font-size: 12px;
    margin-right: 4px;
  }

  .filter-actions .btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .search-wrap {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 10px !important;
    gap: 12px !important;
  }

  .search-wrap form {
    min-width: 100% !important;
  }

  .filter-bar {
    padding: 12px;
  }

  .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-group select {
    width: 100%;
    flex: 1;
  }

  .filter-actions {
    margin-left: 0;
    justify-content: flex-end;
  }

  .search-wrap > div:last-child {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .search-box {
    width: 100%;
  }

  .search-box .input-box {
    width: 100%;
  }

  .step-legend {
    display: none;
  }
}

@media (max-width: 480px) {
  .search-wrap {
    padding: 8px !important;
  }

  .filter-bar {
    padding: 8px;
  }

  .filter-row {
    gap: 8px;
  }

  .filter-label {
    font-size: 11px;
    margin-right: 2px;
  }

  .filter-group select {
    min-width: 80px;
    font-size: 11px;
    padding: 5px 6px;
  }

  .filter-actions .btn {
    padding: 5px 10px;
    font-size: 11px;
  }

  .search-box .input-text {
    padding: 6px 10px;
    font-size: 12px;
  }
}

.l {
  float: left !important;
}

.r {
  float: right !important;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

/* css3效果 */

.trans {
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

@font-face {
  font-family: "iconfont"; /* Project id 3187609 */
  src:
    url("//at.alicdn.com/t/font_3187609_7iz8ugy6as.woff2?t=1645023103560")
      format("woff2"),
    url("//at.alicdn.com/t/font_3187609_7iz8ugy6as.woff?t=1645023103560")
      format("woff"),
    url("//at.alicdn.com/t/font_3187609_7iz8ugy6as.ttf?t=1645023103560")
      format("truetype");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.sub_err {
  background: #fff;
  border: #ccc solid 5px;
  width: 500px;
  height: 60px;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 999999;
  display: none;
}
.sub_info {
  line-height: 54px;
  height: 56px;

  width: 490px;
  margin: 0 auto;

  color: #ff0000;

  text-indent: 155px;
  font-size: 16px;
  font-family: 微软雅黑;
  background: url(icons/face-sad.png) 100px 5px no-repeat;
}
