@charset "utf-8";
/*
Theme Name: 动漫共和国官网
Theme URI: 
Author: 阿叶
Author URI: 
Description:
Version: 0.0.1
*/
/* 基础样式 */

:root {
	--primary-color: #0084FF;
	--primary-gradient: linear-gradient(90deg, #00A3FF 0%, #0066FF 100%);
	--primary-hover-gradient: linear-gradient(90deg, #52C0FF 0%, #5297FF 100%);
	--secondary-color: #F6F8FF;
	--text-color: #151515;
	--light-text: #686F7E;
	--border-radius: 10px;
	--box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--secondary-color);
}

.ghg_aye {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.ghg_aye_warp {
	flex: 1;
	background-color: var(--secondary-color);
	background-image: url("static/images/bg.png");
	background-size: 100% auto;
	background-position: top center;
	background-repeat: no-repeat;
	padding: 0 20px 60px;
}

@media (min-width: 1200px) {
	.ghg_aye_warp {
		padding: 0 360px 60px;
	}
}

.ghg_site_top {
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ghg_brand_logo {
	width: 167px;
	height: 40px;
	margin-bottom: 58px;
}

.ghg_brand_text {
	display: flex;
	align-items: center;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 58px;
	gap: 15px;
}
.ghg_brand_text a {
    color: var(--primary-color);
    text-decoration: none;
    line-height: normal;
}
.ghg_brand_text .ghg_brand_icon {
    width: 36px;
    height: 36px;
}

.ghg_brand_icon {
	width: 100%;
	height: 100%;
	margin-right: 0;
}

.ghg_hero_area {
	position: relative;
	z-index: 1;
}

.ghg_main_title {
	font-size: 40px;
	font-weight: 500;
	line-height: 52px;
	color: var(--text-color);
	margin-bottom: 15px;
}

.ghg_sub_title {
	font-size: 22px;
	letter-spacing: 7px;
	color: rgba(21, 21, 21, 0.6);
	line-height: 24px;
	margin-bottom: 20px;
}

.ghg_bookmark_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	min-width: 290px;
	padding: 0 40px;
	background: var(--primary-gradient);
	color: white;
	font-size: 24px;
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.3s ease;
	border: none;
	margin-bottom: 78px;
}

.ghg_bookmark_btn:hover {
	background: var(--primary-hover-gradient);
}

.ghg_bookmark_btn svg {
	width: 32px;
	height: 32px;
	margin-right: 10px;
	flex-shrink: 0;
}

.ghg_section_heading {
	font-size: 20px;
	font-weight: width;
	line-height: 28px;
	color: var(--text-color);
	margin-bottom: 24px;
	padding-bottom: 8px;
	background-image: url("https://static.yximgs.com/udata/pkg/f5c2f2432bdb48bc9ebcd15721e052be.png");
	background-size: 60px 12px;
	background-position: left bottom;
	background-repeat: no-repeat;
}

.ghg_download_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-bottom: 60px;
}

.ghg_download_card {
	display: flex;
	align-items: center;
	background-color: white;
	border-radius: var(--border-radius);
	padding: 20px 32px;
	box-shadow: var(--box-shadow);
}

.ghg_app_icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}

.ghg_app_details {
	flex: 1;
	overflow: hidden;
	margin: 0 15px;
}

