ul {
    margin-bottom: 0px;
}
.nav-menu > li > p {
    margin-top: 15px  ;
    transition: 0.5s linear; /* 背景色变化过渡动画 */
    
}

.download-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: white;
    margin: 30px;
    margin-left: 50%;
}

.itd-icon {
    width: 10px;
    height: 100%;
    background-color: #2f80b7
}

.download-title p {
    padding: 3px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    margin-left: 0.3rem;
    margin-bottom: 0px;
}
.download-content {
    width: 100%;
    
    display: flex;
    justify-content: center;
    flex-direction: column; /* 垂直排列 */
    align-items: center; /* 子元素在垂直方向上居中对齐 */
}
/* 搜索样式 */
.search-container {
    display: flex;
    align-items: center;
  }
  
  .search-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    flex: 1;
  }
  
  .search-button {
    background-color: #2f80b7;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
  }
  
  .search-button:hover {
    background-color: #0056b3;
  }
  
  /* 图标样式 */
  .fa-search {
    font-size: 18px;
  }
  
.card {
    width: 60%;
    height: 9rem;
    border-radius: 3px;
    border: 2px dashed #05436d23;
    border-left: 0px;
    border-right: 0px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.007); /* 鼠标悬停时的外阴影效果 */
}
.card p {
    margin-bottom: 0px;
}
.card:hover {
    border: 0px  ;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.158); /* 鼠标悬停时的外阴影效果 */
}
 
.card-name{
    font-size: 1.5rem;
    font-family: 600 !important;
    margin-top: 1rem;

}
.button {/* .download-content > .card >.card-content-right >  */
    
    background-color: #1250a1;
    border: 0px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 10px 10px;
    border-radius: 5px;
    
    cursor: pointer;
}
.card-content {
    width: 100%;
    display: flex;
    margin-top: 10px;
    
    
    
}
.card-content-left,
.card-content-right {
    flex: 1; /* 均分宽度 */
    padding: 1rem;
}
.card-content-left {
    margin-top: -20px;
     width: 100%;
     
}
.card-content-right {
    width: 100%;
}
.card-content-right > button {
    margin-right: 2rem;
    float: right;
}
.card-content-right > button:hover {
     
    background-color: #5b9aee;

     
}
.content > nav {
    margin-top: 20px;
}

@media screen and (max-width:1100px){
    .card {
        width: 100%;
       
        border: 2px dashed #05436d23;
    }
    .card:active {
         border: 0px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.158); /* 鼠标悬停时的外阴影效果 */
         
    }
    .download-title {
        margin-left: 2rem;
    }
 
 
}