

        .reputation-container {
            width: 1200px;
            margin: 30px auto 110px;
        }

        .reputation-card {
            background: linear-gradient(135deg, #f0e8d8, #e8e0c8);
            border: 1px solid rgba(168, 136, 96, 0.35);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 20px rgba(168, 136, 96, 0.15), 0 0 15px rgba(230, 154, 136, 0.08) inset;
            position: relative;
        }

        .reputation-card::before {
            content: "";
            display: block;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #e69a88, #f0d99c, #e87a6f);
            border-radius: 10px 10px 0 0;
            margin: -25px -25px 25px;
        }

        .reputation-title {
            font-size: 22px;
            color: #e69a88;
            font-weight: 600;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 0 8px rgba(240, 217, 156, 0.25);
        }

        .job-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 10px 25px;
            background: rgba(230, 154, 136, 0.1);
            border: 1px solid rgba(168, 136, 96, 0.3);
            border-radius: 6px;
            color: #584830;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #e69a88, #f0d99c);
            color: #fff;
            border-color: #e69a88;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .tab-btn:hover {
            background: rgba(230, 154, 136, 0.2);
            border-color: #e69a88;
        }

        .job-list {
            text-align: center;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(255,255,255,0.3);
            border-radius: 8px;
            border: 1px solid rgba(168, 136, 96, 0.2);
            padding-bottom:20px;
        }

        .job-list h3 {
            color: #584830;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .job-list p {
            color: #786040;
            font-size: 14px;
            line-height: 1.8;
        }

        .special-content {
            padding: 20px;
            background: rgba(255,255,255,0.3);
            border-radius: 8px;
            border: 1px solid rgba(168, 136, 96, 0.2);
            margin-bottom: 25px;
            display: none;
        }

        .special-content.active {
            display: block;
        }

        .special-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed rgba(168, 136, 96, 0.2);
        }

        .special-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .special-item .title {
            font-size: 15px;
            font-weight: 600;
            color: #e69a88;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .special-item .title .title-text {
            width: 200px;
            flex: none;
            text-align: left;
        }

        .special-item .title .num {
            background: #e87a6f;
            color: #fff;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 13px;
            white-space: nowrap;
        }

        .special-item .title .num.negative {
            background: #886655;
        }

        .special-item .title .num.no-change {
            background: #998877;
        }

        .special-item .desc {
            font-size: 14px;
            color: #786040;
            line-height: 1.6;
            padding-left: 10px;
        }

        .date-set {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(230, 154, 136, 0.05);
            border-radius: 8px;
            flex-wrap: wrap;
        }

        .date-set label {
            font-size: 16px;
            color: #584830;
            font-weight: 500;
        }

        input[type="date"] {
            padding: 8px 12px;
            border: 1px solid rgba(168, 136, 96, 0.5);
            border-radius: 6px;
            background: #fffef7;
            color: #504028;
            font-size: 14px;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
            width: auto;
            min-width: 140px;
        }
        input[type="date"]:hover {
            border-color: #e69a88;
            background-color: #fffaf2;
            box-shadow: 0 0 0 1px rgba(230,154,136,0.2);
        }
        input[type="date"]::-webkit-calendar-picker-indicator {
            cursor: pointer;
            filter: invert(0.4);
            opacity: 0.7;
        }
        input[type="date"]::-webkit-calendar-picker-indicator:hover {
            filter: invert(0.3);
            opacity: 1;
        }

        .reputation-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 8px;
            overflow: hidden;
            background: none;
        }

        .reputation-table thead tr {
            background: linear-gradient(90deg, #e69a88 0%, #f0d99c 50%, #e87a6f 100%);
        }

        .reputation-table th {
            color: #fff;
            padding: 12px;
            text-align: center;
            font-size: 15px;
            font-weight: 600;
            border: none;
        }

        .reputation-table td {
            padding: 12px;
            text-align: center;
            color: #584830;
            font-size: 14px;
            border: none;
            vertical-align: middle;
        }

        .reputation-table tbody tr {
            background: linear-gradient(90deg, 
                rgba(255, 248, 240, 0.8) 0%, 
                rgba(250, 240, 225, 0.9) 50%, 
                rgba(245, 230, 210, 1) 100%);
            transition: all 0.3s ease;
        }

        .reputation-table tbody tr:hover {
            background: linear-gradient(90deg, 
                rgba(230, 154, 136, 0.15) 0%, 
                rgba(240, 217, 156, 0.2) 50%, 
                rgba(230, 154, 136, 0.15) 100%);
            transform: scale(1.005);
        }

        .reputation-table tbody tr + tr {
            border-top: 1px solid rgba(168, 136, 96, 0.1);
        }

        .job_a{
            color:#e69a88;
            font-size:14px;
        }

        @media (max-width: 768px) {
            .reputation-container { width: 95%; }
            .job-tabs { gap: 6px; }
            .tab-btn { padding: 6px 14px; font-size: 13px; }
            .reputation-table th, .reputation-table td { padding: 8px 4px; font-size: 12px; }
            .special-item .title .title-text { width: 100%; }
            input[type="date"] { min-width: 120px; font-size: 12px; padding: 6px 8px; }
        }