body, p, img, ul, li, h1, h2 {
  margin: 0;
  padding: 0;
}

body {
  font-size: 12px;
}

img {
  border: 0;
}

ul {
  list-style: none;
}


.overflowText {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.factory {
  width: 100%;
  height: 30px;
}
.factory select {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  border: 0;
  box-shadow: 0 0 10px rgba(204, 204, 204, .5);
}
.factory select:focus, .factory select:hover {
  border-color: #4ab4ff;
}

.require {
  color: red;
  padding-left: 2px;
}

.btn {
  padding: 0 16px;
  height: 28px;
  border-radius: 6px;
  background-color: white;
  border: 1px solid #0089e9;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn img {
  height: 28px;
  display: block;
}

.btn, .btn a {
  color: #0089e9;
  text-decoration: none;
}

.btn:hover {
  color: white;
  background-color: #0089e9;
}

.btn:hover a {
  color: white;
}
.btn:not(:first-child) {
  margin-left: 20px;
}

input, textarea {
  border: none;
  background: none;
  outline: none;
  border-radius: 6px;
  font-size: 12px;
  resize: none;
  box-shadow: 0 0 10px rgba(204, 204, 204, .5);
  padding: 0 10px;
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder {
  color: #a3a3a3;
}

.caption {
  height: 60px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid #ddecff;
}

/* 单选框 */
.radioWrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radioWrapper:hover .radio:before {
  border: 1px solid #108ee9;
}

.radioWrapper.active .radio:before {
  border: 1px solid #108ee9;
}

.radioWrapper.active .radio:after {
  display: block;
}

.radioWrapper .radio {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

.radioWrapper .radio input {
  opacity: 0;
}

.radioWrapper .radio:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.radioWrapper .radio:after {
  content: "";
  display: none;
  width: 6px;
  height: 6px;
  background-color: #108ee9;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* 多选框 */
.checkboxWrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkboxWrapper:hover .checkbox:before {
  border: 1px solid #108ee9;
}

.checkboxWrapper.active .checkbox:before {
  border: 1px solid #108ee9;
  background-color: #108ee9;
}

.checkboxWrapper.active .checkbox:after {
  display: block;
}

.checkboxWrapper .checkbox {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

.checkboxWrapper .checkbox input {
  opacity: 0;
}

.checkboxWrapper .checkbox:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #d9d9d9;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
}

.checkboxWrapper .checkbox:after {
  content: "";
  display: none;
  width: 3px;
  height: 6px;
  transform: rotate(45deg) scale(1);
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#header {
  height: 60px;
  min-height: 60px;
  padding: 0 5%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  background-size: cover;
  background-color: white;
}

#header .headerLogo {
  width: 144px;
}

#header .headerUl {
  width: 400px;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
}

#header .headerUl li {
  font-size: 14px;
  cursor: pointer;
}

#header .headerUl li.active .headLine {
  display: block;
}

#header .headerUl li.active span {
  color: #0099ff;
  font-weight: bold;
}

#header .headerUl li.active a {
  color: #0099ff;
  font-weight: bold;
}

#header .headerUl li:hover span {
  color: #0099ff;
}

#header .headerUl li:hover a {
  color: #0099ff;
}

#header .headerUl li span {
  color: #333;
}

#header .headerUl li a {
  color: #333;
  text-decoration: none;
}

#header .headerBtn {
  width: 137px;
  display: flex;
}

#header .headerBtn a {
  display: block;
  width: 58px;
  height: 28px;
  background: #0099ff;
  color: #fff;
  line-height: 28px;
  text-align: center;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

#header .headerBtn a:nth-of-type(1) {
  margin-right: 20px;
}

#header .user {
  display: flex;
  align-items: center;
}

#header .user .outBox .out {
  display: block;
  width: 16px;
  cursor: pointer;
}

#header .user .outBox .outActive {
  display: none;
  cursor: pointer;
  width: 16px;
}

#header .user .outBox:hover .out {
  display: none;
}

#header .user .outBox:hover .outActive {
  display: block;
}

#header .user .left {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-left: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .user .left img {
  display: block;
}

#header .user .left .img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #0089e9;
  line-height: 38px;
  font-size: 16px;
  text-align: center;
  color: white;
}

#header .user .right {
  min-width: 60px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}

#header .user .right .name {
  height: 19px;
  line-height: 19px;
  font-size: 16px;
  margin-bottom: 2px;
}

#header .user .right .place {
  height: 19px;
  display: flex;
  align-items: center;
  color: #d3d3d3;
}

#header .btnS {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

#header .btn a {
  color: white;
  display: block;
  height: 28px;
  text-decoration: none;
}

#header .btn {
  height: 28px;
  line-height: 28px;
  padding: 0 15px;
  border-radius: 6px;
  background-color: #0089e9;
  cursor: pointer;
}

#header .btnS .btn:first-child {
  margin-right: 20px;
}

#out {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#out .main {
  width: 300px;
  background-color: white;
  border-radius: 6px;
  padding-bottom: 10px;
  font-size: 16px;
}

#out .main .header {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid gray;
}

#out .main .header .close {
  font-size: 30px;
  cursor: pointer;
}

#out .main .header .close:hover {
  color: #33b5e5;
}

#out .ctn {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

