/*
TABLE OF CONTENT
	1. Universal Styles
	2. Left Column
	3. Right Column
	4. Charts & Maps
	5. Login
	6. Manage Users
	7. Preferences
	8. Media Queries
----------------------------------------------*/
/* 1. Universal Styles
----------------------------------------------*/
/* * {
	font-family: 'Open Sans', sans-serif;
} */

html,
body {
	height: 100%;
	margin: 0;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
}

body,
.ht-left-nav {
	background: rgba(0, 0, 0, 1);
}

h1,
h2,
h3 {
	margin: 0;
}

h2 {
	font-size: 1.6em;
}

h3 {
	color: #7f7f7f;
	font-size: 1.4em;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

label {
	font-weight: unset;
}

.fa {
	font-size: large;
	font-style: normal;
}

a:hover {
	text-decoration: none;
}

nav li {
	font-size: 1.1em;
	list-style: none;
	text-transform: uppercase;
}

.ht-inline-block {
	display: inline-block;
	vertical-align: middle;
}

.ht-block {
	display: block;
}

.ht-position-relative {
	position: relative;
}

.blue-text {
	color: #39ADB4;
}

.white-text {
	color: white;
}

.green-bg {
	background-color: #39ADB4;
}

.yellow-bg {
	background-color: #D8D138;
}

.orange-bg {
	background-color: #EC7112;
}

.white-bg {
	background-color: white;
}

.white-bg .fa-times {
	background-color: #d7d7d7;
}

.white-bg .fa-times:hover {
	background: #83ccd1;
}

.orange-bg {
	background-color: #F17A54;
	color: white;
}

.orange-bg .fa-times {
	background-color: #F0A790;
}

.orange-bg .fa-times:hover {
	background-color: #E14311;
}

.burlywood-bg {
	background-color: #332609;
	color: white;
}

.burlywood-bg .fa-times {
	background-color: #F0A790;
}

.burlywood-bg .fa-times:hover {
	background-color: #E14311;
}

.pink-bg {
	background-color: #D7425C;
	color: white;
}

.pink-bg .fa-times {
	background-color: #E57C8F;
}

.pink-bg .fa-times:hover {
	background-color: #BD1F3B;
}

.blue-bg {
	background-color: #3275BB;
	color: white;
}

.blue-bg .fa-times {
	background-color: #6792C0;
}

.blue-bg .fa-times:hover {
	background-color: #2C639C;
}

.light-gray-bg {
	background-color: #efefef;
}

.padding-right-25 {
	padding-right: 25px;
}

.margin-bottom-0 {
	margin-bottom: 0;
}

.margin-bottom-5 {
	margin-bottom: 5px;
}

.margin-bottom-10 {
	margin-bottom: 10px;
	text-align: center;
}

.margin-bottom-30 {
	margin-bottom: 30px;
}

.margin-bottom-70 {
	margin-bottom: 70px;
}

.margin-right-15 {
	margin-right: 15px;
}

.margin-10 {
	margin: 10px;
}

.width-100 {
	width: 100%;
}

.no-border {
	border: none;
}

.border-radius-10 {
	border-radius: 10px;
}

.ht-footnav-fixed {
	display: none;
	position: fixed;
	bottom: 30px;
	z-index: 1;
	opacity: 90%;
	background-color: lightgrey;
}

.flex-container {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

.flex-item {
	margin-left: auto;
margin-right: auto;
margin-top: 10px;
margin-bottom: 8px;
}

.flex-item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: inherit;
	font-size: 6px;
}

footer {
	position: fixed;
	bottom: 5px;
	right: 10px;
	color: #888;
	font-size: 0.9rem;
}



/* 2. Left Column
-----------------------------*/
.ht-sidebar {
	width: 200px;
	align-self: flex-start;
	position: sticky;
	top: 0px;
	z-index: 1;
}



.square {
	width: 25px;
	height: 25px;
	border: 3px solid #13895F;
	display: inline-block;
	vertical-align: middle;
}

.circle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
}

.ht-site-header {
	margin: 15px 20px;
}

.ht-site-header img {
	width: 15rem;
	height: auto;
}

.ht-site-header h1 {
	color: white;
	display: inline-block;
	font-size: 1.8em;
	font-weight: 300;
	letter-spacing: 1.5px;
	margin: 0 5px;
	text-transform: uppercase;
	vertical-align: middle;
}

