/*底部按鈕色塊*/
.chk_box{
  position: relative;
  margin-bottom: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.chk_box .box_container {
  width: 220px;
  height: 40px;
  padding: 4px 16px 4px 44px;
  border-radius: 32px;
  border: 2px solid transparent;
  box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
  font-size: 18px;
  color: #285ee4;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.chk_box .box_container:hover {
background: #fff;
border: 2px solid #285ee4;
}

.chk_box input {
  display: none;
}

/*checkbox位置設定*/
.chk_box .outter {
  position: absolute;
  left: 10px;
  top: 4px;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  transition: .3s;
}

 .chk_box .outter:hover{
  background: #d2e0e4
}


.chk_box input:checked~.outter .checkmark:after {
  display: block;
  border-color: #fff;
}

.chk_box .checkmark {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 7px;
  left: 8px;
  border: 2px solid #285ee4;
  border-radius: 3px;
  /* z-index: 2; */
  background: #fff;
}

.chk_box input:checked~.outter .checkmark {
  background: #285ee4;
}

.chk_box .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #285ee4;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* 下拉類型選擇 */
.sc-data_content .select-selected {
  width: 160px;
  height: 40px;
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
  text-align: start;
  color: #285ee4;
  font-weight: 600;
  position: relative;
}

.sc-data_content .select-selected:hover {
  background: #fff;
  border: 2px solid #285ee4
}

.sc-data_content .select-selected.select-arrow-active,.sc-data_content .select-selected.select-arrow-active~.select-items>div {
  border-color: transparent transparent #285ee4 transparent;
}

.sc-data_content .select-selected.select-arrow-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: #3d3d3d;
}

.sc-data_content .select-selected.select-arrow-active {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-top: 2px solid #658ae6;
  border-left: 2px solid #658ae6;
  border-right: 2px solid #658ae6;
}

/* 日期 */
.drp-calendar {
  /* max-width: 100%; */
  min-width: 296px;
}

.sc-data_content .sc-datepicker {
  height: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
  padding: 0 13px;
  margin-left: 16px;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  border: 2px solid transparent;
  position: relative;
  }

.sc-data_content .sc-datepicker:hover {
  background: #fff;
  border: 2px solid #285ee4;
  }

/*日期選擇器文字顏色及文字大小設定*/

.sc-data_content .sc-datepicker input {
  width: 260px;
  height: 100%;
  background: 0 0;
  border: 0;
  outline: none;
  color: #285ee4;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
}

/* ========== 帳務檢核 ========== */

.main_title h5{
  margin-bottom: 8px;
}

.account-verification {
width: 100%;
position: relative;
}

.account-verification .sc-data_content {
  display: flex;
  /* position: absolute;
  top: 0;
  right: 190px; */
}

.form_verification {
position: relative;
}

.verification_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 16px 16px;
  position: relative;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-sizing: border-box;
}

.verification_info h3 {
  max-width: calc(100vw - 496px);
  font-size: 24px;
  font-weight: 600;
  color: #285ee4;
  /* letter-spacing: 1px; */
  padding-bottom: 8px;
  margin-bottom: 16px;
  line-height: 36px;
  position: relative;
  display: flex;
  overflow-x: auto;
  cursor: pointer;
}

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

.verification_info h3 .tabs a {
  max-width: 156px;
  min-width: 120px;
  width: 100%;
  font-weight: 500;
  color: #dbdbdb;
  padding-right: 8px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: .3s;
  text-align: center;
}

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

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

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

/* .verification_info .chk_content{
  margin-bottom: 8px;
} */

.verification_table {
  background: #fff;
  height: 516px;
  overflow-y: hidden;
  overflow-x: auto;
  margin-bottom: 16px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
  position: relative;
}

.verification_table .btn{
  width: 140px;
  height: 32px;
  font-size: 16px;
  font-weight: 600;
}

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

/*主標題字調整*/
.verification_table table .title_top th {
  height: 44px;
  font-size: 20px;
  font-weight: 500;
  background:  #285ee4;
}

/*主標題-內部標題*/
.verification_table table .title_botton th {
  height: 32px;
  font-size: 16px;
  font-weight: 300;
  background: #285ee4;
}

.verification_table table thead tr:first-child {
    border-bottom: 1px solid #fff;
  }
  
  .verification_table table tr .tb_line {
    border-right: 1px solid #fff;
  }
  
  /* .verification_table table thead tr:first-child th {
    height: 44px;
  }
  
  .verification_table table thead tr:nth-child(2) th {
    height: 32px;
  } */

  .tableFixHead table tr td.text-right {
    text-align: right;
}
  
  .verification_table table thead tr:first-child th>span {
    letter-spacing: 8px;
  }
  
  
