@charset "UTF-8";
/*---------------------------通用变量---------------------------------*/
/*----------符号字体----------*/
/*----------字体大小----------*/
/*----------行高大小----------*/
/*----------基本颜色  红-黄-蓝-绿-灰----------*/
/*----------按钮悬停、按下颜色----------*/
/*----------公共样式--------*/
/*----------表格---------*/
/*---------------------------具体页面变量---------------------------------*/
/*----------index页 顶栏&侧栏---------*/
/*----------index页 顶栏阴影---------*/
/*----------index页 背景色---------*/
/*----------index一级导航 默认状态---------*/
/*----------index一级导航 悬停状态---------*/
/*----------index一级导航 选中状态---------*/
/*----------index二级导航 默认状态---------*/
/*----------index二级导航 悬停状态---------*/
/*----------index二级导航 选中状态---------*/
* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
  
body {
  color: #333333;
  font-size: 13.5px;
  font-family: "microsoft yahei";
  background-color: #fff;
  min-width: 1500px;
}

pre {
  font-family: "microsoft yahei";
  line-height: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

img {
  display: block;
}

.pointer {
  cursor: pointer;
}

.text-right {
  text-align: right;
}

.icon {
  width: 16px;
  height: 16px;
}

.middle {
  vertical-align: middle;
}

svg.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

/*----------谷歌浏览器修改滚动条样式----------*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #dcdfe6;
  border-radius: 3px;
}

/*----------弹性盒模型----------*/
.flex {
  display: flex;
  flex-direction: row;
}

.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-end {
  align-items: flex-end !important;
}

.flex-center-end {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-center-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.flex-center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-center-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.flex-start {
  align-items: flex-start;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-reverse {
  display: flex;
  flex-direction: row-reverse;
}

/*----------字体颜色  红-黄-蓝-绿-灰----------*/
.error-font {
  color: #fa4338 !important;
}

.warn-font {
  color: #ffa70f !important;
}

.primary-font {
  color: #0170ee !important;
}

.success-font {
  color: #1ece59 !important;
}

.gray-font {
  color: #888 !important;
}

.icon-font {
  color: #c0c4cc !important;
}

.cancel-font {
  color: #c0c4cc !important;
  cursor: default !important;
}

/*----------------element-ui公共组件样式修改------------------*/
/* 输入框 */
.el-input .el-input__clear {
  line-height: 40px;
}

.el-table {
  border: 1px solid #E4E7ED;
  border-bottom: none;
  width: 98% !important;
  margin: 0 auto;
  font-size: 13px;
}

.el-table button {
  padding: 0;
}

.el-table td, .el-table th {
  padding: 10px 0;
}

/* 表格-----修改标题颜色、背景颜色 */
.el-table thead {
  color: #909399 !important;
}

.el-table__row--striped td {
  background: #f6fbff !important;
}

/* 表格-----去除横向border */
.el-table th.is-leaf {
  border-bottom: none;
}

/* 表单-----表单label+padding */
.el-form-item__label {
  padding-right: 7px;
  font-size: 13px;
}

/* 表单-----textarea改成和input一样的样式 */
.el-textarea__inner {
  font-family: "microsoft yahei";
  padding: 8px 15px;
}

/* 表单-----选择框报错 */
.error-input input, .error-input textarea {
  border-color: #fa4338 !important;
}
/* 分页------分页文字加Border */
.el-pager li {
  border-radius: 2px;
  background: #f5f5f5;
  font-weight: lighter !important;
}

/* 分页------'上一页' '下一页'文字悬停 + 禁止点击颜色 */
.page-item {
  margin: 15px;
  position: absolute;
  right: 20px;
  bottom: 0;
}

.el-pagination {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0;
  color: #4B4B4B;
  font-weight: 400;
}

.el-pagination__total {
  margin: 0 15px 0 32px;
  display: inline-block !important;
}

.el-pagination__sizes {
  display: none !important;
}

.el-pagination__jump {
  margin-left: 7px;
}

.btn-prev, .btn-next {
  background-color: #f5f5f5;
}

.el-message-box__content {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.el-message-box__btns {
  padding-top: 15px;
}

.el-message-box__btns .el-button--small {
  padding: 8px 15px;
}

.el-dialog__wrapper .el-button--default span {
  color: #c0c4cc;
}

.el-dialog__wrapper .el-button--default:hover span {
  color: #0170ee;
}

/* 进度条 */
.el-progress__text {
  color: #0170ee;
  font-size: 24px;
  padding-left: 10px;
}

/* 审核按钮颜色的改变*/
.cancelButton {
  background-color: #fa4338;
  color: #fff;
  border-color: #fa4338;
}

.cancelButton:hover {
  background-color: #fa4338;
  color: #fff;
  border-color: #c0c4cc;
}

.confirmButton:hover {
  border-color: #c0c4cc;
}

/* 状态文字 */
.status-item {
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  border: 1px solid #dcdfe6;
  padding: 0 6px !important;
  display: inline;
  border-radius: 4px;
}

.error-status {
  color: #F56C6C;
  border-color: #FDE2E2;
  background: #FEF0F0;
}

.success-status {
  color: #67C23A;
  border-color: #E1F3D8;
  background: #F0F9EB;
}

/* disabled按钮 */
.el-button--success.is-plain.is-disabled, .el-button--warning.is-plain.is-disabled, .el-button--danger.is-plain.is-disabled, .el-button--text.is-disabled, .el-button--primary.is-plain.is-disabled {
  color: #c0c4cc !important;
  background: transparent !important;
  border: none !important;
}

.el-button--text.is-disabled:hover, .el-button--text.is-disabled:active {
  color: #c0c4cc !important;
}

.el-button--text {
  color: #0170ee;
}

.el-button--primary {
  background-color: #0170ee;
}

.el-button--primary:hover, .el-button--primary:focus {
  background-color: #5196ff;
}

button.is-disabled {
  background: #c0c4cc !important;
}

/* plain按钮 */
.el-button--success.is-plain, .el-button--warning.is-plain, .el-button--danger.is-plain, .el-button--primary.is-plain {
  background: #fff;
}

/* mini按钮 */
.el-table .el-button--mini, .el-button--mini {
  padding: 5px 10px;
  border-radius: 4px;
}

/*---------------------------自定义组件公共样式---------------------------*/
/* error页 */
.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 30px;
  box-sizing: border-box;
}

.error-page .error-item {
  text-align: center;
}

.error-page img {
  max-width: 500px;
}

.error-page p {
  font-size: 24px;
  padding: 50px 0 30px;
}

.error-page .btn {
  font-size: 20px;
}

/*
 * 通用弹框
 *
 */
/* 弹框主体大小 位置 */
.default-dialog .el-dialog {
  max-height: 80vh;
  margin: 0 auto;
  overflow-y: auto;
  border-radius: 8px;
  padding: 16px;
}

.default-dialog .el-dialog__header {
  padding: 0 0 16px 0;
  border-bottom: 1px solid #dcdfe6;
  margin-bottom: 20px;
}

.default-dialog .el-dialog__body {
  padding: 0;
}

.default-dialog .el-dialog__footer {
  padding: 25px 0 0 16px;
}

/* 弹框主标题和关闭按钮 */
.el-dialog__title {
  color: #333333;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.default-dialog .el-dialog__headerbtn {
  font-size: 20px;
  color: #dcdfe6;
  top: 18px;
}

/* 确认取消按钮 */
.default-dialog .el-dialog__footer .el-button {
  height: 35px;
  line-height: 35px;
  padding: 0 30px;
  font-size: 13.5px;
}

/* 弹框分割线*/
.dialog-separate {
  width: 600px;
  height: 1px;
  background: #aaa;
  margin: 5px auto;
}

/* 弹框input*/
.default-dialog, .default-dialog .el-textarea__inner, .default-dialog .el-select, .default-dialog .el-date-editor.el-input {
  width: 100%;
}

/* 表格 */
.table {
  width: 100%;
}

.table-item {
  margin: 0 45px;
}

/* 表格边框颜色 */
th {
  font-weight: normal;
  color: #909399;
}

.el-table th.is-leaf {
  border-bottom: 1px solid #dcdfe6;
}

.el-table td, .el-table th.is-leaf, .el-table--border, .el-table--group {
  border-color: #dcdfe6;
}

.el-table--border::after, .el-table--group::after, .el-table::before {
  background-color: #dcdfe6;
}

.download-icon {
  width: 15px;
  margin-left: 5px;
}

/* 通用搜索data */
.search-container {
  margin-bottom: 16px;
}

.search-item-data {
  margin-right: 20px;
}

.search-container .search-label {
  margin: 0 12px;
  flex-shrink: 0;
}

.search-container .search-input {
  width: 243px;
}

/* 搜索框较多时，搜索list */
.search-list .search-item:last-child {
  margin: 0;
}

.search-list .search-input {
  width: 100%;
}

/*---------------------------页面公共样式---------------------------*/
/* 容器 --- 高度需要减去title 72,footer 50 */
.container {
  width: calc(100% - 200px);
  min-height: calc(77vh);
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 8px;
}

/* login页------登录input */
.login-input input {
  height: 50px;
}

.login-input .el-input__clear {
  line-height: 50px;
}

/*
 * index页----- 二级侧栏配置 （卫生服务站）

 */
.el-menu-item {
  color: #333333 !important;
}

.submenu-title-noDropdown {
  color: #333333 !important;
}

.el-menu-item:hover, .el-submenu__title:hover, .icon:hover {
  color: #0170ee !important;
  background-size: 100px 50px;
}

.el-menu-item:focus, .el-submenu__title:focus, .icon:focus {
  background-color: #fff !important;
  color: #333333 !important;
}

.el-menu--collapse {
  width: 48px;
  overflow: hidden;
}

.el-menu {
  border: none;
}

.el-menu-item:hover, .icon:hover {
  color: #0170ee !important;
}

.el-menu-item.is-active {
  color: #0170ee !important;
}

.el-menu-item.is-active:hover {
  color: #0170ee !important;
}

/*
 * rbac页----- 修改树的样式
 */
/* 树 表头*/
.tree-title {
  width: 100%;
  color: #333333;
  background: #f5f7fa;
  border: 1px solid #dcdfe6;
  border-bottom: none;
  box-sizing: border-box;
}

/* 树 没数据*/
.tree-no-data {
  border: 1px solid #dcdfe6;
  color: #888;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

/* 树 清除节点高度*/
.tree-container {
  border-bottom: 1px solid #dcdfe6;
}

.tree-container .el-tree-node__content {
  height: auto;
  border: 1px solid #dcdfe6;
  border-bottom: none;
}

/* 树 内容*/
.tree-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  font-size: 14px;
}

.tree-title p, .tree-node p, .tree-node div {
  height: 44px;
  line-height: 44px;
  text-align: center;
  box-sizing: border-box;
}

/* 弹框中树的高度等于 input的高度 */
.default-dialog .el-tree__empty-block {
  min-height: 40px;
}

.default-dialog .el-tree-node__content {
  height: 40px;
}

/* 按钮表头*/
.table-head {
  margin-bottom: 10px;
  padding: 12px 16px;
}

/* switch增加宽度，文字显示在switch中*/
.switch-item.el-switch {
  height: 24px;
}

.switch-item .el-switch__core {
  width: 54px !important;
  height: 24px;
  border-radius: 12px;
}

.el-switch__label {
  position: absolute;
  top: .5px;
  left: 8px;
  color: #fff !important;
  z-index: 1;
  display: none;
  margin: 0;
}

.el-switch__label.el-switch__label--left {
  left: 22px;
}

.el-switch__label span {
  font-size: 8px !important;
  line-height: 20px;
}

.el-switch__label.is-active {
  display: inline-block !important;
}

.el-switch.is-checked .el-switch__core:after {
  margin-left: -20px;
}

.el-select__tags-text {
  display: inline-block;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.el-select .el-tag__close.el-icon-close {
  top: -7px;
}

.el-tag {
  height: 40px;
  width: 100%;
  line-height: 38px;
  color: #3076FE;
  margin-bottom: 10px;
}

.el-popover {
  max-width: 300px;
  background-color: #606266 !important;
  color: #fff;
  font-size: 13px;
  border-color: #606266;
}

.el-popover .popper__arrow::after {
  border-top-color: #606266 !important;
}

.el-menu--horizontal {
  margin-left: 3px;
}

.el-menu--horizontal .el-menu .el-menu-item {
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0 10px;
}

.el-menu--horizontal .el-menu .el-menu-item:not(:last-child) {
  border-bottom: 1px solid #e9e9eb;
}

.el-menu--popup {
  min-width: 120px;
  padding: 0;
  box-shadow: none;
  margin-top: 18px;
  border: 1px solid #e9e9eb;
}

// 联盟网站nav蓝色题目
.main .main_top {
  width: 100%;
  height: 130px;
  margin-top: 25px;
}

.main .main_top .main_top_body {
  width: 1200px;
  height: 100%;
  // background-image: url("/{ms:global.style/}images/mask7.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 -20px;
  margin: 0 auto;
}

.main .main_body {
  width: 1200px;
  margin: 20px auto 80px;
}

.main .main_body .main_body_left {
  width: 20%;
  height: 610px;
}

.main .main_body .main_body_left .body_left_bac {
  height: 100%;
  background-image: url("../images/side_bac.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.main .main_body .main_body_left .body_left_bac .left_bac_btn {
  width: 100%;
  text-align: center;
  padding-top: 30px;
}

.main .main_body .main_body_left .body_left_bac .left_bac_btn .el-button {
  padding: 14px 40px;
  margin: 10px 0;
  border-radius: 2px;
  font-size: 17.5px;
  font-weight: lighter;
}

.main .main_body .main_body_left .body_left_bac .left_bac_btn .button_choose {
  color: #0170ee;
  border: 1px solid #fff;
}

.main .main_body .main_body_left .body_left_bac .left_bac_btn .button_side {
  color: #fff;
  background-color: #0170ee;
  border: 1px solid #fff;
}

.main .main_body .main_body_right {
  min-height: 608px;
  border: 1px solid #e6eef4;
  background-color: #fdfdfd;
}

.main .main_body .main_body_right .body_right_page {
  padding: 30px 25px 20px;
}