#out .btnS {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#out .btn {
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  color: white;
  border-radius: 6px;
  background-color: #6bc2fe;
  cursor: pointer;
  font-size: 12px;
}

#out .btn:hover {
  background-color: #65A8E2;
}

#out .confirm {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#out .confirm img {
  height: 20px;
  display: block;
}

#footer {
  min-height: 88px;
  background: #333333;
  display: flex;
  padding-left: 5%;
  padding-right: 5%;
  align-items: center;
}

#footer img {
  height: 45px;
  margin-right: 90px;
}

#footer p {
  color: #666666;
  font-size: 14px;
}

#footer p:nth-of-type(1) {
  margin-bottom: 5px;
}

#footer p span {
  color: #fff;
  padding-left: 5px;
}

.message {
  position: fixed;
  left: 0;
  top: 20px;
  right: 0;
  margin: 0 auto;
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 0 10px rgba(204, 204, 204, .5);
  border-radius: 6px;
}
.message img {
  height: 28px;
  display: block;
  margin-right: 10px;
}

#modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 2;
}
#modal .body {
  width: 300px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(204, 204, 204, .5);
  padding-bottom: 20px;
}
#modal .body .main {
  height: 50px;
  padding: 20px;
}

#modal .body .btnS {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.noneData {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #999;
  text-align: center;
}

.noneData img {
  width: 100px;
  display: block;
}

#Pagination {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .a {
  text-decoration: none;
  border: 1px solid #0089e9;
  border-radius:15px;
  color: #0089e9;
  cursor: pointer;
}
.pagination .a:hover {
  background: #0089e9;
  border: 1px solid #0089e9;
  color: #fff;
  border-radius:15px;
}

.pagination .a, .pagination span {
  display: inline-block;
  padding: 0.1em 0.4em;
  margin-right: 5px;
  margin-bottom: 5px;
}

.pagination .current {
  background: #0089e9;
  color: #fff;
  border: 1px solid #0089e9;
  border-radius:15px;
}

.pagination .current.prev, .pagination .current.next{
  color:#999;
  border-color:#999;
  background:#fff;
}



#inquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 1000;
}

#inquiry .body {
  border-radius: 6px;
  background-color: white;
  width: 400px;
  height: 518px;
}

#inquiry .caption .close {
  font-size: 20px;
  cursor: pointer;
}

#inquiry .caption .close:hover {
  color: #0089e9;
}

#inquiry .from {
  padding: 20px;
}

#inquiry .list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

#inquiry .list p {
  line-height: 28px;
  width: 80px;
  height: 28px;
  color: #0089e9;
}

#inquiry .list .btn {
  height: 20px;
  padding: 0 5px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

#inquiry .list .btn:hover {
  color: white;
}

#inquiry .list span {
  color: #ff3a48;
}

#inquiry input {
  flex: 1;
  height: 28px;
  line-height: 28px;
}

#inquiry textarea {
  flex: 1;
  height: 56px;
  line-height: 28px;
}

#inquiry .text {
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #7f7f7f;
}

#inquiry .btnS {
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#inquiry .btnS img {
  height: 28px;
  display: block;
}

.files {
  display: flex;
  align-items: center;
  height: 30px;
}
.files li {
  width: 70px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.files li.show:hover .menu {
  display: flex;
  flex-direction: column;
}
.files .upload {
  width: 15px;
  height: 15px;
  position: relative;
  overflow: hidden;
}
.files .upload .addFile {
  display: block;
}
.files .upload .addFileHover {
  display: none;
}
.files .upload:hover .addFile {
  display: none;
}
.files .upload:hover .addFileHover {
  display: block;
}
.files .upload .loading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.files input {
  position: absolute;
  left: -100px;
  top: 0;
  height: 100%;
  width: 400px;
  opacity: 0;
  cursor: pointer;
  padding: 0 !important;
}
.upload .file img {
  width: 100%;
  display: block;
}
.files .menu {
  position: absolute;
  top: 30px;
  left: -40px;
  width: 141px;
  height: 60px;
  display: none;
  padding: 15px 5px 12px;
  justify-content: space-between;
  z-index: 10;
  background: url("/static/images/filesBack.png") no-repeat;
  background-size: 100% 100%;
}
/*.menu.show {
  display: flex;
  flex-direction: column;
}*/
.files .menu .imgBox {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #ddecff;
}
.files .menu .imgBox .flex {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.files .menu .imgBox .flex:hover .hoverImg {
  display: block;
}
.files .menu .imgBox .flex:hover .img   {
  display: none;
}
.files .menu .imgBox .flex img {
  height: 16px;
  display: block;
  margin: 0 auto;
}
.files .menu .imgBox .flex .hoverImg {
  display: none;
}
.files .menu .imgBox .flex .loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
}
.files .menu .menuCenter {
  height: 25px;
  padding: 0 10px;
  line-height: 25px;
}
.files .menu .menuCenter .overflowText {
  float: left;
  width: 112px;
  text-align: center;
}
.files .menu .menuBottom {
  height: 25px;
  padding: 0 10px;
  line-height: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.files .menu .menuBottom .fileName {
  width: 40px;
  color: #0089e9;
  margin-right: 10px;
}
.files .menu img {
  cursor: pointer;
}



