.exam-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}
.exam-head .head .t-sub {
  --f-sz: clamp(1.9rem, calc(1.4984rem + 0.5738vw), 2.6rem);
  font-size: var(--f-sz);
}
.exam-head .t-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.6rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .exam-head .t-list {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .exam-head .t-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.2rem;
  }
}
.exam-head .t-list .t-text {
  --f-sz: clamp(1.7rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: 700;
  color: var(--color-sec);
  opacity: 0.3;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.exam-head .t-list .t-text.active {
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .exam-head .t-list .t-text:hover {
    opacity: 1;
  }
}
.exam-head .t-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.1rem solid #dedee0;
}
.exam-head .t-options::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 500px) {
  .exam-head .t-options .t-selection input:checked ~ .t-text {
    background: var(--color-pri);
    color: #fff;
  }
}
@media screen and (max-width: 500px) {
  .exam-head .t-options {
    gap: 1.2rem;
    max-width: 100%;
    margin: 0 auto;
    border-bottom: unset;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.exam-head .t-options .t-text {
  display: inline-block;
  padding: 1.2rem;
  color: #6e7485;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .exam-head .t-options .t-text:hover {
    color: #1d2026;
  }
  .exam-head .t-options .t-text:hover::before {
    width: 100%;
  }
}
.exam-head .t-options .t-text.active {
  font-weight: 500;
  color: #1d2026;
}
.exam-head .t-options .t-text.active::before {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .exam-head .t-options .t-text {
    background: rgba(211, 38, 46, 0.1);
    border-radius: 100rem;
    font-weight: 500;
    padding: 0.4rem 1.2rem;
  }
  .exam-head .t-options .t-text.active {
    background: var(--color-pri);
    color: #fff;
  }
}
.exam-head .t-options .t-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  background: var(--color-pri);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 500px) {
  .exam-head .t-options .t-text::before {
    display: none;
  }
}
.exam-list {
  --rg: 1.6rem;
  --cg: 1.6rem;
}
@media screen and (max-width: 850px) {
  .exam-list .col {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .exam-list .col {
    width: 100%;
  }
}
.exam-block {
  margin-top: 4rem;
}
.exam-it {
  height: 100%;
}
.exam-it .b-if {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.exam-it .b-if .b-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
}
.exam-it .b-if .b-box .icon {
  width: 2rem;
  height: 2rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.exam-it .b-if .b-box .t-gr .t-text {
  font-size: 2rem;
  font-weight: 500;
  color: #4e5566;
}
.exam-it .b-if .b-box .t-gr .t-txt {
  font-size: 2rem;
  color: #8c94a3;
}
.exam-it .b-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: 1.2rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 0.1rem solid #f2f3f5;
}
@media screen and (min-width: 1025px) {
  .exam-it .b-inner:hover {
    -webkit-box-shadow: 0 0.4rem 3.5rem rgba(18, 27, 44, 0.08);
    box-shadow: 0 0.4rem 3.5rem rgba(18, 27, 44, 0.08);
  }
}
.exam-it .b-inner .b-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.exam-it .b-inner .b-ctn .t-tag {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.exam-it .b-inner .b-ctn .t-tag.tag-hv {
  color: #d3262e;
  background: rgba(211, 38, 46, 0.1);
}
.exam-it .b-inner .b-ctn .t-tag.tag-free {
  background: #ebebff;
  color: #342f98;
}
.exam-it .b-inner .b-ctn .t-name {
  --f-sz: clamp(1.7rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: 600;
  color: var(--color-tt);
}
.exam-it .b-inner .b-btn {
  padding-top: 0.8rem;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.exam-it .b-inner .b-btn .btn-ctr {
  width: 2.4rem;
  height: 2.4rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 0.2rem;
  border: 0.1rem solid transparent;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .exam-it .b-inner .b-btn .btn-ctr:hover {
    border-color: var(--color-pri);
  }
}
.exam-news-sw {
  position: relative;
}
.exam-news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .exam-news-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .exam-news-head .head {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.exam-news-block {
  margin-top: 4rem;
}
.exam-news-slider {
  margin: -1rem;
}
.exam-news-slider .swiper {
  padding: 1rem;
}
.exam-news-slider .swiper .swiper-slide {
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .exam-news-slider .swiper .swiper-slide {
    width: 50%;
  }
}
@media screen and (max-width: 412px) {
  .exam-news-slider .swiper .swiper-slide {
    width: 75%;
  }
}
@media screen and (max-width: 1200px) {
  .exam-news-control {
    display: none;
  }
}
.sec-exam-news {
  overflow: hidden;
}
