@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --main-font: "Montserrat", sans-serif;
  --second-font: "Open Sans", sans-serif;
  --main-color: #382248;
  --color-white: #f9f9f9;
  --color-dark: #111111;
  --color-black: #000;
  --color-grey: #aaa;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  border-radius: 50px;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--main-font);
}

p, a, div, h1, h2, h3, h4, h5, h6, span {
  font-family: var(--main-font);
}

a, a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.tc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.tc-container.small {
  max-width: 880px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .tc-container {
    padding: 0 14px;
  }
}

.uk-sticky-placeholder {
  display: none !important;
}

#content {
  padding-top: 176px;
}
@media (min-width: 320px) and (max-width: 767px) {
  #content {
    padding-top: 80px;
  }
}
#content .news-page {
  padding-bottom: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  #content .news-page {
    padding-bottom: 20px;
  }
}

header {
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  padding: 24px 0;
  background-color: #fff;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}
@media (min-width: 320px) and (max-width: 767px) {
  header {
    padding: 12px 0;
  }
}
header.header-hidden {
  top: -156px;
}
header.only-menu {
  top: -94px;
}
header .header-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .header-top {
    margin-bottom: 0;
  }
}
header .header-top .mobile-menu {
  width: 36px;
  height: 36px;
}
header .header-top .mobile-menu button {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  cursor: pointer;
  display: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .header-top .mobile-menu button {
    display: block;
  }
}
header .header-top .logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
header .header-top .logo svg {
  width: 60px;
  color: var(--main-color);
}
@media (min-width: 320px) and (max-width: 767px) {
  header .header-top .logo svg {
    width: 40px;
  }
}
header .header-top .logo p {
  margin: 0;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .header-top .logo p {
    font-size: 12px;
  }
}
header .header-top .social {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .header-top .social {
    display: none;
  }
}
header .header-top .social a {
  background-color: #fff;
  color: var(--main-color);
}
header .header-top .social a:hover {
  background-color: var(--main-color);
  color: var(--color-white);
}
header .navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 1023px) {
  header .navbar {
    display: none;
  }
}
header .navbar .menu {
  font-family: var(--main-font);
}
header .navbar .menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 24px;
}
header .navbar .menu ul li {
  position: relative;
}
header .navbar .menu ul li::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  bottom: -4px;
  left: auto;
  right: 0;
  width: 0;
  transition: 0.3s ease;
}
header .navbar .menu ul li.active::after, header .navbar .menu ul li:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
header .navbar .menu ul li a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}
header .navbar .menu-btn {
  display: none;
}
@media (min-width: 320px) and (max-width: 1023px) {
  header .navbar .menu-btn {
    display: flex;
    padding: 4px 6px;
    background-color: transparent;
    color: #fff;
    box-shadow: none;
    border-radius: 4px;
    border: 1px solid #fff;
  }
}

.social-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 8px;
  z-index: 999;
}
@media (min-width: 320px) and (max-width: 767px) {
  .social-fixed {
    display: none;
  }
}
.social-fixed a {
  background-color: #fff;
  color: var(--main-color);
}
.social-fixed a:hover {
  background-color: var(--main-color);
  color: var(--color-white);
}

.mobile-menu_overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  right: 0;
  left: auto;
  width: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu_overlay.active {
  width: 100%;
  opacity: 1;
}

.mobile-menu_body {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  background-color: #fff;
  z-index: 1000;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu_body.active {
  transform: translateX(0);
}
.mobile-menu_body .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.mobile-menu_body .logo svg {
  width: 60px;
  color: var(--main-color);
}
.mobile-menu_body .logo p {
  margin: 0;
  color: var(--main-color);
  font-size: 12px;
  font-weight: 600;
}
.mobile-menu_body ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu_body ul li.active a {
  background-color: var(--color-dark);
}
.mobile-menu_body ul li.active a span {
  color: #fff;
}
.mobile-menu_body ul li a {
  display: flex;
  padding: 8px 14px;
  border: 1px solid var(--color-dark);
  justify-content: center;
  border-radius: 6px;
}
.mobile-menu_body ul li a span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
}