.profile-photo-container {
	position: relative;
}

.profile-photo-overlay {
	background-color: rgba(4, 152, 114, 0.35);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}

.profile-photo-overlay:hover {
	background-color: rgba(4, 152, 114, 0);
}

/* Search form */
.ht-search-form {
	font-size: 1.1em;
	margin: 5% 20% 0 20%;
}

.ht-search-form .input-group {
	width: 100%;
}

.ht-search-form .input-group .form-control {
	background-color: #18191b;
	border: none;
	border-radius: 10px;
	color: #DDD;
	padding-left: 30px;
}

.form-control:focus {
	border-color: #13895F;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(19, 137, 95, .075), 0 0 8px rgba(19, 137, 95, .6);
}

.form-control.highlight {
	background-color: #39ADB4;
	color: white;
}

.form-control.highlight::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #ccc;
}

.form-control.highlight:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #ccc;
	opacity: 1;
}

.form-control.highlight::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #ccc;
	opacity: 1;
}

.form-control.highlight:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #ccc;
}

.ht-search-form .input-group {
	position: relative;
}

.fa-search {
	height: 32px;
	width: 32px;
	border: none;
	cursor: pointer;
	color: white;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}

.mobile-menu-icon {
	cursor: pointer;
	display: none;
}

.ht-left-nav li {
	font-weight: 300;
}

.ht-left-nav a.active,
.ht-left-nav a:hover {
	background: #18191b;
	border-left: 8px solid #13895F;
}

.ht-left-nav a {
	color: #e9e9ea;
	display: block;
	padding: 20px 25px;
	transition: all 0.3s ease;
}

.ht-left-nav .fa {
	margin-right: 15px;
}

/* 3. Right Column
------------------------------*/
.ht-top-nav-container {
	/* 	background-color: white; */
	padding: 0px 10px;
	box-shadow: 0px 0px 2px 2px rgba(161, 159, 159, 0.18);
}

.ht-top-nav li {
	float: left;
	list-style: none;
}

.ht-top-nav a {
	color: #7f7f7f;
	display: block;
	padding: 0 50px;
	border-left: 2px solid #c5c5c5;
}

.ht-top-nav li:last-child a {
	border-right: 2px solid #c5c5c5;
}

.ht-top-nav a:hover,
.ht-top-nav a.active {
	color: #39ADB4;
}

/* Main Content Area */
.ht-content {
	margin-top: 0px;
	min-height: 100vh;
	padding: 0;
	overflow-x: hidden;
}

.ht-content-container {
	padding: 40px 50px;
}



