:root {
  --hnav-color: #000000;
  --basis-color: #B88F58;
  --menu-subdiv-padding: 8px;
  --menu-flyout-gap: 6px;
  --menu-flyout-fade: 180ms;
}

/* 修改滚动条的样式 */
::-webkit-scrollbar {
  width: 5px;
  /* 设置滚动条宽度 */
}

/* 修改滚动条轨道的样式 */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* 滚动条轨道背景色 */
}

/* 修改滚动条滑块的样式 */
::-webkit-scrollbar-thumb {
  background-color: #888;
  /* 滚动条滑块颜色 */
  border-radius: 10px;
  /* 滚动条滑块边角半径 */
}

#layout {
  width: 100%;
  overflow-x: hidden;
}

#canvas {
  padding: 5px !important;
  background: #FFFFFF;
  /* border-radius: 11px; */
  /* box-shadow: 0px 0px 6px 0px rgba(52, 52, 112, 0.26); */
}

.horizontal #menu1 .logo {
  margin-left: 43px !important;
  margin-right: 0;
  width: 13%;
}

.logo1 {
  width: 120px;
  height: 47px;
}

.hmenu1 {
  margin-left: 8em;

}

.layui-body {
  max-width: unset !important;
  width: 100%;
  padding: 0 43px;
}

.horizontal #menu1 {
  background: #ffffff;
  width: 100%;
  height: 72px;
  padding: 0;
  border: 1px solid #d7d7d7;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: space-evenly
}

.horizontal #menu1 .logo #menu1-heading {
  color: #000000;
  margin-left: 0 !important;
}

.layui-icon-triangle-d:before {
  content: "\f286";
}

.horizontal .horizontal-nav {
  justify-content: space-evenly;
}

.horizontal .horizontal-nav .hnav-item {
  font-size: 16px !important;
  font-weight: 400;
  color: #333333;
  position: relative;
  font-family: 'PingFangHK-Regular', 'PingFang HK', sans-serif;
  padding: 8px 0.1em !important;
  font-weight: bold;
}

.submenu,
.subsubmenu,
.subsubsubmenu {
  width: auto !important
}

.horizontal .horizontal-nav .hnav-item:hover .first_title {
  color: #0085D0;
}

.first_level_sub.is-active .first_title {
  color: #0085D0;
}

.first_level_sub.is-active .first_title .triangle-down {
  border-top: 6px solid #0085D0;
}

.horizontal .horizontal-nav .hnav-item:hover::after,
.first_level_sub.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* 控制横线与文字之间的距离 */
  left: 1em;
  width: calc(100% - 2em);
  /* 横线宽度与文字保持一致 */
  height: 2px;
  /* 横线粗细 */
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%);
  /* 横线颜色 */
}

.horizontal .horizontal-nav .hnav-item:hover .submenu {
  display: block !important;
  left: 0;
}

.horizontal .hmenu1 ul {
  height: 25px !important;
}

.submenu {
  display: none !important;
  width: auto !important;
  position: relative;
  left: 0;
}

.subdiv {
  background: #ffffff;
  width: 135px;
  border-radius: 11px;
  box-shadow: 0px 0px 14px 0px rgba(88, 108, 177, 0.58);
  margin-top: 1.4em;
  padding: var(--menu-subdiv-padding);
}

/* 默认隐藏滚动条 */
.submenu > .subdiv {
  max-height: 320px;
  overflow-y: auto;
}

.horizontal .horizontal-nav .hnav-item .subdiv .hnav-item {
  font-size: 13px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 12px !important;
  line-height: 37px !important;
  margin: 3px 0 !important;
}

.horizontal .horizontal-nav .hnav-item .subdivth .hnav-item {
  position: relative;
}

.horizontal .horizontal-nav .hnav-item .subdiv .hnav-item.is-active {
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%);
  border-radius: 7px;
  color: #FFFFFF;
}

.horizontal .horizontal-nav .hnav-item .subdiv .hnav-item:hover {
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%);
  border-radius: 7px;
  color: #FFFFFF;
}

.horizontal .horizontal-nav .hnav-item .subdiv .hnav-item:hover > .subsubmenu,
.horizontal .horizontal-nav .hnav-item .subdiv .hnav-item.is-open > .subsubmenu,
.horizontal .horizontal-nav .hnav-item .subdiv .hnav-item:focus-within > .subsubmenu {
  display: block !important;
  position: fixed !important;
  transform: translateX(var(--menu-flyout-gap));
}

