.notice{
    height: 484px;
    background: #FFFFFF;
    display: flex;
}
.notice-box{
  flex: 1;
  margin: 24px 0px 32px;
  width: 31%;
}
.notice-box:nth-child(2){
margin:  24px 32px 32px;
}
.top-box{
  display: flex;
  margin-bottom: 24px;
  width: 100%;
  position: relative;
}
.more{
  cursor: pointer;
  position: absolute;
  right: 0px;
  background: none;
  border: none;
  font-size: 14px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #999999;
}
.top-box .desc{
    font-size: 16px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #999999;
}
.top-box .main{
    font-size: 16px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    position: relative;
    z-index: 2;
}
.top-box .title::before{
    display: inline-block;
    content: "";
    width: 65px;
    height: 8px;
    background: #DFF1FF;
    border-radius: 0px 0px 0px 0px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 1;
}
.content{
  position: relative;
  height: 354px;
  border-radius: 4px 4px 4px 4px;
  opacity: 1;
  border: 1px solid #D4D4D4;
  padding-bottom: 24px;
}
.content-box{
  height: 300px;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox 64+ */
  -ms-overflow-style: none; /* IE and Edge */
}
/* 隐藏纵向滚动条的轨道（适用于WebKit，Chrome等） */
.content-box::-webkit-scrollbar {
    width: 0;
    background: transparent; /* 可选：将滚动条轨道背景设置为透明 */
  }
.content-box-item{
  height: 60px;
  line-height: 60px;
  display: flex;
  border-bottom: 1px solid #D4D4D4;
}
.content-box-item .icon{
  margin-left: 24px;
  margin-right: 16px;
  width: 8px;
  height: 8px;
  background-color: transparent; /* 模块背景为透明 */
  border-color: #999999;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);  /*箭头方向可以自由切换角度*/
  margin-top: 26px;
}
.content-box-item .content-title{
    width: 100%;
    font-size: 14px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #000127;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* max-width: 270px; */
}
/* .content-box-item .time{
    font-size: 14px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #000127;
    margin-left: 20px;
    margin-right: 0px;
    width: 20%;
    min-width: 90px;
} */
.look-more,.look-more:hover{
    width: 90px;
    height: 32px;
    background: #015CB5;
    border-radius: 4px 4px 4px 4px;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
}
.noticeTitleBox{
  height: 80px;
  width: 100%;
  background: #f2f2f2;
  margin-top: 32px;
}
.noticeTitle{
  background: #2d62a4;
  height: 80px;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: normal;
  font-family: PingFang SC-Regular, PingFang SC;
  width: 320px;
  text-align: left;
  padding-left: 30px;
  padding-right: 30px;
}

.noticeTitle div:nth-child(1){
  height: 45px;
  line-height: 45px;
  font-size: 24px;
}
.marquee-text-box{
  height: 80px;
  line-height: 80px;
  overflow: hidden;
  position: relative;
}
.marquee-text {
  white-space: nowrap;
  animation: marqueeText 20s linear infinite;
  height: 80px;
  line-height: 80px;
  font-size: 16px;
}

@keyframes marqueeText {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}
@media (max-width: 1200px){
.notice{
    background: #FFFFFF;
    display: inline;
  }
  .notice-box:nth-child(2){
    margin:  0px;
    }
.notice-box{
  padding: 0px 16px;
  margin: 0px 16px;
  width: calc(100% - 32px);
}
.noticeTitle{
padding-left: 10px;
padding-right: 10px;
width: auto;
font-size: 12px;
}
.noticeTitle div:nth-child(1){
  height: 34px;
  line-height: 34px;
  font-size: 15px;
}
}