html {
	scroll-padding-top: 100px;
    scroll-behavior: unset !important;
}
.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}
.banner {
	padding: 45px 40px 90px;
	border-bottom: 1px solid #ebebeb;
	margin-bottom: 45px;
}
.banner .anchor {
	font-size: 16px;
	color: #70788b;
	margin-bottom: 64px;
}
.banner .anchor a:hover {
	text-decoration: underline;
}
.banner .content {
	display: flex;
	align-items: center;
	gap: 40px;
}
.banner .content .cover {
	width: 560px;
	height: auto;
	border-radius: 10px;
}
.banner .content .title {
	font-weight: bolder;
	font-family: Plus Jakarta Sans;
	font-size: 44px;
	line-height: 1.2;
	color: #0b1639;
	margin-bottom: 35px;
}
.banner .content .author {
	display: flex;
	align-items: center;
	gap: 15px;
}
.banner .content .author .avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
}
.banner .content .author .name {
	font-weight: bold;
	font-size: 16px;
	color: #000000;
}
.article {
	padding: 0 40px 100px;
	width: 100%;
}
.article .container {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	gap: 64px;
}
.article .category {
	position: sticky;
	top: 100px;
	width: 320px;
	flex-shrink: 0;
}
.article .category-title {
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	color: #0b1639;
	margin-bottom: 20px;
}
.article .category-current {
	display: none;
}
.article .category-content span {
	box-sizing: border-box;
	display: flex;
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.5;
	color: #46505c;
	margin-bottom: 5px;
	cursor: pointer;
}
.article .category-content span:hover {
	background-color: #f2f2f287;
}
.article .category-content span.active {
	background-color: #ebebeb;
}
.article .content {
	flex: 1;
	width: 100%;
}
.article .content > h2 {
	background-color: #f5f7ff;
	border-left: 6px solid #3164ff;
	padding: 12px 30px;
	font-size: 28px !important;
	line-height: 1.25 !important;
	color: #0b1639;
	margin: 80px 0 30px;
}
.article .content > h3 {
	font-size: 24px !important;
	line-height: 1.25 !important;
	color: #0b1639;
	margin: 40px 0 20px;
}
.article .content > h4 {
	font-size: 20px !important;
	line-height: 1.25 !important;
	color: #0b1639;
	margin: 30px 0 20px;
}
.article .content > h5 {
	font-size: 16px !important;
	line-height: 1.25 !important;
	color: #0b1639;
	margin: 20px 0;
}
.article .content > h6 {
	font-size: 14px !important;
	line-height: 1.25 !important;
	color: #0b1639;
	margin: 20px 0;
}
.article .content > p {
	font-size: 16px;
	line-height: 1.8;
	color: #0b1639;
	margin-bottom: 20px;
}
.article .content > p > strong {
	font-size: 20px;
	line-height: 1.5;
	color: #0b1639;
}
.article .content > p > img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	cursor: zoom-in;
	margin: 10px auto 0;
}
.article .content > p:last-child {
	margin-bottom: 0;
}
.article .media {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #000;
	width: 50px;
}
.article .media > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background-size: 100% 100%;
}
.article .media-x {
	background-image: url('../img/article-twitter.svg');
}
.article .media-x:hover {
	background-image: url('../img/article-twitter-hover.svg');
}
.article .media-ins {
	background-image: url('../img/article-ins.svg');
}
.article .media-ins:hover {
	background-image: url('../img/article-ins-hover.svg');
}
.article .media-facebook {
	background-image: url('../img/article-facebook.svg');
}
.article .media-facebook:hover {
	background-image: url('../img/article-facebook-hover.svg');
}
.article .media-linkedin {
	background-image: url('../img/article-linkedin.svg');
}
.article .media-linkedin:hover {
	background-image: url('../img/article-linkedin-hover.svg');
}
.author-wrap {
	padding: 0 40px 100px;
}
.author-wrap .container {
	background-color: #f8f9fa;
	border: 1px solid #ebedf0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 65px;
	padding: 25px 100px;
}
.author-wrap .info {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.author-wrap .info .avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
}
.author-wrap .info .name {
	font-size: 16px;
	color: #0b1639;
}
.author-wrap .desc {
	font-size: 16px;
	line-height: 1.8;
	color: #222222;
	border-left: 1px solid #ebedf0;
	padding-left: 50px;
}
.subscribe {
	padding: 0 40px 100px;
}
.subscribe .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #ebedf0;
	border-bottom: 1px solid #ebedf0;
	padding: 60px 0;
}
.subscribe-title {
	font-weight: bold;
	font-size: 28px;
	color: #0b1639;
	margin-bottom: 24px;
}
.subscribe .subscribe-email {
	width: 400px;
	display: flex;
	flex-direction: row;
	gap: 12px;
}
.subscribe .subscribe-email.hidden {
	display: none;
}
.subscribe .subscribe-input-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	height: 46px;
	border: 1px solid #46505c;
	border-radius: 10px;
	padding: 0 16px;
}
.subscribe .subscribe-input-wrap:has(.subscribe-input:focus) {
	border-color: #007bff;
}
.subscribe .subscribe-input {
	flex: 1;
	height: 100%;
}
.subscribe .subscribe-warn {
	display: none;
	width: 18px;
	height: 18px;
}
.subscribe .subscribe-warn.active {
	display: block;
}
.subscribe .subscribe-btn {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 130px;
	height: 46px;
	border-radius: 10px;
	background-color: #308af0;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	opacity: 0.5;
	cursor: pointer;
}
.subscribe .subscribe-btn::after {
	content: '';
	width: 19px;
	height: 18px;
	background-image: url(../img/icon-subscribe-arrow.svg);
	background-size: 100% 100%;
}
.subscribe .subscribe-btn.is-loading::after {
	background-image: url(../img/icon-subscribe-loading.svg);
	animation: loading 1s linear infinite;
	background-size: 100% 100%;
}
@keyframes loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.subscribe .subscribe-btn.is-subscribe {
	opacity: 1;
}
.subscribe .subscribe-btn.is-subscribe:hover {
	background-color: #0b6cda;
}
.subscribe .subscribe-success {
	display: none;
	background: rgba(42, 209, 148, 0.05);
	border: 1px solid #2ad194;
	border-radius: 8px;
	align-items: flex-start;
	gap: 8px;
	padding: 8px 12px;
	font-size: 16px;
	line-height: 1.6;
	color: #05080d;
}
.subscribe .subscribe-success.active {
	display: flex;
}
.subscribe .subscribe-fail {
	display: none;
	background: #fcf1f0;
	border: 1px solid #bf443d;
	border-radius: 8px;
	align-items: flex-start;
	gap: 8px;
	padding: 8px 12px;
	font-size: 16px;
	line-height: 1.6;
	color: #05080d;
}
.subscribe .subscribe-fail.active {
	display: flex;
}
.related-blogs {
	padding: 0 40px 100px;
}
.related-blogs .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 70px;
	row-gap: 70px;
}
.related-blogs .content-item {
	width: 100%;
	border: 1px solid #ebedf0;
	border-radius: 16px;
	overflow: hidden;
	background-color: #fff;
	transition: all 300ms;
	display: flex;
	flex-direction: column;
}
.related-blogs .content-item .item-img {
	display: block;
	width: 100%;
	height: auto;
}
.related-blogs .content-item .item-info {
	flex: 1;
	gap: 14px;
	display: grid;
	grid-template-rows: 1fr auto;
	padding: 18px;
}
.related-blogs .content-item .item-tags {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
	align-content: flex-start;
	gap: 6px;
}
.related-blogs .content-item .item-tag {
	background-color: #f5f7ff;
	padding: 4px;
	font-size: 12px;
	font-style: normal;
	color: #3164ff;
	border-radius: 4px;
}
.related-blogs .content-item .item-title {
	font-size: 16px;
	line-height: 1.6;
	font-style: normal;
	color: #05080d;
}
.related-blogs .content-item:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1200px) {
	.container {
		max-width: 1180px;
	}
	.banner {
		padding: 40px 40px 80px;
	}
	.banner .content {
		gap: 40px;
	}
	.banner .content .cover {
		width: 450px;
	}
	.banner .content .title {
		font-size: 40px;
		margin-bottom: 30px;
	}
	.article .category {
		width: 280px;
	}
}
@media (max-width: 992px) {
	.container {
		max-width: 895px;
	}
	.banner {
		padding: 30px 40px 70px;
	}
	.banner .content {
		gap: 35px;
	}
	.banner .content .cover {
		width: 350px;
	}
	.banner .content .title {
		font-size: 34px;
		margin-bottom: 25px;
	}
	.article .category {
		width: 220px;
	}
	.article .media {
		display: none;
	}
	.related-blogs .container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	h3 {
		padding-bottom: 10px;
	}
	.container {
		max-width: 672px;
	}
	.banner {
		padding: 20px 40px 60px;
	}
	.banner .content {
		gap: 35px;
		flex-direction: column;
	}
	.banner .content .cover {
		width: 100%;
	}
	.article .container {
		display: flex;
		flex-flow: column wrap;
		gap: 32px;
	}
	.article .category {
		position: relative;
		top: 0;
		flex: unset;
		width: 100%;
	}
	.article .category-current {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 40px;
		border: 1px solid #ebedf0;
		border-radius: 8px;
		padding: 0 12px;
		margin-bottom: 16px;
		cursor: pointer;
		transition: all 300ms;
		font-size: 14px;
		color: #46505c;
	}
	.article .category-current::after {
		content: '';
		width: 7px;
		height: 12px;
		background-image: url(../img/icon-category-arrow.svg);
		background-size: 100% 100%;
		transition: all 300ms;
	}
	.article .category-current.active::after {
		transform: rotate(90deg);
	}
	.article .category-content {
		display: none;
		position: absolute;
		z-index: 99;
		width: 100%;
		background-color: #fff;
		box-shadow: 0 13px 24px 0 rgba(26, 57, 71, 0.08), 0 8px 41px 0 rgba(15, 31, 38, 0.02);
		border-radius: 8px;
	}
	.author-wrap .container {
		flex-direction: column;
		gap: 30px;
		padding: 25px;
	}
	.author-wrap .desc {
		border-top: 1px solid #ebedf0;
		border-left: none;
		padding-left: 0;
		padding-top: 25px;
	}
}
@media (max-width: 576px) {
	html {
		font-size: calc(100vw / 375);
	}
	h3 {
		padding-bottom: 10px;
	}
	.container {
		width: 100%;
		max-width: unset;
	}
	.banner {
		padding: 35rem 20rem 50rem;
		border-bottom: 1rem solid #ebebeb;
		margin-bottom: 40rem;
	}
	.banner .anchor {
		display: flex;
		gap: 5rem;
		font-size: 12rem;
		margin-bottom: 24rem;
	}
	.banner .anchor a,
	.banner .anchor span {
		line-height: 1.5;
	}
	.banner .content {
		gap: 0;
	}
	.banner .content .cover {
		width: 100%;
		margin-bottom: 30rem;
	}
	.banner .content .title {
		font-size: 32rem;
		line-height: 1.4;
		margin-bottom: 32rem;
	}
	.banner .content .author {
		gap: 15rem;
	}
	.banner .content .author .avatar {
		width: 44rem;
		height: 44rem;
	}
	.banner .content .author .name {
		font-size: 20rem;
	}
	.article {
		padding: 0 20rem 80rem;
		width: 100%;
	}
	.article .container {
		gap: 12rem;
	}
	.article .category-current {
		height: 40rem;
		border: 1rem solid #ebedf0;
		border-radius: 8rem;
		padding: 0 12rem;
		margin-bottom: 16rem;
		font-size: 14rem;
	}
	.article .category-current::after {
		width: 7rem;
		height: 12rem;
	}
	.article .category-content {
		box-shadow: 0 13rem 24rem 0 rgba(26, 57, 71, 0.08), 0 8rem 41rem 0 rgba(15, 31, 38, 0.02);
		border-radius: 8rem;
	}
	.article .content > h2 {
		background-color: #f5f7ff;
		border-left: 6rem solid #3164ff;
		padding: 12rem 18rem;
		font-size: 22rem !important;
		margin: 80rem 0 30rem;
	}
	.article .content > h3 {
		font-size: 18rem !important;
		margin: 40rem 0 20rem;
	}
	.article .content > h4 {
		font-size: 16rem !important;
		margin: 30rem 0 20rem;
	}
	.article .content > h5 {
		font-size: 14rem !important;
		margin: 20rem 0;
	}
	.article .content > h6 {
		font-size: 12rem !important;
		margin: 20rem 0;
	}
	.article .content > p {
		font-size: 14rem;
		margin-bottom: 20rem;
	}
	.article .content > p > strong {
		font-size: 20rem;
	}
	.article .content > p > img {
		border-radius: 10rem;
		margin-top: 10rem;
	}
	.author-wrap {
		padding: 0 20rem 80rem;
	}
	.author-wrap .container {
		border: 1rem solid #ebedf0;
		border-radius: 10rem;
		gap: 30rem;
		padding: 30rem 20rem;
	}
	.author-wrap .info {
		flex-shrink: 0;
		gap: 16rem;
	}
	.author-wrap .info .avatar {
		width: 72rem;
		height: 72rem;
	}
	.author-wrap .info .name {
		font-size: 16rem;
	}
	.author-wrap .desc {
		font-size: 16rem;
		border-top: 1rem solid #ebedf0;
		padding-top: 25rems;
	}
	.subscribe {
		padding: 0 20rem 80rem;
	}
	.subscribe .container {
		border-top: 1rem solid #ebedf0;
		border-bottom: 1rem solid #ebedf0;
		padding: 30rem 0;
	}
	.subscribe-title {
		font-size: 22rem;
		margin-bottom: 24rem;
	}
	.subscribe .subscribe-email {
		width: 100%;
		gap: 12rem;
	}
	.subscribe .subscribe-input-wrap {
		height: 38rem;
		border: 1rem solid #46505c;
		border-radius: 10rem;
		padding: 0 16rem;
	}
	.subscribe .subscribe-input {
		flex: 1;
		height: 100%;
	}
	.subscribe .subscribe-warn {
		display: none;
		width: 14rem;
		height: 14rem;
	}
	.subscribe .subscribe-btn {
		gap: 5rem;
		width: 110rem;
		height: 38rem;
		border-radius: 10rem;
		font-size: 14rem;
	}
	.subscribe .subscribe-btn::after {
		width: 19rem;
		height: 18rem;
	}
	.subscribe .subscribe-success {
		border: 1rem solid #2ad194;
		border-radius: 8rem;
		gap: 8rem;
		padding: 8rem 12rem;
		font-size: 14rem;
	}
	.subscribe .subscribe-fail {
		border: 1rem solid #bf443d;
		border-radius: 8rem;
		gap: 8rem;
		padding: 8rem 12rem;
		font-size: 14rem;
	}
	.related-blogs {
		padding: 0 20rem 80rem;
	}
	.related-blogs .container {
		grid-template-columns: repeat(1, 1fr);
		column-gap: 35rem;
		row-gap: 35rem;
	}
	.related-blogs .content-item {
		border: 1rem solid #ebedf0;
		border-radius: 18rem;
	}
	.related-blogs .content-item .item-info {
		grid-template-rows: 1fr auto;
		padding: 28rem 20rem;
	}
	.related-blogs .content-item .item-tags {
		gap: 6rem;
	}
	.related-blogs .content-item .item-tag {
		padding: 4rem 8rem;
		font-size: 14rem;
		border-radius: 4rem;
	}
	.related-blogs .content-item .item-title {
		font-size: 18rem;
	}
	.related-blogs .content-item .subscribe-success {
		border: 1rem solid #2ad194;
		border-radius: 8rem;
		gap: 8rem;
		padding: 8rem 12rem;
		font-size: 16rem;
	}
	.related-blogs .content-item .subscribe-fail {
		border: 1rem solid #bf443d;
		border-radius: 8rem;
		gap: 8rem;
		padding: 8rem 12rem;
		font-size: 16rem;
	}
	.related-blogs .content-item:hover {
		box-shadow: 0 12rem 24rem rgba(0, 0, 0, 0.08);
	}
}
.subscribe .subscribe-input {
	margin-bottom: unset;
	padding: 0 0;
	border: 1px solid transparent;
}
.subscribe #subscribeForm .subscribe-input:focus,
#subscribeForm .subscribe-input-wrap .subscribe-input:focus {
	border: unset !important;
}

