* {
  box-sizing: border-box;
}

body,
html,
.main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main {
  background-color: #1e1e1e;
  background-image: url(/images/pivot/images/tree.png), url(/images/pivot/images/light.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: 100% 60%, 100% 80%;
  overflow-x: hidden;
  overflow-y: auto;
}

.wrapper {
  width: 100%;
  height: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  width: 374px;
  margin-bottom: 36px;
}

.sub-title {
  width: 380px;
  margin-bottom: 48px;
}

.list-box {
  max-width: 1280px;
  /*height: 708px;*/
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-content: space-between;
}

.list-item {
  width: 31%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  /* padding: 8px; */
  transition: all 0.3s ease-in-out;
  position: relative;
}

.list-item:hover {
  cursor: pointer;
  transform: translateY(-10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.list-item-cover {
  width: 100%;
  height: auto;
}

.list-item-title,
.list-item-date {
  font-size: 14px;
  line-height:1.5;
  margin: 0;
  padding: 5px 14px;
}

.list-item-title {
  margin-top: 12px;
  margin-bottom: 12px;
  color: #000;
}

.list-item-date {
  color: #bebebe;
  display: flex;
  align-items: center;
 
}

.list-item-date::before {
  content:'';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #8d0909;
  margin-right: 7px;
}

/* 新闻列表 */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
.news-box{
  display: none;
  max-width: 1280px;
  height: 700px;
  width: 100%;

  position: relative;
}
.news-list{
  width: 100%;
  background: #fff;
  padding: 0px 20px 50px 20px;
  font-size: 14px;
  line-height: 1.5;
  
}
.news-list li a{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
   gap: 10px;
}
.news-list li a:hover{
  color: #00683D;
  font-weight: bold;
}
.news-list li a:hover .new-date{
  font-weight: normal;
}
.news-list li{
  border-bottom: 1px dashed #e0e0e0;
  
}
.new-date{
  color: #7e7e7e;
  flex-shrink: 0; /* 防止日期被压缩 */ 
  white-space: nowrap; /* 防止日期换行 */
}
.news-return{
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.new-title{
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  background: #fff;
}
.news-now {
  /* position: sticky;
  top: 0;         
  z-index: 100;    */
  background: white; 
  padding: 10px;
  box-shadow: 3px -2px 6px 5px rgba(0, 0, 0, 0.05);
}

.icon-box{

    position: absolute;
    width: 50px;
    height: 39px;
    top: 75%;
    left: 90%;
    transform: translate(-50%, -87%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 9px;
}

.icon-box .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 55px;
}

@media screen and (max-width: 1024px) {

  .wrapper {
    justify-content: flex-start;
    padding: 20px 0;
     margin: 16px 0 50px 0;
  }

  .sub-title {
    width: 90%;
  }
.title {
  width: 65%;
  margin-top: 50px;
}
  .list-box {
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .list-item {
     width: 90%;
    margin-bottom: 20px;
  }
   .main{
      background-size: 100% 29%, 100% 109%;
   }
}
