/* ==================== reset css ====================> */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* <==================== reset css ==================== */

/* ==================== global css ====================> */
.scroll-x::-webkit-scrollbar,
.scroll-y::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #f5f5f5;
}

.scroll-x::-webkit-scrollbar-track,
.scroll-y::-webkit-scrollbar-track,
.scroll-x::-webkit-scrollbar-thumb,
.scroll-y::-webkit-scrollbar-thumb {
  border-radius: 5px;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}

.scroll-x::-webkit-scrollbar-track,
.scroll-y::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.scroll-x::-webkit-scrollbar-thumb,
.scroll-y::-webkit-scrollbar-thumb {
  background-color: #999999;
}

.scroll-x, .scroll-y {
  -webkit-overflow-scrolling: touch;
}

.scroll-x {
  overflow: auto hidden;
}

.scroll-y {
  overflow: hidden auto;
}

.flex-row, .flex-column {
  display: flex;
  justify-content: space-around;
}

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

.flex-column {
  flex-direction: column;
}

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

.flex-justify-center {
  justify-content: center;
}

.flex-row-1,
.flex-column-1 {
  flex: 1
}

.flex-row-1 {
  min-width: 0;
}

.flex-column-1 {
  min-height: 0;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.placeholder::-moz-placeholder {
  color: #bbbbbb;
}
.placeholder::-ms-input-placeholder {
  color: #bbbbbb;
}
.placeholder::-webkit-input-placeholder {
  color: #bbbbbb;
}

/* <==================== global css ==================== */

/* ==================== common css ====================> */
html, body, .wrapper {
  width: 100%;
  height: 100%;
}

.main-wrapper {
  background-color: rgba(85, 132, 255, 0.2);
}

.main-content {
  overflow: hidden;
  background-color: white;
  border-top-left-radius: 20px;
}

.aside-wrapper {
  width: 112px;
  height: 100%;
  padding-left: 13.5px;
  box-sizing: border-box;
}

.aside-logo {
  cursor:pointer;
  width: 85px;
  height: 50px;
  margin: 24px 0;
  background-image: url("/static/common/images/01.png");
  background-size: 100% 100%;
}

.aside-menu {
  text-align: center;
  cursor: pointer;
  color: #7a8599;
  box-sizing: border-box;
  padding: 10px 13.5px 10px 0;
  border-radius: 12px 0 0 12px;
}

.aside-menu.active {
  background-color: white;
  color: rgba(85, 132, 255, 1);
}

.aside-menu-icon {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 5px;
}

.aside-menu-content {
  display: block;
  font-size: 14px;
}
/* <==================== common css ==================== */

/* ==================== header css ====================> */
.home-time {
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f7f8fa;
}

.home-time-icon {
  font-size: 20px;
  color: #666;
}

.home-search {
  margin-left: 12px;
  height: 36px;
  border-radius: 18px;
  padding: 0 10px;
  box-sizing: border-box;
  background-color: #f7f8fa;
}

.home-search input {
  width: 198px;
  border: none;
  outline: none;
  line-height: 22px;
  padding: 7px 10px;
  font-size: 14px;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.85);
}

.home-header {
  height: 74px;
  padding: 0 12px;
  justify-content: space-between;
  border-bottom: 1px solid #f0f2f5;
}

.home-msg {
  cursor: pointer;
}

.home-msg span {
  display: inline-block;
  font-size: 18px;
}

.home-msg div {
  color: #666;
  font-size: 12px;
}

.home-user-info {
  position: relative;
  cursor: pointer;
}

.home-user-info:hover .modal-wrapper {
  display: block;
}

.modal-wrapper {
  transition: all 0.15s;
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: white;
  border-radius: 12px;
  padding: 10px 15px 10px 10px;
  box-shadow: 0 1px 2px #ccc;
}

.modal-item {
  cursor: pointer;
  font-size: 14px;
  color: #666;
  padding: 5px 0;
  white-space: nowrap;
}

.modal-item span {
  font-size: 20px;
  margin-right: 10px;
}

.user-info span:nth-child(1),
.user-info span:nth-child(2) {
  display: block;
  margin: 0 10px 0 5px;
  color: #333;
  max-width: 180px;
}

.user-info span:nth-child(1) {
  font-size: 13px;
}

.user-info span:nth-child(2) {
  font-size: 12px;
  opacity: 0.6;
}
/* <==================== header css ==================== */

/* ==================== 二级菜单 css ====================> */
.content-menu {
  padding: 0 9px;
  border-right: 1px solid #f0f2f5;
}

.content-menu .title,
.content-menu .item {
  width: 122px;
  box-sizing: border-box;
}

.content-menu .title {
  font-weight: 450;
  color: #333;
  font-size: 20px;
  padding: 20px 20px 13px 20px;  
}

.content-menu .item {
  height: 42px;
  font-size: 12px;
  color: rgb(102, 102, 102);
  transition: background-color, color 0.15s;
  display: flex;
  align-items: center;
  padding-left: 20px;
  cursor: pointer;
}

.content-menu .item.active {
  border-radius: 5px;
  color: rgba(85, 132, 255, 1);
  background-color: rgba(85, 132, 255, 0.2);
}

.content-menu .item.parent {
  position: relative;
  font-size: 14px;
  color: rgb(17, 17, 17);
  padding-right: 20px;
  padding-left: 0;
}

.content-menu .item.parent span {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 20px;
  transform: translateY(-50%);
  transform-origin: center center;
  transition: all 0.15s;
}