.horizontal .horizontal-nav .hnav-item .subdivth .hnav-item:hover > .subsubsubmenu,
.horizontal .horizontal-nav .hnav-item .subdivth .hnav-item.is-open > .subsubsubmenu,
.horizontal .horizontal-nav .hnav-item .subdivth .hnav-item:focus-within > .subsubsubmenu {
  display: block !important;
}


.subsubmenu,
.subsubsubmenu {
  display: none !important;
  z-index: 9999;
  width: auto !important;
  opacity: 1;
  transition: opacity var(--menu-flyout-fade) ease;
}

.horizontal .horizontal-nav .hnav-item.is-closing > .subsubmenu,
.horizontal .horizontal-nav .hnav-item.is-closing > .subsubsubmenu {
  opacity: 0;
  pointer-events: none;
}

.subsubsubmenu {
  position: absolute;
  top: 0;
  left: calc(100% + var(--menu-subdiv-padding));
  transform: translateX(var(--menu-flyout-gap));
}

.subsubmenu > .subdiv,
.subsubsubmenu > .subdiv {
  position: relative;
}

.subsubmenu > .subdiv::before,
.subsubsubmenu > .subdiv::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-1 * (var(--menu-flyout-gap) + var(--menu-subdiv-padding)));
  width: calc(var(--menu-flyout-gap) + var(--menu-subdiv-padding));
  display: block;
  background: transparent;
}

.subdivth,
.subdivtf {
  margin-left: 0;
  margin-top: 0;
}


.hmenu1 .first_level_sub:last-child:hover .submenu {
  left: -4em;
}

.first_title {
  padding: 0 1em;

}

.layui-nav-child {
  background: #ffffff;
  border-radius: 11px;
  box-shadow: 0px 0px 14px 0px rgba(88, 108, 177, 0.58);
}

.nav-usr .layui-nav-more {
  right: -19px;
}

.horizontal .hsysnav {
  padding-right: 63px;
  margin-top: 16px;
  width: 18%;
}

.sys-nav {
  float: right;
  right: 0 !important;
}

#usr_nav_search_box_input {
  width: 169px;
  height: 38px;
  opacity: 0.71;
  background: rgba(255, 255, 255, 0.40);
  border: 1px solid #d7d7d7;
  border-radius: 22px;
}

#menuh-1 .layui-nav-item {
  display: block !important;
}

.layui-nav .layui-nav-item a {
  color: #000000;
}

#menuh-1 .layui-nav-item span {
  font-size: 13px;
}

#canvas .etitle {
  display: none !important;
}

.layui-tab-brief>.layui-tab-title .layui-this {
  color: #000;
}

.layui-tab-brief>.layui-tab-title .layui-this:after {
  border-bottom: 2px solid #B98F57;
}

.layui-btn {
  background-color: #0085D0;
  background-image: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%);
  border-radius: 7px;
}

.layui-btn-primary {
  background: #ffffff;
}

#menuh-1 .back {
  display: none !important;
}

.left-menu {
  padding: 0 12px 0 0;
  position: fixed;
  margin-top: 42px;
}

#canvas_div.layui-col-md10 {
  margin-left: calc(16.66666667% + 12px);
}

.left-menu .layui-nav {
  padding: 10px;
  border-radius: 11px;
  box-shadow: 0px 0px 6px 0px rgba(52, 52, 112, 0.26);
  background: #FFFFFF;
  max-height: calc(80vh - 100px);
  overflow-y: auto;
}

#menuh-1 .layui-this {
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%) !important;
  border-radius: 7px !important;
}

.horizontal .layui-nav .layui-this>a,
.horizontal .layui-nav .layui-this>a:hover {
  background: unset !important;
}

#menuh-1 .layui-this a {
  color: #FFFFFF;
}

.left-menu .layui-nav .layui-this:after {
  height: 0px;
}

.layui-nav-bar {
  display: none !important;
}

#menuh-1 li:not(.layui-this):hover a {
  color: #000 !important;
}

