.wrapper-content{
    padding: 1.15vw 0;
}

#products-sticky .app-common-title{
    display: none;
}

.tools_size{
    font-size: 16px;
}



.app-product-download .data{
    padding: 1em 4.5em;
    background: url(../image/download.png) no-repeat;
    background-position: left;
    background-position-x: 43px;
    background-position-y: 18px;
}


/* 产品栏目和服务支持下的栏目 点击后出现进度条   杨荻欢 2024-09-27 */

/* Add some styles to make the progress bar look better */
.progress-container {
    position: fixed;
    bottom: 30px; /* Move up from the bottom */
    left: 50%; /* Move left to center */
    transform: translateX(-50%); /* Adjust for horizontal centering */
    width: 400px; /* Increased width */
    background-color: #e8e8e9;
    padding: 10px; /* Adjust padding as needed */
    border-radius: 8px;
    display: none; /* Initially hidden */
    z-index: 2000;
    text-align: center; /* Center the elements inside the container */
  }
  
  .file-name {
    margin-bottom: 10px; /* Space between file name and progress bar */
    font-size: 14px;
    color: #333;
  }
  
  .progress-bar {
    width: 100%; /* Adjust width to fit the container */
    height: 20px; /* Ensure consistent height */
    background-color: #f3f3f3;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px; /* Space between progress bar and button */
  }
  
  .progress-bar span {
    display: block;
    height: 100%; /* Ensure it fills the height of the bar */
    background-color: #4caf50;
    text-align: center;
    line-height: 20px; /* Align text vertically */
    color: white; /* Change text color for better contrast */
    font-size: 12px; /* Adjust font size as needed */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: clip; /* Clip any overflow instead of using ellipsis */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    padding: 0 5px; /* Add some padding to ensure text is not too close to the edges */
  }
  
  .cancel-button {
    background-color: #f44336; /* Red button */
    color: white;
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
  }
  