/*
 * 自定义样式
 */
html, body, h1, h2, h3, h4, h5, h6, hr, div, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, .rx-wrapper {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Microsoft Yahei", "微软雅黑", Tahoma, Arial, Helvetica;
  font-size: 12px;
  color: #333;
  background: #fff;
  min-width: 980px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
  outline: none;
  hide-focus: expression( this.hideFocus=true );
}

a:focus {
  outline: none;
}

input, button, select {
  font-family: "Microsoft Yahei", "微软雅黑", Tahoma, Arial, Helvetica;
  outline: none;
}

input::-ms-clear {
  display: none;
}

ul, li {
  list-style: none;
}

img, a {
  border: 0 none;
}

/* 浮动与清除浮动 */
.rx-fl {
  float: left;
}

.rx-fr {
  float: right;
}

.rx-clearfix:after {
  content: '.';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* 定位 */
.rx-relative {
  position: relative;
}

.rx-absolute {
  position: absolute;
}

/* 居中 */
.rx-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* 主色调 */
.color-blue {
  color: #11a1ed;
}

.color-orange {
  color: #fd8e15;
}

.color-green {
  color: #02bcaa;
}

.color-red {
  color: #f64f50;
}

.color-darkgray {
  color: #8d8e8f;
}

.color-gray {
  color: #f4f5f7;
}

/* 背景色 */
.bg-blue {
  background: #11a1ed;
}

.bg-orange {
  background: #fd8e15;
}

.bg-green {
  background: #02bcaa;
}

.bg-red {
  background: #f64f50;
}

.bg-darkgray {
  background: #8d8e8f;
}

.bg-gray {
  background: #f4f5f7;
}

/* 悬停效果 */
.bg-blue-hover:hover {
  background: #2daef2;
}

.bg-orange-hover:hover {
  background: #fc9b31;
}

.bg-green-hover:hover {
  background: #1ecbba;
}

.bg-red-hover:hover {
  background: #f85d5e;
}

/* 边框 */
.rx-clear-margin-bottom {
  margin-bottom: 0;
}

/* 宽度 */
.rx-widht-1-1 {
  width: 100%;
}

/* 按钮 */
.rx-small-button {
  width: 120px;
}

.rx-small-button:not(:first-child) {
  margin-left: 30px;
}

/* *** 登陆页 start *** */

.rx-login .logo {
  text-align: center;
  margin-bottom: 30px;
}

.rx-login .login-box {
  width: 494px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 28px rgba(0, 0, 0, .1);
  padding: 50px 68px;
  z-index: 999;
}

.rx-login .login-box .form-wrap {
  margin-bottom: 20px;
}

.rx-login .login-box h2 {
  font-size: 22px;
  color: #999;
  text-align: center;
  margin-bottom: 40px;
}

.rx-login .login-box .ipt input {
  width: 100%;
  height: 38px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding-left: 12px;
  margin-bottom: 20px;
}

.rx-login .login-box .ipt input:focus,
.rx-register .register-box .ipt input:focus {
  border-color: #11a1ed;
}

.rx-login .login-box .btn a {
  display: block;
  width: 100%;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 10px;
  text-align: center;
  border-radius: 5px;
}

.rx-login .login-box .forget-password {
  text-align: right;
  padding: 20px 0;
}

.rx-login .login-box .forget-password a {
  color: #999;
}

.rx-login .login-box .forget-password a:hover {
  text-decoration: underline;
}

/* 立即注册 */
.register-up {
  text-align: right;
  margin-top: 10px;
}

/* 底部 */
.rx-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #3b3c41;
}

/* 底部特殊处理 */
.rx-overall .rx-footer {
  position: static;
}

.footer-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 342px;
  background: url("../images/bottom_bg.png") no-repeat center;
  background-size: cover;
  z-index: -1;
}

.footer-bg p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding-top: 17%;
}

/* 注册页 底部背景特殊处理 */
.rx-register .footer-bg {
  bottom: 50px;
}

/* *** 登陆页 end *** */

/* *** 注册页 start *** */
.rx-register {
  min-height: 938px;
}

.rx-register .rx-center-special {
  top: 48%;
}