#menuh-1 li:not(.layui-this):hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  left: 0.5em;
  width: calc(100% - 1em);
  height: 2px;
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%);
}

.horizontal #menu1 .layui-nav {
  display: flex;
}

.horizontal .layui-nav .layui-nav-item {
  line-height: 40px !important;
}

#breadcrumb {
  width: 100%;
  max-width: unset !important;
  padding-left: 43px !important;
  border-bottom: unset !important;
}

/*首页调整*/
#shortCut~#desktop-search-box-wrapper {
  display: none;
}

#canvas>div:has(#shortCut) {
  width: 100%;
  background: #ffffff;
  border-radius: 11px;
  box-shadow: 0px 0px 6px 0px rgba(52, 52, 112, 0.26);
  margin-top: 10px;
  margin-bottom: 12px;
}

#shortCut {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-top: 23px;
  padding-bottom: 25px;
  padding-left: 16px;
  padding-right: 16px;
}

.shortcut-btn {
  border: 0;
  margin: 0;
  padding: 0;
  height: auto;
  width: 75px;
}

.shortcut-btn:hover {
  background: transparent;
  border-color: transparent;
  color: #666666;
}

.shortcut-btn .ion {
  margin-top: 0;
  margin-bottom: 0;
}

.shortcut-btn p.shortcut-name {
  margin-bottom: 0;
  color: #333333;
}

.layui-layer .menu-mobile td.menu-mobile-item a span {
  width: 49px;
  height: 48px;
  border-radius: 10px;
  line-height: 48px;
}

.menu-mobile .ion,
#shortCut .ion {
  color: #fff !important;
  width: 49px;
  height: 48px;
  border-radius: 10px;
  line-height: 48px;
}


.horizontal .block .block_c {
  background: #ffffff;
  border-radius: 11px;
  box-shadow: 0px 0px 6px 0px rgba(52, 52, 112, 0.26);
  border-top-left-radius: 11px;
  margin-right: 12px;
  height: inherit;
}

.block_c>hr {
  display: none;
}

.block h4 {
  color: #5D6684;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}

.desktop-flex-wrapper .block h4,
.block_box .block h4 {
  font-weight: bold;
}

.block_c h4 span {
  color: #B88F58;
}

.layui-tab-brief>.layui-tab-title .layui-this {
  color: #333333;
}

.layui-tab-brief>.layui-tab-more li.layui-this:after,
.layui-tab-brief>.layui-tab-title .layui-this:after {
  border-bottom: 2px solid #B98F57;
}

/* .layout-home-index table.dataTable tbody td, */
/* .layout-home-index table.dataTable th { */
/* border-left: 0; */
/* border-right: 0; */
/* } */

.layout-home-index table.dataTable th {
  background: #f9f9f9;
  border-top: 1px solid rgba(217, 217, 217, 0.60);
  border-bottom: 1px solid rgba(217, 217, 217, 0.60);
}

/* .block_c .show-more {
  width: 84px;
  height: 32px;
  border: 1px solid #dbe3e6;
  border-radius: 2px;
  top: -55px;
  right: 0;
  position: absolute;
  text-align: center;
  line-height: 32px;
  color: #5F6569;
  font-size: 14px;
}

.block_c .show-more {
  display: none !important;
} */

.horizontal .hmenu1 {
  margin-top: 16px;
  margin-left: 0em;
  width: 70%;
}

.horizontal .layui-nav .layui-nav-item.nav-usr {
  line-height: 25px !important;
}

.hsysnav #usr_nav_search_box::before {
  content: "\f21f";
  display: inline-block;
  font-family: "Ionicons";
  font-size: 22px;
  position: absolute;
  line-height: 36px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  color: #CCC;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  padding-left: 10px;
}

.hsysnav #usr_nav_search_box_input {
  padding-left: 30px;
}

.search-input:hover {
  border-color: #B98F57 !important;
}

.horizontal #breadcrumb {
  line-height: 20px;
  padding: 12px 0 6px 43px;
}

.horizontal #breadcrumb .b-item {
  color: #4e4e4e;
  cursor: default;
}

#breadcrumb .b-item.ion-ios-arrow-right:before {
  padding-right: 8px;
  font-weight: bold;
  color: #4e4e4e;
}

#breadcrumb .b-item .breadcrumb-clickable {
  cursor: pointer;
  border-bottom: 1px solid #0085D0;
}

