html,
body {
  height: 100%;
}

body {
  position: relative;
  min-width: 1264px;
}

.bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../images/bg.png") no-repeat center;
}

.content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 122px;
  z-index: 10;
  padding-bottom: 123px;
}

.link-list {
  margin-bottom: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 180px;
}
.link-item {
  width: 280px;
  height: 180px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.link-item a {
  height: 100%;
  padding: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  background-repeat: no-repeat;
  background-position: right bottom;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.link-item .rect {
  margin-top: 6px;
  width: 32px;
  height: 6px;
  border-radius: 1px;
  background: #fbc740;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link-item:hover a {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  color: #000;
}
.link-item:hover .rect {
  width: 92px;
}
.link-item.appeal a {
  background: url("../images/icon-appeal.png") no-repeat right bottom, url("../images/nav-bg.png") no-repeat center;
}
.link-item.appeal:hover a {
  background: url("../images/icon-appeal-active.png") no-repeat right bottom, url("../images/nav-bg-active.png") no-repeat center;
}
.link-item.msg a {
  background: url("../images/icon-msg.png") no-repeat right bottom, url("../images/nav-bg.png") no-repeat center;
}
.link-item.msg:hover a {
  background: url("../images/icon-msg-active.png") no-repeat right bottom, url("../images/nav-bg-active.png") no-repeat center;
}
.link-item.complain a {
  background: url("../images/icon-complain.png") no-repeat right bottom, url("../images/nav-bg.png") no-repeat center;
}
.link-item.complain:hover a {
  background: url("../images/icon-complain-active.png") no-repeat right bottom, url("../images/nav-bg-active.png") no-repeat center;
}
.link-item.knowledge a {
  background: url("../images/icon-knowledge.png") no-repeat right bottom, url("../images/nav-bg.png") no-repeat center;
}
.link-item.knowledge:hover a {
  background: url("../images/icon-knowledge-active.png") no-repeat right bottom, url("../images/nav-bg-active.png") no-repeat center;
}

.knowledge-recommend {
  height: 404px;
  padding: 20px 24px 20px 0px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.knowledge-recommend-tt {
  width: 79px;
}

.knowledge-hd {
  padding: 16px 0;
}
.knowledge-title {
  width: 79px;
  height: 100%;
  border-radius: 0px 4px 4px 0px;
  background: linear-gradient(173deg, rgba(56, 130, 233, 0.2) -2.25%, rgba(217, 233, 255, 0.2) 39.69%, rgba(56, 130, 233, 0.2) 107.5%);
  color: #2561b4;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-align: center;
  line-height: 79px;
}
.knowledge-title-text {
  position: relative;
  padding: 20px 0;
  display: inline-block;
  height: 168px;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.knowledge-title-text::before, .knowledge-title-text::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: url("../images/icon-point.png") no-repeat center;
  opacity: 0.4;
}
.knowledge-title-text::before {
  top: 0;
}
.knowledge-title-text::after {
  bottom: 0;
}
.knowledge-list {
  margin-left: 24px;
  width: 1137px;
  height: 364px;
  overflow-y: auto;
}
.knowledge-list li:nth-last-child(1) .knowledge-item {
  border-bottom: none;
}
.knowledge-item {
  padding: 12px 0 12px 19px;
  height: 52px;
  line-height: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dde0e4;
  background: url("../images/icon-point.png") no-repeat left center;
}
.knowledge-item:hover {
  color: #2561b4;
}
.knowledge-item p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.knowledge-item .collect {
  padding: 0 10px 0 28px;
  margin-left: 16px;
  line-height: 28px;
  color: #8a8f99;
  height: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../images/star.png") no-repeat 10px center;
  cursor: pointer;
  border-radius: 4px;
  background-color: rgba(138, 143, 153, 0.1);
  font-size: 14px;
}
.knowledge-item .collect.active, .knowledge-item .collect:hover {
  background-color: rgba(240, 172, 39, 0.1);
}
.knowledge-item .collect.active {
  background: url("../images/star-active.png") no-repeat 10px center rgba(240, 172, 39, 0.1);
}

.login-layer.layui-layer {
  border-radius: 4px;
}
.login-layer iframe,
.login-layer .layui-layer-content {
  border-radius: 4px;
}
.login-layer .layui-layer-setwin .layui-layer-close2 {
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background-position: center center;
}
.login-layer .layui-layer-setwin .layui-layer-close2:hover {
  background-position: center center;
}
.login-layer .layui-layer-ico {
  background: url("../images/close.png") no-repeat center;
}

.switch {
  padding: 0 14px 0 38px;
  width: 100px;
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  color: #fff;
  background: url("../images/switch.png") no-repeat right 14px center, url("../images/switch-1.png") no-repeat 14px center, rgba(0, 66, 145, 0.3);
}

.title-area {
  margin-bottom: 60px;
  width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.title-area .title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 130px;
  background: url("../images/title.png") no-repeat left -65px center;
}