.page-model {
  position: absolute;
  top: 0;
  left: 50px;
  transition: left 0.2s;
  z-index: -100;
  background-color: #fff;
  width: calc(100% - 50px);
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.page-model.open {
  left: 0;
  z-index: 5;
  opacity: 1;
  width: 100%;
}
.page-model .page-model-toolbar {
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  margin-left: 10px;
  margin-right: 10px;
  min-height: 50px;
}
.page-model .page-model-toolbar .page-model-toolbar-btns a {
  margin-right: 10px;
  color: #999;
  border-radius: 2px;
  width: 35px;
  text-align: center;
  line-height: 30px;
  font-size: 22px;
}
.page-model .page-model-toolbar .page-model-toolbar-btns a:hover {
  transition: color 0.5s;
  color: #363f44;
}
.page-model .page-model-box {
  flex: 1;
  overflow: auto;
  padding: 15px;
  display: flow-root;
}
/* 
   cf
   2019-12-2
   cx-model 模态框样式 
   start
*/
.el-dialog__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hide-right {
  right: -100% !important;
}
.v-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}
.el-dialog {
  position: relative;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  width: 50%;
}
.el-dialog__headerbtn {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
}
.el-dialog__headerbtn .el-dialog__close {
  color: #909399;
}
.el-dialog__header {
  padding: 10px;
  background-color: #232941;
  /* color: white; */
  text-align: left;
}
.el-dialog__title {
  line-height: 30px;
  font-size: 18px;
  flex: 1;
  /* color: #fff; */
}
.el-dialog__body {
  padding: 30px 20px;
  color: #606266;
  font-size: 14px;
  word-break: break-all;
  display: inline-block;
  width: 100%;
}
.el-dialog__footer {
  padding: 8px 20px 3px;
  text-align: right;
  box-sizing: border-box;
  background-color: #f1f1f1;
  clear: both;
}
/* cf 抽屉 */
.el-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}
.el-drawer .el-drawer__container {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.el-drawer .el-drawer__container .el-drawer__header {
  align-items: center;
  color: #72767b;
  display: flex;
  font-size: 18px;
  padding: 9px 20px;
  color: rgba(0, 0, 0, 0.65);
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 2px 2px 0px 0px;
  height: 50px;
}
.el-drawer .el-drawer__container .el-drawer__header > :first-child {
  flex: 1;
}
.el-drawer .el-drawer__container .el-drawer__header .el-drawer__close-btn {
  border: none;
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}
.el-drawer .el-drawer__container .el-drawer__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 70px);
}
.el-drawer.rtl {
  transition: right ease 0.2s;
  right: -100%;
}
.el-drawer.rtl.cx-drawer-open {
  right: 0 !important;
}
.el-drawer.bottom {
  transition: bottom ease 0.2s;
  bottom: -100%;
  right: 0 ;
}
.el-drawer.ltr,
.el-drawer.rtl {
  height: 100%;
  top: 0;
  bottom: 0;
}
.el-drawer.drawer2 .el-drawer__container {
  display: flex;
  flex-direction: column;
}
.el-drawer.drawer2 .el-drawer__container .el-drawer__header {
  margin-bottom: 0px;
}
.el-drawer.drawer2 .el-drawer__container .el-drawer__header a {
  font-size: 22px;
}
.el-drawer.drawer2 .el-drawer__container .el-drawer__header a:hover {
  text-decoration: none;
}
.el-drawer.drawer2 .el-drawer__container .el-drawer__header .m-r {
  margin-right: 10px;
}
.el-drawer.drawer2 .el-drawer__container .el-drawer__body {
  height: 100%;
}
.el-drawer.drawer2 .el-drawer__container .el-drawer__body .p-sm {
  padding-top: 5px;
  padding-bottom: 5px;
}
.cx-modal-box .model-toolbar {
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  margin-left: 20px;
  margin-right: 10px;
  min-height: 50px;
}
.cx-modal-box .model-toolbar .model-toolbar-btns a {
  margin-right: 10px;
  color: #999;
  border-radius: 2px;
  width: 35px;
  text-align: center;
  line-height: 30px;
  font-size: 22px;
}
.cx-modal-box .model-toolbar .model-toolbar-btns a:hover {
  transition: color 0.5s;
  color: #363f44;
}
.btn2 {
  font-weight: 500;
  border-radius: 2px;
  outline: 0 !important;
}
.btn-primary2 {
  color: #ffffff !important;
  background-color: #3280fc !important;
  border-color: #3280fc !important;
}
.btn-primary2:hover,
.btn-primary2:focus,
.btn-primary2:active,
.btn-primary2.active,
.open .dropdown-toggle.btn-primary2 {
  color: #ffffff !important;
  background-color: #3280fcc7 !important;
  border-color: #3280fc !important;
}
/* cx-model end */
.div-display-flex {
  display: flex;
  flex-direction: row;
}
/* 年选择器*/
.tb-td-date-year .YearItem {
  width: 292px;
  height: 208px;
  background: #ffffff;
  z-index: 999;
  padding: 5px;
  position: absolute;
  top: 0px;
  left: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.tb-td-date-year .YearItem .innerTop {
  text-align: center;
  display: flex;
}
.tb-td-date-year .YearItem .innerTop .glyphicon-chevron-left {
  line-height: 28px;
  width: 30px;
}
.tb-td-date-year .YearItem .innerTop .glyphicon-chevron-left,
.tb-td-date-year .YearItem .innerTop .glyphicon-chevron-right {
  line-height: 28px;
  width: 30px;
}
.tb-td-date-year .YearItem .innerTop .glyphicon-chevron-left:hover,
.tb-td-date-year .YearItem .innerTop .glyphicon-chevron-right:hover {
  line-height: 28px;
  width: 30px;
  border-radius: 2px;
}
.tb-td-date-year .year-input {
  cursor: pointer;
  height: 100%;
}
.tb-td-date-year i:hover,
.tb-td-date-year span:hover {
  background: #23b7e5;
}
.tb-td-date-year .year-input + .YearItem-show {
  display: inline;
}
.tb-td-date-year .YearItem-show:hover {
  display: inline;
}
.tb-td-date-year .YearItem-show:focus {
  display: inline;
}
.tb-td-date-year .ul-year {
  padding: 0;
  margin: 0;
}
.tb-td-date-year .ul-year > li {
  overflow: hidden;
}
.tb-td-date-year .span-year {
  float: left;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 2px;
}
.tb-td-date-year .aviveDate {
  color: #fff;
  background: #23b7e5;
}
.tb-td-date-year .systemYesr {
  color: red;
}
.tb-td-date-year .Year-pre {
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: left;
  line-height: 40px;
  font-size: 25px;
  font-weight: 500;
}
.tb-td-date-year .Year-pre::after,
.tb-td-date-year .Year-next::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.btn-default-a {
  font-size: 22px;
  border: none;
  background-color: #ffffff00;
}
.cx-dialog .cx-dialog__header {
  display: flex;
}