.rx-register .logo {
  text-align: center;
  margin-bottom: 78px;
}

.rx-register .register-box {
  position: relative;
  width: 394px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 28px rgba(0, 0, 0, .1);
  padding: 68px 68px 48px;
  z-index: 999;
}

.rx-register .register-box .tit {
  top: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, .02);
  padding: 10px;
}

.rx-register .register-box .tit h2 {
  width: 100%;
  height: 100%;
  font-size: 28px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  padding-top: 28px;
  background-image: -webkit-linear-gradient(top, #38bef2, #00dfbf);
  background-image: -moz-linear-gradient(top, #38bef2, #00dfbf);
  background-image: -ms-linear-gradient(top, #38bef2, #00dfbf);
  background-image: -o-linear-gradient(top, #38bef2, #00dfbf);
  background-image: linear-gradient(top, #38bef2, #00dfbf);
}

.rx-register .register-box .ipt input {
  width: calc(100% - 14px);
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding-left: 12px;
  margin-bottom: 20px;
}

.rx-register .register-box .ipt em {
  font-style: normal;
}

.rx-register .register-box .btn a {
  display: block;
  width: calc(100% - 14px);
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 8px;
  text-align: center;
  border-radius: 2px;
}

.rx-register .register-box .sex {
  color: #999;
  margin-bottom: 20px;
}

.rx-register .register-box .sex input {
  margin: 0 14px 0 28px;
}

.rx-register .register-box .sex input:first-child {
  margin-left: 14px;
}

.rx-register .el-select {
  display: block;
}

/* *** 注册页 end *** */

/* *** 头部 start *** */

/* 头部 */
.rx-overall .header {
  height: 50px;
  line-height: 50px;
  padding: 0 10px 0 18px;
  background-image: -webkit-linear-gradient(top left, #38bef2, #00dfbf);
  background-image: -moz-linear-gradient(top left, #38bef2, #00dfbf);
  background-image: -ms-linear-gradient(top left, #38bef2, #00dfbf);
  background-image: -o-linear-gradient(top left, #38bef2, #00dfbf);
  background-image: linear-gradient(top left, #38bef2, #00dfbf);
}

/*.rx-overall .header .logo {
    padding-top: 8px;
}*/

.rx-overall .header .menu > a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin: 0 14px;
}

.rx-overall .header .menu > a:first-child:after {
  position: absolute;
  top: 18px;
  right: -14px;
  content: '';
  width: 1px;
  height: 16px;
  background: #45abff;
}

.rx-overall .header .menu > a.close i {
  display: inline-block;
  font-size: 20px;
  -webkit-transform: translate(-3px, 3px);
  -moz-transform: translate(-3px, 3px);
  -ms-transform: translate(-3px, 3px);
  -o-transform: translate(-3px, 3px);
  transform: translate(-3px, 3px);
}

/* *** 头部 end *** */

/* *** 内容区域 start *** */

/* 内容 */
.rx-overall .content {
  position: relative;
  height: calc(100% - 100px);
  min-height: 548px;
}

/* 特殊处理 */
.rx-overall .content-special {
  min-height: inherit;
}

/* 侧边栏 */
.rx-overall .content .sidebar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 186px;
  background: #fff url("../images/sidebar_bg.png") no-repeat left bottom;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .1);
}

.rx-overall .content .sidebar ul li {
  height: 44px;
  line-height: 44px;
  border-bottom: 1px solid #f1f1f1;
}

.rx-overall .content .sidebar ul li a {
  display: block;
  font-size: 14px;
  color: #333;
  padding-left: 12px;
}

.rx-overall .content .sidebar ul li a:hover,
.rx-overall .content .sidebar ul li a.active {
  color: #11a1ed;
}

.rx-overall .content .sidebar .system {
  position: absolute;
  left: 0;
  bottom: 20px;
}

.rx-overall .content .sidebar .system .item {
  padding: 5px 18px;
}

.rx-overall .content .sidebar .system a,
.rx-overall .content .sidebar .system a i {
  font-size: 14px;
  color: #fff;
}

.rx-overall .content .sidebar .system a:hover {
  text-decoration: underline;
}

/* 右侧 */
.rx-overall .content .cont {
  position: relative;
  width: calc(100% - 186px);;
  height: 100%;
  margin-left: 186px;
}

/* 个人信息 & 修改密码 */
.rx-overall .content .cont .personal {
  left: 40%;
}

.rx-overall .content .cont .change-password {
  width: 372px;
  background: #fff;
  box-shadow: 0 5px 28px rgba(0, 0, 0, .1);
  border-radius: 10px;
  padding: 48px;
}

.rx-overall .content .cont .personal .sex {
  color: #999;
  margin-bottom: 20px;
}

.rx-overall .content .cont .personal .ipt span,
.rx-overall .content .cont .personal .sex span {
  display: inline-block;
  font-size: 14px;
  color: #999;
  min-width: 80px;
}

.rx-overall .content .cont .personal .ipt input,
.rx-overall .content .cont .change-password .ipt input {
  width: 100%;
  height: 38px;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding-left: 12px;
  margin-bottom: 20px;
}

.rx-overall .content .cont .personal .ipt input:focus,
.rx-overall .content .cont .change-password .ipt input:focus {
  border-color: #11a1ed;
}

.rx-overall .content .cont .personal .sex input {
  margin-right: 10px;
}

.rx-overall .content .cont .personal .sex input:last-child {
  margin-left: 30px;
}

.rx-overall .content .cont .personal .ipt em {
  font-style: normal;
}

.rx-overall .content .cont .personal .btn-wrap a,
.rx-overall .content .cont .change-password .btn-wrap a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
}

/* 个人信息 特殊处理 */
.rx-overall .content .cont .personal .ipt input {
  width: 280px;
}

.rx-overall .content .cont .personal .btn-wrap {
  padding: 0 10px 0 84px;
}

/* *** 内容区域 end *** */

/* *** 表格 start *** */

.rx-overall .table {
  width: 100%;
  max-height: calc(100% - 20px);
  font-size: 13px;
  padding: 30px 30px 0 30px;
  overflow-y: auto;
}

.rx-overall .table table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  /*border: 1px solid #e8e8e8;*/
}

.rx-overall .table table thead tr {
  background: #f2f2f2;
}

.rx-overall .table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.rx-overall .table table tr th,
.rx-overall .table table tr td {
  height: 34px;
  line-height: 34px;
  text-align: center;
  /*border: 1px solid #e8e8e8;*/
  font-weight: 400;
  padding: 0;
}

.rx-overall .table table tr th {
  background: #f2f2f2;
}

/* *** 表格 end *** */

/* *** 分页 start *** */

.rx-pagination {
  width: 1100px;
  font-size: 14px;
  margin: 30px auto 20px;
  text-align: center;
}

.rx-pagination .total {
  line-height: 30px;
  margin-left: 28%;
}

.rx-pagination select {
  width: 90px;
  height: 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  margin-left: 12px;
}

.rx-pagination input {
  width: 38px;
  height: 30px;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
}

.rx-pagination .number {
  margin: 0 12px;
}

.rx-pagination .number span,
.rx-pagination .number a {
  display: inline-block;
  color: #333;
  line-height: 30px;
  margin: 0 10px;
  cursor: pointer;
}

.rx-pagination .number a:hover,
.rx-pagination .number a.active {
  color: #1870bd;
}

.rx-pagination .number span.left {
  padding-bottom: 6px;
}

.rx-pagination .number span.right {
  padding-top: 4px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.rx-pagination .number span:before,
.rx-pagination .number span:after {
  position: absolute;
  content: '';
  width: 8px;
  height: 2px;
  background: #333;
  -webkit-transform-origin: 1px;
  -moz-transform-origin: 1px;
  -ms-transform-origin: 1px;
  -o-transform-origin: 1px;
  transform-origin: 1px;
}

.rx-pagination .number span:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.rx-pagination .number span:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.rx-pagination .number span:hover:before,
.rx-pagination .number span:hover:after {
  background: #1870bd;
}

.rx-pagination .number span.disabled:before,
.rx-pagination .number span.disabled:after {
  background: #999;
  cursor: default;
}

/* 特殊处理 */
.el-pagination .el-select .el-input .el-input__inner {
  width: 100%;
}

/* *** 分页 end *** */
