/**
 * @file layout
 */
/**
 * @file 主题变量
 * 在这里覆盖antd变量和自定义主题变量
 * @author david wang
 * antd 变量可以在此查看 https://github.com/ant-design/ant-design/blob/3.18.1/components/style/themes/default.less
 */
.coach-header {
  background-color: #FFFFFF;
  box-shadow: 0px 1px 4px 0px rgba(0, 21, 41, 0.12);
}
.coach-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5vh;
  min-height: 60px;
  padding: 0 15px;
}
.coach-header-brand {
  display: flex;
  align-items: center;
}
.coach-header-brand_text {
  color: #000000;
  margin-left: 5px;
}
.coach-header-controller {
  display: flex;
  align-items: center;
}
.coach-header-controller_item + .coach-header-controller_item {
  margin-left: 60px;
}
.coach-header-controller_text {
  color: #000000;
  margin-left: 5px;
}
.coach-header-logout {
  cursor: pointer;
}
.coach-content {
  background-color: #FAFAFA;
}
.coach-content-header {
  height: 5vh;
  min-height: 60px;
  background-color: #FFFFFF;
  margin-top: 4px;
}
.coach-content-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 15px;
}
.coach-content-header_title {
  color: rgba(0, 0, 0, 0.85);
  font-size: 20px;
}
.coach-content-main {
  overflow-y: scroll;
  height: 88vh;
  padding: 3vh 24px;
}
.coach-content-main_inner {
  min-height: 100%;
  background-color: #FFFFFF;
  padding: 2vh 32px;
}
.coach-footer-wrapper {
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
.coach-sider {
  background-color: #001529;
  min-height: 100vh;
  max-width: 256px !important;
  min-width: 180px !important;
  box-shadow: 2px 0px 6px 0px rgba(0, 21, 41, 0.35);
}
.coach-sider-header {
  background: #002140;
}
.coach-sider-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 5vh;
  min-height: 60px;
  padding: 0 2vw;
}
.coach-sider-brand_logo > img {
  width: 13vw;
  max-width: 180px;
}
.coach-sider-brand_title {
  color: #FFFFFF;
  font-size: 12px;
  margin-top: 2px;
}
.coach-sider-menu {
  margin-top: 5vh;
}
.coach-sider-menu_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  color: rgba(255, 255, 255, 0.65);
  background-color: transparent;
  padding: 0 2vw;
}
.coach-sider-menu_link_main > .anticon {
  font-size: 20px;
}
.coach-sider-menu_link:hover:not(.active) {
  color: #FFFFFF;
  background-color: transparent;
}
.coach-sider-menu_link.active {
  color: #000000;
  background-color: #f2af0d;
}
.coach-sider-menu_link_main {
  display: flex;
  align-items: center;
}
.coach-sider-menu_link_text {
  display: inline-block;
  margin-left: 2.5em;
}