.ht-flex-row {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.col-1 {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.col-2 {
	-webkit-flex: 2;
	-ms-flex: 2;
	flex: 2;
}

/* Content Widget */
.ht-content-widget {
	border-radius: 10px;
	padding: 30px;
	position: relative;
	margin: 10px;
	box-shadow: 0px 0px 1px 1px rgba(161, 159, 159, 0.1);
}

.ht-content-widget.no-padding {
	padding: 0;
}

.fa-times {
	border-radius: 15px;
	color: white;
	cursor: pointer;
	padding: 4px 5px;
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: small;
	z-index: 0;
	transition: all 0.3s ease;
}

.fa-heart {
	color: white;
	cursor: pointer;
	font-size: 1.4em;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 100;
	transition: all 0.3s ease;
}

.fa-heart:hover {
	color: #39ADB4;
}

.progress {
	display: block;
}

.panel-default>.panel-heading {
	background-color: #39ADB4;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	color: white;
	padding: 15px;
}

.panel-default .fa-times {
	top: 12px;
	background-color: #67B5B9;
}

.panel-default .fa-times:hover {
	background-color: #297B7F;
}

.panel {
	border-radius: 10px;
}

.pagination-wrap {
	margin-right: 10px;
	text-align: right;
	    margin-bottom: 35px;
}

.pagination>li>a {
	border-color: #E9E8E8;
	color: #a6a6a6;
	margin: 2px;
	padding: 10px;
}

.pagination>li>a,
.pagination>li:first-child>a,
.pagination>li:last-child>a {
	border-radius: 10px;
}

i.fa.fa-chevron-circle-left,
i.fa.fa-chevron-circle-right {
	font-size: 13px;
	padding: 0px;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover {
	background-color: #39ADB4;
	border-color: #E9E8E8;
	    z-index: 0;
}

.table {
	margin-bottom: 0;
}

.table>tbody>tr>td {
	padding: 5px 5px;
}

.btn-group-sm>.btn,
.btn-sm {
	padding: 3px 5px;
	font-size: 12px;
}

.table>thead>tr>td {
	padding: 15px;
}

.media {
	margin-top: 0;
}

.media-body {
	vertical-align: middle;
}

.badge {
	background-color: #d6973d;
	border-radius: 5px;
	margin-left: 5px;
	padding: 5px 10px;
	vertical-align: top;
}

.ht-img-bordered {
	border: 1px solid #ccc;
	padding: 3px;
}

/* 4. Charts & Maps - http://codepen.io/shoogledesigns/pen/BfLkA
----------------------------------------------------------------*/
.ht-chart {
	width: 100%;
	height: 300px;
}

#timeline_div {
	height: auto;
}

/* JQVMap */
.jqvmap-zoomin,
.jqvmap-zoomout {
	width: 15px;
	height: 15px;
}

.vmap {
	height: 300px;
}

/* 5. Login
------------------------------*/

.actlv-1 {
	display: none;
}

.ht-login-widget {
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px;
}

.ht-login-widget .square {
	width: 18px;
	height: 18px;
}

.ht-login-widget header {
	margin-bottom: 40px;
}

.ht-login-widget h1 {
	display: inline-block;
	font-size: 1.8em;
	text-align: center;
	text-transform: uppercase;
	vertical-align: middle;
}

.ht-login-form .form-group {
	margin-bottom: 20px;
}

.ht-login-form .form-group:last-child {
	margin-bottom: 0;
}

.input-group-addon {
	background: none;
}

.btn-primary {
	border-radius: 2px;
	background-color: #39ADB4;
	border: none;
	color: white;
}

.btn-primary:hover {
	background-color: #2A858B;
}

.ht-blue-button,
.ht-white-button {
	border-radius: 2px;
	padding: 10px 30px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.ht-blue-button {
	background-color: #39ADB4;
	border: none;
	color: white;
}

.ht-blue-button:hover {
	background-color: #2A858B;
}

.ht-white-button {
	background-color: white;
	border: 1px solid #39ADB4;
	color: #39ADB4;
}

.ht-white-button:hover {
	background-color: #eff2f3;
}

.ht-register-widget {
	max-width: 450px;
	padding: 15px;
	text-align: center;
}

.ht-register-widget p {
	margin-bottom: 0;
}

.checkbox label {
	padding-left: 0;
}

.font-weight-400 {
	font-weight: 400;
}

/* Style checkboxes and radio buttons
http://webdesign.tutsplus.com/tutorials/quick-tip-easy-css3-checkboxes-and-radio-buttons--webdesign-8953 */

input[type="checkbox"] {
	display: inline;
}

input[type="checkbox"]+label span {
	display: inline-block;
	width: 26px;
	height: 25px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	background: url(../images/checkbox-radio-sheet.png) left top no-repeat;
	cursor: pointer;
}

input[type="checkbox"]:checked+label span {
	background: url(../images/checkbox-radio-sheet.png) -26px top no-repeat;
}

input[type="radio"] {
	display: inline;
}

input[type="radio"]+label span {
	/* display: inline-block; */
	width: 26px;
	height: 25px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	background: url(../images/checkbox-radio-sheet.png) -52px top no-repeat;
	cursor: pointer;
}

input[type="radio"]:checked+label span {
	background: url(../images/checkbox-radio-sheet.png) -78px top no-repeat;
}

/* 6. Manage Users
------------------------------*/


.ht-sort-by:hover {
	color: #ded9d9;
}

.ht-edit-btn {
	border: 1px solid #ddd;
	border-radius: 3px;
	color: black;
	padding: 5px 15px;
	transition: all 0.3s ease;
}

.ht-edit-btn:hover {
	background-color: #39ADB4;
	border: 1px solid #39ADB4;
	color: white;
}

.ht-link {
	color: black;
}

.ht-link:hover {
	color: #39ADB4;
}

.ht-overflow-hidden {
	overflow: hidden;
}

.ht-user-table thead {
	background-color: #39ADB4;
	color: white;
}

.panel>.table-responsive:last-child>.table:last-child,
.panel>.table:last-child {
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.panel>.table:first-child {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.ht-social-icons-container {
	background-color: #f4f3f3;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	box-shadow: 0px 0px 1px 1px rgba(161, 159, 159, 0.1);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-top: 1px solid #dedede;
}

.social-icon-wrap {
	width: 33%;
	height: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.social-icon-wrap:nth-child(2) {
	border-left: 1px solid #dedede;
	border-right: 1px solid #dedede;
}

.ht-social-icon {
	background-color: #a6a6a6;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	font-size: 1.5em;
	padding-top: 8px;
	width: 35px;
	height: 35px;
	transition: all 0.3s ease;
}

.ht-social-icon:hover {
	background-color: #39ADB4;
}

.ht-content-img-bg {
	background-position: center;
	background-attachment: stretch;
	min-height: 300px;
}

.content-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 10px;
	width: 100%;
	height: 100%;
}

.view-img-btn-wrap {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	text-align: center;
}

.ht-view-img-btn {
	background-color: #f4f3f3;
	border: none;
	border-radius: 5px;
	color: #a6a6a6;
	padding: 10px 50px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.ht-view-img-btn:hover {
	background-color: #39ADB4;
	color: white;
}

/* 7. Preferences
-------------------------------*/
.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
	color: #13895F;
}

.has-success .form-control {
	border-color: #13895F;
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
	color: #CF922C;
}

.has-warning .form-control {
	border-color: #CF922C;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
	color: #D7425C;
}

.has-error .form-control {
	border-color: #D7425C;
}

.ht-multi-select {
	min-width: 200px;
	height: 100px;
	overflow-y: scroll;
}

/* 8. Media Queries
------------------------------*/
@media screen and (max-width: 1199px) and (min-width: 991px) {
	.ht-site-header {
		margin: 25px;
	}

	.ht-search-form {
		margin: 20px;
	}

	nav li {
		font-size: 1em;
	}

	.ht-left-nav a {
		padding: 15px;
	}

	.ht-top-nav a {
		padding: 0 30px;
	}
}

@media screen and (max-width: 1199px) {
	.ht-flex-row.flex-content-row {
		display: block;
	}

	.ht-sidebar {
		width: 160px;
	}

	.ht-site-header img {
		width: 10rem;
		height: auto;
	}

	.ht-left-nav a {
		padding: 16px 25px;
	}
}

@media screen and (max-width: 992px) and (min-width: 768px) {

	.ht-site-header,
	.ht-search-form {
		margin: 15px;
	}

	.ht-site-header h1 {
		font-size: 1.6em;
	}

	.square {
		width: 20px;
		height: 20px;
	}

	.ht-left-nav a.active,
	.ht-left-nav a:hover {
		border-left: 6px solid #13895F;
	}

	.ht-top-nav-container {
		padding: 17px 30px;
	}

	.ht-top-nav a {
		padding: 0 15px;
	}
}

@media screen and (max-width: 992px) {
	nav li {
		font-size: 1em;
	}

	.ht-content-container {
		padding: 10px 5px 30px 5px;
	}
}

@media only screen and (min-width: 768px) {
	.ht-left-nav {
		display: block !important;
	}
}

@media screen and (max-width: 767px) {
	.ht-flex-row {
		display: block;
		margin-bottom: 35px;
	}

	.ht-site-header {
		margin: 5px 10px;
	}

	.ht-site-header img {
		width: 12rem;
		height: auto;
	}

	.profile-photo-container {
		display: none;
		/* Hide profile photo on mobile view */
	}

	.ht-search-form {
		margin: 10px;
	}

	.ht-top-nav-container {
		padding: 10px;
	}

	.ht-top-nav-container .row .col-lg-6 h6 {
		margin-top: 0px;
		margin-bottom: 0px;
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.ht-top-nav a {
		border-left: 1px solid #c5c5c5;
		padding: 0 7px;
	}

	.ht-top-nav li:last-child a {
		border-right: 1px solid #c5c5c5;
	}

	.ht-content-widget {
		padding: 15px;
	}

	/* Left column */
	.ht-left-nav {
		display: none;
		position: fixed;
		background-color: rgba(2, 74, 64, 1.00);
		top: 5px;
		right: 0px;
		overflow: auto;
		width: 45%;
		z-index: 999;
		padding: 40px 0px 20px 0;
		opacity: 98%;
		border-radius: 9px;
	}

	.ht-left-nav a {
		padding: 10px 50px 10px 20px;
	}

	.ht-left-nav a.active,
	.ht-left-nav a:hover {
		border-left: 4px solid #13895F;
	}

	.flex-item a.active, .flex-item a:hover {
        color: #13895F;
    }

	.ht-left-nav li {
		text-align: center;
	}

	.mobile-menu-icon {
		cursor: pointer;
		display: block;
		position: fixed;
		top: 5px;
		right: 10px;
		z-index: 1000;
	}

	.mobile-menu-icon:hover .fa {
		background-color: rgba(19, 137, 95, 0.8);
	}

	.mobile-menu-icon .fa {
		color: #fff;
		background-color: rgba(19, 137, 95, 0.4);
		font-size: 1.5em;
		width: 40px;
		height: 40px;
		padding-top: 6px;
		padding-left: 12px;
		border-radius: 9px;
	}

	.input-group .form-control {
		z-index: auto;
	}

	.pagination>li>a,
	.pagination>li:first-child>a,
	.pagination>li:last-child>a {
		border-radius: 6px;
		padding: 6px;
	}

	i.fa.fa-chevron-circle-left,
	i.fa.fa-chevron-circle-right {
		font-size: 13px;
		padding: 0px;
	}

	.table>thead>tr>td {
		padding: 5px 2px;
		font-size: 12px;
	}

	.table>tbody>tr>td {
		padding: 5px 2px;
		font-size: 11px;
	}

	.btn-group-sm>.btn,
	.btn-sm {
		padding: 0px 5px;
		font-size: 11px;
	}

	.ht-footnav-fixed {
		display: block;
		left: 0px;
		        width: 100%;
	}

}

.gift_box {
	float: left;
	margin-left: 40px;
	margin-bottom: 10px;
}

.text-right {
	clear: left;
}

.gift_stl {
	border-radius: 15px;
	width: 210px;
	height: 150px;
}

.text-right {
	clear: right;
}

.text-right {
	clear: both;
}

.zl_box {
	float: left;
	width: 300px;
	height: 200px;
	margin-left: 30px;
}

.margin {
	margin-top: 30px;
}

.file-load {
	margin-left: 25px;
}


.gift_txt {
	width: 210px;
	background-color: #EFEFEF;
	border: none;

}

.cvs {
	padding-top: 20px;
}

.filt {
	text-align: right;
}

/*名片*/
@media screen and (min-width: 768px) {
	.bc-white-bg {
		height: 540px;
		width: 810px;
		margin: auto !important;
	}
}

.bc-lg {
	width: 25%;
	margin-top: 3em;
	margin-left: 70%;
}


/*无框表单*/
.form_tch_add td {
	text-align: right;
}

.form_tch_add input {
	border-style: hidden;
	width: 20em;
	text-align: left;
}

/*客户纪律分*/
.td-daily {
	width: 100% !important;
}

.td-daily td {
	width: 4%;
	height: 3em;
	text-align: center;
}

/* 搜索样式 */

.subtitle {
	font-size: 1.1rem;
	opacity: 0.9;
}

.search-section {
	float: left;
	width: 100%;
	padding: 30px;
	border-bottom: 1px solid #eee;
}

.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}



.ht-search-form label {
	display: block;
	margin: 5px;
	font-weight: 600;
	color: #555;
}

.ht-search-form input[type="text"],
.ht-search-form input[type="number"],
.ht-search-form select {
	float: left;
	width: 79%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 12px;
	transition: border-color 0.3s;
}

.search-under {
	padding: 5px 23% 5px 20%;
	float: left;
}

.search-item {
	float: left;
	width: 21%;
	padding: 0px 1%;
}

.search-item-lable {
	font-size: 12px;
	font-weight: 350;
	margin: 0 2px;
	color: rgb(60, 60, 60);
}

.search-Param {
	height: 20px;
	width: 100%;
	padding: 0 5%;
	font-size: 11px;
	border: none;
	color: rgb(60, 60, 60);
	background: #fff;
}

input[type="text"]:focus,
select:focus {
	border-color: #2575fc;
	outline: none;
}

.search-btn {
	float: left;
	width: 20%;
	margin-left: 2px;
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	color: white;
	border: none;
	padding: 12px 14px;
	/* margin: 56px 0% 0 44%; */
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	align-self: flex-end;
}

.search-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 10px rgba(37, 117, 252, 0.3);
}

.search-options {
	margin-top: 15px;
}

.search-options input {
	margin-top: 0px;
	color: #037589;
	;
}


.checkbox-group {
	float: left;
	margin-right: 5px;
}

.results-section {
	float: left;
	width: 100%;
	padding: 30px;
}

.checkbox-group input {
	margin-top: -5px;
	vertical-align: middle;
	transform: scale(0.8);
}

.checkbox-group label {
	vertical-align: middle;
}

.section-title {
	float: left;
	margin-right: 14px;
	font-size: 1.5rem;
	color: #333;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f0f0;
}

.results-options {
	float: left;
	width: 100%;
	font-size: 1rem;
	margin-bottom: 0px;
	color: rgb(60, 60, 60);
	font-weight: 400;
}

.results-count {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 5px;
	float: left;
	width: 100%;
}

.no-results {
	text-align: center;
	padding: 40px;
	color: #888;
	font-size: 1.2rem;
}

.results-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

.results-table th {
	background-color: #f8f9fa;
	padding: 9px 5px;
	text-align: left;
	font-weight: 600;
	color: #555;
	border-bottom: 2px solid #eaeaea;
}

.results-table td {
	font-size: 12px;
	padding: 9px 5px;
	border-bottom: 1px solid #f0f0f0;
}

.results-table a {
	color: inherit;
}

.results-table sup i {
	font-size: 11px;
	margin-left: 2px;
}

.results-table tr:hover {
	background-color: #f9f9f9;
}

.category-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
}

.category-机械 {
	background-color: #e3f2fd;
	color: #1565c0;
}

.category-电气 {
	background-color: #f3e5f5;
	color: #7b1fa2;
}

.category-耗材 {
	background-color: #e8f5e9;
	color: #2e7d32;
}

.category-工具 {
	background-color: #fff3e0;
	color: #ef6c00;
}

.category-其它 {
	background-color: #fce4ec;
	color: #c2185b;
}

.category-办公 {
	background-color: #e0f7fa;
	color: #006064;
}

.price {
	font-weight: 600;
	color: #2e7d32;
}

.std_total {
	font-weight: 600;
}

.std_total-high {
	color: #2e7d32;
}

.std_total-medium {
	color: #f57c00;
}

.std_total-low {
	color: #d32f2f;
}

.highlight {
	background-color: #fff9c4;
	padding: 0 2px;
	border-radius: 2px;
}

@media (max-width: 1024px) {
	.results-table th {
		padding: 5px 5px;
		font-weight: 450;
		font-size: 12px;
	}

	.results-table td {
		font-size: 10px;
		font-weight: 350;
		padding: 2px 2px;
	}

	.results-table sup i {
		font-size: 10px;
		margin-left: 2px;
	}

	.results-table li {
		padding-right: 1px;
		padding-left: 0px;
	}
}

@media (max-width: 768px) {
	.container {
		border-radius: 0;
	}

	.search-form {
		flex-direction: column;
	}

	.search-Param {
		font-size: 9px;
	}

	.search-under {
		padding: 0px 19% 1px 3%;
	}

	.search-item-lable {
		font-size: 9px;
	}

	.results-section {
		padding: 0px;
		margin-bottom: 30px;
	}

	.results-table {
		overflow-x: auto;
		margin-bottom: 55px;
	}

	.search-Param {
		height: 16px;
	}

	.ht-search-form input[type="text"] {
		width: 70%;
	}

	.search-btn {
		padding: 15px 2%;
		font-size: 12px;
		width: 24%;
		margin-left: 1%;
	}

	.results-options {
		font-size: 0.9rem;
	}

	.results-table th {
		padding: 4px 1px;
		font-weight: 450;
		font-size: 9px;
	}

	.results-table td {
		font-size: 9px;
		font-weight: 350;
		padding: 2px 2px 2px 1px;
	}

	.display-category {
		display: none;
	}

	.results-table sup i {
		font-size: 8px;
		margin-left: 2px;
	}
}