 @import url("font.css");
:root {
 --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
 --font-title: "Alimama ShuHeiTi", "AlibabaPuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
 --font-strong: "AlibabaPuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
 --theme-page-bg: #f8efd8;
 --theme-panel-bg: #fbf8ef;
 --theme-surface-card: #fff;
 --theme-panel-border: #fff4d2;
 --theme-text-main: #1f1a14;
 --theme-text-soft: #6f6557;
 --theme-text-muted: #9b907f;
 --theme-title: #ab812d;
 --theme-title-strong: #8e5300;
 --theme-accent: #d1a961;
 --theme-accent-strong: #cca354;
 --theme-button-primary: #ab812d;
 --theme-button-secondary: #d1a961;
 --theme-button-blue-start: #5d88f4;
 --theme-button-blue-end: #4474eb;
 --theme-success: #06b464;
 --theme-warning: #ff7513;
 --theme-scrollbar-thumb: rgba(171, 129, 45, 0.55);
 --theme-scrollbar-track: rgba(248, 239, 216, 0.9);
 --theme-hero-start: #fff7e6;
 --theme-hero-end: #efd7a5;
 --theme-hero-orb: rgba(255, 255, 255, 0.55);
 --theme-button-icon-bg: rgba(255, 255, 255, 0.2);
 --theme-button-icon-color: #fff8ea;
 --theme-pay-icon-badge: rgba(248, 239, 216, 0.88);
 --theme-success-art-start: #7ddf63;
 --theme-success-art-end: #06b464;
 --theme-mask: rgba(0, 0, 0, 0.45);
 --theme-divider: var(--theme-panel-border);
 --theme-danger: #ab812d;
 --theme-link: #cca354;
 --text-main: var(--theme-text-main);
 --text-soft: var(--theme-text-soft);
 --text-muted: var(--theme-text-muted);
 --panel-radius: 16px;
 --panel-shadow: 0 8px 21px rgba(120, 94, 40, 0.08);
 --button-height: 49px;
 --button-radius: 11px;
 --button-shadow: 0 7px 15px rgba(120, 94, 40, 0.08);
 --button-shadow-strong: 0 8px 16px rgba(87, 67, 31, 0.16);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: -apple-system, Helvetica, sans-serif, Arial;
	background: var(--theme-page-bg);
	color: var(--text-main);
	line-height: 1.6;
	font-weight: 400;
}
a {
	text-decoration:none;
	color:var(--text-soft);
}
.container {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	min-height: 100vh;
	background: var(--theme-page-bg);
}
.appcontent {
	width: 100%;
	max-width: 857px;
	background: var(--theme-page-bg);
	position:relative;
}
 @media (min-width: 913px) {
 .container {
padding: 20px 0;
}
 .appcontent {
width: 80%;
}
}
 @media (max-width: 912px) {
 .container {
padding: 0;
}
 .appcontent {
width: 100%;
}
}
 .Message_ui {
	 background-color: #e3ab89;
	 color: #fff;
	 font-size: 1.5rem;
	 padding: 0.5rem 0.5rem;
	 border-radius: 1rem;
	 position: fixed;
	 top: 30%;
	 left: 50%;
	 transform: translate(-50%);
	 text-wrap: nowrap;
 }

