.report-main {
  padding: 104px 24px 24px;
}

.report-body {
  display: flex;
  align-items: start;
  gap: 24px;
  margin-top: 8px;
}

.report-detail {
  flex: 1 0 0;
  display: flex;
  padding: 32px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 8px;
  background-color: var(--color-white);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04),
    0px 0px 2px 0px rgba(0, 0, 0, 0.04);
}

.report-detail .report-title {
  font-size: 26px;
  color: var(--color-black);
}

.report-item {  
    
}

.report-item>ul>li {  
    position: relative;
    z-index: 1;
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 16px 0 rgba(0,0,0,.04), 0 0 2px 0 rgba(0,0,0,.04);
    box-shadow: 0 4px 16px 0 rgba(0,0,0,.04), 0 0 2px 0 rgba(0,0,0,.04);
	margin-bottom: 15px;
}

.report-item>ul>li:hover {
    -webkit-box-shadow: 0 4px 16px 0 rgba(0,0,0,.12), 0 0 2px 0 rgba(0,0,0,.12);
    box-shadow: 0 4px 16px 0 rgba(0,0,0,.12), 0 0 2px 0 rgba(0,0,0,.12);
}

.report-item>ul>li>.report-item-title>a {
    position: relative;
    padding: 12px 16px;
    border-radius: 8px;
    background: #eaf2ff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 18px;
    min-height: 18px;
    min-width: 20px;
    color: #333;
	display: block;
	font-size: 16px;
	margin-bottom: 15px;
	margin-left: 60px;
}
.report-item>ul>li>.report-item-title>a:before {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: -12px;
    top: 15px;
    border-width: 6px;
    border-color: transparent #eaf2ff transparent transparent;
    border-style: solid;
}
.report-item>ul>li>.report-item-title>a:after {  
    content: '';
	width: 40px;
	height: 40px;
	display: block;
	background-image: url('../images/ask.png');
	position: absolute;
    left: -60px;
    top: 0;
	background-size: contain;
}
.report-item>ul>li>.answer_box {
	position: relative;
    padding: 24px;
    min-height: 72px;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 8px;
	margin-left: 60px;
	line-height: 24px;
}
.report-item>ul>li>.answer_box:before {
    content: "";
    box-sizing: border-box;
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: -4px;
    top: 16px;
    width: 8px;
    height: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent transparent #efefef #efefef;
    background-color: #fff;
    transform: rotate(45deg);
}

.report-item>ul>li>.answer_box:after {  
    content: '';
	width: 40px;
	height: 40px;
	display: block;
	background-image: url('../images/answer.png');
	position: absolute;
    left: -60px;
    top: 0;
	background-size: contain;
}

.article_like {color: #b1b1b1;width: 100%}
.answer-item-box {width: 100%}

.report-iframe {
  border: none;
}

.more-report-wrapper {
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  width: 240px;
  padding: 32px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 8px;
  background: linear-gradient(
      180deg,
      rgba(255, 175, 117, 0.2) 0%,
      rgba(255, 228, 208, 0) 19.05%
    ),
    #fff;
  /* shadow/soft */
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04),
    0px 0px 2px 0px rgba(0, 0, 0, 0.04);
	    position: sticky;
    top: 80px;
}

.report-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.report-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  height: 32px;
  line-height: 32px;
}

.report-list li .ranking {
  flex-shrink: 0;
  width: 12px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: var(--color-text-placeholder);
}

.report-info {
  height: 22px;
  line-height: 22px;
}

.platform .iconpark-platform {
  position: relative;
  top: -1px;
}

.report-ranking {
  position: relative;
  padding: 0 10px;
  height: 18px;
  line-height: 18px;
  border-radius: 2px;
  font-size: 12px;
  background: linear-gradient(90deg, #EE413E 0.01%, #FD5757 100%);
  color: var(--color-white);
}

.report-ranking:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: -1px;
  left: -7px;
  width: 32px;
  height: 19px;
  background-image: url('../images/bg-report-ranking.png');
  background-repeat: no-repeat;
  background-size: contain;
}