* {
  outline: none;
}
.body-container {
  max-width: 1200px;
  margin: 0 auto;
}
.body-container .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}
.body-container .nav-container.nav-container2 {
  height: 350px;
  align-items: start;
  background: url(../images/banner2.jpg) no-repeat;
  background-size: cover;
  padding: 20px 20px;
  position: relative;
  background-position: center;
}
@media screen and (max-width: 700px) {
  .body-container .nav-container.nav-container2 {
    height: 200px;
  }
}
@media screen and (max-width: 1200px) {
  .body-container .nav-container {
    padding: 20px 15px;
  }
}
.body-container .nav-container .logo {
  height: 30px;
}
.body-container .nav-container .logo img {
  height: 100%;
  display: block;
}
@media screen and (max-width: 700px) {
  .body-container .nav-container .logo {
    height: 12px;
  }
}
.body-container .nav-container .search-container {
  border-radius: 1000px;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  width: 300px;
  position: relative;
}
.body-container .nav-container .search-container input {
  width: 100%;
  border: 0;
  padding: 0 25px;
  line-height: 40px;
}
.body-container .nav-container .search-container .searchbtn {
  position: absolute;
  width: 24px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 700px) {
  .body-container .nav-container .search-container .searchbtn {
    position: absolute;
    width: 18px;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 700px) {
  .body-container .nav-container .search-container {
    width: 180px;
  }
  .body-container .nav-container .search-container input {
    width: 100%;
    border: 0;
    padding: 0 15px;
    line-height: 30px;
    font-size: 13px;
  }
}
.body-container .logo-container {
  display: flex;
  align-items: center;
  min-height: 80px;
}
@media screen and (max-width: 700px) {
  .body-container .logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.body-container .logo-container .logo {
  width: 230px;
  text-align: right;
  position: relative;
  padding-right: 40px;
}
.body-container .logo-container .logo img {
  width: 90%;
}
.body-container .logo-container .logo::before {
  content: "";
  position: absolute;
  height: 30px;
  border-left: 1px solid #d4d4d4;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 700px) {
  .body-container .logo-container .logo {
    margin: 0 auto;
    padding-right: 0px;
    text-align: center;
    width: 30%;
  }
  .body-container .logo-container .logo::before {
    display: none;
  }
}
.body-container .logo-container .title {
  margin-left: 40px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .body-container .logo-container .title {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.body-container .file-container {
  margin-top: 20px;
}
.body-container .file-container.padding {
  padding: 0 25px;
}
@media screen and (max-width: 1200px) {
  .body-container .file-container {
    padding: 0 25px;
  }
}
.body-container .file-container .folder-list .folder-title {
  background-color: #f1f3f4;
  color: #2798d2;
  font-size: 20px;
  padding: 12px 20px;
  background-image: url(../images/icon_10001.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: left top;
  border-radius: 6px;
  margin: 10px 0 ;
}
@media screen and (max-width: 700px) {
  .body-container .file-container .folder-list .folder-title {
    font-size: 15px;
    line-height: 27px;
  }
}
.body-container .file-container .folder-list .folder-title .icon-box {
  display: flex;
  text-align: center;
}
.body-container .file-container .folder-list .folder-title .icon-box a {
  text-align: left;
}
.body-container .file-container .folder-list .folder-title .icon-box .icon-box2 {
  width: 30px;
  text-align: center;
}
.body-container .file-container .folder-list .folder-title .icon-box .icon-box2 .icon {
  width: 25px;
  margin-right: 10px;
  flex-shrink: 0;
  display: block;
}
.body-container .file-container .folder-list .file-list .file-item {
  border-bottom: 1px solid #d4d4d4;
  color: #4671a8;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  padding: 20px 20px;
  transition: background 0.3s;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 700px) {
  .body-container .file-container .folder-list .file-list .file-item {
    padding: 20px 10px;
  }
}
.body-container .file-container .folder-list .file-list .file-item .file-title {
  cursor: pointer;
}
.body-container .file-container .folder-list .file-list .file-item .file-title:hover {
  text-decoration: underline;
}
.body-container .file-container .folder-list .file-list .file-item .icon-box {
  flex-shrink: 0;
}
.body-container .file-container .folder-list .file-list .file-item .icon {
  width: 20px;
  margin-right: 10px;
  display: block;
}
.body-container .file-container .folder-list .file-list .file-item .download-icon {
  width: 30px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  opacity: 0;
  transition: opacity 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .body-container .file-container .folder-list .file-list .file-item .download-icon {
    display: none;
  }
}
.body-container .file-container .folder-list .file-list .file-item:last-child {
  border-bottom: 0px solid #d4d4d4;
}
.body-container .file-container .folder-list .file-list .file-item:hover {
  background: #eff2f3;
}
.body-container .file-container .folder-list .file-list .file-item:hover .download-icon {
  opacity: 1;
}
/*# sourceMappingURL=list.css.map */