.act_btn {
  display: inline-block;
  height: 26px;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 16px;
  margin-bottom: 0;
  /* box-shadow: 2px 4px 10px 0 rgba(4, 128, 128, 0.25); */
  box-sizing: border-box;
  line-height: 1;
}

.act-disabled {
  cursor: not-allowed;
  background-color: #C6C6C6;
}

.create_btn {
  width: 180px;
  height: 40px;
  font-size: 18px;
}


/* table */
.tableFixHead {
    width: 100%;
    min-height: 484px;
    overflow-y: hidden;
    overflow-x: auto;
  }
  
  .tableFixHead  table.data-table tr th {
    height: 44px;
    font-size: 18px;
  }
  
  .tableFixHead  table.data-table tr td {
    height: 44px;
  }

  .tableFixHead table thead {
    position: sticky;
    top: 0;
}

.tableFixHead table tr td.text-left {
    text-align: left;
}

.tableFixHead table tr td.text-center {
    text-align: center;
}

   table.data-table tr td.text-right{
    text-align: right;
  }

table tbody td.underline>a {
  text-decoration: underline;
}


 /*沒有資料狀態*/
  .nodata_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px auto;
  }
  
  .nodata_content img {
    width: 343px;
    height: 300px;
  }
  
  .nodata_content>span {
    color: #6a6a6a;
    font-size: 20px;
    margin-top: 8px;
  }


  @media screen and (max-width: 400px) {
    .main_title .row_wrap>.group {
        width: 100%;
    }

    .create_btn {
        width: 100%;
    }
}


.data_content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
  margin-bottom: 16px;
}

.subtitle_info {
  width: 100%;
  padding: 16px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.subtitle_info h3 {
  max-width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: #285ee4;
  padding-bottom: 8px;
  margin-bottom: 16px;
  line-height: 36px;
  position: relative;
  display: flex;
  overflow-x: auto;
  cursor: pointer;
}


.subtitle_info h3 .tabs {
  position: relative;
  display: flex;
  align-items: center;
}

.subtitle_info h3 .tabs li {
  width: 100%;
  min-width: 140px;
  text-align: center;
  padding-right: 8px;
  position: relative;
  transition: .3s;
}

.subtitle_info h3 .tabs li a {
  font-weight: 500;
  color: #dbdbdb;
}

.subtitle_info h3 .tabs li:not(:first-child) {
  padding-left: 8px;
}

.subtitle_info h3 .tabs li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 18px;
  width: 2px;
  background: #e0e0e0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.subtitle_info h3 .tabs a.active {
  color: #285ee4;
}

.tab-contents {
  display: none;
}

.active-content {
  display: block;
}