.uk-offcanvas-bar {
  background-color: #fff;
}
.uk-offcanvas-bar a {
  color: #000;
}
.uk-offcanvas-bar .uk-close {
  color: #000;
  top: 14px;
  right: 14px;
}
.uk-offcanvas-bar .logo {
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}
.uk-offcanvas-bar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.uk-offcanvas-bar ul li {
  margin-bottom: 4px;
}
.uk-offcanvas-bar ul li:last-child {
  margin-bottom: 0;
}
.uk-offcanvas-bar ul li a {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--main-font);
}

footer {
  padding: 20px 0;
  background-color: var(--color-dark);
}
footer .footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
  margin-bottom: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
footer .footer-top .f-tt {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .f-tt {
    font-size: 14px;
    text-align: center;
  }
}
footer .footer-top .menu .list {
  display: flex;
  flex-direction: column;
}
footer .footer-top .menu .list a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .menu .list a {
    font-size: 12px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    text-align: center;
  }
}
footer .footer-top .menu .list a:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
footer .footer-top .posts .list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .footer-top .posts .list .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .posts .list .item {
    align-items: center;
  }
}
footer .footer-top .posts .list .item .img {
  width: 100px;
  height: 66px;
  border-radius: 8px;
  overflow: hidden;
}
footer .footer-top .posts .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .footer-top .posts .list .item .detail {
  width: calc(100% - 108px);
}
footer .footer-top .posts .list .item .detail p {
  margin: 0;
}
footer .footer-top .posts .list .item .detail .tt {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .posts .list .item .detail .tt {
    font-size: 12px;
  }
}
footer .footer-top .posts .list .item .detail .date {
  font-size: 12px;
  line-height: normal;
  color: var(--color-grey);
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .posts .list .item .detail .date {
    display: none;
  }
}
footer .footer-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-bot {
    flex-direction: column;
    justify-content: center;
  }
}
footer .footer-bot .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-bot .logo {
    margin-bottom: 12px;
  }
}
footer .footer-bot .logo svg {
  color: #fff;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
footer .footer-bot .logo p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: auto 0;
}
footer .footer-bot .copyright {
  font-size: 12px;
  color: var(--color-white);
}

.uk-slider-container .uk-slider-items.uk-grid {
  margin-left: -20px;
}
.uk-slider-container .uk-slider-items.uk-grid > * {
  padding-left: 20px;
}

