.xinhub-notice {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-bottom: 16px;
	background: #f8f8f8;
}

.xinhub-notice-success {
	border-color: #46b450;
	background: #f0fff2;
}

.xinhub-notice-error {
	border-color: #dc3232;
	background: #fff5f5;
}

.xinhub-register-wrapper,
.xinhub-profile-wrapper,
.xinhub-offer-wrapper,
.xinhub-detail-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.xinhub-register-form p,
.xinhub-filter-form p {
	margin-bottom: 14px;
}

.xinhub-register-form input[type="text"],
.xinhub-register-form input[type="email"],
.xinhub-register-form input[type="number"],
.xinhub-register-form input[type="date"],
.xinhub-register-form select,
.xinhub-filter-form select,
.xinhub-textarea {
	width: 100%;
	max-width: 100%;
	padding: 8px;
	box-sizing: border-box;
}

.xinhub-register-form button,
.xinhub-filter-form button {
	padding: 10px 16px;
	cursor: pointer;
}

.xinhub-action-link,
.xinhub-reset-link {
	font-weight: 600;
	text-decoration: underline;
}

.xinhub-nav {
	margin-bottom: 20px;
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}

.xinhub-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.xinhub-nav-list li {
	margin: 0;
	padding: 0;
}

.xinhub-nav-list a {
	text-decoration: none;
	font-weight: 600;
}

.xinhub-nav-list a:hover {
	text-decoration: underline;
}

.xinhub-filter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin-bottom: 10px;
}

.xinhub-table-wrapper {
	overflow-x: auto;
	margin-top: 20px;
}

.xinhub-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.xinhub-table th,
.xinhub-table td {
	padding: 10px;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
}

.xinhub-table th {
	background: #f5f5f5;
}

.xinhub-pagination {
	margin-top: 20px;
}

.xinhub-pagination-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.xinhub-pagination-list a {
	display: inline-block;
	padding: 8px 12px;
	border: 1px solid #ccc;
	text-decoration: none;
	border-radius: 4px;
}

.xinhub-pagination-list a.is-active {
	font-weight: 700;
	background: #f2f2f2;
}

.xinhub-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin: 20px 0;
}

.xinhub-detail-grid p,
.xinhub-contact-box p {
	margin: 0 0 10px 0;
}

.xinhub-contact-box,
.xinhub-contact-form-box {
	margin-top: 24px;
	padding: 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fafafa;
}

.xinhub-button-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.xinhub-filter-form .xinhub-button-row,
.xinhub-register-form .xinhub-button-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

@media (max-width: 640px) {
	.xinhub-button-row,
	.xinhub-filter-form .xinhub-button-row,
	.xinhub-register-form .xinhub-button-row {
		flex-direction: column;
		align-items: stretch;
	}

	.xinhub-button-row button,
	.xinhub-filter-form .xinhub-button-row button,
	.xinhub-register-form .xinhub-button-row button,
	.xinhub-button-row a,
	.xinhub-filter-form .xinhub-button-row a,
	.xinhub-register-form .xinhub-button-row a {
		width: 100%;
		text-align: center;
	}
}

.xinhub-contact-form-box {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #fff;
}

.xinhub-contact-form-box h2 {
    margin: 0 0 14px;
    font-size: 20px;
}

.xinhub-contact-form {
    margin: 0;
}

.xinhub-form-field {
    margin-bottom: 14px;
}

.xinhub-form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.xinhub-textarea {
    width: 100%;
    min-height: 140px;
    padding: 10px 12px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    box-sizing: border-box;
}

.xinhub-button-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.xinhub-button-primary {
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    background: #2271b1;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.xinhub-button-primary:hover {
    background: #135e96;
}

.xinhub-pagination {
    margin-top: 18px;
}

.xinhub-pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.xinhub-pagination-list a,
.xinhub-pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.xinhub-pagination-list a:hover {
    background: #f6f7f7;
}

.xinhub-pagination-list a.is-active {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.xinhub-pagination-prev,
.xinhub-pagination-next {
    font-weight: 600;
}

.xinhub-pagination-dots {
    border-color: transparent;
    background: transparent;
    padding: 0 4px;
    min-width: auto;
}

.xinhub-offer-wrapper {
    max-width: 1000px;
}

.xinhub-offer-wrapper h2 {
    margin: 0 0 16px;
}

.xinhub-offer-form {
    padding: 18px;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #fff;
}

.xinhub-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.xinhub-form-field {
    margin-bottom: 14px;
}

.xinhub-form-field label,
.xinhub-field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.xinhub-offer-form input[type="text"],
.xinhub-offer-form input[type="number"],
.xinhub-offer-form input[type="date"],
.xinhub-offer-form select,
.xinhub-offer-form textarea {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

.xinhub-checkbox-group {
    margin-top: 4px;
}

.xinhub-checkbox-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
}

.xinhub-checkbox-group input[type="checkbox"] {
    margin-right: 8px;
}

@media (max-width: 782px) {
    .xinhub-offer-form {
        padding: 14px;
    }

    .xinhub-form-grid {
        grid-template-columns: 1fr;
    }
}

.xinhub-profile-wrapper {
    max-width: 1000px;
}

.xinhub-profile-wrapper h2 {
    margin: 0 0 16px;
}

.xinhub-profile-form {
    padding: 18px;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #fff;
}

.xinhub-form-section {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e2e4e7;
}

.xinhub-form-section h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.xinhub-form-note {
    margin: 0 0 14px;
    font-size: 14px;
    color: #50575e;
}

.xinhub-form-field-full {
    grid-column: 1 / -1;
}

.xinhub-register-wrapper {
    max-width: 1000px;
}

.xinhub-register-wrapper h2 {
    margin: 0 0 16px;
}

.xinhub-register-form {
    padding: 18px;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #fff;
}

.xinhub-nav {
    margin: 0 0 20px;
}

.xinhub-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.xinhub-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.xinhub-nav-link:hover {
    background: #f6f7f7;
    text-decoration: none;
}

.xinhub-nav-link.is-active {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.xinhub-select-search {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

.xinhub-select-search.is-active {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