/* ========= 帳務檢核_現金帳 ==========*/
.cash_1 table thead tr th:first-child {
  width: 12.78%;
  min-width: 188px;
  background-color: #285ee4;
}

.cash_1 table thead .title_top th:nth-child(2) {
  width: 64.13%;
  min-width: 944px;
  background-color: #285ee4;
}

.cash_1 table thead .title_botton th:nth-child(2) {
  width: 8.42%;
  min-width: 124px;
}

.cash_1 table thead .title_botton th:nth-child(3),
.cash_1 table thead .title_botton th:nth-child(5) {
  width: 10.6%;
  min-width: 156px;
}

.cash_1 table thead .title_botton th:nth-child(4) {
  width: 11.96%;
  min-width: 176px;
}

.cash_1 table thead .title_botton th:nth-child(6) {
  width: 7.88%;
  min-width: 116px;
}

.cash_1 table thead .title_botton th:nth-child(7) {
  width: 5.16%;
  min-width: 76px;
}

.cash_1 table thead .title_botton th:nth-child(8) {
  width: 9.51%;
  min-width: 140px;
}

.cash_1 table thead .title_top th:last-child {
  width: 23.09%;
  min-width: 188px;
  background-color: #658ae6
}

.cash_1 table tbody tr td:nth-child(3),.cash_1 table tbody tr td:nth-child(5) {
  max-width: 156px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cash_1 table tbody tr td:nth-child(4) {
  max-width: 176px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========= 帳務檢核_銀行帳 ==========*/
.bank_1 table thead tr th:first-child {
  width: 12.78%;
  min-width: 188px;
  background-color: #2E4A8F;
}

.bank_1 table thead .title_top th:nth-child(2) {
  width: 64.13%;
  min-width: 944px;
}

.bank_1 table thead .title_botton th:nth-child(2) {
  width: 8.42%;
  min-width: 124px;
}

.bank_1 table thead .title_botton th:nth-child(3),.bank_1 table thead .title_botton th:nth-child(5) {
  width: 10.6%;
  min-width: 156px;
}

.bank_1 table thead .title_botton th:nth-child(4) {
  width: 11.96%;
  min-width: 176px;
}

.bank_1 table thead .title_botton th:nth-child(6) {
  width: 7.88%;
  min-width: 116px;
}

.bank_1 table thead .title_botton th:nth-child(7) {
  width: 5.16%;
  min-width: 76px;;
}

.bank_1 table thead .title_botton th:nth-child(8) {
  width: 9.51%;
  min-width: 140px;
}

.bank_1 table thead .title_top th:nth-child(3) {
  width: 23.09%;
  min-width: 340px;
  background-color: #658ae6;
}

.bank_1 table thead .title_botton th:nth-child(9) {
  width: 8.42%;
  min-width: 124px;
  background: #658ae6;
}

.bank_1 table thead .title_botton th:nth-child(10) {
  width: 5.16%;
  min-width: 76px;
  background: #658ae6;
}

.bank_1 table thead .title_botton th:nth-child(11) {
  width: 9.51%;
  min-width: 140px;
  background: #658ae6;
}

/*分類、收支對象字數過多隱藏後顯示...*/
.bank_1 table tbody tr td:nth-child(3),
.bank_1 table tbody tr td:nth-child(5) {
  max-width: 156px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bank_1 table tbody tr td:nth-child(4) {
  max-width: 176px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*沒有資料狀態*/
.account-verification .nodata_content {
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50% , -50%);
  user-select: none;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 343px;
  width: 100%;
}

.account-verification .nodata_content img {
width: 100%;
}

.account-verification .nodata_content>span {
color: #6a6a6a;
font-size: 16px;
margin-top: 16px;
}

@media screen and (max-width: 930px){
  .verification_info{
      flex-direction: column;
      align-items: start;
  }

  .verification_info h3 {
      width: 100%;
      max-width: 100%;
  }

  .verification_info .chk_content{
      margin-left: auto;
  }
}

@media screen and (max-width: 600px){
  .account-verification .sc-data_content {
      width: 100%;
      flex-direction: column;
  }

  .sc-data_content .custom-select{
      margin-bottom: 16px;
  }

  .account-verification .sc-data_content .select-selected{
      width: 100%;

  }

  .sc-data_content .sc-datepicker{
      margin-left: 0;
      width: 100%;
  }
  .sc-data_content .sc-datepicker input{
      width: 100%;
  }
}