.horizontal #breadcrumb .b-item:after {
  display: none;
}

.horizontal .layui-body #canvas {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.horizontal .layui-body #canvas .zn100 {
  width: 100% !important;
}

.horizontal .layui-body .desktop-box__right .block_c,
.horizontal .layui-body .block3 .block_c {
  margin-right: 0 !important;
}

.horizontal .block-content .pipeline-td.pipeline-td-3 {
  width: 32%;
  height: 345px;
  background: #dfe2ea;
  border-radius: 2px;
  margin-left: 1%;
}

.horizontal .block-content .poolbox {
  background: #dfe2ea;
  margin-top: 0;
  margin-bottom: 0;
}

.horizontal .poolbox li>span {
  background: #ffffff;
  height: 25px;
  line-height: 25px;
  text-align: left;
}

.calendar-mine table [selected="selected"] .bk {
  color: #ffffff;
}

.block-content .poolbox .akor {
  color: #414750;
}

.news_tab ul li.on {
  color: #B88F58;
  border-bottom: 4px solid #B88F58;
  width: 100%;
}

.calendar-mine table .day[selected=selected] {
  border-color: transparent;
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%);
}

/*列表页面调整*/
#layout {
  background: #eef7fc;
}

.content-main .layui-form.ajax {
  margin-top: 0px;
  padding: 12px;
  background: #ffffff;
  border-radius: 11px;
  box-shadow: 0px 0px 6px 0px rgba(52, 52, 112, 0.26);
  margin-top: 6px;
}

.content-main.flow-index-content .layui-form.ajax {
  padding: 12px 12px 36px 12px;
}

.content-main .list-header-wrap .list-search-full.layui-btn.layui-btn-primary {
  border: 0;
  color: #586CB1;
}

.content-main .list-search-wrap .list-header-btns .layui-btn {
  border: 1px solid #dbe3e6;
  border-radius: 2px;
  color: #5F6569;
}

.content-main .list-search-wrap .list-header-btns #btns_top_boxer .layui-btn,
.content-main .layui-btn-primary.layui-btn-small {
  color: #ffffff;
}

.content-main .layui-btn-primary.layui-btn-small.layui-btn {
  color: #555;
}

.content-main .list-search-input:hover {
  border-color: #B98F57 !important;
}

.content-main #btns_top_boxer .layui-btn {
  background-image: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%);
  border-radius: 2px;
  border: 0;
}

/* .content-main table.dataTable tbody td { */
/* border-left: 0; */
/* border-right: 0; */
/* } */

.content-main table.dataTable tbody td {
  color: #5f6569;
}

.content-main table.dataTable th {
  color: #252c31;
  background-color: #f9f9f9;
}

.content-main .layui-table:not([no-even]) tr:nth-of-type(even),
.content-main .layui-table tbody tr:hover {
  background-color: #ffffff;
}

.content-main .dataTables_wrapper .dataTables_info {
  float: right;
  margin-left: 10px;
  padding-top: 2px;
}

.content-main .dataTables_wrapper .dataTables_paginate {
  display: flex;
  justify-content: flex-end;
  margin-right: 10px;
}

#layout .content-main .list-table .paginate_button {
  background: #ffffff;
  border: 1px solid #dbe3e6;
  border-radius: 2px;
  color: #252C31;
}

#layout .content-main .list-table .paginate_button:active {
  box-shadow: none;
  border-color: #B98F57;
}

.content-main .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.content-main .dataTables_wrapper .dataTables_paginate .paginate_button:not(.disabled):hover {
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%) !important;
  color: #ffffff !important;
}

.content-main .paginate_button.previous,
.content-main .paginate_button.next {
  color: #252C31;
  width: 35px;
  height: 31px;
}

.content-main .paginate_button.previous .ion,
.content-main .paginate_button.next .ion {
  display: flex;
  font-size: 13px;
}

.content-main .layui-form select.pager {
  display: inline-block;
  width: 60px;
  height: 31px;
  border: 1px solid #dbe3e6;
  border-radius: 2px;
}

