.dynamic .item {
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0 20px;
  background-color: #ffffff;
  border-left: 4px solid #e1b655;
  background-repeat: no-repeat;
  background-size: 36px 40px;
  background-position: right bottom;
}

.dynamic .item .data {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.dynamic .item .data p:nth-of-type(1) {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}

.dynamic .item .data p:nth-of-type(2) {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
}

.dynamic .item .data p:nth-of-type(3) {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
}

.dynamic .item .title {
  width: 85%;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.dynamic .item:hover {
  box-shadow: 0px 3px 12px 1px #8c342252;
  color: #fff;
  background-color: #fff;
  background-image: url(../images/text-list-item-bg.png);
  border-left: 4px solid #BA2922;
}
.dynamic .item:hover p {
  color: #ba2922 !important;
}

.page-info-title-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 20px;
  color: #939393;
}

.page-info-title-sm img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.image_list_item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  /* height: 135px; */
  width: 100%;
  margin-bottom: 18px;
  padding: 24px;
  background: linear-gradient(11deg, #ffffff 0%, #f3ebe0 100%);
  box-shadow: 0px 4px 8px 1px rgba(187, 94, 78, 0.2);
  border-radius: 20px 0px 0px 0px;
  position: relative;

  .image-item-icon {
    max-width: 176px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.image_list_item > img {
  position: absolute;
  height: 100%;
  width: 305px;
  right: 0;
  top: 0;
}

.image_list_item img {
  transition: all 0.3s linear;
}

.image_list_item .img {
  width: 118px;
  height: 83px;
  overflow: hidden;
}

.image_list_item .main {
  padding: 0 30px 0 0;
  width: 87%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  transition: all 0.3s;
}

.image_list_item .main > p:nth-of-type(1) {
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
}

.image_list_item .main > p:nth-of-type(2) {
  font-size: 16px;
  color: #666666;
  height: 49px;
  line-height: 26px;
}

.image_list_item .main > p:nth-of-type(2) img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.image_list_item .main > p:nth-of-type(2) img:nth-of-type(2) {
  display: none;
}

.image_list_item .main > p:nth-of-type(3) {
  display: flex;
  align-items: center;
}

.image_list_item .main > p:nth-of-type(3) img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.image_list_item .main > p:nth-of-type(3) img:nth-of-type(2) {
  display: none;
}

.image_list_item .main > div {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.image_list_item .main > div img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.image_list_item .main > div img:nth-of-type(2) {
  display: none;
}

.image_list_item .data {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #99999987;
  padding-right: 10px;
}

.image_list_item .data p:nth-of-type(1) {
  font-size: 28px;
  font-weight: bold;
  color: #cc9d6d;
  height: 45px;
  line-height: 45px;
}

.image_list_item .data p:nth-of-type(2) {
  font-size: 16px;
  width: 100%;
  height: 27px;
  color: #cc9d6d;
  line-height: 27px;
  text-align: center;
}

@media (any-hover: hover) {
  .image_list_item:hover .img img {
    transform: scale(1.2);
  }

  .image_list_item:hover {
    background: #d64c3b;

    p {
      color: #fff !important;
    }
  }

  .image_list_item:hover .main p {
    color: #fff !important;
  }

  .image_list_item:hover .main span {
    color: #fff !important;
  }

  .image_list_item:hover .main > p img:nth-of-type(1) {
    display: none;
  }

  .image_list_item:hover .main > p img:nth-of-type(2) {
    display: block;
  }

  .image_list_item:hover .main > div img:nth-of-type(1) {
    display: none;
  }

  .image_list_item:hover .main > div img:nth-of-type(2) {
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .dynamic .item .title {
    width: 70% !important;
  }
}

img {
  float: none;
}

.body {
  padding-bottom: 60px;
}

.page-content-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.page-content-body {
  font-size: 16px;
  color: #333333;
  line-height: 38px;
  overflow: hidden;
}

.page-content-body img {
  max-width: 100%;
}

.son_page .inner .right .main {
  background-color: transparent;
  /* background: #FFFFFF; */
  /* padding: 10px 40px 40px; */
    padding: 0 40px;
}
.son_page .inner .right .dynamic {
  /* padding: 10px 20px 40px; */
  padding: 0;
}
.page-info-title {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(232, 232, 232, 1);
}

.page-info-title h3 {
  color: rgba(51, 51, 51, 1);
  font-size: 24px;
  line-height: 33px;
  height: 33px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  box-sizing: border-box;
}

.page-info-title-sm {
  font-size: 14px;
  color: #999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.page-info-title-sm span {
  margin: 0 2.5px;
}

.page-info-title-sm .icon-clock {
  margin-right: 6px;
  color: #cecece;
  font-size: 10px;
}

.page-info-title-sm .icon-eye {
  margin-left: 24px;
  margin-right: 6px;
  color: #cecece;
  font-size: 10px;
}

.page-info-body {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
  padding: 30px 10px;
}

.page-info-body > img {
  max-width: 100%;
  margin: 20px auto;
}

.page-read-more {
  border-top: 1px solid rgba(240, 242, 247, 1);
  box-sizing: border-box;
  padding: 30px 0 0 0;
  margin-top: 20px;
}

.page-read-more p {
  font-size: 14px;
  color: #333333;
  line-height: 19px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 15px;
  cursor: pointer;
}

.page-read-more p span {
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.page-read-more p:hover span {
  color: #A1241E;
}

.group-v-g {
  width: 100%;
}

.group-v-title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  display: flex;
  color: #A1241E;
  position: relative;
  align-items: center;
  border-bottom: 1px solid #A1241E;
}

.group-v-title::before {
  width: 62px;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  content: '';
  background: #A1241E;
}

.group-v-title span:nth-child(2) {
  color: #333;
  font-family: PingFangSC-Regular, PingFang SC;
  font-size: 14px;
  line-height: 20px;
}

.file-list {
  width: 100%;
  border-radius: 2px;
  height: 60px;
  justify-content: space-between;
  border: 1px solid #e8e8e8;
  align-items: center;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 0 10px;
  margin-top: 20px;
}

.file-btn {
  border: 1px solid #e8e8e8;
  align-items: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 10px;
  height: 35px;
  color: #333;
  justify-content: center;
  font-size: 14px;
  box-sizing: border-box;
  cursor: pointer;
}

.file-btn div {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.file-icon {
  align-items: center;
  display: flex;
  flex-direction: row;
}

.file-icon div {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.file-icon div img {
  margin: 0 !important;
}

.file-icon p {
  font-size: 14px;
  color: #333333;
}

.file-btn img {
  margin-right: 10px !important;
  width: 12px;
  height: 12px;
}

#share {
  margin-top: 20px;
}

.row-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  padding: 30px 0;
  border-bottom: 1px solid rgba(240, 242, 247, 1);
}

.user-view {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 20px;
}

.user-info {
  display: flex;
  margin-top: 5px;
  flex-direction: column;
}

.user-info p:nth-child(1) {
  color: #333;
  font-size: 16px;
}

.group-v-g img {
  margin: 0 !important;
}

.user-info p:nth-child(1) span {
  margin-left: 9px;
  color: #999;
  font-size: 12px;
}

.user-info p:nth-child(2) {
  color: #666;
  font-size: 14px;
  line-height: 28px;
}

.textarea-row {
  margin-top: 20px;
  display: flex;
  width: 100%;
  flex-direction: row;
  border-bottom: 1px solid rgba(240, 242, 247, 1);
}

.textarea-info {
  width: calc(100% - 80px);
}

.textarea-body {
  border: 1px solid rgba(240, 242, 247, 1);
  border-radius: 2px;
  width: 100%;
}

.textarea-row .user-view {
  margin-top: 20px;
}

.textarea-body textarea {
  width: 100%;
  height: 100%;
  min-height: 100px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 20px;
  outline: none;
  border: none;
}

.text-btn {
  background: #0086d0;
  cursor: pointer;
  width: 100px;
  height: 45px;
  border-radius: 4px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.text-btn:hover {
  opacity: 0.8;
}

.textarea-btn-g {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 20px 0;
  justify-content: flex-end;
  align-items: center;
}

.textarea-btn-g p {
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  margin-right: 20px;
}

.text-input {
  width: 150px;
  height: 45px;
  overflow: hidden;
  border-radius: 2px;
  margin-right: 20px;
  border: 1px solid rgba(240, 242, 247, 1);
}

.text-input input {
  border: 0;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  height: 100%;
  line-height: 45px;
}

.text-code {
  width: 100px;
  height: 40px;
  margin-right: 20px;
}

.list-more-btn {
  box-sizing: border-box;
  border: 1px solid rgba(216, 220, 230, 1);
  border-radius: 4px;
  color: rgba(153, 153, 153, 1);
  font-size: 14px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  width: 200px;
  height: 45px;
  margin: 30px auto 85px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.list-more-btn:hover {
  background: #0086d0;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
}

/* 标题 */
.right-title-right {
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  color: rgba(51, 51, 51, 1);
  border-bottom: 1px solid #efefef;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}

.right-title-right img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

header .image-inner {
  opacity: 1 !important;
}

@media (max-width: 600px) {
  .son_page > .inner .right {
    width: 100%;
    padding-top: 20px;
  }

  .son_page {
    padding: 0px 0 20px;
  }

  .file-list {
    height: auto;
    padding-top: 10px;
    align-items: flex-start;
    padding-bottom: 10px;
    flex-direction: column;
  }

  .textarea-btn-g {
    flex-direction: column;
    align-items: flex-start;
  }

  .textarea-btn-g div {
    margin-top: 10px;
  }

  .text-btn {
    width: 100%;
  }

  .file-btn {
    width: 100%;
    margin-top: 15px;
  }
}
