@charset "utf-8";
/*
    Theme Name: Shizuku 导航官网主题
    Description: Shizuku 下载入口与访问导航页（www.shizukuapp.cn）
    Version: 1.0.0
*/

:root {
	--pm-c: #4354b6;
	--pm-d: #34418f;
	--pm-l: #eceefb;
	--pm-g: linear-gradient(135deg, #4d5fc9 0%, #2f3b93 100%);
	--br-c: #e8eaf2;
	--bg-c: #f3f4fb;
	--md-c: #8b90a8;
	--ok-c: #2fa36b;
}

html,body {
	background-color: var(--bg-c);
	font-size: 14px;
	font-family: arial, "Microsoft YaHei", "PingFang SC", sans-serif;
	color: #303133;
	scroll-behavior: smooth;
}
* {
	line-height: normal;
}
/* 版心宽度按设计稿固定 750px（移动端 100vw），全部由 CSS 控制，不依赖 JS 计算 */
.c-pm {
	color: var(--pm-c) !important;
}
ul,ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

a,a:hover {
	line-height: normal;
	color: #303133;
	font-size: 14px;
	text-decoration: none;
}

/* 锚点定位时给吸顶导航留出空间 */
[id] {
	scroll-margin-top: 78px;
}

.line-2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

/*吸顶导航（站内锚点内链）*/
.site-nav {
	position: sticky;
	top: 0;
	z-index: 990;
	background: rgba(255,255,255,.94);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--br-c);
}
.site-nav-inner {
	max-width: 750px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	padding: 10px 12px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.site-nav-inner::-webkit-scrollbar {
	display: none;
}
.site-nav-inner a {
	flex: none;
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--pm-l);
	color: #4b4d51;
	font-size: 14px;
	transition: background .25s, color .25s;
}
.site-nav-inner a:hover,
.site-nav-inner a.active {
	background: var(--pm-c);
	color: #fff;
}
.site-nav-inner a.nav-cta {
	background: var(--pm-g);
	color: #fff;
	font-weight: bold;
}

header {
	margin: 14px 0 4px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
header .logo {
	display: flex;
	align-items: center;
	justify-content: center;
}
header .logo img {
	height: 75px;
	width: 75px;
	margin-right: 10px;
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(67,84,182,.28);
}
header .logo .title {
	font-size: 24px;
	font-weight: bold;
	color: var(--pm-c);
	margin: 0;
	display: inline-block;
	transform: translateY(-2px);
	text-align: left;
}
header .logo .title span {
	display: block;
	font-size: 12px;
	font-weight: normal;
	color: var(--md-c);
	letter-spacing: .5px;
	margin-top: 4px;
}

main {
	max-width: 750px;
	margin: 0 auto;
	box-sizing: border-box;
}

.mode {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	position: relative;
	margin: 20px 0;
	box-shadow: 0 2px 10px rgba(43,52,120,.04);
}
.mode-title {
	font-weight: bold;
	font-size: 17px;
	margin-bottom: 20px;
	color: #2b2f42;
}

/*简介模块*/
.mode-desc {
	border-top: 4px solid var(--pm-c);
	border-radius: 4px 4px 10px 10px;
	background: linear-gradient(180deg, #f6f7ff 0, #fff 220px);
}
.mode-desc h2 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 16px;
	color: #2b2f42;
}
.mode-desc p {
	line-height: 28px;
	color: #4b4d51;
	font-size: 15px;
}
.mode-desc p:last-child {
	margin-bottom: 0;
}
.mode-desc .view {
	display: block;
	height: 44px;
	line-height: 46px;
	text-align: center;
	background: var(--pm-g);
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(67,84,182,.28);
	transition: filter .3s, transform .3s;
}
.mode-desc .view:hover {
	color: #fff;
	filter: brightness(1.08);
	transform: translateY(-1px);
}
.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
}
.hero-tags span {
	font-size: 12px;
	color: var(--pm-c);
	background: var(--pm-l);
	border-radius: 999px;
	padding: 5px 12px;
}
.desc-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}
.desc-links a {
	flex: 1;
	min-width: 140px;
	box-sizing: border-box;
	text-align: center;
	padding: 11px 10px;
	border: 1px solid var(--br-c);
	border-radius: 8px;
	color: var(--pm-c);
	background: #fff;
	transition: border-color .25s, background .25s;
}
.desc-links a:hover {
	border-color: var(--pm-c);
	background: var(--pm-l);
}

