/* 消除边距 */
* {
  margin: 0;
  padding: 0;
}
html {
  --dir-multiplier: -1;
}
html[dir="rtl"] {
  --dir-multiplier: 1;
}
body,
hr,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
p {
  padding: 0;
  margin: 0;
}
/*列表样式消除*/
ol,
ul,
li {
  list-style: none;
}
ul::-webkit-scrollbar {
  width: 0 !important;
}
/* a标签样式重置 */
a {
  text-decoration: none;
}
/*盒模型默认使用内边框*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*清除浮动*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* End hide from IE-mac */
* + html .clearfix {
  min-height: 1%;
}
/*合并表格边框*/
table,
td,
tr,
th {
  border-collapse: collapse;
}
/*img在盒子中有下边距*/
img {
  /*IE7*/
  border: none;
  vertical-align: middle;
  object-fit: cover;
}
/* 定义 Roboto 字体 */
/* Roboto Black */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-Black.ttf);
  font-weight: 600;
  /* 根据字体文件的权重进行调整 */
  font-style: normal;
}
/* Roboto Black Italic */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-BlackItalic.ttf);
  font-weight: 600;
  font-style: italic;
}
/* Roboto Bold */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
/* Roboto Bold Italic */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-BoldItalic.ttf);
  font-weight: bold;
  font-style: italic;
}
/* Roboto Italic */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-Italic.ttf);
  font-style: italic;
}
/* Roboto Light */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-Light.ttf);
  font-weight: 300;
  font-style: normal;
}
/* Roboto Light Italic */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-LightItalic.ttf);
  font-weight: 300;
  font-style: italic;
}
/* Roboto Medium */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}
/* Roboto Medium Italic */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-MediumItalic.ttf);
  font-weight: 500;
  font-style: italic;
}
/* Roboto Regular */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
/* Roboto Thin */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-Thin.ttf);
  font-weight: 100;
  font-style: normal;
}
/* Roboto Thin Italic */
@font-face {
  font-family: 'Roboto';
  src: url(font/Roboto-ThinItalic.ttf);
  font-weight: 100;
  font-style: italic;
}
/*全局设置*/
body {
  font-family: "Poppins", "HelveticaNeueLTStd", "sans-serif";
}
.coverlink {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  z-index: 1;
}
.adTitle {
  font-size: 12px;
  line-height: 14px;
  margin: 3px 0 6px 0;
  color: #ccc;
  text-align: start;
}
.moduleTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  margin-bottom: 20px;
  background: #FFF;
  border-bottom: 2px solid #FF4B12;
}
.moduleTitle .titleContLeft {
  display: flex;
  align-items: center;
}
.moduleTitle .titleContLeft .icon {
  width: 30px;
  height: 30px;
  margin-inline-end: 4px;
}
.moduleTitle .titleContLeft .TitleText {
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
}
.moduleTitle .seeMore {
  display: flex;
  align-items: center;
}
.moduleTitle .seeMore .icon {
  width: 9px;
  height: 15px;
  margin-inline-start: 4px;
}
.moduleTitle .seeMore span {
  color: #FF4B12;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.emojiNum {
  display: flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  padding: 2px 6px;
  border-radius: 11px;
  background: #EBEBEB;
  position: relative;
}
.emojiNum .love {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.emojiNum .num {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 135%;
}
.emojiNum .icon {
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(calc(50% * var(--dir-multiplier)));
  width: 12px;
  height: 6px;
}
/* 设置广告高度 */
.adsHeight {
  width: 100%;
  height: 252px;
  margin-bottom: 10px;
}
@media (max-width: 355px) {
  .adsHeight {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 356px) {
  .adsHeight {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 748px) {
  .adsHeight {
    width: 100%;
    height: 280px;
  }
}
.wrap {
  min-height: 90vh;
  background-color: #FFFFFF;
}
.wrap .contWrap {
  max-width: 1248px;
  margin: 0 auto;
}
.loading {
  color: #666;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  margin-top: 20px;
}
/* 响应式布局 */
@media only screen and (max-width: 767px) {
  .wrap .contWrap {
    padding: 16px 16px 32px 16px;
  }
  .wrap .contWrap .moduleTitle .titleContLeft .icon {
    width: 24px;
    height: 24px;
  }
  .wrap .contWrap .moduleTitle .titleContLeft .TitleText {
    font-size: 20px;
  }
  .wrap .contWrap .moduleTitle .seeMore span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .wrap .contWrap {
    padding: 20px 20px 50px 20px;
  }
}
@media only screen and (min-width: 1367px) {
  .wrap .contWrap {
    padding: 20px 20px 50px 20px;
  }
}
input {
  border: 0px;
  outline: none;
}
.headWrap {
  width: 100%;
  background: #FFF;
  border-bottom: 1px solid #EDEDED;
}
.headWrap .mantle {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 42px;
  inset-inline-start: 0;
  z-index: 11;
  width: 100%;
  height: 100vh;
  opacity: 0.7;
}
.headWrap .headCont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1248px;
  height: 60px;
  padding: 0px 24px;
  margin: 0 auto;
  position: relative;
  z-index: 13;
  background: #FFFFFF;
}
.headWrap .headCont #menuToggle {
  display: none;
}
.headWrap .headCont #menuToggle .bar {
  transition: all 0.3s ease;
}
.headWrap .headCont #menuToggle .menu rect.line1,
.headWrap .headCont #menuToggle .menu rect.line2,
.headWrap .headCont #menuToggle .menu rect.line3 {
  transform: translateY(0);
  opacity: 1;
}
.headWrap .headCont #menuToggle .close rect.line1 {
  transform: rotate(45deg) translate(0px, 6.5px);
  transform-origin: center;
}
.headWrap .headCont #menuToggle .close rect.line2 {
  opacity: 0;
}
.headWrap .headCont #menuToggle .close rect.line3 {
  transform: rotate(-45deg) translate(0px, -6.5px);
  transform-origin: center;
}
.headWrap .headCont .Logo .seniorchosen {
  position: relative;
  width: auto;
  height: 37px;
}
.headWrap .headCont .headRtCont {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
.headWrap .headCont .headRtCont .Nav {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}
.headWrap .headCont .headRtCont .Nav .itemNav {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 16px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  background-color: #ffffff;
}
.headWrap .headCont .headRtCont .Nav .itemNav .itemNavtext {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.headWrap .headCont .headRtCont .Nav .itemNav:hover .itemNavtext {
  color: #FF4B12;
}
.headWrap .headCont .headRtCont .Nav .moreNav {
  position: relative;
}
.headWrap .headCont .headRtCont .Nav .moreNav .moreNavList {
  display: none;
  z-index: 2;
  position: absolute;
  inset-inline-start: -30%;
  top: 60px;
  padding: 24px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05), 0px 2px 16px 0px rgba(0, 0, 0, 0.06), 0px 0px 30px 0px rgba(0, 0, 0, 0.08), 0px 2px 33px 0px rgba(0, 0, 0, 0.08);
}
.headWrap .headCont .headRtCont .Nav .moreNav .moreNavList .moreItemNav .itemNavtext {
  padding: 12px 0px;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.headWrap .headCont .headRtCont .Nav .moreNav .moreNavList .moreItemNav:hover .itemNavtext {
  color: #FF4B12;
}
.headWrap .headCont .headRtCont .Nav .moreNav:hover svg path {
  fill: #FF4B12;
}
.headWrap .headCont .headRtCont .Nav .moreNav:hover .moreNavList {
  display: block;
}
.headWrap .headCont .headRtCont .Nav .itemNavtext {
  position: relative;
  width: fit-content;
  color: #1A1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
  text-transform: uppercase;
}
.headWrap .headCont .headRtCont .headerSvg {
  display: flex;
  transition: all 0.3s ease;
}
.headWrap .headCont .headRtCont .headerSvg svg {
  width: 24px;
  height: 24px;
}
.headWrap .headCont .headRtCont .headerSvg:hover {
  transform: scale(1.05);
}
.headWrap .headCont .headRtCont .headerSvg:hover svg path {
  stroke: #DF4210;
}
.headWrap .headCont .headRtCont .searchIcon {
  margin-inline-start: 16px;
}
.headWrap .headCont .headRtCont .SearchPageEntry {
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
}
.headWrap .headCont .headRtCont .SearchPageEntry .icon {
  width: 24px;
  height: 24px;
}
.headWrap .headCont .headRtCont .langWrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline-start: 16px;
}
.headWrap .headCont .headRtCont .langWrap .globalSvg {
  width: 24px;
  height: 24px;
}
.headWrap .headCont .headRtCont .langWrap .langList {
  display: none;
  width: max-content;
  max-height: 400px;
  position: absolute;
  z-index: 2;
  inset-inline-end: 0;
  top: 60px;
  padding: 24px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05), 0px 2px 16px 0px rgba(0, 0, 0, 0.06), 0px 0px 30px 0px rgba(0, 0, 0, 0.08), 0px 2px 33px 0px rgba(0, 0, 0, 0.08);
  overflow-y: scroll;
  /* 始终显示垂直滚动条 */
  scrollbar-width: thin;
  /* Firefox: 滚动条宽度 */
  scrollbar-color: #888 #f1f1f1;
  /* Firefox: 滚动条颜色 */
  /* WebKit 浏览器 (Chrome / Edge / Safari) */
}
.headWrap .headCont .headRtCont .langWrap .langList::-webkit-scrollbar {
  -webkit-appearance: none;
  /* 去掉默认外观 */
  width: 10px;
  /* 滚动条宽度 */
}
.headWrap .headCont .headRtCont .langWrap .langList::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 滚动条轨道颜色 */
}
.headWrap .headCont .headRtCont .langWrap .langList::-webkit-scrollbar-thumb {
  background-color: #888;
  /* 滚动条滑块颜色 */
  border-radius: 5px;
  /* 圆角 */
  border: 2px solid #f1f1f1;
  /* 内边距 */
}
.headWrap .headCont .headRtCont .langWrap .langList::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* 悬停颜色 */
}
.headWrap .headCont .headRtCont .langWrap .langList .langItem .lang {
  display: block;
  padding: 8px 0px;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.headWrap .headCont .headRtCont .langWrap .langList .langItem .active {
  color: #FF4B12;
}
.headWrap .headCont .headRtCont .langWrap .langList .langItem:hover .lang {
  color: #FF4B12;
}
.headWrap .headCont .headRtCont .langWrap:hover .langList {
  display: block;
}
.headWrap .headCont .menu {
  display: none;
  align-items: center;
  justify-content: center;
}
.headWrap .headCont .menu .icon {
  width: 24px;
  height: 24px;
}
.headWrap .siderbar {
  z-index: 12;
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: auto;
  max-height: calc(100% - 42px);
  overflow: scroll;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  background: #FFF;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.headWrap .siderbar .sideNavList::-webkit-scrollbar {
  /* 隐藏滚动条 */
  display: none;
  /* Chrome Safari */
}
.headWrap .siderbar .sideNavList,
.headWrap .siderbar .langList {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.headWrap .siderbar .sideNavList .sideItemNav,
.headWrap .siderbar .langList .sideItemNav,
.headWrap .siderbar .sideNavList .langItem,
.headWrap .siderbar .langList .langItem {
  width: calc(50% - 5px);
}
.headWrap .siderbar .sideNavList .sideItemNav .sideItemNavCont,
.headWrap .siderbar .langList .sideItemNav .sideItemNavCont,
.headWrap .siderbar .sideNavList .langItem .sideItemNavCont,
.headWrap .siderbar .langList .langItem .sideItemNavCont,
.headWrap .siderbar .sideNavList .sideItemNav .lang,
.headWrap .siderbar .langList .sideItemNav .lang,
.headWrap .siderbar .sideNavList .langItem .lang,
.headWrap .siderbar .langList .langItem .lang {
  height: 100%;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #E4E4E4;
  background: #FFF;
  transition: all 0.3s ease;
}
.headWrap .siderbar .sideNavList .sideItemNav:hover .sideItemNavCont,
.headWrap .siderbar .langList .sideItemNav:hover .sideItemNavCont,
.headWrap .siderbar .sideNavList .langItem:hover .sideItemNavCont,
.headWrap .siderbar .langList .langItem:hover .sideItemNavCont,
.headWrap .siderbar .sideNavList .sideItemNav:hover .lang,
.headWrap .siderbar .langList .sideItemNav:hover .lang,
.headWrap .siderbar .sideNavList .langItem:hover .lang,
.headWrap .siderbar .langList .langItem:hover .lang {
  color: #DF4210;
  border: 1px solid #DF4210;
  background: #FFF5F2;
}
.headWrap .siderbar .langWrap {
  padding: 16px;
}
.headWrap .siderbar .langWrap .selectTitle {
  color: #666;
  font-size: 16px;
  font-weight: 600;
}
.headWrap .siderbar .langWrap .langList {
  padding: 10px 0 20px 0;
}
.headWrap .siderbar .langWrap .langList .langItem .active {
  color: #DF4210;
  border: 1px solid #DF4210;
  background: #FFF5F2;
}
@media only screen and (max-width: 768px) {
  .headWrap {
    position: sticky;
    top: 0;
    z-index: 5;
  }
  .headWrap .headCont {
    height: 42px;
    padding: 0px 16px;
  }
  .headWrap .headCont #menuToggle {
    display: block;
  }
  .headWrap .headCont .Logo .seniorchosen {
    height: 30px;
  }
  .headWrap .headCont .headRtCont .Nav,
  .headWrap .headCont .headRtCont .tagsIcon,
  .headWrap .headCont .headRtCont .langWrap {
    display: none;
  }
  .headWrap .headCont .menu {
    display: flex;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .headWrap {
    position: sticky;
    top: 0;
    z-index: 5;
  }
  .headWrap .headCont {
    height: 42px;
    padding: 0px 16px;
  }
  .headWrap .headCont #menuToggle {
    display: block;
  }
  .headWrap .headCont .Logo .seniorchosen {
    height: 30px;
  }
  .headWrap .headCont .headRtCont .Nav,
  .headWrap .headCont .headRtCont .langWrap {
    display: none;
  }
  .headWrap .headCont .menu {
    display: flex;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1180px) {
  .headWrap .headCont {
    padding: 0px 20px;
  }
  .headWrap .headCont .headRtCont .searchBox {
    display: none;
    margin-inline-start: 10px;
  }
  .headWrap .headCont .headRtCont .Nav .itemNav {
    padding: 0px 12px;
  }
}
.SimilarQuizzesWrap {
  margin-top: 40px;
}
.SimilarQuizzesWrap .SimilarList {
  display: grid;
  grid-gap: 20px 20px;
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
}
.SimilarQuizzesWrap .SimilarList .itemTestCont {
  position: relative;
  border-radius: 12px;
  border: 1px solid #EEE;
  background: #FFF;
}
.SimilarQuizzesWrap .SimilarList .itemTestCont .itemTestImgBox {
  border-radius: 12px 12px 0 0;
  width: 100%;
  overflow: hidden;
}
.SimilarQuizzesWrap .SimilarList .itemTestCont .itemTestImgBox .itemTestImg {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px 12px 0 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.SimilarQuizzesWrap .SimilarList .itemTestCont .itemTestDetCont {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.SimilarQuizzesWrap .SimilarList .itemTestCont .itemTestDetCont .itemTestDet .itemTestDetTop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.SimilarQuizzesWrap .SimilarList .itemTestCont .itemTestDetCont .itemTestDet .itemTestDetTop .itemTestCategy {
  color: #666;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.SimilarQuizzesWrap .SimilarList .itemTestCont .itemTestDetCont .itemTestDet .itemTestTitle {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: normal;
}
.SimilarQuizzesWrap .SimilarList .itemTestCont:hover {
  border: 1px solid #FF4B12;
  box-shadow: 0px 4px 8px 0px rgba(255, 255, 255, 0.28), 0px 4px 20px 0px rgba(0, 0, 0, 0.08), 0px 10px 30px 2px rgba(47, 53, 57, 0.1);
}
.SimilarQuizzesWrap .SimilarList .itemTestCont:hover .itemTestImgBox .itemTestImg {
  transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
  .SimilarQuizzesWrap {
    margin-top: 32px;
  }
  .SimilarQuizzesWrap .SimilarList {
    grid-template-columns: repeat(1, calc(100% / 1));
  }
}
.hotNowWrap .hotNowList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hotNowWrap .hotNowList .hotTestItem {
  position: relative;
  display: flex;
  align-items: center;
}
.hotNowWrap .hotNowList .hotTestItem .hotTestItemImg {
  flex-shrink: 0;
  width: 50%;
  border-radius: 12px;
  margin-inline-end: 12px;
  overflow: hidden;
  position: relative;
}
.hotNowWrap .hotNowList .hotTestItem .hotTestItemImg .hotIcon {
  width: 20px;
  height: 24px;
  position: absolute;
  top: 3.5px;
  inset-inline-start: 4.6px;
  z-index: 1;
}
.hotNowWrap .hotNowList .hotTestItem .hotTestItemImg .itemImg {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hotNowWrap .hotNowList .hotTestItem .hotTestItemInfo {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hotNowWrap .hotNowList .hotTestItem .hotTestItemInfo .infoTop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.hotNowWrap .hotNowList .hotTestItem .hotTestItemInfo .infoTop .itemCate {
  color: #666;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.hotNowWrap .hotNowList .hotTestItem .hotTestItemInfo .itemTitle {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: normal;
  -webkit-line-clamp: 3;
}
.hotNowWrap .hotNowList .hotTestItem:hover .hotTestItemImg .itemImg {
  transform: scale(1.1);
}
.hotNowWrap .hotNowList .hotTestItem:hover .hotTestItemInfo .itemTitle {
  color: #FF4B12;
}
.subscription {
  margin-top: 20px;
  display: flex;
  padding: 32px 16px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06), 0px 2px 16px 0px rgba(0, 0, 0, 0.05);
}
.subscription .title {
  color: #333;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
}
.subscription .subtitle {
  color: #666;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.subscription .emailAddress {
  display: flex;
  width: 100%;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background: #F5F5F5;
}
.subscription .emailAddress .emailFilter {
  flex: 1;
  background: #F5F5F5;
  margin-inline-end: 10px;
}
.subscription .emailAddress .submit {
  border: none;
  outline: none;
  padding: 4px 16px;
  border-radius: 8px;
  background: linear-gradient(276deg, #FF4B12 2.52%, #FF1787 97.55%);
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 1180px) {
  .subscription .emailAddress .emailFilter {
    width: 80px;
  }
  .subscription .emailAddress .submit {
    padding: 4px;
  }
}
.footerWrap {
  background: #FFF;
  position: relative;
  border-top: 1px solid #D9D9D9;
}
.footerWrap .footer {
  max-width: 1248px;
  padding: 0px 24px;
  margin: 0 auto;
}
.footerWrap .footer .top .logo img {
  width: auto;
  height: 30px;
}
.footerWrap .footer .top .socialMedia {
  display: flex;
}
.footerWrap .footer .top .socialMedia .externalLinks {
  display: inline-block;
  margin-inline-end: 10px;
}
.footerWrap .footer .top .socialMedia .externalLinks svg {
  width: 28px;
  height: 28px;
}
.footerWrap .footer .tabbar {
  display: flex;
  align-items: center;
}
.footerWrap .footer .tabbar a {
  margin-inline-end: 24px;
  color: #666;
  text-align: end;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  white-space: nowrap;
}
.footerWrap .backTop {
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.footerWrap .backTop .svgIcon {
  position: fixed;
  z-index: 3;
  bottom: 100px;
  inset-inline-end: 40px;
  width: 50px;
  height: 50px;
  filter: drop-shadow(0px 2px 12px rgba(43, 45, 52, 0.12)) drop-shadow(0px 0px 8px rgba(43, 45, 52, 0.1));
}
.footerWrap .cookie-notice-container {
  background-color: rgba(255, 255, 255, 0.5);
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  color: #6f6f6f;
  text-align: center;
  z-index: 999999;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.footerWrap .cookie-notice-container .container {
  max-width: 900px;
  z-index: 2;
  position: relative;
  text-align: center;
  padding: 10px;
  padding-inline-end: 100px;
  margin: 0 auto;
}
.footerWrap .cookie-notice-container .container a,
.footerWrap .cookie-notice-container .container button,
.footerWrap .cookie-notice-container .container video {
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  text-decoration: none;
}
.footerWrap .cookie-notice-container .container .moreJump {
  color: #0186FF;
}
.footerWrap .cookie-notice-container .container button {
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translate(-8px, -50%);
  display: block;
  padding: 0 25px;
  height: 30px;
  line-height: 30px;
  background: #0186FF;
  border: none;
  color: #fff;
  margin: 0 auto;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  cursor: pointer;
}
.footerWrap .cookie-notice-container:before {
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  z-index: -1;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 767px) {
  .footerWrap .footer {
    padding: 20px 16px;
  }
  .footerWrap .footer .top {
    text-align: center;
  }
  .footerWrap .footer .top .socialMedia {
    margin: 16px 0 24px 0;
    align-items: center;
    justify-content: center;
  }
  .footerWrap .footer .tabbar {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footerWrap .backTop .svgIcon {
    inset-inline-end: 16px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  .footerWrap .cookie-notice-container {
    font-size: 14px;
  }
  .footerWrap .addToScreenTip .tipCont {
    display: flex;
    justify-content: center;
  }
  .footerWrap .addToScreenTip .tipCont .stepImg {
    width: 50%;
  }
  .cookie-notice-container .container {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footerWrap .footer {
    padding: 20px 16px;
  }
  .footerWrap .footer .top {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  .footerWrap .footer .top .socialMedia {
    margin-inline-start: 50px;
  }
  .footerWrap .cookie-notice-container {
    font-size: 1.4rem;
  }
  .footerWrap .addToScreenTip .tipCont {
    display: flex;
    justify-content: center;
  }
  .footerWrap .addToScreenTip .tipCont .stepImg {
    width: 40%;
  }
  .cookie-notice-container .container {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footerWrap .footer {
    padding: 20px 24px;
  }
  .footerWrap .footer .top {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  .footerWrap .footer .top .socialMedia {
    margin-inline-start: 50px;
  }
  .footerWrap .cookie-notice-container {
    font-size: 16px;
  }
  .footerWrap .addToScreenTip .tipCont {
    display: flex;
    justify-content: center;
  }
  .footerWrap .addToScreenTip .tipCont .stepImg {
    width: 20%;
  }
  .cookie-notice-container .container {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  .footerWrap .footer {
    padding: 32px 24px;
  }
  .footerWrap .footer .top {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }
  .footerWrap .footer .top .socialMedia {
    margin-inline-start: 50px;
  }
  .footerWrap .cookie-notice-container {
    font-size: 16px;
  }
  .footerWrap .addToScreenTip {
    display: none;
  }
  .cookie-notice-container .container {
    font-size: 16px;
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 23, 135, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 23, 135, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 23, 135, 0);
  }
}
@keyframes submitbounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}
@keyframes flash {
  0%,
  100% {
    border: 2px solid #F5F5F5;
    background-color: #F5F5F5;
  }
  50% {
    border: 2px solid #FFE6E6;
    background-color: #FFE6E6;
  }
}
.topicCont {
  width: 100%;
  display: flex;
}
.topicCont .leftWrap {
  width: 70%;
  padding-inline-end: 60px;
  /* 进度条样式 */
}
.topicCont .leftWrap .StartQuiz {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 450px;
  height: 50px;
  margin: auto;
  margin-bottom: 16px;
  border-radius: 26px;
  background: linear-gradient(276deg, #FF4B12 2.52%, #FF1787 97.55%);
  transition: all 0.3s ease;
}
.topicCont .leftWrap .StartQuiz span {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
}
.topicCont .leftWrap .StartQuiz svg {
  width: 24px;
  height: 24px;
}
.topicCont .leftWrap .StartQuiz .arrow {
  display: inline-block;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.topicCont .leftWrap .StartQuiz::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: none;
}
.topicCont .leftWrap .StartQuiz:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 23, 135, 0.4);
}
.topicCont .leftWrap .StartQuiz:hover .arrow {
  animation: bounce 1.2s infinite;
}
.topicCont .leftWrap .StartQuiz:hover::after {
  left: 150%;
  transition: left 0.7s ease-in-out;
}
.topicCont .leftWrap .StartQuiz:active {
  transform: translateY(1px);
}
.topicCont .leftWrap .question {
  color: #333;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  margin-bottom: 16px;
  cursor: pointer;
}
.topicCont .leftWrap .progressWrap {
  display: none;
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  z-index: 5;
  width: 100%;
  height: 32px;
  padding: 10px 16px;
  background: #FFFFFF;
  border-bottom: 1px solid #E4E4E4;
}
.topicCont .leftWrap .progressWrap #progressBar {
  height: 12px;
  max-width: 1200px;
  margin: auto;
  background: #E8E8E8;
  border-radius: 12px;
}
.topicCont .leftWrap .progressWrap #progressBar #progress {
  height: 100%;
  width: 0%;
  background: #FF1284;
  transition: width 0.5s ease;
  border-radius: 12px;
}
.topicCont .leftWrap .relatedTags {
  margin-bottom: 16px;
}
.topicCont .leftWrap .relatedTags .relatedTagsList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topicCont .leftWrap .relatedTags .relatedTagsList .itemTag {
  flex-shrink: 0;
  border-radius: 15px;
  background: linear-gradient(276deg, #FF4B12 2.52%, #FF1787 97.55%);
}
.topicCont .leftWrap .relatedTags .relatedTagsList .itemTag .itemTaglink {
  display: flex;
  width: fit-content;
  height: 30px;
  padding: 4px 16px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.topicCont .leftWrap .relatedTags .relatedTagsList .itemTag:hover {
  background: linear-gradient(97deg, #FF5722 19.96%, #FF1787 93.7%);
}
.topicCont .leftWrap .relatedTags .relatedTagsList .itemTag2 {
  border: 1px solid #FF4B12;
  background: #FFFFFF;
}
.topicCont .leftWrap .relatedTags .relatedTagsList .itemTag2 .itemTaglink {
  color: #EE4217;
}
.topicCont .leftWrap .relatedTags .relatedTagsList .itemTag2:hover {
  background: #FFF2EF;
}
.topicCont .leftWrap .authorInfo {
  display: flex;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  color: #666;
}
.topicCont .leftWrap .authorInfo .authorName {
  font-weight: 500;
  margin-inline-end: 16px;
}
.topicCont .leftWrap .authorInfo .authorName .by {
  font-weight: 400;
}
.topicCont .leftWrap .topicImg {
  width: 100%;
}
.topicCont .leftWrap .topicImg .itemImg {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin-bottom: 16px;
  cursor: pointer;
}
.topicCont .leftWrap .topicImg .StartQuiz {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  max-width: 450px;
  margin: auto;
  margin-bottom: 32px;
  border-radius: 26px;
  background: linear-gradient(276deg, #FF4B12 2.52%, #FF1787 97.55%);
  transition: all 0.3s ease;
  cursor: pointer;
}
.topicCont .leftWrap .topicImg .StartQuiz span {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
}
.topicCont .leftWrap .topicImg .StartQuiz svg {
  width: 24px;
  height: 24px;
}
.topicCont .leftWrap .topicImg .StartQuiz .arrow {
  display: inline-block;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.topicCont .leftWrap .topicImg .StartQuiz::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: none;
}
.topicCont .leftWrap .topicImg .StartQuiz:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 23, 135, 0.4);
}
.topicCont .leftWrap .topicImg .StartQuiz:hover .arrow {
  animation: bounce 1.2s infinite;
}
.topicCont .leftWrap .topicImg .StartQuiz:hover::after {
  left: 150%;
  transition: left 0.7s ease-in-out;
}
.topicCont .leftWrap .topicImg .StartQuiz:active {
  transform: translateY(1px);
}
.topicCont .leftWrap .allTestQuizzes {
  width: 100%;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont {
  border-radius: 12px;
  border: 1px solid #EEE;
  padding: 24px;
  position: relative;
  margin: 15px 0 16px 0;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemCurtain {
  position: absolute;
  top: -15px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 8;
  opacity: 0.4;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemQuizSerial {
  position: absolute;
  top: -15px;
  inset-inline-start: 16px;
  z-index: 0;
  flex-shrink: 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 12px;
  border-radius: 10px;
  background: #F4F4F4;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemQuizSerial .nowSerial {
  color: #FF4B12;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemQuizTitle {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemQuizTitle .itemQuizText {
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemQuizImg {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions {
  width: 100%;
  display: grid;
  grid-gap: 16px 16px;
  grid-template-columns: repeat(2, calc((100% - 16px) / 2));
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 8px;
  background: #F5F5F5;
  border: 2px solid #F5F5F5;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.3s ease;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt .itemOptImg {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  margin-bottom: 10px;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt .itemOptQuiz {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt .itemTextOpt {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt .itemOnlyImgOpt {
  width: 100%;
  border-radius: 6px;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt.flash {
  animation: flash 0.3s ease-in-out 2;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt.selected,
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt.selected:hover {
  transform: scale(1.02);
  border: 2px solid #FF1787;
  background: #FF1787;
  box-shadow: 0px 2.04px 6.12px 0px #FFB8DA;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt.selected .itemOptQuiz,
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt.selected:hover .itemOptQuiz {
  color: #FFFFFF;
  font-weight: 600;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt:hover {
  transform: scale(1.02);
  border: 2px solid #FF1787;
  background: #FFF0F6;
}
.topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont:first-child .itemCurtain {
  display: none;
}
.topicCont .leftWrap .allTestQuizzes .testSubmit {
  width: 100%;
  max-width: 450px;
  height: 52px;
  text-align: center;
  border-radius: 26px;
  background: #C7C7C7;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  margin: 16px auto 10px auto;
  cursor: pointer;
}
.topicCont .leftWrap .allTestQuizzes .testSubmit .arrow {
  display: inline-block;
  font-size: 20px;
  padding-inline-start: 8px;
  animation: submitbounce 1.5s infinite;
}
.topicCont .leftWrap .allTestQuizzes .submitable {
  background: linear-gradient(276deg, #FF4B12 2.52%, #FF1787 97.55%);
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 75, 18, 0.7);
}
.topicCont .leftWrap .allTestQuizzes .submitable:hover {
  animation: none;
  box-shadow: 0 4px 20px rgba(255, 75, 18, 0.4);
  transform: translateY(-2px);
}
.topicCont .leftWrap .allTestQuizzes .submitable:active {
  transform: translateY(1px);
}
.topicCont .leftWrap .allTestQuizzes .watchAD {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}
.topicCont .leftWrap .allTestQuizzes .watchAD svg {
  width: 20px;
  height: 20px;
  margin-inline-end: 6px;
}
.topicCont .leftWrap .allTestQuizzes .watchAD .text {
  color: #999;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.topicCont .leftWrap .allTestQuizzes .relatedTags {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.topicCont .leftWrap .allTestQuizzes .relatedTags .title {
  flex-shrink: 0;
  color: #333;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-inline-end: 12px;
}
.topicCont .leftWrap .allTestQuizzes .relatedTags .relatedTagsList {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.topicCont .leftWrap .allTestQuizzes .relatedTags .relatedTagsList .itemTag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.topicCont .leftWrap .allTestQuizzes .relatedTags .relatedTagsList .itemTag .itemTaglink {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #FF4B12;
  color: #FF4B12;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.topicCont .leftWrap .allTestQuizzes .relatedTags .relatedTagsList .itemTag:hover {
  background: linear-gradient(276deg, #FF4B12 2.52%, #FF1787 97.55%);
}
.topicCont .leftWrap .allTestQuizzes .relatedTags .relatedTagsList .itemTag:hover .itemTaglink {
  color: #FFF;
}
.topicCont .rightWrap {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .topicCont {
    flex-direction: column;
  }
  .topicCont .leftWrap {
    width: 100%;
    padding-inline-end: 0px;
    padding-block-end: 32px;
  }
  .topicCont .leftWrap .question {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .topicCont .leftWrap .relatedTags::-webkit-scrollbar {
    /* 隐藏滚动条 */
    display: none;
    /* Chrome Safari */
  }
  .topicCont .leftWrap .relatedTags {
    overflow: scroll;
    margin: 0 -16px 10px -16px;
    /* 隐藏滚动条 */
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
  }
  .topicCont .leftWrap .relatedTags .relatedTagsList {
    flex-wrap: nowrap;
    width: fit-content;
    margin: 0 16px;
  }
  .topicCont .leftWrap .relatedTags .relatedTagsList .itemTag {
    border-radius: 14px;
  }
  .topicCont .leftWrap .relatedTags .relatedTagsList .itemTag .itemTaglink {
    height: 28px;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 20px;
  }
  .topicCont .leftWrap .relatedTags .relatedTagsList .itemTag:last-child {
    margin: 0;
  }
  .topicCont .leftWrap .authorInfo {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont {
    padding: 24px 10px 10px 10px;
  }
  .topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemQuizSerial {
    inset-inline-start: 10px;
    font-size: 14px;
  }
  .topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemQuizSerial .nowSerial {
    font-size: 18px;
  }
  .topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .itemQuizTitle .itemQuizText {
    font-size: 18px;
  }
  .topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions {
    grid-gap: 6px 6px;
    grid-template-columns: repeat(2, calc((100% - 6px) / 2));
  }
  .topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt {
    padding: 6px;
    display: flex;
  }
  .topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt .itemOptImg {
    width: 100%;
    height: auto;
    margin-bottom: 2px;
  }
  .topicCont .leftWrap .allTestQuizzes .testQuizList .itemQuizCont .QuizOptions .itemOpt .itemOptQuiz {
    font-size: 16px;
  }
  .topicCont .leftWrap .allTestQuizzes .relatedTags {
    flex-direction: column;
    align-items: flex-start;
  }
  .topicCont .leftWrap .allTestQuizzes .relatedTags .title {
    margin-bottom: 12px;
  }
  .topicCont .leftWrap .allTestQuizzes .relatedTags .relatedTagsList {
    margin-inline-start: 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  .topicCont .leftWrap .allTestQuizzes .relatedTags .relatedTagsList .itemTag .itemTaglink {
    padding: 5px 16px;
  }
  .topicCont .rightWrap {
    width: 100%;
  }
}
@media only screen and (max-width: 820px) {
  .topicCont .leftWrap .progressWrap {
    top: 43px;
  }
}
