/* 消除边距 */
* {
  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;
  }
}
.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;
  }
}
.categoryTitle {
  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  margin-bottom: 10px;
}
.catagoryDet {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  margin-bottom: 20px;
}
.allCategory {
  margin-bottom: 60px;
}
.allCategory .categoryList {
  display: grid;
  grid-gap: 20px 20px;
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
}
.allCategory .categoryList .itemTestCont {
  position: relative;
  border-radius: 16px;
  border: 1px solid #EEE;
  background: #FFF;
}
.allCategory .categoryList .itemTestCont .hotIcon {
  position: absolute;
  top: 4px;
  inset-inline-start: 4px;
  z-index: 1;
  width: 28px;
  height: 28px;
}
.allCategory .categoryList .itemTestCont .newIcon {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 1;
  width: 40px;
  height: 40px;
  transform: rotate(-30deg);
}
.allCategory .categoryList .itemTestCont .itemTestImgBox {
  border-radius: 16px 16px 0 0;
  width: 100%;
  overflow: hidden;
}
.allCategory .categoryList .itemTestCont .itemTestImgBox .itemTestImg {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px 16px 0 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.allCategory .categoryList .itemTestCont .itemTestDetCont {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.allCategory .categoryList .itemTestCont .itemTestDetCont .itemTestDet .itemTestDetTop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.allCategory .categoryList .itemTestCont .itemTestDetCont .itemTestDet .itemTestDetTop .itemTestCategy {
  color: #666;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.allCategory .categoryList .itemTestCont .itemTestDetCont .itemTestDet .itemTestTitle {
  color: #333;
  font-size: 18px;
  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;
}
.allCategory .categoryList .itemTestCont .itemTestDetCont .itemTestMore {
  flex-shrink: 0;
  margin-inline-start: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFE7DF;
  border-radius: 50%;
}
.allCategory .categoryList .itemTestCont .itemTestDetCont .itemTestMore .indexMore {
  width: 17px;
  height: 17px;
}
.allCategory .categoryList .itemTestCont:hover {
  transform: scale(1.03);
  outline: 4px solid #ffc0ac;
  outline-offset: 4px;
  background: #FFF;
  box-shadow: 0px 3.943px 11.828px 0px rgba(47, 53, 57, 0), 0px 9.857px 32.527px 0px rgba(47, 53, 57, 0.1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
}
.allCategory .categoryList .itemTestCont:hover .itemTestImgBox .itemTestImg {
  transform: scale(1.1);
}
.allCategory .categoryList .itemTestCont:hover .itemTestDetCont .itemTestMore {
  background: #DF4210;
}
.allCategory .categoryList .itemTestCont:hover .itemTestDetCont .itemTestMore .indexMore path {
  fill: #FFFFFF;
}
.allCategory .pagination {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.allCategory .pagination .currentPage,
.allCategory .pagination .totalPages {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E7E7E7;
  cursor: pointer;
}
.allCategory .pagination .currentPage span,
.allCategory .pagination .totalPages span {
  display: inline-block;
  height: 100%;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}
.allCategory .pagination .totalPages {
  background: #FF4B12;
}
.allCategory .pagination .totalPages span {
  color: #FFF;
}
.allCategory .pagination .pageNum {
  margin: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.allCategory .pagination .pageNum .pagesLine {
  margin: 0 4px;
}
.allCategory .pagination .pageNum .currentNum {
  color: #666;
}
@media only screen and (max-width: 767px) {
  .categoryTitle {
    font-size: 24px;
  }
  .catagoryDet {
    font-size: 14px;
  }
  .allCategory {
    margin-bottom: 32px;
  }
  .allCategory .categoryList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .allCategory .categoryList .itemTestCont .itemTestDetCont .itemTestDet .itemTestTitle {
    font-size: 16px;
  }
  .allCategory .categoryList .itemTestCont .itemTestDetCont .itemTestMore {
    display: none;
  }
  .allCategory .categoryList .itemTestCont:hover {
    transform: scale(1);
  }
}