/*界面展示*/
.mode-show {
	-webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 40px, #000 calc(100% - 40px), rgba(0,0,0,0) 100%);
	mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 40px, #000 calc(100% - 40px), rgba(0,0,0,0) 100%);
}
.mode-show ul {
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
	padding: 10px 0 16px;
}
.mode-show ul::-webkit-scrollbar {
	display: none;
}
.mode-show ul.dragging {
	cursor: grabbing;
}
.mode-show ul li {
	display: inline-block;
	height: 420px;
	margin-right: 16px;
	vertical-align: top;
	transition: transform .35s ease;
}
.mode-show ul li:last-child {
	margin-right: 0;
}
.mode-show ul li:hover {
	transform: translateY(-8px);
}
.mode-show ul li img {
	height: 100%;
	width: auto;
	border-radius: 12px;
	display: block;
	box-shadow: 0 4px 14px rgba(43,52,120,.10);
	transition: box-shadow .35s ease;
}
.mode-show ul li:hover img {
	box-shadow: 0 12px 26px rgba(67,84,182,.22);
}
/*流程卡片（与截图同列展示）*/
.mode-show ul li.card {
	white-space: normal;
	box-sizing: border-box;
	width: 240px;
	padding: 28px 22px;
	background: linear-gradient(180deg, #f6f7ff 0, #fff 100%);
	border: 1px solid var(--br-c);
	border-radius: 12px;
}
.mode-show ul li.card .step {
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	background: var(--pm-g);
	border-radius: 999px;
	padding: 4px 12px;
	margin-bottom: 18px;
}
.mode-show ul li.card h3 {
	margin: 0 0 12px;
	font-size: 17px;
	color: #2b2f42;
}
.mode-show ul li.card p {
	margin: 0;
	font-size: 13px;
	line-height: 24px;
	color: #6b7089;
	white-space: normal;
}
.mode-show ul li.card .card-list {
	margin-top: 18px;
}
.mode-show ul li.card .card-list li {
	display: block;
	height: auto;
	margin: 0 0 10px;
	padding-left: 18px;
	position: relative;
	font-size: 13px;
	line-height: 22px;
	color: #6b7089;
	white-space: normal;
}
.mode-show ul li.card .card-list li:last-child {
	margin-bottom: 0;
}
.mode-show ul li.card .card-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pm-c);
}
.show-tip {
	margin: 4px 0 0;
	text-align: center;
	font-size: 13px;
	color: var(--md-c);
}

/*线路选择*/
.line-entry {
	display: block;
}
.mode-line .item {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid var(--br-c);
	border-radius: 8px;
	padding: 18px 20px;
	transition: all .3s;
}
.mode-line .item:hover {
	transform: translateY(-2px);
	border-color: var(--pm-c);
	box-shadow: 0 8px 20px rgba(67,84,182,.12);
}
.mode-line .item .title {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
}
.mode-line .item .title img {
	width: 18px;
	height: 18px;
	margin-right: 6px;
	border-radius: 50%;
}
.mode-line .item .title span {
	font-size: 15px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mode-line .item .delay {
	color: var(--ok-c);
	font-size: 12px;
}
.mode-line .item .view {
	color: #fff;
	background: var(--pm-c);
	border-radius: 20px;
	height: 30px;
	line-height: 32px;
	padding: 0 12px;
	font-size: 13px;
	margin-left: 16px;
}
.line-note {
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--md-c);
	line-height: 24px;
}

