.navigation {
    width: 100%;
    border-bottom: 1px solid #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
}

.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 1300px;
    
}

.navigation li {
    flex: 1;
    text-align: center;
    position: relative;
}

.navigation a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 0 10px;
}

.navigation-item {
    display: inline-block;
    min-height: 70px;
    padding: 10px 0;
    font-weight: 550;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:16px;
}
.navigation a:hover{
    color: #428f83;
}
.navigation-active{
    color: #428f83;
}
.navigation-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #428f83;
}


.navigation-item:hover::after {
    width: calc(100% - 20px);
}

.navigation-active::after {
    width: calc(100% - 20px);
}

/* 下拉菜单样式 */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 70%;
    left:30%;
    transform: none;
    background: white;
    border-radius: 5px;
    padding: 10px 0;
    min-width: 150px;
    display: none;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    transform: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: #b1b1b1;
    text-align: left;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: #2a9785;
}

.login-container {
    width: 820px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.login-header {
    height: 74px;
    text-align: start;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border: 1px solid #ddd;
    button{
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        background: none;
        border: 1px solid black;
        color: black;
    }
    background-image:
    radial-gradient(circle at 0 0, #f5fbea 1%, transparent 15%),
    radial-gradient(circle at 100% 100%, #d5f1e4 1%, transparent 15%);
}

.login-header h2 {
    color: #333;
    font-size: 24px;
    margin: 0;
}

.login-form-group{

    display: flex;
    flex-direction: row;
    margin: 20px 0 ;
    display: flex;
    align-items: center;
}

.login-form-group label {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    margin-right: 30px;

}
.login-form-group input {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    width: 425px;
    height: 46px;

}
.form-group {

    display: flex;
    flex-direction: row;
    margin: 10px 0 ;

}

.form-group label {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;

    width: 205px;
    height: 52px;
    border: 1px solid #ddd;
}



.form-group input:focus {
    outline: none;
    border-color: #007bff;
}
.form-group-input{
    width: 525px;
    height: 52px;
    outline: none;
    border: 1px solid #ddd;
    padding: 0;
    border-radius: 0;
    border-left: none;
}
.form-group #attachment{
    display: flex;
    align-items: center;
    justify-content: start;
}
.form-group-input-btn{
    padding: 6px 16px;
    background: none;
    border: 1px solid #ddd;

    border-radius: 4px;
    margin: 0 10px;
}

.sign-in-btn {
    width: 460px;
    height: 56px;
    padding: 12px;

    background-image: linear-gradient(to right, #61ba9c, #59b298);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.sign-in-btn:hover {
    background-color: #45917a;
}

.forgot-password {
    text-align: center;
}

.forgot-password a {
    color: #ffd061;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
} 
.login-form{
    height: 460px;
    display: flex;
    flex-direction: column;

    align-items: center;
    
}
.login-form-item{
    margin: 50px;
}
.login-header-title{
    font-size: 20px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e9e8;
    height: 74px;
    width: 1200px;
    padding: 0 20px;
    background-image:
    radial-gradient(circle at 0 0, #f5fbea 1%, transparent 15%),
    radial-gradient(circle at 100% 100%, #d5f1e4 1%, transparent 15%);

}

.table-header p {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.new-inventor-btn {
    padding: 12px 16px;
    background: none;
    color: #333;
    border: 1px solid #c1c3c2;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.inventor-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.inventor-table th,
.inventor-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.inventor-table th {
    background-color: #f5fffe;
    font-size: 16px;
    font-weight: normal;
}

.inventor-table tr:last-child td {
    border-bottom: none;
}

.inventor-table th:not(:last-child),
.inventor-table td:not(:last-child) {
    border-right: none;
}

.delete-btn {
    padding: 4px 8px;
    background-color: #ff4d4f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.delete-btn:hover {
    background-color: #ff7875;
}

/* 弹窗样式 */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    width: 800px;
    
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid #e2e9e8;
    background-color: #f5f5f5;
    width: 800px;
    height: 42px;
}



.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #e1e1e1;
}

.modal-body {
    padding: 20px;
    height: 450px;
}


.modal-body label {
    display: block;
    width: 205px;
    margin-bottom: 8px;
    color: #333;
    background-color: #f5fffe;
    text-align: center;
    line-height: 52px;
}



.modal-body textarea {
    resize: vertical;
    text-align: start;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.cancel-btn {
    padding: 8px 16px;
    background: none;
    border: 1px solid #c1c3c2;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn {
    padding: 8px 16px;
    background-color: #178f7b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 160px;
    height: 36px;
    margin-top: 50px;
}
.modal-body .button-group{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px;
}
.modal-body .button-group p{
    font-size: 14px;
    color: #FFB500;
}
.cancel-btn:hover {
    background-color: #f5f5f5;
}

.submit-btn:hover {
    background-color: #147a6a;
}
.gradient-button{
    background-image: linear-gradient(to right, #61ba9c, #328686);
}

.information-table-container {
    background-color: white;
    padding: 30px;
    width: 1200px;
    height: 1010px;
}
.information-table-container .table-title{
    padding: 3px 20px;
    color: #333;
    border: 1px solid #dfe4d8;
    background-image:
    radial-gradient(circle at 0 0, #f5fbea 1%, transparent 15%),
    radial-gradient(circle at 100% 100%, #d5f1e4 1%, transparent 15%);

}
.button-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.left-buttons {
    display: flex;
    gap: 10px;
}

.btn {

    border: none;
    border-radius: 2px;
    cursor: pointer;

    transition: background-color 0.3s;
    width: 140px;
    height: 36px;
    color: white;
}

.btn:hover {
    background-color: #e0e0e0;
}

.table-wrapper {
    margin-top: 20px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.custom-table tr:first-child td {
    background-color: #f5f5f5;
}
.custom-table .ilabel{
    background-color: #f8fffe;
    width: 215px;
    height: 42px;
}
.custom-table .lw{
    width: 215px;
    height: 42px;
}
.table-title2{
    text-align: center;
    margin: 20px 0;
}
.table-wrapper2 .custom-table .tw2header{
    background-color: #f8fffe;
}
.table-wrapper2 .tw2checkbox {
    width: 20px;
}
.news-info-content {
    width: 1200px;
    margin: 40px auto;
    padding: 40px;
    font-family: Alibaba PuHuiTi 2.0;


    background-color: white;
}
.news-info-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.news-info-header h1 {
    margin: 0;
}
.news-info-header .news-info-meta {
 

    display: flex;
    flex-direction: row;
    span{
        margin: 5px 20px;
    }
}
hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}
.news-info-text {
    margin-bottom: 20px;
    color: #5a5959;
    line-height: 25px;
    letter-spacing: 1px;
    font-weight: 520;
}
.news-info-image {
    margin-bottom: 20px;
}
.news-info-image img {
    width: 100%;
    height: auto;
}
.news-info-attachment {
    font-size: 0.9em;
    margin-top: 80px;
    margin-bottom: 10px;
}
.news-info-attachment a {
    color: #007bff;
    text-decoration: none;

}
.news-info-attachment a:hover {
    text-decoration: underline;
}
.news-list-content{
    width: 1200px;
    margin: 40px 0;
    
    background-color: white;
}
.news-list-header {
    font-size: 16px;
    font-weight: bold;
    line-height: 50px;
    padding-left: 20px;
    height: 50px;
    border: solid 1px #dfe2d8;
 
    
    background-image:
    radial-gradient(circle at 0 0, #f5fbea 1%, transparent 20%),
    radial-gradient(circle at 100% 100%, #d5f1e4 2%, transparent 20%);

}

.news-list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
 

}
.news-list-item {
    display: flex;
    padding: 13px 20px;
    align-items: center;
    width: 95%;

}
.news-list-icon{
    width: 10px;
    margin-right: 10px;
}
.news-list-title{
    flex: 1;

}

.news-list-date{
    width: 100px;
}
.news-list-item:nth-child(5n)::after {
    background-color: black;
}

.news-list-date {
    margin-left: 10px;
    font-size: 12px;
    color: #666;
}
.xuxian{
    width: 100%;
    margin: 20px 10px;
    border: none; /* 移除默认的边框样式 */
    border-top: 1px dashed #ccc; /* 设置为虚线，颜色为浅灰色 */
    width: 95%;
}
.shixian{
    width: 100%;
    margin: 20px 10px;
    border: none; /* 移除默认的边框样式 */
    border-top: 1px solid #ccc; /* 设置为虚线，颜色为浅灰色 */
    width: 95%;
}
.pagination{
    margin: 20px;
    color: #767676;
}
.pagination-button{
    width: 80px;
    border-radius: 3px;
    color: #696969;
    background: none;
    border: 1px solid #e7e7e7;
    padding: 5px;
    height: 30px;
}
.page-button{
    height: 30px;
    color: #696969;
    background: none;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    width: 30px;
}
.current-page{
    color: #528b7d;
    border: 1px solid #528b7d;
}
.pagination-input{
    height: 25px;
    width: 40px;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    outline:none;
}
.the-new{
    width: 50px;
    background-color: #ffba00;
    padding: 2px;
    border-radius: 5px;
    color: white;
    position: absolute;
    top: -5px;
    font-size: 14px;
    
}
.the-hot{
    width: 12px;
    
}
.the-new::before {
    content: ''; /* 必须设置内容为空 */
    position: absolute; /* 绝对定位 */
    bottom: -4px; /* 箭头位置，距离底部 */
    left: 0px; /* 箭头位置，距离左侧 */
    width: 0; /* 宽度为0 */
    height: 0; /* 高度为0 */
    border: 6px solid transparent; /* 创建透明的边框 */
    border-left-color: #ffba00; /* 设置箭头的颜色 */
}