.cy_select_box {
  position: absolute;
  max-height: 200px;
  overflow: hidden;
  overflow-y: auto;
  border: #e6e6e6 1px solid;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #FFF;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.2)
}

.cy_select_box li {
  line-height: 40px;
  text-indent: 12px;
  font-size: 14px;
  padding: 0 12px;
  border-bottom: #f5f5f5 1px solid;
}

.cy_select_item_cur {
  background: #f0f8fa;
  color: #255a7e;
}

.cy_select_box li:hover {
  background: #f5f5f5;
  cursor: pointer;
  user-select: none;
}

.cy_select_box li:last-child {
  border-bottom: none;
}

.cy_tools_tabs {
  border-bottom: #e6e6e6 1px solid;
}

.cy_tools_tab_item {
  font-size: 18px;
  font-weight: bold;
  padding: 0 10px;
  padding-bottom: 14px;
  float: left;
  margin-right: 30px;
  cursor: pointer;
  user-select: none;
}

.cy_tools_tab_item_cur {
  color: #3b7ed4;
  border-bottom: #3b7ed4 2px solid;
}

.cy_tools_table {
  width: 100%;
  border-collapse: collapse;
}

/* 10月9日新增  树形结构 */

.cy_tools_tree_item_activate_not .cy_tools_tree_children {
  display: none !important;
  transition: all 0.5s;
}

.cy_tools_tree_item_activate .cy_tools_tree_children {
  display: block;
  transition: all 0.5s;
}

.cy_tools_tree_children {
  transition: all 0.5s;
}

.cy_tools_tree_item {
  line-height: 32px;
  vertical-align: middle;
  white-space: nowrap;
  transition: all 0.5s;
}

.cy_tools_tree_item img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.cy_tools_tree_item .cy_tools_tree_item_icon {
  margin-right: 8px;
}

.cy_tools_tree_item .cy_tools_tree_item_line {
  margin-left: 5px;
  margin-right: 8px;
}

.cy_tools_tree .cy_tools_tree_item_icon {
  cursor: pointer;
}

.cy_tools_tree span {
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  padding: 0 7px;
}

.cy_tools_tree span:hover {
  color: #333;
  background: #eff0f2;
}

.cy_tools_tree span:hover::before {
  content: '';
  position: absolute;
  height: 32px;
  width: 2px;
  margin-left: -7px;
  background: #3a81c9;
}

.cy_tools_tree_item_cur {
  color: #FFF;
  background: #3a81c9;
}

/* 10月18日  新增弹框组件样式 */

.cy_popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999998;
}

.cy_popup_content {
  position: relative;
  height: 100%;
}

.cy_popup_box {
  top: 50%;
  left: 50%;
  position: fixed;
  background: #FFF;
  border-radius: 6px;
  overflow: hidden;
  z-index: 9999999;
}

.cy_popup_box_titleBox {
  height: 36px;
  line-height: 36px;
  margin: 0 15px;
  font-size: 16px;
  color: #333;
  border-bottom: #d5d5d5 1px solid;
}

.cy_popup_box_titleBox_title {
  display: inline-block;
}

.cy_popup_box_titleBox_closeIcon {
  position: absolute;
  top: 10px;
  right: 10px;
  user-select: none;
  cursor: pointer;
  line-height: 10px;
}

.cy_popup_box_titleBox_closeIcon img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.cy_popup_box_ContentBox {
  padding: 15px 20px;
  font-size: 14px;
}

.cy_popup_box_BtnsBox {
  border-top: #d5d5d5 1px solid;
  text-align: center;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 10px;
  background: #f8f8f8;
}

.cy_popup_box_BtnsBox div {
  display: inline-block;
  margin-left: 10px;
  border: #d5d5d5 1px solid;
  border-radius: 5px;
  text-align: center;
  height: 38px;
  font-size: 16px;
  line-height: 38px;
  cursor: pointer;
  user-select: none;
}

.cy_popup_box_btn_item {
  display: inline-block;
  margin-left: 10px;
  border-radius: 6px;
  text-align: center;
  height: 38px;
  font-size: 16px;
  line-height: 38px;
  cursor: pointer;
  user-select: none;
  padding: 0 15px;
  min-width: 100px;
}

.cy_popup_title_box {
  position: relative;
  background: url(../images/cy_tools/popup/popup_title_bg.png) no-repeat;
  background-size: 100% 108px;
  height: 108px;
  color: #FFF;
  text-align: center;
  font-size: 36px;
  padding-top: 23px;
}

.cy_popup_content_box {
  padding: 25px;
  box-sizing: border-box;
}

.cy_popup_title_icon {
  width: 60px;
  height: 60px;
  vertical-align: middle;
  margin-right: 20px;
}

/* <<<====== 详情页 BEGIN ======>>> */
.article-nav__tools {
  text-align: right;
  margin-bottom: 20px;
  color: #444;
  font-size: 14px;
}

.article-nav__tools .icon-tool {
  padding: 0 5px;
  cursor: pointer;
}

.article-nav__tools .icon-tool:hover {
  color: #1966b4;
}

.article-nav__tools .icon-tool:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(../images/icon_tool_enlarge.png) no-repeat;
  vertical-align: middle;
  margin-right: 5px;
}


.icon-tool.icon-zoom-larger:before {
  background-image: url(../images/icon_tool_enlarge.png);
}

.icon-tool.icon-zoom-smaller:before {
  background-image: url(../images/icon_tool_zoom.png);
}

.icon-tool.icon-print:before {
  background-image: url(../images/icon_tool_print.png);
}

.article__title {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  color: #000;
}

.article__subTitle {
  padding: 20px 0;
  font-size: 14px;
  color: #8f8f8f;
  text-align: center;
}
/* <<<====== 详情页 END ======>>> */