@media screen and (min-width: 480px) {

  .pepm-form .rel_data .layui-table td .rel_edit::before,
  .v-table-rightview-special-border .v-table-body-cell .ion-edit::before,
  table.dataTable tbody tr .ion-edit::before {
    content: "\7f16\8f91";
    font-size: 13px;
    color: #586CB1;
    font-weight: 700;
  }

  .b2table .list-table .ion-edit::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: #ddd;
    margin: 0 10px;
    top: 3px;
    position: relative;
  }

  .pepm-form .rel_data .layui-table td .rel_del::before,
  .v-table-rightview-special-border .v-table-body-cell .ion-trash-a::before,
  table.dataTable tbody tr .ion-trash-a::before {
    content: "\5220\9664";
    font-size: 13px;
    color: #586CB1;
    font-weight: 700;
  }

  .list-table .layui-icon.ion-edit {
    margin-right: 0 !important;
  }
}


.triangle-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #0085D0;
  position: relative;
  top: -10px;
  left: 7px;
  display: none;
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid black;
  position: relative;
  top: 10px;
  left: 7px;
}

.horizontal .horizontal-nav .hnav-item:hover .triangle-up {
  display: inline;
}

.horizontal .horizontal-nav .hnav-item:hover .triangle-down {
  display: none;
}

/* .list-header-wrap .list-header-btns .ion-share:before,
.list-header-wrap .list-header-btns .ion-trash-a:before {
  content: '';
} */

/* .pepm-action-btns.layui-btn-group.noprint.pepm-action-btns--bottom { */
/* position: fixed; */
/* bottom: 5%; */
/* box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.15); */
/* border-radius: 6px; */
/* } */

.pepm-action-btns.layui-btn-group.noprint.pepm-action-btns--bottom a:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pepm-action-btns.layui-btn-group.noprint.pepm-action-btns--bottom a:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

#etitle {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  padding-left: 2px;
}

#breadcrumb .b-item:last-child {
  color: #0085D0;
  font-weight: bold;
}

/* .list-table .tr_count th span,
.list-table .tr_count th div {
  color: #EA5455;
} */

.doc-admin {
  padding: 12px;
}

.doc-admin .layui-btn-group.top-btn-group .layui-btn {
  height: 32px;
  line-height: 32px;
  border-radius: 2px;
  margin-right: 4px !important;
}

.doc-admin .layui-btn-group .btn-upload-dir,
.doc-admin .layui-btn-group .btn-upload-file {
  background: #fff;
  color: #000000;
  border: 1px solid #dbe3e6;
}

.Comment .ion-chatbox-working {
  color: #B88F58;
}

.Comment h5,
.layui-layer-content:not(#layui-layim) h5 {
  color: #333;
  padding: 8px 12px;
}

#new-comment {
  padding: 0 12px;
}

.comment-container {
  background: #ffffff;
}

.comment-frame .comment-control input[type=submit] {
  padding: 0px 20px;
  height: 32px;
}

#new-comment .comment-form,
.comment-list>li {
  border-bottom: none;
}

.entity_info,
#canvas>.layui-form,
#canvas>.doc-admin {
  box-shadow: 0px 0px 6px 0px rgba(52, 52, 112, 0.26);
  border-radius: 11px;
}

#canvas>.layui-form .rel_data_btn.noprint {
  margin-top: 10px;
  text-align: right;
}

#canvas>.layui-form {
  background-color: #ffffff;
}

.layui-layer-modal .layui-layer {
  border-radius: 11px;
}

.layui-layer-title {
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}

.layui-layer-modal .layui-layer .layui-layer-content {
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}

.pepm-table .label {
  color: #5F6569;
  background: #F9FAFD;
}

.pepm-table td,
.pepm-table th {
  border: solid 1px #E5E9EE;
}

form .pepm-table .value {
  background: #f7f9fe;
}

.layui-btn.layui-btn-disabled {
  color: #BCBEC2 !important;
  background: #F4F4F5 !important;
}

#canvas>.doc-admin {
  background: #ffffff;
  margin-top: 5px;
  width: inherit;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%) !important;
  color: #ffffff !important;
  border: 1px solid #dbe3e6;
}

.dataTables_filter label:before {
  line-height: 36px;
}

#search-box.dataTables_filter.layui-form {
  box-shadow: none;
}

.left-menu .layui-nav[data-id^="menuh-search-index-"] {
  display: none;
}

