/* article left*/

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

.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;
    display: flex;
    align-items: center;
    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;
  }
}

.main {
  padding-top: 40px;
  padding-bottom: 60px;
}

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

.newsnr {
}

.newsnr h1 {
  font-size: 24px;
  line-height: 1;
  margin: 20px 0 0;
  color: #333;
  text-align: center;
  text-transform: capitalize;
}

.newsnr .artInfo {
  padding: 0 0 20px;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
  margin: 25px 0 0;
  position: relative;
}

.newsnr .artInfo::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--color-primary);
  width: 100px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin: 0 0 0 -50px;
  z-index: 1;
}

.newsnr .artInfo span {
  margin: 0 10px;
  line-height: 20px;
  display: inline-block;
  font-size: 14px;
  color: #666;
}

.newsnr .artInfo span.time i {
  margin-right: 8px;
}

.newsnr .artInfo span.hit i {
  margin-right: 8px;
}

.myart {
  margin: 20px 0;
  /*line-height: 26px;*/
  /*font-size: 17px;*/
  /*color: #666;*/
  /*font-weight: 300;*/
}

.myart * {
  min-height: 22px;
  color: #000;
}

.pnbar {
  margin-top: 30px;
}

.pnbar p {
  max-width: 100%;
  margin: -1px 0 0 0;
  padding: 8px 14px;
  border: 1px solid #ddd;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-transform: capitalize;
}

.pnbar p a {
  color: #545454;
}

.pnbar p:hover a {
  color: var(--color-primary);
}

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

@media screen and (max-width: 768px) {
  .main {
    padding-top: 25px;
    padding-bottom: 30px;
  }

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

  .newsnr h1 {
    font-size: 18px;
    line-height: 1.2;
  }

  .myart {
    margin: 15px 0;
    /*line-height: 22px;*/
    /*font-size: 15px;*/
  }

  /*.myart p {*/
  /*  margin: 0 0 8px;*/
  /*}*/

  .pnbar {
    margin-top: 20px;
  }

  .pnbar p {
    padding: 7px 10px;
    font-size: 15px;
  }
}


.article-right .myart {
  margin: 60px 0 0;
  padding: 50px 0 0;
  /*line-height: 32px;*/
  /*font-size: 17px;*/
  border-top: 1px solid #eee
}

.article-right .myart ul , 
.article-right .myart ol {
  list-style: disc;
  margin-left: 20px;
}

/*.article-right .myart h5 {*/
/*  font-size: 22px;*/
/*  color: var(--title-text-color);*/
/*  font-weight: 700;*/
/*  margin-bottom: 15px*/
/*}*/

/*.article-right .myart p {*/
/*  margin-bottom: 20px*/
/*}*/

/*.article-right .myart .row {*/
/*  margin-bottom: 20px*/
/*}*/

/*.article-right .myart .row p {*/
/*  text-align: center*/
/*}*/

/*.article-right .myart table {*/
/*  width: 100%*/
/*}*/

/*.article-right .myart table td {*/
/*  padding: 5px;*/
/*  border: 1px solid #333;*/
/*  text-align: center*/
/*}*/

.article-right .scroll-pic {
  margin-bottom: 30px;
  margin-top: 30px;
  overflow: hidden
}

.article-right .scroll-pic p {
  text-align: center;
  margin-top: 10px
}

.article-right .scroll-pic .swiper-pagination {
  position: static;
  width: 100%;
  margin-top: 25px
}

.article-right .scroll-pic .swiper-pagination-bullet {
  height: 9px;
  width: 9px;
  margin: 0 12px;
  background: #ccc;
  border-radius: 0;
  opacity: 1;
  box-sizing: border-box
}

.article-right .scroll-pic .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .article-right .myart img {
    width: 100%;
    height: auto
  }

  .article-right .myart {
    /*line-height: 24px;*/
    /*font-size: 14px;*/
    margin: 20px 0 0;
    padding: 20px 0 15px
  }

  /*.article-right .myart h5 {*/
  /*  font-size: 20px;*/
  /*  margin-bottom: 12px*/
  /*}*/

  /*.article-right .myart .row {*/
  /*  margin-bottom: 0*/
  /*}*/

  /*.article-right .myart .row>div {*/
  /*  margin-bottom: 5px*/
  /*}*/

  .article-right .scroll-pic {
    margin-bottom: 15px
  }
}
