@charset "utf-8";
a {  color: #e6e6e6;  }
a:hover {  color: #f2f2f2;  }
.layui-layer-btn1:hover{
    color: #7e8186;
}
.layui-layer-btn1 {
    color: #ffffff !important;
    background-color: #f7572c!important;
    border: 1px solid #f7572c!important;
}
.layui-container
{
    width: 1170px !important;
    padding: 10px 0px !important;
    margin-top: 100px !important;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 100px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: white;
    color: #333;
    line-height: 1.6;
}
.top-nav {
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #e8e8e8;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-weight: 400;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #3388ff;
    text-decoration: none;
}

.nav-links {
    display: flex;
}

.top-nav a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    padding: 5px 0;
}

.top-nav a:hover {
    color: #3388ff;
}

.com-btn-blue{
    background: #3388ff;
    color: white;
    border: none;
    padding: 12px 28px;
    /*border-radius: 4px;*/
    cursor: pointer;
    font-weight: bold;
}

/*.main-content {*/
    /*margin-top: 80px;*/
    /*padding: 20px 100px;*/
    /*min-height: calc(100vh - 140px);*/
/*}*/

.search-box {
    display: flex;
    background: white;
    /*border: 2px solid #3388ff;*/
    height: 50px;
    box-shadow: 0 1px 5px rgba(51, 136, 255, 0.2);
    margin-bottom: 30px;
}

.search-input {
    flex: 1;
    outline: none;
    color: #333;
    background: white;
    padding: 12px 16px;
    border: 1px solid #ddd;
    /*border-radius: 4px 0 0 4px;*/
    font-size: 16px;
}

.search-button {
    background: #3388ff;
    border: none;
    color: white;
    padding: 0 30px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.search-button:hover {
    background: #297acc;
}

.filter-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option label {
    font-size: 14px;
    color: #666;
}

.filter-button {
    background: #3388ff;
    color: white;
    border: none;
    padding: 6px 24px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

.filter-button:hover {
    background: #297acc;
}

.results-section {
    background: white;
    border-radius: 5px;
}

.package-item {
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.package-item:hover {
    border-color: #3388ff;
    box-shadow: 0 2px 8px rgba(51, 136, 255, 0.1);
}

.package-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.package-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.5;
}

.package-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.badge {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.badge-free {
    background: #28a745;
    color: white;
}

.badge-paid {
    background: #ffc107;
    color: #333;
}

table .price{
    font-weight: bold;
    color: red;
}
table .tag{
    border:1px #00B369 solid;
    border-radius: 4px;
    padding: 2px 6px;
    color: #00B369;
}
table .title{
    color: #3F3F3F;
    font-weight: 400;
}