/*常见问题*/
.mode-faq .item {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed var(--br-c);
}
.mode-faq .item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
.mode-faq .faq-q {
	font-size: 16px;
	font-weight: bold;
	color: #303133;
	position: relative;
	padding-left: 22px;
}
.mode-faq .faq-q::before {
	content: "Q";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--pm-c);
	font-weight: bold;
}
.mode-faq .faq-a {
	margin-top: 12px;
}
.mode-faq .faq-a p {
	margin: 0;
	line-height: 26px;
	font-size: 14px;
	color: #606266;
}
.mode-faq .faq-a p + p {
	margin-top: 8px;
}
.mode-faq .faq-a a {
	color: var(--pm-c);
	font-size: 14px;
	border-bottom: 1px solid rgba(67,84,182,.35);
}
.mode-faq .faq-a a:hover {
	color: var(--pm-d);
	border-bottom-color: var(--pm-d);
}
.mode-faq.collapsible .faq-q {
	cursor: pointer;
	padding-right: 24px;
}
.mode-faq.collapsible .faq-q::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	color: var(--pm-c);
	font-weight: bold;
}
.mode-faq.collapsible .item.active .faq-q::after {
	content: "-";
}
.mode-faq.collapsible .faq-a {
	display: none;
}
.mode-faq.collapsible .item.active .faq-a {
	display: block;
}

/*用户留言*/
.mode-comment .item {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed var(--br-c);
}
.mode-comment .item:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.mode-comment .user-info {
	display: flex;
	align-items: center;
}
.mode-comment .avatar {
	width: 42px;
	height: 42px;
	margin-right: 12px;
	flex: none;
}
.mode-comment .avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: block;
}
.mode-comment .user-info .name {
	font-size: 14px;
	font-weight: bold;
	color: #303133;
	margin-bottom: 4px;
}
.mode-comment .user-info .time {
	font-size: 12px;
	color: var(--md-c);
}
.mode-comment .comment-content {
	margin-top: 12px;
}
.mode-comment .comment-content p {
	margin: 0;
	line-height: 26px;
	font-size: 14px;
	color: #606266;
}
.mode-comment .more {
	display: block;
	text-align: center;
	margin-top: 20px;
	height: 40px;
	line-height: 42px;
	border-radius: 8px;
	background: var(--pm-l);
	color: var(--pm-c);
	font-weight: bold;
	transition: background .25s, color .25s;
}
.mode-comment .more:hover {
	background: var(--pm-c);
	color: #fff;
}

footer {
	max-width: 750px;
	margin: 20px auto 40px;
	padding: 20px 25px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(43,52,120,.04);
}
footer p {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 24px;
	color: var(--md-c);
}
footer p:first-child {
	margin-top: 0;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 0 0 14px;
	padding-bottom: 14px;
	border-bottom: 1px dashed var(--br-c);
}
.footer-links a {
	font-size: 13px;
	color: var(--pm-c);
}
.footer-links a:hover {
	color: var(--pm-d);
}

/*投诉举报悬浮按钮*/
.complaint-float {
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 99998;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	padding: 0 16px 0 12px;
	background: var(--pm-g);
	color: #fff !important;
	border-radius: 22px;
	border: none;
	box-shadow: 0 4px 16px rgba(67,84,182,.45);
	text-decoration: none !important;
	transition: transform .2s, box-shadow .2s;
}
.complaint-float:hover {
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(67,84,182,.55);
}
.complaint-float-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	line-height: 1;
	color: #ffd666;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.complaint-float-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}
.complaint-float-icon.icon-mb {
	display: none;
}
.complaint-float:hover .complaint-float-icon {
	color: #ffe58f;
}
.complaint-float-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
}

