.fad_frontend img{
	cursor: pointer;
	height: auto;
}
@media screen and (max-width: 768px) {
	.fad_frontend img{width:100px;}
}

 /* 弹窗样式 */
    .layer-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }
    .layer-content {
      background: #fff;
      padding: 20px;
      border-radius: 5px;
      max-width: 80%;
      max-height: 80vh;
      overflow-y: auto;
    }
    .layer-close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
    }


    .fad_quote_modal {
  overflow-y: scroll;  /* 确保启用滚动 */
}
/* Chrome/Edge/Safari 滚动条轨道+滑块 */
.fad_quote_modal::-webkit-scrollbar {
  width: 0px;                /* 竖条宽度 */
  height: 0px;               /* 横条高度 */
}
.fad_quote_modal::-webkit-scrollbar-track {
  background: #f1f1f1;       /* 轨道颜色 */
  border-radius: 4px;
}
.fad_quote_modal::-webkit-scrollbar-thumb {
  background: #888;          /* 滑块颜色 */
  border-radius: 4px;
}
.quote_modal::-webkit-scrollbar-thumb:hover {
  background: #555;          /* 悬停颜色 */
}


.fad_quote_bg {
z-index: 100;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
position: fixed;
top: 0;
left: 0;
z-index: 19999998;
display: none;
}
.fad_quote_modal {
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 19999999;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: none;
    overflow: auto;
}
.fad_quote_modal .close{
	display: block;
    cursor: pointer;
    color: #FFF;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: relative;
    text-align: center;
    background: #660099;
    border-radius: 100%;
    position: absolute;
    z-index: 20000000;
    right: 30px;
    top: 30px;
}