.ghg_app_title {
    display: block;
	margin-bottom: 12px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ghg_app_title a {
    line-height: normal;
    text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	color: #333;
}

.ghg_app_desc {
	font-size: 14px;
	color: var(--light-text);
}

.ghg_qr_code {
	width: 80px;
	height: 80px;
}

.ghg_download_btn {
	background-color: rgba(50, 156, 255, 0.16);
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 500;
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.ghg_download_btn:hover {
	background-color: var(--primary-color);
	color: white;
}

.ghg_notification_box {
	background-color: white;
	color: var(--primary-color);
	padding: 15px 20px;
	border-radius: var(--border-radius);
	margin-bottom: 30px;
	box-shadow: var(--box-shadow);
	line-height: 1.6;
	border: 1px solid rgba(0, 132, 255, 0.2);
}

.ghg_notification_box p {
	margin-bottom: 12px;
}

.ghg_notification_box p:last-child {
	margin-bottom: 0;
	font-weight: bold;
}

.ghg_highlight_text {
	background-color: rgba(0, 132, 255, 0.1);
	color: var(--primary-color);
	padding: 0 4px;
	font-weight: bold;
}

.ghg_install_guide {
	background-color: white;
	border-radius: var(--border-radius);
	padding: 25px;
	margin-bottom: 40px;
	box-shadow: var(--box-shadow);
}

.ghg_guide_tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.ghg_guide_tab {
	padding: 8px 15px;
	background-color: rgba(50, 156, 255, 0.16);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--primary-color);
}

.ghg_guide_tab.active {
	background-color: var(--primary-color);
	color: white;
}

.ghg_guide_content {
	display: none;
}

.ghg_guide_content.active {
	display: block;
}

.ghg_guide_step {
	margin-bottom: 15px;
	word-wrap: break-word;
}

.ghg_guide_step b {
	color: var(--primary-color);
}

.ghg_site_footer {
	background-color: white;
	padding: 20px;
	text-align: center;
	color: rgba(0, 0, 0, 0.4);
	font-size: 12px;
	line-height: 1.6;
}
.ghg_site_footer p {
    margin: 10px 0;
}

@media (max-width: 768px) {
	.ghg_site_top {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-top: 20px;
	}
	.ghg_brand_logo {
		width: 84px;
		height: 20px;
		margin-bottom: 24px;
	}
	.ghg_brand_text {
		font-size: 24px;
		text-align: center;
		margin-bottom: 24px;
	}
	.ghg_main_title {
		font-size: 22px;
		line-height: 26px;
		text-align: center;
		width: 100%;
	}
	.ghg_sub_title {
		font-size: 12px;
		letter-spacing: 3px;
		text-align: center;
		width: 100%;
	}
	.ghg_hero_area {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.ghg_bookmark_btn {
		height: 50px;
		font-size: 20px;
		min-width: 234px;
		padding: 0 20px;
		margin-bottom: 40px;
	}
	.ghg_bookmark_btn span {
		letter-spacing: 2px;
	}
	.ghg_download_grid {
		grid-template-columns: 1fr;
	}
	.ghg_download_card {
		padding: 16px;
	}
	.ghg_app_icon {
		width: 42px;
		height: 42px;
	}
	.ghg_qr_code {
		width: 60px;
		height: 60px;
	}
}
/* 修复弹窗样式问题 */

.ghg_modal_overlay {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}
/* 确保内容正确居中显示 */

.ghg_modal_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	overflow-y: auto;
}
/* 确保图片正确显示 */

.ghg_modal_inner img.preview_img {
	max-height: 60vh;
	max-width: 90%;
	border-radius: 20px;
	pointer-events: auto;
	user-select: auto;
	object-fit: contain;
}
/* 添加弹窗文字样式 */

.ghg_modal_inner p {
	margin-top: 12px;
	color: white;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.ghg_modal_inner p img {
	width: 20px;
	margin-left: 8px;
	border-radius: 0;
}
/* 修复关闭按钮样式 */

.ghg_close_modal {
	position: absolute;
	top: 20px;
	right: 20px;
	color: white;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1001;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
}
/* 自定义灰底白色图标样式 - 所有图标统一为浅灰色且更小 */

.ghg_platform_icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
	box-sizing: border-box;
}
.ghg_platform_icon img {
    width: 100%;
    height: 100%;
}
/* 聚点联盟图标样式 */

.ghg_platform_icon.small {
	width: 50px;
	height: 50px;
	background-color: #999;
	padding: 10px;
}
.ghg_user_comm {
    display: block;
}
.ghg_user_comm .u-info {
    display: flex;
    align-items: center;
}
.ghg_user_comm .ava {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
.ghg_user_comm .ava img {
    width: 100%;
    height: 100%;
}
.ghg_user_comm .conet {
    line-height: 26px;
    font-size: 15px;
    margin: 15px 0 5px 0;
}
.ghg_user_comm .time {
    color: #999;
    font-size: 13px;
}
@media (max-width: 768px) {
	.ghg_platform_icon {
		width: 50px;
		height: 50px;
	}
	.ghg_platform_icon.small {
		width: 38px;
		height: 38px;
		padding: 8px;
	}
}
/* 图标内的SVG样式 */
.u-time {
    color: #999;
    font-size: 13px;
    margin-top: 15px;
}
.ghg_content {
    background-color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    line-height: 1.6;
    border: 1px solid rgba(0, 132, 255, 0.2);
}
.ghg_content p {
    color: #666;
    font-size: 15px;
    line-height: 28px;
}
.ghg_platform_icon svg {
	width: 100%;
	height: 100%;
	fill: white;
}