@charset "utf-8";

.container {
  width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
}

.banner {
  text-align: center;
  height: 300px;
  background: url(./banner-bg.jpg) no-repeat;
  background-size: 100% 100%;
}

.banner-title {
  margin-top: 50px;
}

.banner .search {
  width: 600px;
  height: 50px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 28px;
  border: solid 1px #115db2;
  margin-left:auto;
  margin-right:auto;
}

.banner .search #search-form {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  padding-top: 2px;
}

.banner .search input {
  width: 80%;
  height: 46px;
  padding-left: 1.5%;
  border: none;
  font-size: 16px;
  line-height: 46px;
  color: #666;
  outline: none;
  background-color: rgba(255, 255, 255, 0);
}

.banner .search .button {
  flex: 1;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0);
  outline: none;
  cursor: pointer;
  padding-left: 0;
}

.breadcrumb {
  width: 100%;
  height: 45px;
  background-color: #f4f4f4;
  margin-top: -5px;
}

.breadcrumb .breadcrumb_con {
  width: 1200px;
  height: 100%;
  line-height: 45px;
  margin: 0 auto;
}

.breadcrumb .breadcrumb_con img {
  position: relative;
  top: 3px;
  margin-right: 10px;
}

.ssj-nav {
  display: flex;
  flex-wrap: wrap;
}

.ssj-nav h3,
.ssj-nav p {
  width: 24%;
  height: 60px;
  font-size: 18px;
  color: #666;
  text-align: center;
  line-height: 60px;
  background-color: #f5f5f5;
  cursor: pointer;
}

.ssj-nav h3 {
  font-size: 20px;
  font-weight: 600;
  color: #115db2;
}

.ssj-nav p:hover,
.ssj-nav p.active {
  color: #115db2;
  border-bottom: 5px solid #115db2;
}

.ssj-left {
  width: 24.2%;
  height: 1160px;
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 40px;
  background-color: #f5f5f5;
}

.ssj-left li {
  display: flex;
  align-items: center;
  height: 46px;
  cursor: pointer;
}

.ssj-left li img {
  margin-right: 10px;
}

.ssj-left li:hover p {
  color: #115db2;
}

.ssj-left .active p {
  color: #115db2;
}

.ssj-right {
  width: 74%;
  height: 1160px;
  padding: 10px 20px 20px;
  background-color: #f5f5f5;
}

.ssj-right .page {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.normal-ul {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ddd;
}

.normal-ul li {
  position: relative;
  height: 44px;
  line-height: 44px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.normal-ul li a {
  width: 100%;
  display: flex;
}

.normal-ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #404040;
  left: 20px;
  top: 19px;
}

.normal-ul li span {
  display: inline-block;
  text-align: center;
}

.normal-ul li .title {
  flex: 1;
  margin-right: 4%;
  text-align: left;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  padding-left: 18px;
}

.normal-ul li:hover span {
  color: #115db2;
}
.ssj-content,
.ssj-right .one {
  display: none;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 98%;
  }

  .breadcrumb .breadcrumb_con {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .ssj-nav h3 {
    display: none;
  }
  .container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 12px auto 0;
  }
  .banner .search {
    width: 94%;
    margin-top: 64px;
  }
  .banner .search .button {
    flex: none !important;
    width: 20%;
  }
  .ssj-nav p {
    width: 33%;
    margin: 8px 0;
    font-size: 15px;
  }

  .ssj-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    padding: 0 12px;
    align-items: center;
    justify-content: space-between;
  }
  .ssj-left li {
    display: block;
    width: 49%;
    padding: 8px;
    border: #115db2 1px solid;
    text-align: center;
    height: auto;
    font-size: 15px;
    margin-bottom: 12px;
    border-radius: 4px;
  }
  .ssj-left li img {
    display: none;
  }
  .active {
    background-color: #115db2;
  }
  .active p {
    color: #ffffff !important;
  }

  .ssj-right {
    padding: 0;
    width: 100%;
  }
}
