@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    background-color: #f5f5f5;
    min-width: 1400px;
}

/* Header */
.header {
    position: relative;
    background: url(../img/h-bg.jpg) no-repeat;
    background-size: cover;
    padding: 30px 0;
}

.w14 {
    width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: block;
}

.logo img {
    display: block;
}

/* Navigation */
.nav {
    background: #c85a54;
    height: 50px;
    padding-right: 25px;
}

.nav-content {
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    height: 100%;
}

.nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item img {
    margin-right: 10px;
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover {
    background: #b54a44;
}

.nav-item i {
    margin-right: 8px;
    font-size: 18px;
}

/* Date Bar */
.date-bar {
    background: #fff;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.date-bar-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 20px auto;
    /* min-height: 60vh; */
}

/* Table Section */
.table-section {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    min-height: 40vh;
}
.ssbox form{
    display: flex;
    align-items: center;
    padding: 10px 20px;
}
.ssbox form p {
    margin-right: 20px;
}
.ssbox form p input {
    height: 30px;
}
.table-header {
    padding: 15px 20px;
    border-top: 3px solid #c85a54;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #E6E6E6;
}

.table-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.more-link {
    color: #999;
    font-size: 14px;
    text-decoration: none;
}

.more-link:hover {
    color: #c85a54;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    /* background: #f5f5f5; */
    padding: 12px 15px;
    text-align: center;
    font-weight: normal;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.data-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
}

.data-table td a {
    color: #333333;
    text-decoration: none;
}

.data-table td a:hover {
    color: #c85a54;
    text-decoration: underline;
}

.data-table tr:hover {
    background: #fafafa;
}

.status-processed {
    color: #4caf50;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.action-card {
    flex: 1;
    height: 100px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-card img {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-card i {
    font-size: 32px;
    margin-bottom: 8px;
}

.action-card span {
    font-size: 16px;
}

.action-consult {
    background: #e8a87c;
}

.action-suggest {
    background: #8fbcd4;
}

.action-complaint {
    background: #c49a6c;
}

.action-praise {
    background: #7bc4a6;
}

.action-reflect {
    background: #a8d46f;
}

.action-help {
    background: #e07a7a;
}

/* Footer */
.footer {
    background: #c85a54;
    color: #fff;
    padding: 20px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.friend-links {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.friend-links span {
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.friend-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

.friend-links a:hover {
    text-decoration: underline;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    margin: 0 5px;
}

.stat-unit {
    font-size: 14px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}