.pic-er {
  width: 100%;
}

.pic-er-left .swiper-slide {
  border: 1px solid #dcdcdc;
  border-radius: 5%;
  overflow: hidden;
}

.pic-er-left .swiper-slide img {
  width: 100%;
}

.pic-er-thumbs {
  margin: 0.2rem 0 0;
}

.pic-er-right {
  padding: 0.2rem;
  background: #f9f9f9;
  border-radius: 0.2rem;
}

.pic-er-title {
  padding: 0 0 0.2rem;
  font-size: 16px;
  line-height: 20px;
  color: #333;
}

.pic-er-digest {
  overflow: auto;
  font-size: 14px;
  line-height: 24px;
}

.pic-er-share {
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
}

.pic-er-share .share-btn {
  padding-right: 5px;
}

.pic-er-share .share-btn a {
  display: block;
}

.pic-er-btn {
  display: flex;
  align-items: center;
  width: 3rem;
  margin: 0 0 0.2rem;
  padding: 0 0 0 0.6rem;
  background: #036acf;
  border-radius: 0.1rem;
}

.pic-er-btn i {
  display: block;
}

.pic-er-btn i img {
  width: 0.2rem;
}

.pic-er-btn span {
  padding-left: 0.2rem;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
}

.pic-er-btn:hover {
  background: #0351a9;
}

@media (min-width: 1200px) {
  .pic-er {
    width: 100%;
  }

  .pic-er-line {
    display: flex;
    justify-content: space-between;
    padding: 0 0 4vw;
  }

  .pic-er-left {
    width: 38.2vw;
  }

  .pic-er-left .swiper-slide {
    border: 1px solid #dcdcdc;
    border-radius: 5%;
    overflow: hidden;
  }

  .pic-er-left .swiper-slide img {
    width: 100%;
  }

  .pic-er-thumbs {
    margin: 1vw 0 0;
  }

  .pic-er-right {
    width: 38vw;
    padding: 3vw;
    background: #f9f9f9;
    border-radius: 1vw;
  }

  .pic-er-title {
    padding: 0 0 2vw;
    font-size: 1.5vw;
    line-height: 2vw;
    color: #333;
  }

  .pic-er-digest {
    /*height: 11.2vw;*/
    /*overflow: auto;*/
    font-size: 0.9vw;
    line-height: 1.5vw;
  }

  .pic-er-share {
    display: flex;
    align-items: center;
    padding: 2vw 0;
  }

  .pic-er-share .share-btn {
    padding-right: 5px;
  }

  .pic-er-share .share-btn a {
    display: block;
  }

  .pic-er-btn {
    display: flex;
    align-items: center;
    width: 15vw;
    margin: 0 0 1.2vw;
    padding: 0 0 0 3vw;
    background: #036acf;
    border-radius: 0.5vw;
  }

  .pic-er-btn i {
    display: block;
  }

  .pic-er-btn i img {
    width: 1.2vw;
  }

  .pic-er-btn span {
    padding-left: 1vw;
    font-size: 0.9vw;
    line-height: 2.6vw;
    color: #fff;
  }

  .pic-er-btn:hover {
    background: #0351a9;
  }
}


/* item */
.pic-er-item {
  padding: 0 0 0.2rem;
}

.item-title {
  display: flex;
  background: #d6dcea;
}

.item-title span {
  position: relative;
  z-index: 5;
  padding: 0 0.3rem;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-transform: capitalize;
  background: #2740c1;
}

.item-title span::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: -0.2rem;
  width: 0.4rem;
  height: 100%;
  transform: skew(-30deg);
  background: #2740c1;
}

.item-content {
  padding: 0.2rem 0;
}

.item-content p {
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

.item-content p img {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .pic-er-item {
    padding: 0 0 2vw;
  }
  
  .item-title {
    display: flex;
    background: #d6dcea;
  }
  
  .item-title span {
    position: relative;
    z-index: 5;
    padding: 0 1.5vw;
    font-size: 1.2vw;
    line-height: 2.4vw;
    color: #fff;
    text-transform: capitalize;
    background: #2740c1;
  }
  
  .item-title span::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: -1.2vw;
    width: 2vw;
    height: 100%;
    transform: skew(-30deg);
    background: #2740c1;
  }
  
  .item-content {
    padding: 1vw 0;
  }
  
  .item-content p {
    font-size: 0.8vw;
    line-height: 1.5vw;
    color: #333;
  }
}

/*table*/
table {
  width: 100%; /* 宽度铺满父容器 */
  border-collapse: collapse; /* 关键：合并边框（必写） */
  border-spacing: 0; /* 单元格间距清零 */
  margin: 20px 0;
}

/* 表头 + 单元格 */
th, td {
  padding: 12px 15px; /* 内边距，让文字不贴边 */
  text-align: center; /* 文字左对齐 */
  border: 1px solid #ddd; /* 边框 */
}

/* 表头样式 */
th {
  background-color: #f5f5f5; /* 浅灰背景 */
  font-weight: bold;
  color: #333;
}


