@charset "utf-8";

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

body,
button,
input,
select,
textarea {
  font: 12px/1 微软雅黑, Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
}

address,
cite,
dfn,
em,
var {
  font-style: normal;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  background-color: #e5e5e5;
  position: relative;
}

.main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1920px;
  height: 920px;
  background: url(../images/bg.jpg) no-repeat;
  background-size: contain;
}

.main .container {
  width: 1000px;
  height: 500px;
  margin: 210px auto;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
}

.container .left {
  width: 300px;
  height: 500px;
  background: linear-gradient(to bottom, #0a99e5, #1c4db3);
  position: relative;
}
.container .left::after {
  content: "";
  display: block;
  width: 235px;
  height: 294px;
  background: url(../images/logo.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container .right {
  width: 700px;
  height: 500px;
  padding: 20px;
  font-size: 14px;
}

.container .right .title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
}
.right .title .tips {
  line-height: 32px;
  display: flex;
}
.right .title .tips i {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
.right .title .tips i::before {
  content: "";
  width: 4px;
  height: 14px;
  display: block;
  background-color: #05a0fd;
}
.right .title .tips i::after {
  content: "";
  width: 4px;
  height: 14px;
  display: block;
  background-color: #6bc6fd;
  margin-left: 4px;
}
.right .title .tips .label {
  font-weight: bold;
}
.right .title .tips .light {
  font-size: 12px;
}
.right .title ul {
  display: flex;
}
.right .title ul li {
  margin-left: 10px;
  background-color: #e5e5e5;
  padding: 9px 12px;
  cursor: pointer;
}
.right .title ul li.reflush {
  background-color: #069efe;
  color: #fff;
}

.right .pages {
  height: 417px;
  overflow-y: auto;
  width: 660px;
  padding-top: 15px;
}

.right .pages ul li {
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  margin-bottom: 0px;
  color: #000;
}
.right .pages ul li:last-child {
  margin-bottom: 0;
}

.right .pages ul li .urlItem {
  line-height: 20px;
  position: relative;
}

.right .pages ul li .urlItem a {
  color: #000;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}

.right .pages ul li span {
  color: #4dbc6d;
}

.right .pages ul li .urlInfo a {
  text-decoration: none;
}

.right .pages ul li .urlInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
}

.right .pages ul li .btn {
  width: 60px;
  height: 24px;
  color: #fff;
  border-radius: 45px;
  background-color: #4fbb6f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right .pages ul li .progress {
  border: 1px solid #e1e6ec;
  width: 78%;
  border-radius: 45px;
  height: 10px;
}

.right .pages ul li .ms {
  display: flex;
  justify-content: center;
  line-height: 12px;
}

.right .pages ul li .ms em {
  content: "";
  width: 10px;
  height: 10px;
  background-color: inherit;
  display: block;
  border-radius: 45px;
  margin-right: 5px;
}

.right .pages ul li .animate {
  position: relative;
  border-radius: 45px;
  height: 10px;
  bottom: 0px;
  left: 0;
  background: linear-gradient(to right, #00fee6, #53a5f7);
}

.animate:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  display: block;
  background-size: 3em 3em;
  background-image: linear-gradient(-45deg, transparent 0em, transparent 0.8em, rgba(255, 255, 255, 0.2) 0.9em, rgba(255, 255, 255, 0.2) 2.1em, transparent 2.1em, transparent 2.9em, rgba(255, 255, 255, 0.2) 3.1em);
  -webkit-animation: warning-animation 750ms infinite linear;
  -moz-animation: warning-animation 750ms infinite linear;
  animation: warning-animation 750ms infinite linear;
}

@-webkit-keyframes warning-animation {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 3em 0;
  }
}

@-moz-keyframes warning-animation {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 3em 0;
  }
}

@keyframes warning-animation {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 3em 0;
  }
}
.success {
  color: #4fbb6f !important;
}

.warning {
  color: #fcc000 !important;
}

.danger {
  color: #fe0000 !important;
}

.btnsuccess {
  background-color: #4fbb6f !important;
}

.btnwarning {
  background-color: #fcc000 !important;
}

.btndanger {
  background-color: #fe0000 !important;
}

.loader {
  display: none;
  font-size: 30px;
  color: #fff;
  width: 100%;
  height: 100vh;
  text-align: center;
  line-height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  position: fixed;
}
