* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
.container {
  display: flex;
  background: url(../images/container_bg.png) center center no-repeat;
  background-size: 100% 100%;
  flex-direction: column;
  height: 100%;
}
.container-top {
  height: 74px;
  background: url(../images/header_top_bg.png) center center no-repeat;
  background-size: 100% 100%;
  flex: none;
  box-shadow: 0 0 30px #2b7ad1;
}
.container-top-login {
  text-align: center;
  line-height: 154px;
  font-size: 57px;
  color: white;
  font-weight: bold;
}
.container-top-other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 0 140px;
}
.container-top-other .title {
  font-weight: bold;
  font-size: 42px;
}
.container-top-other small {
  font-size: 21px;
  font-weight: normal;
  padding-left: 20px;
}
.container-top-other .user-info {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
.container-top-other .user-info .name {
  font-size: 20px;
  margin-right: 10px;
}
.container-top-other .user-info .avatar {
  width: 54px;
  height: 54px;
  margin-right: 16px;
}
.container-top-other .user-info .avatar img {
  width: 100%;
  height: 100%;
}
.container-top-other .user-info:hover .tools {
  visibility: visible;
}
.container-top-other .user-info .tools {
  position: absolute;
  visibility: hidden;
  z-index: 999;
  right: 0;
  top: 75px;
  background: white;
  color: black;
  border-radius: 4px;
  width: 100%;
  padding: 10px;
  text-align: right;
  font-size: 18px;
  box-shadow: 4px 4px 50px #999;
}
.container-top-other .user-info .tools .item {
  margin-top: 5px;
  cursor: pointer;
  display: flex;
}
.container-top-other .user-info .tools .item img {
  width: 22px;
  margin-right: 10px;
}
.container-top-other .user-info .tools .item:hover {
  text-decoration: underline;
}
.container-bottom {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
.container-bottom .return {
  position: absolute;
  right: -17px;
  top: -37px;
}
.container-bottom .return .layui-btn {
  height: 36px;
  line-height: 36px;
  border-radius: 4px;
  opacity: 1;
}
.container-bottom .return img {
  width: 20px;
}
.layui-btn-w-160 {
  width: 100px;
  background: linear-gradient(180deg, #FA7D7D 0%, #F45C5B 100%);
}
/* 修改一下 layui 默认样式 */
.layui-btn {
  background-color: #026bfe;
}
.layui-table-click,
.layui-table-hover {
  background-color: #d8e1ed;
}
