这是你想要的效果吗?
\documentclass[12pt]{ctexart}
\usepackage[most]{tcolorbox}
\usepackage{lipsum}
\usepackage{hyperref}
\usepackage{pifont}
\newcounter{question}[section]
\newcounter{answer}[section]
\NewTColorBox{question}{}
{enhanced, fonttitle=\bfseries, title={\refstepcounter{question}\label{que:\thesection-\thequestion}Question~\thesection-\thequestion\hfill \ding{43}~\pageref{ans:\thesection-\thequestion}}}
\NewTColorBox{answer}{}
{enhanced, fonttitle=\bfseries, title={\refstepcounter{answer}\label{ans:\thesection-\theanswer}Answer~\thesection-\theanswer\hfill \ding{49}~\pageref{que:\thesection-\theanswer}}}
\begin{document}
\section{这是第一章节}
\begin{question}
\[
a^2 + b^2 = c^2
\]
\end{question}
\lipsum[1-10]
\begin{answer}
\[
a^2 + b^2 = c^2
\]
\end{answer}
\end{document}
问 希望在下面的双向跳转【题目-答案】的基础上将题干和答案套上使用tcolorbox显示,不清楚如何进一步修改?