.content-menu .item.parent.open span {
  transform: translateY(-50%) rotate(180deg);
}
/* <==================== 二级菜单 css ==================== */

/* ==================== 导航 css ====================> */
.nav-wrapper {
  height: 40px;
  border-bottom: 1px solid #f0f2f5;
}

.nav-item {
  margin: 0 20px;
  padding: 0 5px;
  font-size: 14px;
  cursor: pointer;
  color: rgb(17, 16, 0);
  position: relative;
  transition: all 0.15s;
}

.nav-item::after {
  position: absolute;
  left: 0; right: 0; bottom: -13px;
  content: '';
  height: 2px;
  transition: all 0.15s;
  background-color: transparent;
}

.nav-item.active {
  color: rgba(85, 132, 255, 1);
}

.nav-item.active::after {
  background-color: rgba(85, 132, 255, 1);
}
/* <==================== 导航 css ==================== */

/* ====================== form CSS ========================> */
.form-edit-label {
  font-size: 12px;
  line-height: 36px;
  color: rgb(17, 17, 17);
}

.form-edit-label.required::before {
  content: '*';
  color: #ff0000;
  margin-right: 5px;
}

.form-edit-input {
  display: flex;
  padding: 7.5px 10px;
  border-radius: 6px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
}

.form-edit-input input,
.form-edit-input select {
  flex: 1;
  font-size: 12px;
  line-height: 18px;
  color: rgb(17, 17, 17);

  padding: 0;
  outline: none;
  border: none;
  background-color: transparent;
}

.form-edit-input select {
  height: 35px;
  /* cursor: pointer; */
  border-radius: 6px;
  padding: 7.5px 10px;
  background-color: #f5f5f5;
}

.form-edit-input input[disabled],
.form-edit-input select[disabled] {
  opacity: 1;
}

.form-edit-btn {
  outline: none;
  border: none;
  line-height: 42px;
  padding: 0 27px;
  font-size: 16px;
  color: white;
  border-radius: 21px;
  background-color: rgba(85, 132, 255, 1);
}

.form-edit-input .info {
  font-size: 12px;
  margin-left: 10px;
  line-height: 18px;
  color: rgb(153, 153, 153);
}

/* <====================== form CSS ======================== */

/* ======================= table css =============================>*/
.table-table table {
  table-layout: fixed;
  border-collapse: collapse;
}

.table-table table,
.table-table thead,
.table-table tbody,
.table-table tr {
  width: 100%;
}

.table-table table th,
.table-table table td {
  font-size: 14px;
  color: #333;
  line-height: 1.2;
  padding: 10px 0;
  text-align: center;
  border: 1px solid #f0f2f5;
}

.table-table table th {
  border-bottom: 0;
}

.table-table table td {
  color: #666;
  padding: 5px 0;
}

.table-table tbody tr {
  transition: all 0.15s;
}

.table-table tbody tr:hover {
  background-color: rgba(85, 132, 255, 0.2);
}

.table-table tbody button {
  display: inline-block;
  vertical-align: middle;
  outline: none;
  border: none;
  background-color: rgba(85, 132, 255, 1);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}

.table-page-size {
  font-size: 14px;
  color: #666;
}

.table-page-size span {
  cursor: pointer;
  color: #333;
  padding: 0 10px;
  display: inline-block;
  height: 18px;
  line-height: 18px;
  border-right: 1px solid #f0f2f5;
}

.table-page-size span:last-child {
  border-color: transparent;
}

.table-page-size span.active {
  color: rgba(85, 132, 255, 1);
}

.table-page,
.table-page-btn {
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
  border-radius: 16.5px;
}

.table-page-btn {
  padding: 7.5px 15px;
  color: rgba(85, 132, 255, 1);
  background-color: rgba(85, 132, 255, 0.2);
}

.table-page {
  padding: 7.5px 0;
  width: 33px;
  color: white;
  text-align: center;
  margin-right: 9px;
  transition: all 0.15s;
  opacity: 0.6;
  background-color: rgba(85, 132, 255, 1);
}

.table-page.active {
  opacity: 1;
}

.table-page-btn.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.table-page-btn .iconfont {
  font-size: 12px;
  display: inline-block;
  margin: 0 0 0 5px;
}

.table-page-btn:first-child {
  margin-right: 9px;
}

.table-page-btn:first-child .iconfont {
  transform-origin: center center;
  transform: rotate(180deg);
  margin: 0 5px 0 0;
}
/* <========================== table css==============================*/

/* ========================== search css==============================> */
.search-input {
  display: flex;
  border-radius: 6px;
  padding: 7.5px 10px;
  background-color: #f5f5f5;
}

.search-input:not(:first-child) {
  margin-left: 24px;
}

.search-input input,
.search-input button {
  outline: none;
  border: none;
  font-size: 12px;
  line-height: 18px;
  height: 18px;
  padding: 0;
  color: rgb(17, 17, 17);
  background-color: transparent;
}

.search-input input {
  flex: 1;
}

.search-input button {
  border-radius: 6px;
  padding: 7.5px 15px;
  height: auto;
  cursor: pointer;
  background-color: #f5f5f5;
}

.search-input button:first-child {
  color: rgba(85, 132, 255, 1);
  background-color: rgba(85, 132, 255, 0.2);
}

.search-input button:not(:first-child) {
  margin-left: 24px;
}
/* <========================== search css============================== */