.desktop-flex-wrapper .flex-item>.block.block--100 {
  margin-bottom: 16px;
}

/*行研摘录关键词不换行*/
.desktop-flex-wrapper .block_c [data-lc-label-type]:not(.select2-results__option) {
  flex-wrap: nowrap;
}


/*项目概览调整*/
.horizontal .block-content .pipeline-td.pipeline-td-4 {
  width: 23.75%;
  height: 345px;
  background: #dfe2ea;
  border-radius: 2px;
  margin-left: 1%;
  margin-bottom: 1%;
}

h2.pepm-title::before {
  content: "";
  width: 3px;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  border-top: 18px solid #0085d0;
  margin-right: 8px;
}

h2.pepm-title {
  padding-left: 0px;
}


/*2024-07525 首页UI调整*/
@media (min-width: 768px) {
  [data-url="home/banner"] {
    min-height: 165px;
  }

  .horizontal [data-url="home/banner"].block .block_c {
    background: transparent;
    box-shadow: none;
  }

  .horizontal [data-url="home/banner"] .block-content,
  .horizontal [data-url="home/banner"] .ajax_block {
    height: inherit;
  }

  #canvas>div:has(#shortCut) {
    margin: 0;
  }

  #shortCut.shortcut {
    display: none;
  }

  #canvas {
    background: transparent;
  }

  .horizontal .layui-body {
    overflow-y: hidden;
  }

  .horizontal .block {
    margin-bottom: 12px;
  }

  .horizontal .block h4 {
    color: #333333;
  }

  .horizontal .block_box .block_c span.ion {
    color: #0085D0;
  }

  #tablist .tablist-btn {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #tablist .tablist-btn:hover {
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
    transform: translateY(-6px);
    border-radius: 5px;
  }

  .block_box .block_c {
    min-height: auto;
  }

  [data-url="home/tab_shortcut"].block,
  [data-url="home/tab_shortcut"].block_box .block_c {
    min-height: 163px;
  }

  #tablist {
    padding-top: 12px;
  }

  #tablist .border-b {
    border-bottom: none;
    margin-left: 15px;
    color: #333333;
    background-color: #F2F3F5;
    width: max-content;
    border-radius: 6px;
    padding: 3px;
  }

  #tablist .tablist-tab__item {
    padding: 3px 9px;
    position: relative;
    border-radius: 4px;
    font-size: 14px;
  }

  #tablist .tablist-tab__item::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 13px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 6px;
  }

  #tablist .tablist-tab__item.tablist-tab__item--cur {
    border-bottom: none;
    color: #0085D0;
    background-color: #ffffff;
  }

  #tablist .tablist-tab__item:last-of-type::after,
  #tablist .tablist-tab__item.tablist-tab__item--cur::after {
    display: none;
  }

  #tablist .tablist-tab__item.tablist-tab__item--cur::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 13px;
    background-color: #F2F3F5;
    position: absolute;
    left: -1px;
    top: 6px;
  }

  #tablist .tablist-btn {
    height: auto;
    padding: 0 7px;
    justify-content: flex-start;
  }

  #tablist .tablist-btn:hover {
    border-color: transparent !important;
    background-color: #fff !important;
  }

  #tablist .tablist-btn span:nth-of-type(2) {
    margin-top: 5px;
  }

  #tablist .tablist-btn:hover span:nth-of-type(2) {
    color: #1D2129;
  }

  #tablist .tablist-btn .ion {
    width: 49px;
    height: 48px;
    background: linear-gradient(135deg, #63d0e7, #11b0d2);
    border-radius: 10px;
    color: #ffffff;
    line-height: 48px;
  }

  #tablist .tablist-btn .ion-soup-can {
    background: linear-gradient(135deg, #a47ef0, #834feb);
  }

  #tablist .tablist-btn .ion-ios-people {
    background: linear-gradient(135deg, #7cd398, #4dc474);
  }

  .layui-tab.layui-tab-brief.notice {
    position: relative;
    margin: 0;
  }

  .ajax_block .layui-tab-title.notice {
    background-color: #f2f3f5;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    width: max-content;
    padding: 3px;
    margin-left: 12px;
    height: auto;
    margin-bottom: 14px;
  }

  .layui-tab-brief>.layui-tab-title .notice_ty {
    padding: 3px 9px;
    position: relative;
    border-radius: 4px;
    font-size: 14px;
    line-height: normal;
  }

  .layui-tab-brief>.layui-tab-title .notice_ty.layui-this {
    color: #0085D0;
    background-color: #ffffff;
  }

  .layui-tab-brief>.layui-tab-title .notice_ty.layui-this:after {
    display: none;
  }

  .notice_box.box_notice_ty .show-more {
    margin-top: 0 !important;
    width: 66px;
    height: 32px;
    background: #ffffff;
    border-radius: 2px;
    color: #0085D0;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 10px;
  }

  [data-url="home/images"] {
    position: relative;
  }

  .horizontal [data-url="home/images"] .block_c {
    margin-right: 0;
  }


  .ajax_block #flows_center .layui-tab-title {
    background-color: #f2f3f5;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    width: max-content;
    padding: 3px;
    margin-left: 12px;
    height: auto;
    margin-bottom: 14px;
  }

  .ajax_block #flows_center .layui-tab-title li {
    padding: 3px 9px;
    position: relative;
    border-radius: 4px;
    font-size: 14px;
    line-height: normal;
  }

  .ajax_block #flows_center .layui-tab-title .layui-this {
    color: #0085D0;
    background: #ffffff;
  }

  .ajax_block #flows_center .layui-tab-title li:after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 13px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 6px;
  }

  .ajax_block #flows_center .layui-tab-title .layui-this::after,
  .ajax_block #flows_center .layui-tab-title li:last-of-type::after {
    display: none;
  }

  #flows_center.layui-tab {
    margin-top: 0;
  }

  .ajax_block #flows_center .layui-tab-title .layui-badge {
    top: -1px;
  }

  [data-url="flows_center/mode"] .block-content {
    position: relative;
  }

  [data-url="home/notice_zf"] {
    position: relative;
  }

  .horizontal [data-url="home/notice_zf"] .block_c {
    margin-right: 0;
  }

  .news_tab ul li.on {
    color: #0085D0;
    border-bottom: 4px solid #0085D0;
  }

  .calendar_list .footer .list .event-item.data {
    border-left: 2px solid #0085D0;
  }

  .calendar-mine table .day.schedule {
    background-color: transparent;
    position: relative;
  }

  .calendar-mine table .day.schedule {
    background-color: #CDECFD;
  }

  .calendar-mine table .day.schedule.hide_schedule::after {
    display: none;
  }

  .block_box .block_c .show-more {
    position: absolute;
    right: 12px;
    top: 10px;
    color: #0085D0;
    font-size: 14px;
    width: 66px;
    height: 32px;
    margin-right: 10px;
  }

  .left-menu .layui-nav .layui-nav-item a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
  }

  .enumerate:not(.select_multi) .enumerate_body .items .layui-form-checkbox.layui-form-checked span {
    background-color: #0085D0;
  }

  .content-main .list-search-input:hover {
    border-color: #0085D0 !important;
  }

  .pepm-action-btns--float.pepm-action-btns--bottom {
    position: fixed;
    ;
  }

  .list-header-btns .layui-btn.layui-btn-primary.layui-btn-small .ion {
    font-size: 12px !important;
  }

  #menu1 .hsysnav .nav-msg .msg-badge {
    margin-top: -18px !important;
    color: #ffffff !important;
  }

  .horizontal #menu1 .layui-nav.sys-nav li.layui-nav-item.nav-msg>a {
    padding: 0 15px 0 10px !important;
  }

  .horizontal .layui-nav .nav-msg.layui-this a>span.msg-badge.msgbadge {
    color: #ffffff !important;
  }

  .horizontal .layui-nav .nav-msg.layui-this a>span.sys-nav-msg-icon {
    color: #5F6569 !important;
  }

  .horizontal .layui-nav .layui-nav-item.nav-msg.layui-this:after {
    background: transparent !important;
  }

  #fixedmenu {
    right: 30px;
    bottom: 50px;
  }

  #fixedmenu #gotop {
    color: transparent;
    background: url(/static/images/gotop_harvest.svg) no-repeat #fff;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    transform: scale(1.1, 1.1);
    border-radius: 50%;
  }

  .boardbox .pipeline-box.pipeline .board {
    border: none;
    background: #eef7fc;
  }

  .boardbox .board .poolbox li span {
    position: relative;
  }

  .boardbox .board .poolbox li span:hover::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background-color: #1279a1;
  }

  .boardbox #typform {
    background-color: transparent;
  }

  .pipeline-box h6 {
    padding: 10px 15px;
    color: #ffffff;
  }

  .pipeline-box h6 .akor {
    color: #ffffff;
  }

  .boardbox .board:nth-child(1) h6 {
    background-color: #fa5858;
  }

  .boardbox .board:nth-child(2) h6 {
    background-color: #e5be5a;
  }

  .boardbox .board:nth-child(3) h6 {
    background-color: #3ba272;
  }

  .boardbox .board:nth-child(4) h6 {
    background-color: #25bf89;
  }

  .boardbox .board:nth-child(5) h6 {
    background-color: #24d5c9;
  }

  .boardbox .board:nth-child(6) h6 {
    background-color: #5d5cd0;
  }

  .boardbox .board:nth-child(7) h6 {
    background-color: #6573f2;
  }

  .boardbox .board:nth-child(8) h6 {
    background-color: #1890ff;
  }

  .boardbox .board:nth-child(9) h6 {
    background-color: #fa5858;
  }

  .boardbox .board:nth-child(10) h6 {
    background-color: #e5be5a;
  }

  .boardbox .board:nth-child(11) h6 {
    background-color: #3ba272;
  }

  .boardbox .board:nth-child(12) h6 {
    background-color: #25bf89;
  }

  .boardbox .board:nth-child(13) h6 {
    background-color: #24d5c9;
  }

  .boardbox .board:nth-child(14) h6 {
    background-color: #5d5cd0;
  }

  .boardbox .board:nth-child(15) h6 {
    background-color: #6573f2;
  }

  .boardbox .board:nth-child(16) h6 {
    background-color: #1890ff;
  }

  .layui-nav .layui-nav-child dd.layui-this,
  .layui-nav .layui-this,
  .layui-nav .layui-this>a,
  .layui-nav .layui-this>a:hover {
    background: #0085D0 !important;
  }

  .flow-body .sidebar .layui-timeline-axis .icon.ion-ios-clock,
  .flow-body .flow_item .flow-node-title .flow-node-icon .icon.ion-ios-clock {
    color: #0085D0;
  }

  .flow-body .sidebar .layui-timeline-axis .icon.ion-record {
    color: #E2E2E2;
  }
}