.subscribe .email-hint {
	color: red;
	font-size: 0.9em;
	margin-top: 5px;
	display: none;
	padding: 5px 0;
}
/* Tip box style */
#subscribeForm .tooltip {
	position: absolute;
	background-color: #333;
	color: white;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 14px;
	z-index: 1000;
	pointer-events: none; /* Allow mouse events to penetrate the prompt box */
	opacity: 0;
	transition: opacity 0.3s;
	white-space: nowrap; /* Prevent text line breaks */
}

/* Optional: Add a small triangular arrow */
#subscribeForm .tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
}
.article .content figure {
	width: 100% !important;
}
.article .content figure img {
	display: block;
	margin: 0 auto;
}
.article .content > h3 {
	font-size: 24px;
	color: #0b1639;
	margin: 40px 0 20px;
}

@media (max-width: 576px) {
	.article .content > h3 {
		font-size: 18rem;
		margin: 40rem 0 20rem;
	}
}
ul li  {
    list-style: disc !important;
}
ol li  {
    list-style: decimal !important;
}
ul, ol { padding-left: 20px !important; }

/* Center the image caption text for display */
.wp-caption-text {
	text-align: center;
	margin-top: 8px; /* Maintain appropriate distance from the image */
	font-size: 0.9em; /* Adjusting font size */
	color: #666; /* Adjust text color */
}
/*.wp-caption {*/
/*    position: relative;*/
/*    display: inline-block; !* 确保容器大小与图片一致 *!*/
/*}*/
/*.wp-caption-text {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    margin: 0;*/
/*    background-color: rgba(0, 0, 0, 0.5); !* 可选：添加背景色以提高可读性 *!*/
/*    color: white; !* 可选：设置文字颜色 *!*/
/*    text-align: center;*/
/*    padding: 5px 0; !* 可选：增加一些内边距 *!*/
/*}*/