.gui-sbody {
	min-height: calc(100vh - var(--window-top, 0px) - var(--window-bottom, 0px));
	display: flex;
	flex-direction: column;
	flex: 1;
	position: relative;
}
.gui-padding {
	padding: 12px;
}
.gui-margin-top {
	margin-top: 16px;
}
.gui-margin-top1 {
	margin-top:20px;
}
.gui-margin {
	margin: 16px;
}
.gui-padding-x {
	padding: 0 16px;
}
.gui-flex {
	display: flex;
}
.gui-column {
	flex-direction: column;
}
.gui-row {
	flex-direction: row;
}
.gui-nowrap {
	flex-wrap: nowrap;
}
.gui-wrap {
	flex-wrap: wrap;
}
.gui-space-between {
	justify-content: space-between;
}
.gui-space-around {
	justify-content: space-around;
}
.gui-justify-content-center {
	justify-content: center;
}
.gui-justify-content-start {
	justify-content: flex-start;
}
.gui-justify-content-end {
	justify-content: flex-end;
}
.gui-align-items-center {
	align-items: center;
}
.gui-align-items-start {
	align-items: flex-start;
}
.gui-align-items-end {
	align-items: flex-end;
}
.gui-flex1 {
	flex: 1;
}
.gui-flex-shrink0 {
	flex-shrink: 0;
}
.gui-block {
	display: block;
}
.gui-text-center {
	text-align: center;
}
.gui-text-left {
	text-align: left;
}
.gui-text-right {
	text-align: right;
}
.gui-ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gui-bold {
	font-weight: 700;
}
.gui-italic {
	font-style: italic;
}
.gui-underline {
	text-decoration: underline;
}
.gui-line-through {
	text-decoration: line-through;
}
.gui-border {
	border: 0.5px solid var(--theme-panel-border);
}
.gui-border-t {
	border-top: 0.5px solid var(--theme-panel-border);
}
.gui-border-b {
	border-bottom: 0.5px solid var(--theme-panel-border);
}
.gui-border-l {
	border-left: 0.5px solid var(--theme-panel-border);
}
.gui-border-r {
	border-right: 0.5px solid var(--theme-panel-border);
}
.gui-border-radius {
	border-radius: var(--panel-radius);
}
.gui-border-radius-small {
	border-radius: 3px;
}
.gui-bg-topmain {
	background-color: var(--theme-panel-bg);
}
.gui-bg-white {
	background-color: var(--theme-surface-card) !important;
}
.gui-bg-gray {
	background-color: #f8f8f8 !important;
}
.gui-bg-primary {
	background-color: var(--theme-button-primary) !important;
}
.gui-bg-orange2 {
	background-color: var(--theme-button-secondary);
}
.gui-bg-orange3 {
	background-color: var(--theme-button-primary);
}
.gui-bg-red {
	background-color: var(--theme-button-primary) !important;
}
.gui-bg-transparent {
	background-color: transparent;
}
.gui-dark-bg-level-1, .gui-dark-bg-level-2, .gui-dark-bg-level-3 {
	background-color: var(--theme-surface-card) !important;
	color: var(--text-main) !important;
}
.gui-color-top {
	color: var(--theme-title) !important;
	font-family: var(--font-title);
	font-size: 31px;
	font-weight: 700;
	letter-spacing: 0.5px;
}
.gui-color-top2 {
	color: var(--theme-title) !important;
	font-family: var(--font-strong);
	font-size: 21px;
	font-weight: 700;
}
.gui-color-top3 {
	color: var(--theme-title-strong) !important;
	font-family: var(--font-title);
	font-weight: 700;
}
.gui-primary-text {
	color: var(--text-main) !important;
	font-weight: 600;
}
.gui-secondary-text {
	color: #444;
}
.gui-third-text {
	color: #969696;
}
.gui-color-gray {
	color: var(--text-soft) !important;
}
.gui-color-gray-light {
	color: var(--text-muted) !important;
}
.gui-color-gray2 {
	color: var(--text-main) !important;
	font-size: 15px;
}
.gui-color-hui {
	color: var(--text-muted) !important;
}
.gui-color-blue {
	color: var(--theme-accent-strong) !important;
}
.gui-color-red {
	color: var(--theme-warning) !important;
}
.gui-color-green {
	color: #39b55a !important;
}
.gui-color-orange {
	color: #ed6a0c !important;
}
.gui-color-black {
	color: #2b2e3d !important;
}
.gui-color-white {
	color: var(--theme-button-icon-color) !important;
}
.gui-h1 {
	font-size: 32px;
}
.gui-h2 {
	font-size: 26px;
}
.gui-h3 {
	font-size: 21px;
}
.gui-h4 {
	font-size: 19px;
}
.gui-h5 {
	font-size: 17px;
}
.gui-h6 {
	font-size: 16px;
}
.gui-text {
	font-size: 15px;
}
.gui-text-small {
	font-size: 11px;
}
.gui-bgcolor-top {
	color: var(--theme-title-strong);
	font-family: var(--font-strong);
	font-size: 18px;
	font-weight: 700;
	background-color: var(--theme-accent);
	padding: 5px;
	border-radius: 6%;
	border:8px solid var(--theme-panel-border);
	display: inline-block;
	letter-spacing: 0.5px;
}
.gui-icons {
	font-family: 'graceIconfontBase64', sans-serif;
	font-style: normal;
}
.hero-wrap {
	padding-bottom: 4px;
}
.topview {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--theme-hero-start), var(--theme-hero-end));
	border-radius: 17px;
	box-shadow: var(--button-shadow-strong);
	padding: 19px 16px 18px;
}
.hero-orb {
	position: absolute;
	border-radius: 50%;
	background: var(--theme-hero-orb);
	filter: blur(2px);
}
.hero-orb-left {
	width: 117px;
	height: 117px;
	left: -21px;
	top: -16px;
}
.hero-orb-right {
	width: 139px;
	height: 139px;
	right: -32px;
	bottom: -53px;
}
.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 0), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 0);
	background-size: 17px 17px;
	opacity: 0.35;
}
.hero-title {
	position: relative;
	z-index: 2;
	text-shadow: 0 1px 5px rgba(255, 255, 255, 0.28);
	color: var(--theme-title) !important;
	font-family: var(--font-title);
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: 0.5px;
	line-height: 1.2;
}
.hero-subtitle {
	position: relative;
	z-index: 2;
	color: var(--theme-title) !important;
	font-family: var(--font-strong);
	font-size: 1.2rem;
	font-weight:bold;
	letter-spacing: 0.5px;
}
.license-field {
	padding-bottom: 9px;
	border-bottom: 0.5px solid var(--theme-panel-border);
}
.license-label-row {
	display: flex;
	align-items: center;
	padding: 4px 0 9px;
}
.license-label {
	margin-left: 5px;
	font-size: 16px;
	font-weight: 700;
	color: var(--theme-title-strong);
}
.license-search-panel {
	position: relative;
	padding: 10px 10px 8px;
	border-radius: 15px;
	background: linear-gradient(180deg, var(--theme-surface-card), var(--theme-panel-bg));
	box-shadow: inset 0 0 0 0.5px var(--theme-panel-border), 0 5px 12px rgba(66, 109, 176, 0.08);
}
.license-search-bar {
	position: relative;
	padding-right: 71px;
	border-radius: 11px;
	background: var(--theme-surface-card);
	box-shadow: inset 0 0 0 0.5px var(--theme-panel-border);
}
.license-search-input {
	height: 45px;
	padding: 0 15px;
	font-size: 16px;
	width: 100%;
	border: none;
	background: transparent;
}
.license-search-input input {
	width: 100%;
	border: none;
	background: transparent;
	font-size: 16px;
	outline: none;
	height:100%;
}
.license-search-action {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 63px;
	height: 36px;
	border-radius: 8px;
	background: linear-gradient(180deg, var(--theme-button-blue-start), var(--theme-button-blue-end));
	box-shadow: var(--button-shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.license-search-action-text {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}
.license-search-tip {
	display: block;
	margin-top: 7px;
	font-size: 11px;
	color: var(--theme-text-soft);
}
.license-result-panel {
	display:none;
	margin-top: 6px;
	border-radius: 11px;
	background: var(--theme-surface-card);
	overflow: hidden;
	box-shadow: var(--panel-shadow);
}
.license-result-item, .license-result-state {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 11px;
}
.license-result-main {
	flex: 1;
	padding-right: 8px;
}
.license-result-name {
	display: block;
	font-size: 12px;
	line-height: 1.4;
	color: var(--theme-text-main);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.license-result-main span {
	display: inline;
}
.license-result-meta {
	display: block;
	margin-top: 1px;
	font-size: 10px;
	line-height: 1.35;
	color: var(--theme-text-soft);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.license-result-side {
	flex-shrink: 0;
	max-width: 75px;
	font-size: 10px;
	font-weight: 700;
	color: var(--theme-accent-strong);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: right;
}
.license-result-meta span:last-child {
	display:none
}
.license-selected-close {
	display:none
}
.license-result-item.active .license-result-side {
	display:none
}
.license-result-item.active .license-selected-close {
	display:block
}
.license-result-item.active .license-result-name {
	font-weight:bold;
	font-size:13px;
	color: #4168ff;
}
.license-result-item.active .license-result-meta {
	color: #4168ff;
	display: flex;
	gap: 10px;
}
.license-result-item.active .license-result-meta span:last-child {
	display:block
}
.scroll-container {
	height: 117px;
	overflow: hidden;
	position: relative;
}
.scroll-list-wrapper {
	transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.dynamic-scroll-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.dynamic-scroll-item img {
	width: 21px;
	height: 21px;
	border-radius: 3px;
	margin-right: 10px;
}
.dynamic-scroll-item .item-text {
	font-size: 12px;
	font-weight: 600;
	color: var(--theme-text-main);
}
.gui-page-fixed-top {
	position: fixed;
	top:0;
	width:100%;
	max-width:853px;
	background: var(--theme-page-bg);
	z-index: 90;
	left: 50%;
	transform: translateX(-50%);
}
.gui-scroll-body {
	overflow: hidden;
}
.gui-scrolling {
	animation: graceScrollingx 12s linear infinite;
}
@keyframes graceScrollingx {
 0% {
transform: translateX(60%);
}
 100% {
transform: translateX(-100%);
}
}
.gui-scroll-msg {
	white-space: nowrap;
	line-height: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding:6px 0;
	color: var(--theme-title-strong);
}
.form-panel, .info-card, .query-card, .contact-card, .action-card {
	border-radius: 17px;
	box-shadow: var(--panel-shadow);
}
.info-card, .contact-card, .action-card {
	background: var(--theme-surface-card);
}
.gui-form-label {
	width:100px;
	line-height: 42px;
	color: var(--text-main) !important;
	font-weight: 700;
	font-size: 17px;
	font-family: var(--font-strong);
	letter-spacing: 0.5px;
}
.query-row {
	display:flex;
}
.uni-input-form, .uni-input-input, .uni-input-placeholder, .uni-input-wrapper {
	outline: none;
	border: none;
	padding: 0;
	margin: 0;
	text-decoration: inherit;
}
.uni-input-input {
	position: relative;
	display: block;
	height: 100%;
	background: none;
	color: inherit;
	opacity: 1;
	font: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-align: inherit;
	text-indent: inherit;
	text-transform: inherit;
	text-shadow: inherit;
}
.form-row {
	min-height: 57px;
	align-items: center;
	display:flex;
}
.agreement-row {
	padding-top: 4px;
}
.action-wrap {
	padding-top: 6px;
}
.primary-action {
	height: var(--button-height);
	line-height: var(--button-height);
	border-radius: var(--button-radius);
	box-shadow: var(--button-shadow);
	font-weight: 700;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--theme-button-primary);
	border: none;
	width: 100%;
	cursor: pointer;
}
.gui-button-text {
	font-size: 18px;
	color: #fff;
}
.gui-border-color {
	border: 10px solid var(--theme-panel-border);
	border-radius: 6%;
}
.theme-on-primary {
	color: #fff;
}
.overdue-tip {
	padding: 6px 9px;
	border-radius: 9px;
	background: var(--theme-panel-border);
	font-weight: 700;
	letter-spacing: 0.5px;
}
.design-body-text {
	margin-bottom: 5px;
	padding-left: 10px;
	padding-right: 8px;
	line-height: 1.6;
}
.design-section-title {
	margin-bottom: 10px;
	display: inline-block;
}
.design-bottom-space {
	height: 26px;
}
.gui-img {
	display:flex;
	align-items:center;
	margin-top:8px;
}
.gui-img img {
	width:320px;
}
.gui-list-items {
	min-height: 55px;
	padding: 4px 5px;
	border-radius: 9px;
	transition: all 0.2s ease;
	cursor: pointer;
}
.gui-list-items:hover {
	background:var(--theme-panel-border);
}
.gui-list-icon {
	width: 38px;
	height: 38px;
	line-height: 38px;
	font-size: 21px;
	border-radius: 10px;
	background: var(--theme-pay-icon-badge);
	margin-right: 4px;
	text-align: center;
}
.gui-list-body {
	flex: 1;
	padding: 13px 0;
	margin-left: 13px;
}
.gui-list-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom:10px;
}
.gui-list-title-text {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-main);
}
.gui-list-body-desc {
	font-size: 15px;
	color:var(--text-soft) !important;
	line-height: 1.75;
	margin-top: 4px;
	letter-spacing:0.5px
}
.gui-list-arrow-right {
	font-size: 16px;
	opacity: 0.7;
	color: var(--text-soft);
	display: inline-block;
}
.logo-image {
	width: 70px;
	height: 70px;
	border-radius: 17px;
	box-shadow: var(--button-shadow);
	object-fit: cover;
}
.contact-shell {
	padding-bottom: 10px;
}
.contact-hero {
	margin-top: 24px;
}
.contact-title-row {
	margin-top: 12px;
	margin-bottom: 18px;
}
.contact-title {
	font-size: 15px;
	letter-spacing: 0.5px;
	font-weight:bold;
}
.contact-page-shell {
	padding-top: 5px;
}
.notice-card {
	background: linear-gradient(180deg, var(--theme-surface-card), var(--theme-panel-bg));
}
.action-item {
	min-height: 57px;
	padding-left: 4px;
	padding-right: 4px;
	border-radius: 9px;
	display:flex;
	justify-content: center;
	align-items: center;
}
.copyright-row {
	margin-top: 15px;
	margin-left: 16px;
	margin-right: 16px;
}
.copyright-text {
	padding-left: 21px;
	padding-right: 21px;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.gui-title-line {
	width: 26px;
	height: 1px;
	background-color: var(--theme-panel-border);
	flex: 1;
}
.gui-editor-show {
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}
.gui-article-text {
	line-height: 1.8;
	font-size: 15px;
	text-align: justify;
	margin-bottom: 12px;
}
.gui-article-quote {
	line-height: 1.8;
	font-size: 15px;
	padding: 12px;
	background: #f8f8f8;
	border-left: 4px solid var(--theme-accent);
	margin: 12px 0;
	border-radius: 8px;
}
.gui-article-strong {
	font-weight: 700;
	font-size: 16px;
	margin-top: 8px;
	margin-bottom: 4px;
}
uni-app, .page-head {
	display: block;
	box-sizing: border-box;
}
.page-head .uni-page-head-hd {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	font-size: 16px;
}
.page-head .uni-page-head {
	position: fixed;
	width:100%;
	max-width:853px;
	left: var(--window-left);
	right: var(--window-right);
	height: 44px;
	height: calc(44px + constant(safe-area-inset-top));
	height: calc(44px + env(safe-area-inset-top));
	padding: 7px 3px;
	padding-top: calc(7px + constant(safe-area-inset-top));
	padding-top: calc(7px + env(safe-area-inset-top));
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	overflow: hidden;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	box-sizing: border-box;
	z-index: 998;
	color: #000;
	background: #fff;
	-webkit-transition-property: all;
	transition-property: all;
}
.uni-page-head-btn {
	position: relative;
	width: auto;
	margin: 0 2px;
	word-break: keep-all;
	white-space: pre;
	display:flex;
	cursor: pointer;
}
.page-head .uni-page-head-bd {
	position: absolute;
	left: 70px;
	right: 70px;
	min-width: 0;
}
.page-head .uni-page-head__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.page-head-bg {
	height:44px;
	padding-bottom:5px;
}
.feedback-title {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding:4px 10px 10px 10px;
	color: #8f8f94;
	font-size: 15px;
}
.feedback-quick {
	position: relative;
	padding-right: 21px;
	cursor: pointer;
}
.feedback-quick:after {
	font-family: 'graceIconfontBase64', sans-serif;
	font-size: 18px;
	content: "\e581";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--theme-accent-strong);
}
.feedback-body {
	background: var(--theme-surface-card);
	margin-bottom: 8px;
}
.feedback-textare {
	height: 107px;
	font-size: 15px;
	line-height: 1.5;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 16px 0;
	border: none;
	background: transparent;
}
.feedback-textare textarea {
	width: 100%;
	border: none;
	outline: none;
	font-size: 15px;
	font-family: inherit;
	resize: vertical;
	background: transparent;
	color: var(--text-main);
}
.feedback-input {
	font-size: 15px;
	height: 42px;
	padding: 8px 16px;
	line-height: 26px;
	background: transparent;
	border: none;
	width: 100%;
}
.feedback-input input {
	width: 100%;
	border: none;
	outline: none;
	background: transparent;
	font-size: 15px;
	color: var(--text-main);
}
.uni-uploader {
	flex: 1;
	flex-direction: column;
	padding: 8px 16px;
}
.uni-uploader-head {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 13px;
	color: var(--text-soft);
}
.uni-uploader__files {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.uni-uploader__input-box {
	position: relative;
	width: 80px;
	height: 80px;
	border: 1px dashed var(--theme-panel-border);
	background: var(--theme-panel-bg);
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.uni-uploader__input-box:before, .uni-uploader__input-box:after {
	content: " ";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--theme-text-muted);
}
.uni-uploader__input-box:before {
	width: 2px;
	height: 30px;
}
.uni-uploader__input-box:after {
	width: 30px;
	height: 2px;
}
.uni-uploader__input {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.gui-icons {
	font-family: 'graceIconfontBase64', sans-serif;
	font-style: normal;
}
.gui-button-mini {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	border-radius: 9px;
	padding: 0 16px;
	background: var(--theme-button-primary);
	color: #fff;
	text-align: center;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.18s ease;
	box-shadow: var(--button-shadow);
	width: 375px;
	max-width: 90%;
	margin: 16px auto 5px auto;
}
.gui-button-mini:active {
	transform: translateY(1px) scale(0.995);
	opacity: 0.96;
}
.feedback-uploader .uni-uploader__files .upload-placeholder {
	width: 80px;
	height: 80px;
	background: var(--theme-panel-bg);
	border: 1px dashed var(--theme-panel-border);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--theme-text-muted);
	cursor: pointer;
}
.xylist .gui-list-items {
	display: flex;
	justify-content: center;
	align-items: center;
}
.xylist .gui-list-title {
	margin-bottom: 0px
}
.content {
	background:#fff;
}
.content h1 {
	font-size:19px;
	margin-bottom:10px;
}
.content h2 {
	font-size:15px;
	margin-bottom:20px;
}
.content p {
	margin-bottom:5px;
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.modal-overlay.active {
	display: flex;
}
.modal-box {
	width: 90%;
	max-width: 320px;
	background-color: #fff;
	border-radius: 12px;
	padding: 20px 15px;
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 22px;
	color: #666;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
}
.modal-title {
	font-size: 20px;
	color: #000;
	text-align: center;
	margin: 0 0 20px 0;
	font-weight: bold;
}
.error-main {
	font-size: 18px;
	color: #333;
	text-align: center;
	font-weight: bold;
	margin: 0 0 20px 0;
}
.label-text {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
	display: block;
}
.content-box {
	width: 100%;
	border-radius: 4px;
	margin-bottom: 15px;
	position: relative;
}
 .content-box::after {
 content: "";
 position: absolute;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.2), transparent);
 animation: loading 1.5s infinite linear;
}
.order-list {
	max-width: 800px;
	margin: 0 auto;
}
.order-list ul {
	list-style: none;
}
.order-item {
	background: #fff;
	border-radius: 12px;
	padding:10px 8px;
	margin-bottom: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}
.order-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}
/* 订单号行 */
        .order-row {
	display: flex;
	align-items: baseline;
	margin-bottom:5px;
}
.order-label {
	width: 70px;
	font-size: 14px;
	color: #999;
	font-weight: 500;
}
.order-value {
	flex: 1;
	font-size: 15px;
	color: #333;
	font-family: 'Courier New', monospace;
	font-weight: 500;
}
/* 状态行 */
        .status-row {
	display: flex;
	align-items: center;
}
.status-label {
	width: 70px;
	font-size: 14px;
	color: #999;
	font-weight: 500;
}
.status-value {
	flex: 1;
}
.status-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
}
.status-preview {
	color: #1976d2;
}
.status-completed {
	color: #388e3c;
}
/* 操作行 */
        .action-row {
	display: flex;
	justify-content: flex-end;
}
.btn-view {
	background: #1976d2;
	color: white;
	border: none;
	padding: 5px 12px;
	border-radius: 6px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s;
}
.btn-view:hover {
	background: #1565c0;
	transform: scale(1.02);
}
 @keyframes loading {
 0% {
left: -100%;
}
 100% {
left: 100%;
}
}
.tips-text {
	font-size: 12px;
	color: #ff6600;
	line-height: 1.5;
	margin: 0 0 25px 0;
	text-align: center;
}
.contact-btn {
	display: block;
	width: 150px;
	margin:0px auto;
	height: 44px;
	line-height: 44px;
	background: linear-gradient(90deg, #0066ff, #0099ff);
	color: #fff;
	text-align: center;
	font-size: 16px;
	border: none;
	border-radius: 22px;
	cursor: pointer;
}
.contact-btn:hover {
	opacity: 0.9;
}
.gui-form-label {
	width: 80px;
	height: 42px;
	font-size: 17px;
	line-height: 42px;
	color: var(--text-main);
	font-weight: 700;
	font-family: var(--font-strong);
}
.gui-form-body {
	flex: 1;
	margin-left: 10px;
}
.gui-border-b {
	border-bottom: 0.5px solid var(--theme-panel-border);
}
.gui-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 64px;
}
.gui-step-icon {
	width: 26px;
	height: 26px;
	font-size: 11px;
	text-align: center;
	line-height: 26px;
	margin: 5px;
	border-radius: 100%;
	background-color: rgba(69, 90, 100, .38);
	color: #eee;
}
.gui-step-icon-active2 {
	color: #fff;
	background-color: var(--theme-accent-strong);
}
.gui-step-text {
	text-align: center;
	line-height: 26px;
	font-size: 13px;
	color: rgba(69, 90, 100, .6);
}
.gui-step-text-active2 {
	color: var(--theme-accent-strong) !important;
}
.gui-step-line {
	width: 53px;
	height: 1px;
	background-color: rgba(69, 90, 100, .38);
	margin-bottom: 26px;
	flex: 1;
}
.gui-step-line-active2 {
	background-color: var(--theme-accent-strong);
}
.gui-form-item {
	display: flex;
	align-items: center;
	padding: 3px 0;
	min-height: 51px;
}
.section-caption {
	padding: 12px 0 5px;
	font-weight: bold;
	color:var(--text-main);
}
.tag_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 8px;
}
 .tag_box::after {
content: "";
width: 30%;
}
.tag_list {
	max-width: 30%;
	min-width: 30%;
	text-align: center;
	margin-bottom: 10px;
}
.tag_listView {
	height: 32px;
	line-height: 32px;
	border-radius: 5px;
	border: 0.5px solid var(--theme-panel-border);
	font-size: 14px;
	color: var(--text-main);
	background: var(--theme-surface-card);
 transition: all .2s ease;
	cursor: pointer;
}
.tag_listView.active {
	color: #fff;
	background: var(--theme-accent-strong);
	border-color: var(--theme-accent-strong);
}
.pay-way {
	width: 100%;
	background-color: var(--theme-surface-card);
	margin-top: 4px;
}
.pay-list .list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 53px;
	border-bottom: 1px solid var(--theme-panel-border);
	border-radius: 9px;
	padding: 0 7px;
 transition: all .2s ease;
}
.pay-type {
	display: flex;
	align-items: center;
}
.pay-icon-badge {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	background: var(--theme-pay-icon-badge);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 1px var(--theme-panel-border);
}
.pay-icon-badge img {
	width: 21px;
	height: 21px;
}
.pay-type span {
	font-size: 15px;
	color: var(--text-main);
	margin-left: 10px;
	font-weight: 600;
}
.check {
	display: flex;
	align-items: center;
}
.check .icon-check {
	font-size: 22px;
	color: var(--text-muted);
	cursor: pointer;
}
.check .icon-check.active {
	color: var(--theme-accent-strong);
}
.gui-shoppingcard-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 402px;
	background-color: #f8f8f8;
	border-top: 0.5px solid rgba(0, 0, 0, 0.33);
	padding: 10px 16px;
	z-index: 999;
}
 @media (min-width: 913px) {
 .gui-shoppingcard-footer {
 left: 50%;
 transform: translateX(-50%);
 width: 80%;
 max-width: 857px;
}
}
.gui-shoppingcard-count {
	flex: 1;
}
.gui-shoppingcard-checkout {
	width: 139px;
	height: 49px;
	line-height: 49px;
	font-size: 16px;
	text-align: center;
	border-radius: 11px;
	box-shadow: var(--button-shadow);
	background-color: var(--theme-button-primary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	border: none;
}
.checkout-price {
	font-size: 17px;
	font-weight: 700;
	color: var(--theme-warning);
}
.gui-dark-bg-level-1 {
	background-color: var(--theme-surface-card);
}
.checkout-spacer {
	height: 64px;
}
.order-card {
	border-radius: 16px;
	box-shadow: var(--panel-shadow);
	background: var(--theme-surface-card);
}
.summary-card {
	background: linear-gradient(180deg, var(--theme-surface-card), var(--theme-panel-bg));
}
.gui-border-box {
	box-sizing: border-box;
}
.gui-border-t {
	border-top: 0.5px solid var(--theme-panel-border);
}
.gui-bg-gray {
	background-color: #f8f8f8 !important;
}
.gui-dark-bg-level-1 {
	background-color: var(--theme-surface-card);
}
.gui-shoppingcard-footer .gui-flex {
	display: flex;
}
.gui-shoppingcard-footer .gui-row {
	flex-direction: row;
}
.nsjl {
	box-sizing: border-box;
}
.nstis {
	font-size: 14.48px;
	line-height: 15.6px;
	text-align: justify;
	margin-top: 11.6px;
	color: red;
}
#nr_xq1 table {
	width:100%;
	text-align:center;
}
.tips tr, .tips td {
	font-size:16px;
}
.nscx {
	font-size: 14.48px;
	line-height: 15.6px;
	text-align: justify;
	display: block;
	margin-bottom: 13.2px;
	overflow-wrap: break-word;
}
.nbjl_shuoming {
	font-size: 14px;
}
.item_floor {
	background-color: #fff;
	border-radius: 12px;
	margin-top: 14.8px;
}
.item_floor h1 {
	font-size: 16px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	cursor:pointer;
	font-weight:bold
}
.jyyc_label {
	font-size: 14px;
	margin-bottom: 16px;
	line-height: 16.4px;
}
.button_xq {
	color: red;
	font-size: 16px;
	font-weight: 600;
}
.pc-footer-nav {
	margin-top: 19px;
	padding: 0 16px 12px;
	display: none;
}
.pc-footer-nav .bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 21px 12px;
	background: #f5f3f1;
	border-top: 0.5px solid rgba(43, 46, 61, .12);
}
.pc-footer-nav .brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 225px;
}
.pc-footer-nav .tags {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}
.pc-footer-nav .tag {
	position: relative;
	font-size: 11px;
	line-height: 1.2;
	color: #5c5349;
}
.pc-footer-nav .tag::before {
content: "◉";
margin-right: 4px;
font-size: 9px;
color: #5c5349;
}
.pc-footer-nav .title {
	margin-top: 8px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #1f1b16;
}
.pc-footer-nav .divider {
	width: 0.5px;
	height: 39px;
	margin: 0 23px;
	background: rgba(43, 46, 61, .14);
}
.pc-footer-nav .links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 27px;
}
.pc-footer-nav .link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ba8526;
	transition: opacity 0.2s ease;
	cursor: pointer;
}
.pc-footer-nav .link--active {
	color: #996812;
}
.pc-footer-nav .link-icon {
	margin-right: 4px;
	font-size: 15px;
	line-height: 1;
}
.pc-footer-nav .link-text {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: inherit;
}
.uni-tabbar-bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width:853px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
}
.uni-tabbar {
	background-color: #f8f8f8;
	backdrop-filter: none;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 6px 0 0px;
	border-top: 0.5px solid rgba(0, 0, 0, 0.33);
}
.uni-tabbar__item {
	text-align: center;
	cursor: pointer;
}
.uni-tabbar__icon {
	margin: 0 auto;
	text-align:center;
}
.uni-tabbar__icon a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.uni-tabbar__icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	display:block
}
.uni-tabbar__icon a span {
	font-size: 10px;
	color: #b6c3d2;
	margin-top: 3px;
}
.uni-tabbar__icon.active-tab a span {
	color: #2b2e3d;
}
#__FORCE_COPY_STYLE__, .__FORCE_COPY_STYLE__ {
	user-select: auto !important;
	-webkit-user-select: auto !important;
}
 @media (min-width: 913px) {
.pc-footer-nav {
display: block;
}
.gui-margin-top1 {
margin-top:0
}
.uni-tabbar-bottom {
display:none
}
}
 @media (max-width: 900px) {
.gui-img img {
width:100%;
}
.gui-img span {
display:none
}
.design-bottom-space {
 height: 76px;
}
}