@media (min-width: 1499px) {
  .horizontal .hmenu1 {
    width: 65%;
  }

  .horizontal .horizontal-nav .hnav-item {
    font-size: 15px !important;
  }
}

/* 首页流程中心 */
.flow_center_state {
  display: inline-block;
  padding: 0 5px;
  min-width: auto;
  text-align: center;
  font-size: 12px;
  height: 18px;
  border-radius: 2px;
}

.flow_center_state.done {
  background: rgba(95, 202, 130, 0.12);
  color: #5FCA82
}

.flow_center_state.nodone {
  background: rgba(76, 130, 231, 0.12);
  color: #4C82E7;
}

.home_breadcrumb {
  margin-top: 0 !important;
}

.horizontal .layui-nav .nav-msg.layui-this a>span {
  color: #0970C1 !important;
}

.horizontal #menu1 .layui-nav li>a,
.horizontal #menu1 .layui-nav li>a>span {
  color: #5F6569;
}

.horizontal .layui-nav .layui-this:after,
.horizontal .layui-nav-bar,
.horizontal .layui-nav-tree .layui-nav-itemed:after {
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%) !important;
}

.horizontal .layui-nav .layui-this {
  background: unset !important;
}

.calendar_list .all {
  display: none;
}

.calendar_list .heads {
  display: none;
}

.horizontal #menu1 .logo1{
  cursor: pointer;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
  background: linear-gradient(90deg, #0273bd 2%, #7cc4ee 99%) !important;
}

#cal_tab .layui-nav {
  background-color: #fff;
}

#cal_tab .layui-nav a:hover  {
  color: #000000 !important;
}
#cal_tab [name='search_key']{
  display: none !important;
}

.horizontal #occupy-space {
  background: #ffffff;
  height: 72px;
  width: 100%;
}

