@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-size: 16px;
  font-family: "Microsoft YaHei", "'Times New Roman'";
  color: #171717;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

img {
  display: block;
  border: none;
}

li {
  list-style: none;
}

.cursor {
  cursor: pointer;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: '';
  display: block;
  clear: both;
  visibility: hidden;
}

.main-w {
  width: 1250px;
  margin: 0 auto;
}

/* 从大变正常大小后进入 */
.word-animation {
  animation: toNormalIn 1s linear;
  -webkit-animation: toNormalIn 1s linear;
  animation-fill-mode: both;
  transition: all 1s;
}

@keyframes toNormalIn {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.delay0 {
  animation-delay: 0s;
}

.delay1 {
  animation-delay: .3s;
}

.delay2 {
  animation-delay: .6s;
}

.delay3 {
  animation-delay: .9s;
}

.delay4 {
  animation-delay: 1.2s;
}

.delay5 {
  animation-delay: 1.5s;
}

.delay6 {
  animation-delay: 1.8s;
}

.delay7 {
  animation-delay: 2.1s;
}

.delay8 {
  animation-delay: 2.4s;
}

/*呼吸灯效果*/
.btn-breath {
  animation-name: toNormalIn, myBreath;
  animation-duration: 1000ms, 1000ms;
  animation-timing-function: linear, linear;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: both, both;
  transition: all 2s;
}

@keyframes myBreath {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

.btn-breath-delay0 {
  animation: myBreath 1s linear infinite;
}

/*呼吸灯效果*/
.btn-breath-big {
  animation: breathBig 1.5s linear infinite;
}

@keyframes breathBig {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.lmove {
  position: relative;
  animation: lmove 2s linear infinite;
  -webkit-animation: lmove 2s linear infinite;
}

/* 左右移动效果 */
@keyframes lmove {
  0% {
    left: 0;
  }
  50% {
    left: .2rem;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes lmove {
  0% {
    left: 0;
  }
  50% {
    left: .2rem;
  }
  100% {
    left: 0;
  }
}

.rmove {
  position: relative;
  animation: rmove 2s linear infinite;
  -webkit-animation: rmove 2s linear infinite;
}

.rmove:hover {
  animation-play-state: paused;
}

/* 左右移动效果 */
@keyframes rmove {
  0% {
    right: 0;
  }
  50% {
    right: 10px;
  }
  100% {
    right: 0;
  }
}

@-webkit-keyframes rmove {
  0% {
    right: 0;
  }
  50% {
    right: 10px;
  }
  100% {
    right: 0;
  }
}

/*鼠标移入向上移动*/
.h-move-top {
  transition: all .3s;
}

.h-move-top:hover {
  transform: translateY(-10px);
}

.h-shadow {
  transition: all .3s;
}

.h-shadow:hover {
  box-shadow: 0 3px 8px 3px #ddd;
}

/* 鼠标经过抖动动画 */
.shake:hover {
  animation: myrotate 0.5s;
  -moz-animation: myrotate 0.5s;
  -webkit-animation: myrotate 0.5s;
  -o-animation: myrotate 0.5s;
}

.shake-img:hover img {
  animation: myrotate 0.5s;
  -moz-animation: myrotate 0.5s;
  -webkit-animation: myrotate 0.5s;
  -o-animation: myrotate 0.5s;
}

@keyframes myrotate {
  0% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(-15deg);
  }
  80% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.img-wrap img {
  animation: enlarge 1.5s linear;
}

.img-wrap img:nth-child(2) {
  animation-delay: .5s;
}

.img-wrap img:nth-child(3) {
  animation-delay: 1s;
}

.img-wrap img:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes enlarge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.hasimghover-circle {
  position: relative;
  overflow: hidden;
}

.hasimghover-circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hasimghover-circle:hover::before {
  -webkit-animation: circle 1s;
  animation: circle 1s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}

.btn-border {
  border: 1px solid transparent;
  color: #a6a6a6;
  position: relative;
  opacity: .999;
}

.btn-border:before, .btn-border:after {
  content: '';
  border-style: solid;
  position: absolute;
  z-index: 5;
  border-radius: 3px;
  box-sizing: content-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-color: #70a3df;
}

.btn-border:before {
  width: 0;
  height: 100%;
  border-width: 1px 0 1px 0;
  top: -1px;
  left: 0;
}

.btn-border:after {
  width: 100%;
  height: 0;
  border-width: 0 1px 0 1px;
  top: 0;
  left: -1px;
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.btn-border:hover {
  background-color: transparent;
}

.btn-border:hover:before {
  width: 100%;
}

.btn-border:hover:after {
  height: 100%;
}

/* Shine */
.hasimghover-shine {
  position: relative;
}

.hasimghover-shine::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.hasimghover-shine:hover::before {
  -webkit-animation: shine .95s;
  animation: shine .95s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.t-larger-img {
  transition: all .4s;
}

.t-larger-img:hover {
  transform: scale(1.05);
}

.com-title {
  display: flex;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 30px;
  text-align: center;
  letter-spacing: 4px;
  font-weight: 700;
  color: #171717;
  z-index: 2;
  transition: all .4s;
  font-size: 36px;
}

.com-title a {
  display: flex;
  align-items: center;
  letter-spacing: 4px;
  color: #171717;
  z-index: 2;
  transition: all .4s;
  font-size: 36px;
}

.com-title a .iconfont {
  font-size: 40px;
  font-weight: 400;
  margin-right: 10px;
  color: #70a3df;
}

.com-title a:hover {
  transform: translateX(3px);
}

.com-title-simple {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.com-title-simple a {
  color: #fff;
}

.column-title {
  display: flex;
  position: relative;
  height: 34px;
  line-height: 34px;
  margin-bottom: 30px;
  letter-spacing: 3px;
  padding-left: 12px;
  border-left: 6px solid #1f38bc;
}

.column-title span {
  font-size: 24px;
  font-weight: 700;
}

.column-title .filter-input {
  margin-left: 24px;
  height: 30px;
  line-height: 28px;
  margin-top: 2px;
  padding-left: 5px;
}

.column-title .filter-btn {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
}

.column-title .filter-btn:hover {
  color: #70a3df;
}

.column-title .layui-btn {
  height: 32px;
  margin-top: 1px;
  border: 2px solid #70a3df;
  line-height: 28px;
  color: #464646;
  font-weight: 700;
  letter-spacing: 2px;
}

.column-title .layui-btn.layui-this {
  color: #fff;
  background: #70a3df;
}

/*面包屑*/
.crumbs {
  height: 48px;
  line-height: 48px;
  padding-left: 10px;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  color: #818181;
}

.crumbs li {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.crumbs li:after {
  display: inline-block;
  content: '>';
  margin: 0 4px 0;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
}

.crumbs li:last-child:after {
  display: none;
}

.crumbs li a {
  color: inherit;
}

.list-wrap {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 5px 5px 10px 10px;
  color: #656565;
}

.list-wrap li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 46px;
  padding: 0 10px 0 0;
  line-height: 46px;
  border-bottom: 1px dashed #e5e5e5;
  transition: all .3s;
}

.list-wrap li:last-child {
  border-bottom: none;
}

.list-wrap li:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: 0 12px 0 10px;
  border: 6px solid transparent;
  border-left-color: #ffad1e;
  background: transparent;
}

.list-wrap li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #656565;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-wrap li a span:first-child {
  flex: 1;
  max-width: 410px;
  max-width: calc(100% - 110px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 1px;
}

.list-wrap li:hover {
  border-radius: 13px;
  background: #70a3df;
  background: linear-gradient(45deg, #70a3df 60%, #93bcf9);
  box-shadow: 0 0 6px 3px #e4e6eb;
  border-bottom: none;
  transform: translateY(-3px);
}

.list-wrap li:hover:before {
  visibility: hidden;
}

.list-wrap li:hover a {
  color: #fff;
}

.list-wrap li:hover .date {
  color: #fff;
}

.list-wrap li .date {
  display: block;
  min-width: 100px;
  text-align: right;
  padding-left: 25px;
  font-size: 14px;
  color: #656565;
}

.column-tabs {
  position: relative;
  display: flex;
  padding: 0 20px 0 0;
  color: #818080;
  margin-bottom: 30px;
  margin-top: 20px;
  transition: all .3s;
}

.column-tabs:after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: #eee;
}

.column-tabs .line {
  font-size: 26px;
  font-weight: 700;
  margin: 0 10px 0;
  line-height: 66px;
}

.column-tabs li {
  height: 84px;
  transition: all .3s;
}

.column-tabs li.active a {
  font-size: 36px;
  color: #e94d19;
  padding: 0 14px 26px;
}

.column-tabs li.active a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: inline-block;
  width: 100%;
  height: 10px;
  background-color: #e94d19;
  z-index: 2;
}

.column-tabs li a {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  color: #818080;
  line-height: 66px;
  transition: all .3s;
}

.com-tabs {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
}

.com-tabs .item-tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  padding: 0 5px;
  height: 70px;
  border: 1px solid #70a3df;
  font-size: 28px;
  font-weight: 700;
  color: #70a3df;
  background-color: #fff;
  text-align: center;
  transition: all .5s;
}

.com-tabs .item-tab:first-child {
  margin-right: 50px;
}

.com-tabs .item-tab.active, .com-tabs .item-tab:hover {
  color: #fff;
  background-color: #70a3df;
}

.com-tabs .item-tab.active:before {
  display: block;
  position: absolute;
  left: 47%;
  bottom: -21px;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #70a3df;
  transition: all .5s;
}

.list1-data {
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 30px;
  color: #000;
  background: #f6f9fa;
}

.list1-data li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 46px;
  line-height: 46px;
  transition: all .3s;
  border-radius: 13px;
}

.list1-data li:last-child {
  border-bottom: none;
}

.list1-data li a {
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 35px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  color: #656565;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list1-data li a:before {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #bfbfbf;
}

.list1-data li a span:first-child {
  flex: 1;
  max-width: 900px;
  max-width: calc(100% - 210px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 1px;
}

.list1-data li:hover {
  border-radius: 13px;
  background: #70a3df;
  background: linear-gradient(to right, #70a3df 60%, #93bcf9);
  box-shadow: 0 0 6px 3px #e4e6eb;
  border-bottom: none;
  transform: translateY(-3px);
}

.list1-data li:hover a {
  color: #fff;
}

.list1-data li:hover .date {
  color: #fff;
}

.list1-data li .date {
  display: block;
  min-width: 100px;
  text-align: right;
  padding-left: 25px;
  color: #656565;
}

.list2-data {
  width: 100%;
  margin-bottom: 30px;
  color: #000;
}

.list2-data li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 46px;
  line-height: 46px;
  transition: all .3s;
  border-radius: 3px;
}

.list2-data li:last-child {
  border-bottom: none;
}

.list2-data li a {
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 35px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  color: #656565;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list2-data li a:before {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #bfbfbf;
}

.list2-data li a span:first-child {
  display: block;
  flex: 1;
  width: 900px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 1px;
}

.list2-data li:hover {
  border-radius: 3px;
  background: #f1f7ff;
  box-shadow: 0 0 6px 3px #e4e6eb;
  border-bottom: none;
  transform: translateY(-3px);
}

.list2-data li:hover a {
  color: #3c6ddc;
}

.list2-data li .date {
  display: block;
  min-width: 100px;
  text-align: right;
  padding-left: 25px;
  color: #656565;
}

/*公共table样式*/
.com-table-list {
  width: 100%;
  text-align: center;
}

.com-table-list tr th {
  height: 90px;
  border-left: 1px dashed #464646;
  text-align: center;
  color: #fff;
  font-weight: 400;
  letter-spacing: 2px;
  background: #70a3df;
}

.com-table-list tr th:first-child {
  border-left: none;
}

.com-table-list tr td {
  height: 48px;
  border-left: 1px dashed #464646;
  border-bottom: 1px solid #e0e2e4;
  padding: 10px 10px;
}

.com-table-list tr td:first-child {
  border-left: none;
}

.com-table-list tr td a:hover {
  color: #70a3df;
  text-decoration: underline;
}

.com-table-list tr:last-child td {
  border-bottom: 1px solid #ededed;
}

.com-table-list tr:nth-child(odd) td {
  background: #f0f7ff;
}

.com-table-list tr:nth-child(even) td {
  background: #e4e6eb;
}

.com-table-list .option-btn {
  display: block;
  width: 70px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #fff4e0;
  cursor: pointer;
  transition: all .4s;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 5px auto;
}

.com-table-list .option-btn:hover {
  color: #fff;
  background: #ffad1e;
}

.com-table-list .mb0 {
  margin-bottom: 0;
}

.com-table-list .multi-option .option-btn {
  display: inline-block;
  margin: 0 2px 8px;
}

.com-table-list.bm tr td {
  border-bottom: none;
}

.com-table-list.bm tr:nth-child(even) td {
  background: #f1f7fe;
}

.com-table-list.bm tr:nth-child(odd) td {
  background: #fff;
}

.com-table-list.bm tr td:last-child {
  text-align: left;
}

.com-table2 {
  width: 1080px;
  margin: auto;
  border: 1px solid #3a3a3a;
  color: #171717;
}

.com-table2.min {
  width: 650px;
}

.com-table2 td {
  height: 58px;
  border-left: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  padding: 2px;
  font-size: 18px;
  background: #fff;
}

.com-table2 td.tac {
  text-align: center;
}

.com-table2 td.pl10 {
  padding-left: 10px;
}

.com-table2 td p {
  line-height: 36px;
}

.com-table2 td .layui-input-wrap {
  width: 100%;
  height: 100%;
  line-height: 100%;
}

.com-table2 td .layui-input-wrap input {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border-color: transparent;
}

.com-table2 td .layui-input-wrap .layui-input-affix {
  line-height: 57px;
}

.com-table2 td .notice-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.com-table2 td:first-child {
  background: #f1f1f1;
}

.com-table3 {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 1px solid #3a3a3a;
  color: #171717;
  table-layout: fixed;
  letter-spacing: 1px;
}

.com-table3 td {
  height: 48px;
  border-left: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  padding: 2px;
  font-size: 16px;
  background: #fff;
}

.com-table3 td.tac {
  text-align: center;
}

.com-table3 td.pl10 {
  padding-left: 10px;
}

.com-table3 td p {
  line-height: 36px;
}

.com-table3 td .text {
  position: relative;
}

.com-table3 td .text i {
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.com-table3 td .layui-input, .com-table3 td .layui-select, .com-table3 td .layui-textarea {
  border-color: transparent;
  font-size: 16px;
}

.com-table3 td .layui-input, .com-table3 td .layui-select, .com-table3 td .layui-textarea {
  height: 100%;
}

.com-table3 td .layui-form-select {
  height: 100%;
}

.com-table3 td .layui-form-select .layui-select-title {
  height: 100%;
}

.com-table3 td .layui-input-wrap {
  width: 100%;
  height: 100%;
  line-height: 100%;
}

.com-table3 td .layui-input-wrap input {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border-color: transparent;
}

.com-table3 td .layui-input-wrap .layui-input-affix {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.com-table3 td .notice-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.com-table3.bg1 td:first-child {
  background: #f1f1f1;
}

.com-table3.bg1 td:nth-child(3) {
  background: #f1f1f1;
}

.com-table3.bg1 td.bg {
  background: #f1f1f1;
}

.com-table4 {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
  border: 1px solid #3a3a3a;
  letter-spacing: 1px;
}

.com-table4 tr th {
  height: 48px;
  border-left: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  background: #f1f1f1;
}

.com-table4 tr th:first-child {
  border-left: none;
}

.com-table4 tr td {
  height: 48px;
  border-left: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  padding: 2px;
}

.com-table4 tr td.tac {
  text-align: center;
}

.com-table4 tr td .text {
  position: relative;
}

.com-table4 tr td .text i {
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.com-table4 tr td .layui-input, .com-table4 tr td .layui-select, .com-table4 tr td .layui-textarea {
  border-color: transparent;
  font-size: 16px;
}

.com-table4 tr td .layui-input, .com-table4 tr td .layui-select, .com-table4 tr td .layui-textarea {
  height: 100%;
}

.com-table4 tr td .layui-form-select {
  height: 100%;
}

.com-table4 tr td .layui-form-select .layui-select-title {
  height: 100%;
}

.com-table4 tr td .layui-input-wrap {
  width: 100%;
  height: 100%;
  line-height: 100%;
}

.com-table4 tr td .layui-input-wrap input {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border-color: transparent;
}

.com-table4 tr td .layui-input-wrap .layui-input-affix {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.com-table4 .option-btn {
  display: inline-block;
  width: 70px;
  height: 30px;
  margin-bottom: 0;
  line-height: 30px;
  text-align: center;
  background: #fff4e0;
  cursor: pointer;
  transition: all .4s;
  letter-spacing: 1px;
  font-size: 14px;
}

.com-table4 .option-btn:hover {
  color: #fff;
  background: #ffad1e;
}

.com-table4 .mb0 {
  margin-bottom: 0;
}

.com-btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.com-btn {
  display: inline-block;
  vertical-align: middle;
  width: 185px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 8px;
  background: #70a3df;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
}

.com-btn:hover {
  background: #4685ce;
}

.table-view {
  width: 100%;
  text-align: center;
  border-top: 1px solid #ddd;
}

.table-view tr th {
  height: 45px;
  border-left: 1px solid #fff;
  text-align: center;
  color: #fff;
  background: #70a3df;
}

.table-view tr td {
  height: 42px;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 6px 10px;
  text-align: left;
}

.table-view tr td:last-child {
  border-right: 1px solid #ddd;
}

.table-view tr td a:hover {
  color: #70a3df;
  text-decoration: underline;
}

.table-view tr td:first-child {
  padding: 2px;
  text-align: center;
  background: #f0f7ff;
}

.table-view tr td:nth-child(3) {
  padding: 2px;
  text-align: center;
  background: #f0f7ff;
}

.table-view tr:last-child td {
  border-bottom: 1px solid #ddd;
}

.table-view .layui-btn + .layui-btn {
  margin-left: 0;
}

.table-view.h-dashed tr th {
  border-left: 1px dashed #ededed;
}

.table-view.h-dashed tr th:first-child {
  border-left: 1px solid #ededed;
}

.table-view.h-dashed tr td {
  border-left: 1px dashed #ededed;
}

.table-view.h-dashed tr td:first-child {
  border-left: 1px solid #ededed;
}

.column-wrap {
  overflow: hidden;
}

.column-top {
  min-height: 110px;
  padding: 42px 0 13px;
  margin-bottom: 40px;
  border-bottom: 6px solid #eeeeee;
}

.column-top h1 {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  padding: 0 60px;
  letter-spacing: 1px;
}

.table-list {
  width: 100%;
  margin-bottom: 70px;
  text-align: center;
}

.table-list tr th {
  height: 50px;
  text-align: center;
  background: #b9d9ff;
  font-size: 24px;
  font-weight: 700;
}

.table-list tr td {
  height: 50px;
  padding: 2px 10px;
}

.table-list tr td a:hover {
  color: #70a3df;
  text-decoration: underline;
}

.table-list tr td.tal {
  text-align: left;
}

.table-list tr:nth-child(odd) td {
  background: #f2f8fe;
}

.table-list.first-padding tr th:first-child {
  padding-left: 200px;
}

.table-list.first-padding tr td:first-child {
  padding-left: 200px;
}

.table-list2 {
  width: 100%;
  margin-bottom: 70px;
  margin-top: 30px;
  text-align: center;
}

.table-list2 tr th {
  height: 44px;
  text-align: center;
  background: #f1f1f1;
  font-size: 18px;
  font-weight: 400;
}

.table-list2 tr td {
  height: 46px;
  padding: 2px 10px;
}

.table-list2 tr td:first-child {
  text-align: left;
  padding: 2px 32px;
}

.table-list2 tr td a:hover {
  color: #70a3df;
  text-decoration: underline;
}

.table-list2 tr td.tal {
  text-align: left;
}

.table-list2 tr:hover td {
  background: #f2f8fe;
}

.table-list2.h-dashed tr th {
  border-left: 1px dashed #ededed;
}

.table-list2.h-dashed tr th:first-child {
  border-left: 1px solid #ededed;
}

.table-list2.h-dashed tr td {
  border-left: 1px dashed #ededed;
}

.table-list2.h-dashed tr td:first-child {
  border-left: 1px solid #ededed;
}

.table-list2 .iconfont {
  font-size: 20px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: text-top;
  color: #3c6ddc;
}

.table-list2 .icon-a-jianqu4 {
  color: #2A5699;
}

.table-list2 .icon-a-jianqu3, .table-list2 .icon-ppttubiao {
  color: #DC2E1B;
}

.table-list2 .icon-exceltubiao {
  color: #257647;
}

.com-pagination {
  text-align: center;
}

.has-menu-wrap {
  display: flex;
  margin-top: 10px;
  margin-bottom: 100px;
}

.has-menu-wrap .left-side {
  width: 230px;
  min-height: 700px;
  margin-right: 26px;
  background: #f1f1f1;
}

.has-menu-wrap .left-side .system-img {
  margin: 38px auto 0;
}

.has-menu-wrap .left-side .user {
  margin: 25px auto 30px;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
}

.has-menu-wrap .right-con {
  flex: 1;
  position: relative;
  z-index: 100;
}

.layui-panel {
  width: 100%;
  box-shadow: none;
  border: none;
}

.layui-panel .layui-nav.layui-nav-tree {
  width: 260px;
  padding-right: 30px;
  background: #fff;
  color: #171717;
  overflow: hidden;
}

.layui-panel .layui-nav.layui-nav-tree .layui-nav-itemed > a, .layui-panel .layui-nav.layui-nav-tree .layui-nav-tree .layui-nav-title a {
  color: #171717;
}

.layui-panel .layui-nav.layui-nav-tree > .layui-nav-item {
  background: #dcdcdc;
}

.layui-panel .layui-nav.layui-nav-tree > .layui-nav-item a {
  padding: 0 15px;
  min-height: 60px;
  line-height: 60px;
  color: #171717;
  font-size: 18px;
  font-weight: 400;
  word-break: break-word;
  letter-spacing: 2px;
  text-align: center;
}

.layui-panel .layui-nav.layui-nav-tree > .layui-nav-item.layui-this {
  background: url("../img/menu-bg.png") no-repeat center right/100% 100%;
  width: 251px;
}

.layui-panel .layui-nav.layui-nav-tree > .layui-nav-item.layui-this a {
  padding-right: 34px;
  color: #fff;
  background-color: transparent;
}

.layui-panel .layui-nav.layui-nav-tree .layui-nav-bar {
  background-color: #70a3df;
}

/*滚动条样式*/
.scroll-container {
  overflow-y: auto;
}

.scroll-container::-webkit-scrollbar {
  width: 4px;
  height: 0;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #15519a;
}

.scroll-container::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: 0;
  background: #f5f5f5;
}

.layui-input:focus, .layui-textarea:focus {
  border-color: #70a3df !important;
}

.layui-form-select dl dd.layui-this {
  color: #70a3df;
}

/*覆盖layui form-item 样式*/
.layui-laydate .layui-laydate-content .layui-this {
  background-color: #1360c7 !important;
}

.layui-laydate .layui-laydate-header i:hover, .layui-laydate .layui-laydate-header span:hover, .layui-laydate .layui-laydate-footer span:hover {
  color: #0f42a3;
}

.layui-form-select dl dd.layui-this {
  background-color: #70a3df;
}

.layui-form-select dl dd.layui-this {
  color: #fff;
}

.layui-form-radio:hover *, .layui-form-radioed, .layui-form-radioed > i,
.layui-form-checkbox:hover span,
.layui-form-checked, .layui-form-checked:hover {
  color: #70a3df;
}

.layui-form-checked[lay-skin=primary] i {
  border-color: #70a3df !important;
  background-color: #70a3df !important;
}

.layui-form-checkbox[lay-skin=primary]:hover i,
.layui-form-checked, .layui-form-checked:hover {
  border-color: #70a3df !important;
}

.layui-input:focus, .layui-textarea:focus {
  border-color: #70a3df !important;
}

.layui-input.layui-form-danger:focus, .layui-form-danger.layui-textarea:focus {
  border-color: #ff5722 !important;
  border-width: 1px !important;
}

.layui-laypage a:hover {
  color: #70a3df;
}

.layui-laypage input:focus, .layui-laypage select:focus {
  border-color: #70a3df !important;
}

.layui-laydate .layui-this, .layui-laydate .layui-this > div {
  background-color: #70a3df !important;
  color: #fff !important;
}

.layui-laypage button {
  background: #ffb22b;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all .3s;
}

.layui-laypage button:hover {
  transform: scale(1.05);
}

.layui-layer-shade {
  opacity: .6;
}

.layui-laypage a, .layui-laypage span {
  height: 32px;
  line-height: 32px;
  font-size: 14px;
}

.layui-laypage .layui-laypage-skip, .layui-laypage .layui-laypage-count {
  background: transparent;
}

/*placeholder样式*/
input::-webkit-input-placeholder {
  color: #999;
}

input:-moz-placeholder {
  color: #999;
}

input::-moz-placeholder {
  color: #999;
}

input:-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea:-moz-placeholder {
  color: #999;
}

textarea::-moz-placeholder {
  color: #999;
}

textarea:-ms-input-placeholder {
  color: #999;
}

.pc-none-mobile-block {
  display: none !important;
}

.view-con {
  display: none;
  padding: 30px 20px;
}

.class-layer-custom .layui-layer-title {
  background: #588fe4;
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 0 70px;
}

.com-layer-custom {
  border: 2px solid #3c6ddc;
  border-radius: 7px;
}

.com-layer-custom .layui-layer-content .title {
  margin: 25px 0 15px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #3c6ddc;
  text-align: center;
  padding: 0 70px;
  border-bottom: 0;
}

.com-layer-custom .layui-layer-content .con {
  min-height: 120px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #171717;
  text-align: center;
}

.com-layer-custom .layui-layer-content .con .layui-icon {
  font-size: 40px;
  color: #cb241c;
  margin-right: 5px;
}

.com-layer-custom .layui-layer-content .con .layui-icon.layui-icon-success {
  color: #5bb768;
}

.com-layer-custom .layui-layer-btn {
  padding-bottom: 37px;
}

.com-layer-custom .layui-layer-btn a {
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 40px;
  background: #70a3df;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  margin: 0 10px;
}

.com-layer-custom .layui-layer-btn a:hover {
  background: #ffb22b;
}

.layui-layer-setwin span {
  color: #fff;
  font-weight: 700;
}

.layui-layer-setwin span:hover {
  color: #fff;
}

.layui-layer-setwin .layui-layer-min:before {
  border-color: #fff;
}

.layui-layer-setwin .layui-layer-min:hover:before {
  border-color: #fff;
}

.layui-layer-setwin .layui-layer-max:after, .layui-layer-setwin .layui-layer-max:before {
  border-color: #fff;
}

.layui-layer-setwin .layui-layer-max:hover:after, .layui-layer-setwin .layui-layer-max:hover:before {
  border-color: #fff;
}

.layui-layer-setwin .layui-layer-min:hover:before {
  background-color: #fff;
}

.layui-layer-photos-next, .layui-layer-photos-prev {
  color: #fff;
  text-shadow: 3px 3px 3px #3a3a3a;
}

.layui-layer-photos-next:hover, .layui-layer-photos-prev:hover {
  color: #fff;
}

.no-data {
  display: none;
  min-height: 400px;
  text-align: center;
  padding-top: 180px;
  font-size: 20px;
  color: #d1dae5;
}

.layui-layer.layui-layer-tips .layui-layer-content {
  background-color: #d11819;
}

.layui-layer-tips i.layui-layer-TipsB, .layui-layer-tips i.layui-layer-TipsT {
  border-right-color: #d11819;
}

@media (min-height: 1125px) {
  .has-menu-wrap .left-side {
    min-height: calc(100vh - 426px);
  }
}
