/* article left*/

.article-left {
  float: left;
  width: 260px;
  padding-top: 30px;
}

.article-left h3 {
  font-size: 22px;
  display: block;
  color: #fff;
  height: 50px;
  line-height: 50px;
  padding: 0 0 0 20px;
  background: var(--color-primary);
  position: relative;
}

.article-left h3::after {
  display: none;
  font-family: "qico";
  content: "\e727";
  position: absolute;
  top: 5px;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.article-left h3.active::after {
  -webkit-transform: rotate(45deg) scale(1.08);
  -ms-transform: rotate(45deg) scale(1.08);
  transform: rotate(45deg) scale(1.08);
}

.sidenav {
  margin: 0 0 15px 0;
}

.sidenav ul {
}

.sidenav ul li {
  position: relative;
  line-height: 20px;
  border: 1px solid #e2e2e2;
  margin: 5px 0 0 0;
  padding: 10px 40px 10px 20px;
}

.sidenav ul li::after {
  font-family: "qico";
  content: "\e62e";
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 18px;
  font-weight: normal;
  line-height: 42px;
}

.sidenav ul li a {
  color: #555;
  font-size: 17px;
  display: block;
  /*-webkit-transition: 0.5s;*/
  /*transition: 0.5s;*/
  font-size: 15px;
    font-family: var(--title-font-family);
}

.sidenav ul li.active a,
.sidenav ul li.active::after {
  color: var(--color-primary);
}

.sidenav ul li:hover {background: var(--color-primary);}

.sidenav ul li:hover::after,.sidenav ul li:hover a {
    color: #fff;
}

.article-left .sidenav .business {
  margin-top: 30px;
}
.article-left .sidenav .business .bus_top {
    background: var(--color-primary);
    color: #fff;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.article-left .sidenav .business .bus_top h3 {
    display: block;
    padding-left: 0;
    height: auto;
    line-height: 1.5;
}


.article-left .sidenav .business .bus_top h3::after {
    display: none;
}
.article-left .sidenav .business .bus_top p {
    opacity: .7;
    margin-bottom: 20px;
}
.article-left .sidenav .business .bus_top a {
    font-size: 13px;
    white-space: nowrap;
}

.article-left .sidenav .business .bus_top a:hover {color: #fff;text-decoration: underline;}
.article-left .sidenav .business .bus_bottom {
    background: #f5f5f5;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.article-left .sidenav .business .bus_bottom .busBot_top {
    display: flex;
    align-items: center;
}

.article-left .sidenav .business .bus_bottom .busBot_foot {
  margin-top: 20px;
}

.article-left .sidenav .business .bus_bottom .busBot_foot img {
  width: 100%;
}

.article-left .sidenav .business .bus_bottom .left {}
.article-left .sidenav .business .bus_bottom .left {
    width: 30%;
}
.article-left .sidenav .business .bus_bottom .left img {
    border-radius: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
}
.article-left .sidenav .business .bus_bottom .right {
    padding-left: 10px;
}
.article-left .sidenav .business .bus_bottom .right .name {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}
.article-left .sidenav .business .bus_bottom .right a {
    border: 1px solid var(--color-primary);
    padding: 5px;
    border-radius: 5px;
    color: var(--color-primary);
}


@media screen and (max-width: 1330px) {
  .article-left {
    width: 260px;
  }
}

@media screen and (max-width: 768px) {
  .article-left {
    float: none;
    width: 100%;
  }

  .article-left h3 {
    font-size: 18px;
    padding: 0 0 0 15px;
  }

  .article-left h3::after {
    display: block;
  }

  .sidenav ul {
    display: none;
  }

  .sidenav ul li {
    margin: 3px 0 0;
    padding: 8px 40px 8px 15px;
  }

  .sidenav ul li::after {
    line-height: 38px;
  }

  .sidenav ul li a {
    font-size: 15px;
  }
}

/* article list ----*/
.main {
  padding-top: 0;
  padding-bottom: 60px;
}

.article-right {
  margin-left: 340px;
  padding-top: 90px;
}

.newslist ul {
  display: flex;
  flex-wrap: wrap;
}

.newslist ul li {
  overflow: hidden;
  margin: 10px;
  padding: 15px;
  transition: all 0.3s ease 0s;
  box-sizing: border-box;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-direction: column;
  width: calc(33.333% - 20px);
}

.newslist ul li .pic {
  width: 100%;
  display: block;
  overflow: hidden;
}

.newslist ul li .pic img {
      width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  transition: all 0.3s ease 0s;
}

.newslist ul li .t {
  -webkit-flex: 1;
  flex: 1;
  margin-top: 30px;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newslist ul li .t h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #333;
}

.newslist ul li .t h5 a:hover {
  color: var(--color-primary);
}

.newslist ul li .t span {
  display: block;
  font-size: 14px;
  color: #777;
  margin: 13px 0 0;
}

.newslist ul li .t span i {
  margin-right: 8px;
  color: var(--color-primary);
}

.newslist ul li .t p {
  color: #666;
  font-size: 16px;
  height: 46px;
  font-weight: 300;
  overflow: hidden;
  margin: 10px 0 0 0;
  line-height: 23px;
}

.newslist ul li .t .more {
  margin-top: 13px;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  width: 110px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 5px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--button-radius);
}

.newslist ul li .t .more:hover {
  background: none;
  color: var(--color-primary);
}

.newslist ul li .pic:hover img {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
}

@media screen and (max-width: 1330px) {
  .article-right {
    margin-left: 290px;
  }
}

@media screen and (max-width: 992px) {
  .newslist ul li {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .article-right {
    margin-left: 0;
  }

  .newslist ul li {
    margin: 10px;
  }

  .newslist ul li .pic {
    /*width: 180px;*/
  }

  .newslist ul li .t {
    margin-left: 20px;
  }

  .newslist ul li .t h5 {
    font-size: 18px;
  }

  .newslist ul li .t span {
    font-size: 12px;
    margin: 10px 0 0;
  }

  .newslist ul li .t p {
    font-size: 15px;
    height: 44px;
    margin: 10px 0 0;
    line-height: 22px;
  }

  .newslist ul li .t .more {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .newslist ul li {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .newslist ul li .pic {
    /*width: 240px;*/
    margin: 0 auto;
  }

  .newslist ul li .t {
    margin: 15px 0 0;
    text-align: center;
  }

  .newslist ul li .t span {
    display: inline-block;
  }

  .newslist ul li .t p {
    height: auto;
    line-height: 20px;
  }
}