/*返回顶部*/
.to-top {
	position: fixed;
	right: 20px;
	bottom: 24px;
	z-index: 99997;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--pm-c);
	border: 1px solid var(--br-c);
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(43,52,120,.14);
	transition: transform .2s, color .2s, border-color .2s;
}
.to-top:hover {
	color: var(--pm-d);
	border-color: var(--pm-c);
	transform: translateY(-2px);
}
.to-top svg {
	width: 20px;
	height: 20px;
	display: block;
}

/*提示条*/
.notify {
	position: fixed;
	left: 50%;
	top: 30px;
	z-index: 99999;
	transform: translate(-50%, -20px);
	background: rgba(43,47,66,.92);
	color: #fff;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	transition: all .25s;
	max-width: 90%;
	text-align: center;
}
.notify.show {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

/*移动端样式*/
@media (max-width: 760px) {

	a,a:hover {
		font-size: 3.73vw;
	}
	address, dl, fieldset, figure, ol, p, pre, ul {
		margin: 0 0 4vw 0;
	}
	*+address, *+dl, *+fieldset, *+figure, *+ol, *+p, *+pre, *+ul {
		margin-top: 4vw;
	}
	[id] {
		scroll-margin-top: 14vw;
	}

	.site-nav-inner {
		max-width: 100vw;
		padding: 2.4vw 3.2vw;
		gap: 2.13vw;
	}
	.site-nav-inner a {
		padding: 1.87vw 3.73vw;
		font-size: 3.47vw;
	}

	header {
		margin: 3.73vw 0 0;
	}
	header .logo img {
		height: 65px;
		width: 65px;
		margin-right: 2.67vw;
	}
	header .logo .title {
		font-size: 5.33vw;
	}
	header .logo .title span {
		font-size: 2.93vw;
		margin-top: 0.8vw;
	}

	main {
		max-width: 100vw;
		margin: 0 auto;
		padding: 0 1.6vw;
	}

	.mode {
		border-radius: 2.13vw;
		padding: 4.8vw;
		margin: 2.67vw 0;
	}
	.mode-title {
		font-size: 4.27vw;
		margin-bottom: 4vw;
	}

	.mode-desc {
		border-top: 1.07vw solid var(--pm-c);
		border-radius: 1.07vw;
	}
	.mode-desc h2 {
		font-size: 4.53vw;
		margin-bottom: 3.2vw;
	}
	.mode-desc p {
		line-height: 6.93vw;
		font-size: 3.73vw;
	}
	.mode-desc .view {
		height: 11.73vw;
		line-height: 12vw;
		font-size: 3.73vw;
		border-radius: 2.13vw;
	}
	.hero-tags {
		gap: 2.13vw;
		margin-bottom: 3.73vw;
	}
	.hero-tags span {
		font-size: 3.2vw;
		padding: 1.33vw 3.2vw;
	}
	.desc-links {
		gap: 2.13vw;
		margin-top: 3.2vw;
	}
	.desc-links a {
		padding: 2.93vw 2.67vw;
		border-radius: 2.13vw;
		font-size: 3.47vw;
	}

	.mode-show {
		-webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 2.13vw, #000 calc(100% - 2.13vw), rgba(0,0,0,0) 100%);
		mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 2.13vw, #000 calc(100% - 2.13vw), rgba(0,0,0,0) 100%);
	}
	.mode-show ul {
		padding: 2.67vw 0 4vw;
	}
	.mode-show ul li {
		height: 61.33vw;
		margin-right: 3.2vw;
	}
	.mode-show ul li:hover {
		transform: none;
	}
	.mode-show ul li img {
		border-radius: 2.13vw;
	}
	.mode-show ul li.card {
		width: 45.33vw;
		padding: 5.33vw 4vw;
		border-radius: 2.13vw;
	}
	.mode-show ul li.card .step {
		font-size: 3.2vw;
		padding: 1.07vw 3.2vw;
		margin-bottom: 3.2vw;
	}
	.mode-show ul li.card h3 {
		font-size: 4vw;
		margin-bottom: 2.67vw;
	}
	.mode-show ul li.card p {
		font-size: 3.2vw;
		line-height: 5.6vw;
	}
	.mode-show ul li.card .card-list {
		margin-top: 3.2vw;
	}
	.mode-show ul li.card .card-list li {
		margin-bottom: 2.13vw;
		padding-left: 4.27vw;
		font-size: 3.2vw;
		line-height: 5.6vw;
	}
	.mode-show ul li.card .card-list li::before {
		top: 2.13vw;
		width: 1.6vw;
		height: 1.6vw;
	}
	.show-tip {
		margin-top: 1.33vw;
		font-size: 3.2vw;
	}

	.mode-line .uk-width-1-2 {
		width: 100%;
	}
	.mode-line .item {
		border-radius: 2.13vw;
		padding: 3.73vw 4.27vw;
	}
	.mode-line .item .title {
		margin-bottom: 2.67vw;
	}
	.mode-line .item .title img {
		width: 4.8vw;
		height: 4.8vw;
		margin-right: 1.6vw;
	}
	.mode-line .item .title span {
		font-size: 3.73vw;
	}
	.mode-line .item .delay {
		font-size: 3.2vw;
	}
	.mode-line .item .view {
		border-radius: 5.33vw;
		height: 8vw;
		line-height: 8.53vw;
		padding: 0 3.2vw;
		font-size: 3.47vw;
		margin-left: 4.27vw;
	}
	.line-note {
		font-size: 3.2vw;
		line-height: 5.6vw;
	}

	.mode-faq .item {
		padding-bottom: 4vw;
		margin-bottom: 4vw;
	}
	.mode-faq .faq-q {
		font-size: 4vw;
		padding-left: 5.33vw;
	}
	.mode-faq .faq-a {
		margin-top: 2.67vw;
	}
	.mode-faq .faq-a p {
		line-height: 6.13vw;
		font-size: 3.47vw;
	}
	.mode-faq .faq-a a {
		font-size: 3.47vw;
	}

	.mode-comment .item {
		padding-bottom: 4vw;
		margin-bottom: 4vw;
	}
	.mode-comment .avatar {
		width: 9.33vw;
		height: 9.33vw;
		margin-right: 2.67vw;
	}
	.mode-comment .user-info .name {
		font-size: 3.47vw;
		margin-bottom: 1.33vw;
	}
	.mode-comment .user-info .time {
		font-size: 3.2vw;
	}
	.mode-comment .comment-content {
		margin-top: 2.67vw;
	}
	.mode-comment .comment-content p {
		line-height: 6.13vw;
		font-size: 3.47vw;
	}
	.mode-comment .more {
		margin-top: 4vw;
		height: 9.07vw;
		line-height: 9.33vw;
		border-radius: 1.6vw;
		font-size: 3.47vw;
	}

	footer {
		max-width: 100vw;
		margin: 2.67vw 1.6vw 21.33vw;
		padding: 4.8vw;
		border-radius: 2.13vw;
	}
	.footer-links {
		gap: 2.67vw 4vw;
		margin-bottom: 3.73vw;
		padding-bottom: 3.73vw;
	}
	.footer-links a {
		font-size: 3.47vw;
	}
	footer p {
		font-size: 3.47vw;
		margin: 2.67vw 0;
		line-height: 5.87vw;
	}

	.complaint-float {
		right: 12px;
		bottom: 60px;
		width: 44px;
		height: 44px;
		padding: 0;
		gap: 0;
		border-radius: 50%;
	}
	.complaint-float-icon.icon-pc {
		display: none;
	}
	.complaint-float-icon.icon-mb {
		display: flex;
	}
	.complaint-float-icon,
	.complaint-float-icon svg {
		width: 22px;
		height: 22px;
	}
	.complaint-float-text {
		display: none;
	}

	.to-top {
		right: 12px;
		bottom: 8px;
		width: 38px;
		height: 38px;
	}

	.notify {
		top: 4vw;
		font-size: 3.47vw;
		padding: 2.67vw 4vw;
		border-radius: 1.6vw;
	}
}
