/*滚动条样式*/
::-webkit-scrollbar {
  width:10px;
}
 
::-webkit-scrollbar-track {
  background:  #f5f7fa;
}
 
::-webkit-scrollbar-thumb {
  background: #00b893;
  border-radius: 6px;
  border: 3px solid rgba(0,0,0,0);
  background-clip: padding-box;
}
/*表格类频道页样式 start*/
.tabs-container {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
        }
        
        .tabs {
            display: flex;
            background: #fff;
            border-radius: 8px;
            padding: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .tab-btn {
            padding: 12px 24px;
            margin: 0 5px;
            background: transparent;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            color: #333;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .tab-btn:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #31aa36;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .tab-btn:hover {
            color: #2e7d32;
        }
        
        .tab-btn:hover:after {
            width: 80%;
        }
        
        .tab-btn.active  {
            color: #2e7d32;
            background: rgb(13 187 92 / 10%);
        }
        
        .tab-btn.active:after  {
            width: 80%;
        }
        
        .content-frame {
            width: 100%;
            height: 600px;
            border: none;
            transition: all 0.3s ease;
            overflow: hidden;
        }
/*表格类频道页样式 end*/

/*弹出框样式 start*/
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: linear-gradient(135deg, rgb(64 255 213 / 80%) 0%, rgb(181 222 205 / 90%) 70%);
    padding: 0 10px 10px;
    border-radius: 5px;
    width: 80%;
    height: 80%;
    max-width: 1000px;
        }
        .modal-iframe {
            width: 100%;
    height: calc(100% - 40px);
    border: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 6px rgb(110 124 119 / 23%);
        }
        .close {
                float: right;
    cursor: pointer;
    font-size: 2.5rem;
    line-height: 1;
    color: #146c52;
        }
/*弹出框样式 end*/


/*表格类列表页样式 end*/
.data-table {
            width: 100%;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-collapse: separate;
            border-spacing: 0;
        }
        
        .data-table thead {
            background: linear-gradient(135deg, #1ae87e, #0da181);
            color: white;
        }
        
        .data-table th {
            padding: 1rem;
            font-weight: 600;
            position: relative;
        }
        
        .data-table th:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 25%;
            height: 50%;
            width: 1px;
            background: rgba(255, 255, 255, 0.3);
        }
        
        .data-table tbody tr {
            transition: all 0.2s ease;
        }
        
        .data-table tbody tr:hover {
            background-color: #e8feed;
        }
        
        .data-table td {
            padding: 1rem .5rem;
            border-bottom: 1px solid #e0e0e0;
            color: #5f6368;
        }
        
        .data-table tr:last-child td {
            border-bottom: none;
        }

        .status {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            background-color: rgb(13 187 92 / 10%);
            color: #2e7d32;
        }
        
        .status:hover{
            background-color: #ffa415;
            color: #fff;
        }
/*表格类列表页样式 end*/

/*表格类详情页样式 start*/

img {
    -o-object-fit: contain;
    object-fit: contain;
}
.header1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #27ae60;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 70%;
            width: 4px;
            background-color:#2ecc71;
            border-radius: 2px;
        }
        
        .info-section {
            position: relative;
            overflow: hidden;
            background-color: #fcfffe;
            border-radius: 6px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            border: 1px solid #e1fdf1;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            z-index: 2;
            position: relative;
        }
        
        .info-item {
            margin-bottom: 10px;
        }
        
        .info-label {
            font-size: 16px;
            color: #00975c;
            margin-bottom: 4px;
        }
        
        .info-value {
            font-size: 18px;
            font-weight: 500;
            color: #212121;
        }
        
        .content-section {
            margin-top: 30px;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 500;
            color: #27ae60;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .article-content {
            line-height: 1.8;
            font-size: 16px;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .info-grid {
                grid-template-columns: 1fr;
            }
        }
        .tech-element {
            position: absolute;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgb(98 255 109 / 20%) 0%, rgb(80 255 180 / 2%) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .tech-element-1 {
            top: -50px;
            right: -50px;
        }
        
        .tech-element-2 {
            bottom: -50px;
            left: -30px;
            width: 150px;
            height: 150px;
        }
/*表格类详情页样式 end*/