.home {
  padding: 0;
}
.home .featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home .featured {
    margin-bottom: 20px;
  }
}
.home .featured .cover {
  width: 50%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home .featured .cover {
    width: 100%;
    margin-bottom: 12px;
  }
}
.home .featured .cover .uk-slideshow .uk-slideshow-items {
  height: 482px;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home .featured .cover .uk-slideshow .uk-slideshow-items {
    height: 51.2vw;
  }
}
.home .featured .cover .uk-slideshow .uk-slideshow-items .cover-item::after {
  content: "";
  z-index: 2;
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%);
}
.home .featured .cover .uk-slideshow .uk-slideshow-items .cover-item img {
  z-index: 1;
}
.home .featured .cover .uk-slideshow .uk-slideshow-items .cover-item .cover-content {
  z-index: 4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  width: 80%;
}
.home .featured .cover .uk-slideshow .uk-slideshow-items .cover-item .cover-content h2 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--color-white);
  margin: 0;
}
.home .featured .cover .uk-slideshow .uk-slideshow-items .cover-item .cover-content p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-white);
}
.home .featured .promote-news {
  width: calc(50% - 20px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home .featured .promote-news {
    width: 100%;
    gap: 12px;
  }
}
.home .featured .promote-news .card-item .img {
  display: flex;
  width: 100%;
  height: 178px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home .featured .promote-news .card-item .img {
    height: 25.6vw;
  }
}
.home .featured .promote-news .card-item .img a {
  display: flex;
  width: 100%;
  height: 100%;
}
.home .featured .promote-news .card-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .featured .promote-news .card-item p {
  margin: 0;
}
.home .featured .promote-news .card-item .title {
  color: var(--color-black);
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home .featured .promote-news .card-item .title {
    font-size: 12px;
  }
}
.home .featured .promote-news .card-item .date {
  color: var(--color-grey);
  font-size: 12px;
}

.slider-news {
  margin-bottom: 52px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .slider-news {
    margin-bottom: 32px;
  }
}
.slider-news .card-item .img {
  display: flex;
  width: 100%;
  height: 178px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .slider-news .card-item .img {
    height: 32vw;
  }
}
.slider-news .card-item .img a {
  display: flex;
  width: 100%;
  height: 100%;
}
.slider-news .card-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-news .card-item p {
  margin: 0;
}
.slider-news .card-item .title {
  color: var(--color-black);
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 320px) and (max-width: 767px) {
  .slider-news .card-item .title {
    font-size: 12px;
  }
}
.slider-news .card-item .date {
  color: var(--color-grey);
  font-size: 12px;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-container .news {
  width: calc(100% - 360px);
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news {
    width: 100%;
  }
}
.news-container .news .list {
  display: flex;
  flex-direction: column;
}
.news-container .news .list .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ececec;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .list .item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.news-container .news .list .item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .list .item:last-child {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.news-container .news .list .item .img {
  width: 320px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .list .item .img {
    width: 100%;
    height: 53.333vw;
  }
}
.news-container .news .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-container .news .list .item .body {
  width: calc(100% - 360px);
  padding: 14px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .list .item .body {
    width: 100%;
    padding: 14px 0 0;
  }
}
.news-container .news .list .item .body .head {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}
.news-container .news .list .item .body .head .cat, .news-container .news .list .item .body .head .date {
  margin: 0;
  font-size: 13px;
}
.news-container .news .list .item .body .head .cat {
  color: #bd98e2;
  font-weight: 500;
}
.news-container .news .list .item .body .head .date {
  color: var(--color-grey);
  position: relative;
}
.news-container .news .list .item .body .head .date::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  left: -10px;
  width: 1px;
  background-color: var(--color-grey);
}
.news-container .news .list .item .body .tt {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .list .item .body .tt {
    font-size: 14px;
  }
}
.news-container .news .list .item .body .desc {
  margin: 0 0 16px;
  font-size: 13px;
  text-align: justify;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .list .item .body .desc {
    font-size: 12px;
  }
}
.news-container .news .list .item .body .share {
  display: flex;
  gap: 14px;
}
.news-container .news .list .item .body .share .share-btn {
  width: 32px;
  height: 32px;
  border-radius: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.news-container .news .list .item .body .share .share-btn:hover {
  background-color: var(--main-color) !important;
}
.news-container .news .list .item .body .share .share-btn.fb {
  background-color: #1877F2;
}
.news-container .news .list .item .body .share .share-btn svg {
  color: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .read {
    margin-bottom: 32px;
  }
}
.news-container .news .read .tt {
  font-size: 24px;
  font-weight: 600;
  color: var(--main-color);
  margin: 0 0 4px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .read .tt {
    font-size: 16px;
  }
}
.news-container .news .read .date {
  margin: 0 0 20px;
  font-size: 12px;
  color: var(--color-grey);
}
.news-container .news .read img {
  border-radius: 8px;
  display: flex;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 12px;
}
.news-container .news .read .desc {
  color: #111 !important;
  font-family: var(--main-font) !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .news .read .desc {
    font-size: 14px;
  }
}
.news-container .news .read .share {
  border-top: 1px solid #ececec;
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  gap: 12px;
}
.news-container .news .read .share a {
  background-color: var(--main-color);
  color: #fff;
}
.news-container .news .read .share a:hover {
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  color: var(--main-color);
}
.news-container .sidebar {
  width: 320px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .news-container .sidebar {
    width: 100%;
  }
}
.news-container .sidebar .banner .uk-slideshow .uk-slideshow-items {
  height: 420px;
}
.news-container .sidebar .banner .uk-slideshow .uk-slideshow-items .banner-slide {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}
.news-container .sidebar .banner .uk-slideshow .uk-slideshow-items .banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-container .sidebar .last-news {
  margin: 32px 0;
}
.news-container .sidebar .last-news .last-head {
  position: relative;
  background-color: #fff;
  margin-bottom: 20px;
}
.news-container .sidebar .last-news .last-head p {
  position: relative;
  z-index: 3;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
  margin: 0;
  padding-right: 24px;
  background-color: #fff;
  width: max-content;
}
.news-container .sidebar .last-news .last-head::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background-color: #f2f2f2;
}
.news-container .sidebar .last-news .list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 420px;
  overflow-y: scroll;
}
.news-container .sidebar .last-news .list .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.news-container .sidebar .last-news .list .item .img {
  width: 104px;
  height: 70px;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}
.news-container .sidebar .last-news .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-container .sidebar .last-news .list .item .body {
  width: calc(100% - 120px);
}
.news-container .sidebar .last-news .list .item .body .tt {
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-container .sidebar .last-news .list .item .body .date {
  margin: 0;
  font-size: 12px;
  color: var(--color-grey);
}

.video-news {
  background-color: #111;
  padding: 64px 0;
  margin-top: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news {
    padding: 32px 0;
    margin-top: 32px;
  }
}
.video-news .video-news_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 382px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news .video-news_container {
    height: auto;
  }
}
.video-news .video-news_container .video-frame {
  width: 60%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news .video-news_container .video-frame {
    width: 100%;
    height: 57.6vw;
    margin-bottom: 20px;
  }
}
.video-news .video-news_container .video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
.video-news .video-news_container .social_contact {
  width: calc(40% - 64px);
  height: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news .video-news_container .social_contact {
    width: 100%;
  }
}
.video-news .video-news_container .social_contact .f-tt {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news .video-news_container .social_contact .f-tt {
    font-size: 14px;
    text-align: center;
  }
}
.video-news .video-news_container .social_contact .contact {
  margin-bottom: 32px;
}
.video-news .video-news_container .social_contact .contact .list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.video-news .video-news_container .social_contact .contact .list a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news .video-news_container .social_contact .contact .list a {
    justify-content: center;
    gap: 6px;
  }
}
.video-news .video-news_container .social_contact .contact .list a span {
  color: #fff;
  width: 20px;
}
.video-news .video-news_container .social_contact .contact .list a p {
  width: calc(100% - 28px);
  margin: 0;
  font-size: 14px;
  color: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news .video-news_container .social_contact .contact .list a p {
    width: auto;
    font-size: 12px;
  }
}
.video-news .video-news_container .social_contact .social {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news .video-news_container .social_contact .social {
    justify-content: center;
  }
}
.video-news .video-news_container .social_contact .social a {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.video-news .video-news_container .social_contact .social a:hover {
  background-color: #fff;
  color: var(--color-dark);
}
.video-news .video-news_container .video-list {
  width: calc(40% - 24px);
  height: 100%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .video-news .video-news_container .video-list {
    width: 100%;
    max-height: 280px;
  }
}
.video-news .video-news_container .video-list .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.video-news .video-news_container .video-list .item .img {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}
.video-news .video-news_container .video-list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-news .video-news_container .video-list .item .body {
  width: calc(100% - 130px);
}
.video-news .video-news_container .video-list .item .body .tt, .video-news .video-news_container .video-list .item .body .date {
  color: var(--color-white);
  font-family: var(--main-font);
}
.video-news .video-news_container .video-list .item .body .tt {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 500;
}
.video-news .video-news_container .video-list .item .body .date {
  margin: 0;
  font-size: 12px;
}

.last-posts.padding {
  padding: 64px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .last-posts.padding {
    padding: 32px 0;
  }
}
.last-posts .lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .last-posts .lists {
    grid-template-columns: 1fr;
  }
}
.last-posts .lists .item .img {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 767px) {
  .last-posts .lists .item .img {
    height: 54.933vw;
  }
}
.last-posts .lists .item .img a {
  display: flex;
  width: 100%;
  height: 100%;
}
.last-posts .lists .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.last-posts .lists .item .tag {
  margin: 8px auto;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
.last-posts .lists .item .title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
  margin: 0 auto 8px;
  line-height: normal;
  height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 320px) and (max-width: 767px) {
  .last-posts .lists .item .title {
    font-size: 14px;
    height: 36px;
  }
}
.last-posts .lists .item .date {
  text-align: center;
  font-size: 12px;
  color: var(--color-grey);
  margin: 0 auto 8px;
}
.last-posts .lists .item .desc {
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  color: var(--color-dark);
}
@media (min-width: 320px) and (max-width: 767px) {
  .last-posts .lists .item .desc {
    font-size: 12px;
  }
}

.under {
  width: 100vw;
  height: 100vh;
  display: flex;
}
.under img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.under .box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 24px;
  min-width: 520px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .under .box {
    min-width: 300px;
    width: 90%;
    padding: 20px;
  }
}
.under .box .title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .under .box .title {
    font-size: 24px;
  }
}
.under .box .desc {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--main-color);
  margin: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .under .box .desc {
    font-size: 16px;
  }
}

/*# sourceMappingURL=main.css.map */
