   /* 弹窗背景 */
   .pop-modal {
       display: none;
       position: fixed;
       z-index: 35;
       padding-top: 4.6%;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       overflow: auto;
       background-color: rgba(0, 0, 0, 0.4);
   }

   /* 弹窗内容 */
   .pop-modal-content {
       background-color: #fff;
       margin: auto;
       padding: 30px;
       width: 53%;
       height: 88%;
       max-width: 60%;
       max-height: 90%;
       position: relative;
       overflow-x: hidden;
       overflow-y: auto;
   }
    .pop-modal-content-h2{
    font-size: 25px;
    padding-bottom: 20px;
    }     

   /* 关闭按钮 */
   .pop-close {
       color: #aaa;
       float: right;
       font-size: 28px;
       font-weight: bold;
       position: fixed;
       right: calc(24% + 10px);
       top: 90px;
       cursor: pointer;
   }

   .pop-close:hover,
   .pop-close:focus {
       color: black;
   }

   /* 表格样式 */
   .pop-table {
       width: 100%;
       border-collapse: collapse;
       margin-bottom: 20px;
   }

   .pop-thead-classname th {
       background-color: #000;
       color: #fff;
       padding: 10px;
       font-size: 14px;
   }

   .pop-thead-classname tr {
       text-align: left;
   }

   .pop-tbody td {
       padding: 10px;
   }

   .pop-tbody tr {
       font-size: 14px;
   }

   .pop-show-all {
       display: inline-block;
       margin-bottom: 40px;
       text-decoration: underline;
       cursor: pointer !important;
       position: relative;
       left: 50%;
       transform: translateX(-50%);
   }

   .pop-show-all:hover {
       text-decoration: underline;
   }

   /* 关闭按钮样式 */
   .pop-close-btn {
       padding: 10px 20px;
       border: none;
       cursor: pointer;
       display: block;
       margin: 0 auto;
       background-color: #fff;
       border: 1px solid #000;
   }

   .pop-close-btn:hover {
       background-color: #000;
       color: #fff;
   }

   .pop-tbody tr:nth-child(even) {
       background-color: #f2f2f2;
   }

   @media (max-width: 959px) {
       .pop-modal-content {
            width: 94%;
            max-width: 100%;
       }

       .pop-close {
           right: calc(4% + 5px);
           top: 12%;
       }

       .pop-modal-content h2 {
           margin-top: 0;
       }

       .pop-modal {
           padding-top: 22%;
       }
   }