:root {
  --square-linear-gradient: linear-gradient(
    135deg,
    rgba(6, 155, 119, 0),
    rgba(21, 75, 151, 0)
  );

  --swiper-theme-color: #b7d342;
  --ant-color-primary: #10366a;
  --main-color: #10366a;
  --link-color: #10366a;
  --secondary-color: #b7d342;
  --ant-font-size: 14px;
  --ant-font-size-sm: 12px;
  --ant-font-size-lg: 0.16rem;
  --ant-font-size-xl: 0.18rem;

  --ant-font-size-heading-1: 0.36rem;
  --ant-font-size-heading-2: 0.32rem;
  --ant-font-size-heading-3: 0.24rem;
  --ant-font-size-heading-4: 0.22rem;
  --ant-font-size-heading-5: 0.2rem;

  --ant-padding-xxs: 4px;
  --ant-padding-xs: 8px;
  --ant-padding-sm: 12px;
  --ant-padding: 16px;
  --ant-padding-md: 0.2rem;
  --ant-padding-lg: 0.24rem;
  --ant-padding-xl: 0.32rem;
  --ant-padding-xxl: 0.48rem;
  --ant-margin-xxs: 4px;
  --ant-margin-xs: 8px;
  --ant-margin-sm: 12px;
  --ant-margin: 16px;
  --ant-margin-md: 0.2rem;
  --ant-margin-lg: 0.24rem;
  --ant-margin-xl: 0.32rem;
  --ant-margin-xxl: 0.48rem;

  --ant-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.06), 0 3px 6px -4px rgba(0, 0, 0, 0.1),
    0 9px 28px 8px rgba(0, 0, 0, 0.03);
  --ant-box-shadow-secondary: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-tertiary: 0 1px 2px 0 rgba(0, 0, 0, 0.03),
    0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  --ant-box-shadow-popover-arrow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-card: 0 1px 2px -2px rgba(0, 0, 0, 0.16),
    0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
  --ant-box-shadow-drawer-right: -6px 0 16px 0 rgba(0, 0, 0, 0.08),
    -3px 0 6px -4px rgba(0, 0, 0, 0.12), -9px 0 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-left: 6px 0 16px 0 rgba(0, 0, 0, 0.08),
    3px 0 6px -4px rgba(0, 0, 0, 0.12), 9px 0 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-up: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-down: 0 -6px 16px 0 rgba(0, 0, 0, 0.08),
    0 -3px 6px -4px rgba(0, 0, 0, 0.12), 0 -9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-tabs-overflow-left: inset 10px 0 8px -8px rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-right: inset -10px 0 8px -8px rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-top: inset 0 10px 8px -8px rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-bottom: inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: rgb(50, 50, 50);
  font-family: "microsoft yahei", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}
body::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #bdb9b9;
}

div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background-color: #f5f5f5;
}

div::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

div::-webkit-scrollbar-thumb {
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  background-color: #bdb9b9;
}
a:hover {
  color: #333;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-flex-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-flex-end {
  justify-content: flex-end;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

.justify-space-evenly {
  justify-content: space-evenly;
}

.align-flex-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-flex-end {
  align-items: flex-end;
}

.mod {
  --mod-title-font-size: 0.36rem;
  --mod-subtitle-font-size: 0.18rem;
  --mod-title-color: #10366a;
  --mod-subtitle-color: #333333;
}

.theme-dark .mod {
  --mod-title-color: #ffffff;
}

.mod .mod-hd {
  width: 100%;
  display: flex;
  margin-bottom: 0.04rem;
}

.mod .mod-title {
  flex: 1;
}

.mod .mod-title.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mod .mod-title.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.mod .mod-hd h3 {
  position: relative;
  font-weight: bold;
  color: var(--mod-title-color);
  font-size: var(--mod-title-font-size);
  padding-bottom: 0.16rem;
}

.mod .mod-hd h3::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.04rem;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.mod .mod-hd .mod-title.center h3::after {
  left: 50%;
  transform: translateX(-50%);
}

.mod.dark .mod-hd h3 {
  color: #fff;
}

.mod .mod-hd .subtitle {
  color: var(--mod-subtitle-color);
  font-size: var(--mod-subtitle-font-size);
  margin-top: 0.32rem;
}

.mod .mod-bd {
  padding: var(--ant-padding-xl) 0;
}

.theme-dark .mod .mod-bd {
  color: rgba(255, 255, 255, 1);
}

@media only screen and (max-width: 767px) {
  .mod {
    --mod-title-font-size: 20px;
    --mod-subtitle-font-size: 14px;
  }

  .mod {
    padding: 20px 0;
  }

  .mod .mod-bd {
    padding: var(--ant-padding) 0;
  }
}

.wrapper {
  box-sizing: border-box;
  max-width: 1600px;
  margin: 0 auto;
}

@media only screen and (max-width: 1660px) {
  .wrapper {
    width: 90%;
    padding: 0 20px;
  }
}

.flex-box {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

.flex-box .flex-box-left {
  box-sizing: border-box;
  width: 50%;
}

.flex-box .flex-box-right {
  box-sizing: border-box;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .flex-box .flex-box-left {
    width: 100% !important;
    padding-right: 0 !important;
    margin-bottom: 24px;
  }

  .flex-box .flex-box-right {
    width: 100% !important;
    padding-left: 0 !important;
  }
}

.container {
  height: 100%;
}

.container img {
  max-width: 100%;
}

.pic {
  overflow: hidden;
  position: relative;
  height: auto;
}

.bgimg {
  width: 100%;
}

.upimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.pic:hover .upimg {
  transform: scale(1.1);
}

.pic-area.center .upimg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pic-area.center .pic:hover .upimg {
  transform: translate(-50%, -50%) scale(1.1);
}

/* + */
.toggle-btn {
  display: none;
}

.custom-icon {
  width: 0.18rem;
  height: 0.18rem;
}

@media only screen and (max-width: 767px) {
  .toggle-btn {
    display: block;
    transition: all 0.5s;
    font-size: 18px;
  }
  .inner-cont > p img {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }

  .custom-icon {
    width: 14px;
    height: 14px;
  }
}

.button {
  --sk-button-background: rgba(21, 68, 171, 1);
  --sk-button-background-hover: rgba(21, 68, 171, 0.8);
  --sk-button-background-active: rgba(21, 68, 171, 0.8);

  --sk-button-color: rgb(255, 255, 255);
  --sk-button-color-hover: var(--sk-button-color);
  --sk-button-color-active: var(--sk-button-color-hover);
  --sk-button-disabled-opacity: var(--sk-link-disabled-opacity, 0.42);

  --sk-button-border-color: transparent;
  --sk-button-border-radius: 0.08rem;

  --sk-button-width: 1.5rem;
  --sk-button-height: 0.52rem;
  --sk-button-font-size: 0.18rem;
}

.button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  padding: 0 0.04rem;
  background: var(--sk-button-background);
  color: var(--sk-button-color);
  /* border: 1px solid var(--sk-button-border-color); */
  border-radius: var(--sk-button-border-radius);
  min-width: var(--sk-button-width);
  height: var(--sk-button-height);
  font-size: var(--sk-button-font-size);
  position: relative;
  overflow: hidden;
}

.button span {
  position: relative;
  z-index: 1;
}

.button:before {
  content: "";
  background: linear-gradient(135deg, rgba(6, 155, 119, 1), rgba(21, 75, 151, 1) 100%);
  background-size: 100% 100%;
  background-position: right bottom;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 100%;
  border-radius: var(--sk-button-border-radius);
  transition: all 0.8s;
}

.button:hover:before {
  right: 0;
}

.button:hover {
  /* background: var(--sk-button-background-hover, var(--sk-button-background)); */
  color: var(--sk-button-color-hover, var(--sk-button-color));
  opacity: 1;
}

.button:focus-visible {
  outline: 2px solid var(--sk-focus-color, #0071e3);
  outline-offset: var(--sk-focus-offset-container, 3px);
  opacity: 1;
}

.button:active {
  background: var(--sk-button-background-active, var(--sk-button-background));
  color: var(--sk-button-color-active, var(--sk-button-color));
  outline: none;
  opacity: 1;
}

.button.disabled,
.button:disabled {
  pointer-events: none;
  opacity: var(--sk-button-disabled-opacity);
}

.button.ghost {
  --sk-button-border-color: rgba(189, 208, 216, 1);
  --sk-button-background: rgba(255, 255, 255, 0.8);
  --sk-button-background-hover: rgba(255, 255, 255, 0.8);
  --sk-button-background-active: rgba(255, 255, 255, 0.8);

  --sk-button-color: rgba(0, 61, 150, 1);
  --sk-button-color-hover: #fff;
  border: 1px solid var(--sk-button-border-color);
}

.button.ghost:hover {
}

.button.green {
  --sk-button-background: rgba(143, 195, 31, 1);
  --sk-button-background-hover: rgba(143, 195, 31, 0.8);
  --sk-button-background-active: rgba(143, 195, 31, 0.8);
}

.button.round {
  border-radius: 980px;
}

.button.round:before {
  border-radius: 980px;
}

.button.arrow-right .icon {
  margin-left: 0.08rem;
  display: flex;
  align-items: center;
}

.button.button-linear-gradient {
  --sk-button-background: linear-gradient(
    220.03deg,
    rgb(215, 0, 15) 7.065%,
    rgb(235, 60, 8) 53.435%,
    rgb(255, 120, 0) 92.935%
  );
  --sk-button-background-hover: linear-gradient(
    220.03deg,
    rgb(215, 0, 15) 7.065%,
    rgb(235, 60, 8) 53.435%,
    rgb(255, 120, 0) 92.935%
  );
  --sk-button-background-active: linear-gradient(
    220.03deg,
    rgb(215, 0, 15) 7.065%,
    rgb(235, 60, 8) 53.435%,
    rgb(255, 120, 0) 92.935%
  );
}

.button.default {
  --sk-button-border-color: rgba(76, 78, 100, 0.22);
  --sk-button-background: transparent;
  --sk-button-background-hover: transparent;
  --sk-button-background-active: transparent;

  --sk-button-color: rgb(50, 50, 50);
}

.button.default:hover,
.button.default:active {
  border-color: rgba(76, 78, 100, 0.4);
}

@media only screen and (max-width: 767px) {
  .button {
    --sk-button-width: 150px;
    --sk-button-height: 36px;
    --sk-button-font-size: 14px;
  }

  .button.arrow-right .icon {
    margin-left: 8px;
  }
}

/* ==========================================================================
Nav 导航栏
========================================================================== */
.dropdown {
  box-sizing: border-box;
  position: absolute;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  padding: 0.12rem;
  top: 88%;
  min-width: 1.2rem;
}

.dropdown:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 0 solid transparent;
  border-width: 0 5px 5px;
  border-bottom-color: var(--primary);
  left: 50%;
  margin-left: -5px;
  top: -5px;
  display: none;
}

.dropdown a {
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 0.14rem;
  line-height: 2.2;
  float: left;
  padding: 0;
  color: #000;
  background: none;
  border-bottom: 0 none;
  width: 100%;
  display: block;
  text-align: center;
}

.dropdown a:hover {
  color: var(--main-color);
}

.footer {
  background-color: rgb(87, 87, 87);
  color: #ffffff;
}

.footer a {
  color: #ffffff;
  transition: all 0.3s;
}

.footer a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.footer-ft {
  font-size: 0.16rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.32rem;
}

.beian-link {
  display: flex;
}

.beian-icon {
  display: flex;
  align-items: center;
  margin-right: 0.08rem;
}

@media only screen and (max-width: 767px) {
  .dropdown a {
    text-align: left;
  }
}

.copyright,
.footer-links {
  margin-right: 0.18rem;
}

@media only screen and (max-width: 1024px) {
  .social-share {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
    padding: 0 20px;
  }

  .footer {
    font-size: var(--ant-font-size-sm);
  }

  .footer-bd {
    display: none;
  }

  .footer-ft {
    padding: 16px 0;
    font-size: 12px;
    flex-wrap: wrap;
    line-height: 2;
  }

  .footer-ft .wrapper {
    flex-wrap: wrap;
  }
  .footer-ft-left {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-ft-right {
    width: 100%;
  }
  .footer-ft-right .social-share-title {
    margin-right: 0;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

.footer-bd {
  padding: 0.92rem 0;
  display: flex;
  justify-content: space-between;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  margin-right: 1.08rem;
}

.footer-nav .fn-col {
  line-height: 2;
  font-size: 0.16rem;
}

.footer-nav .fn-col h3 {
  color: rgba(255, 255, 255, 1);
  font-size: 0.16rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.footer-nav .fn-col h3 a {
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s;
}

.footer-nav .fn-col li {
  font-size: 0.16rem;
}

.footer-nav .fn-col li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.footer-nav .fn-col li a:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 1);
}

@media only screen and (max-width: 767px) {
  .footer-bd {
    display: none;
  }
}

.footer-bd-right {
  display: flex;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.14rem;
  margin-left: 0.16rem;
}

.footer-contact p {
  margin-bottom: 0.2rem;
  position: relative;
  padding-left: 0.48rem;
}

.footer-contact p .fa {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-contact p::after {
  content: "";
  position: absolute;
  left: 0.36rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.6);
}

.footer .qrcode-list {
  display: flex;
}

.footer .qrcode {
  width: 50%;
  padding: 0 0.12rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .qrcode .qrcode-bd img {
  width: 1.2rem;
}

.footer .qrcode .qrcode-ft {
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.14rem;
  text-align: center;
}

.layui-col-space32 {
  margin: 0 -16px !important;
}

.layui-col-space32 > * {
  padding: 0 16px;
}

.layui-col-space90 {
  margin: 0 -0.45rem !important;
}

.layui-col-space90 > * {
  padding: 0 0.45rem;
}

/* logo */
#globalnav .logo {
  box-sizing: border-box;
  display: block;
  transition: all 0.3s;
  flex: none;
  width: var(--global-logo-width);
  height: var(--global-logo-height);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: auto 100%;
  background-image: var(--global-logo-url);
  position: relative;
  z-index: 998;
  /* margin-bottom: 0.08rem; */
}

/* lang */

.header-item {
  color: var(--r-globalnav-color);
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 0.18rem;
  cursor: pointer;
  transition: all 0.3s;
}

.header-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.lang-box {
  position: relative;
  z-index: 999;
  margin-left: 0.32rem;
}

.lang-dropdown-trigger {
  box-sizing: border-box;
  padding: var(--gn-item-padding);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  color: #fff;
  font-size: 0.16rem;
  line-height: 0.27rem;
  color: var(--r-globalnav-color);
}

.lang-dropdown-trigger .icon {
  width: 0.2rem;
  height: 0.2rem;
}

.lang-dropdown-trigger .icon .custom-icon {
  width: 100%;
  height: 100%;
}

.lang-dropdown-trigger .lang-arrow {
  margin-left: 0.08rem;
  width: 0.14rem;
  height: 0.08rem;

  background-image: url("../images/icons/xiala_icon.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100%;
}

.lang-dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
}

.lang-box:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transform: translate(-50%, 0);
  transition: all 0.3s;
  padding: 0.08rem;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.04rem 0.2rem;
  font-size: 0.16rem;
  color: #333;
  border-bottom: 1px solid #e5e5e58e;
  transition: all 0.3s;
  min-width: 0.8rem;
}

.lang-dropdown a:last-child {
  border-bottom: 0 none;
}

.lang-dropdown a:hover {
  color: var(--ant-color-primary);
}

@media only screen and (max-width: 767px) {
  #globalnav .logo {
    margin-top: 8px;
    margin-bottom: 0;
  }

  .dropdown {
    width: 100%;
    position: relative;
    margin: 0;
    background: #fff;
    overflow: hidden;
  }

  .dropdown a {
    white-space: nowrap;
    font-size: 14px;
  }

  .dropdown:after {
    display: none;
  }

  .lang-box {
    display: none;
  }

  #globalnav .gn-item-lang {
    display: block;
  }
}

.searchIcon {
  cursor: pointer;
  position: relative;
  z-index: 99;
}

.search_box {
  box-sizing: border-box;
  padding: var(--gn-item-padding);
  height: 100%;
  width: 0.88rem;
  color: var(--r-globalnav-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.16rem;
}

.search_box .fa {
  color: var(--r-globalnav-color);
}

.globalsearch {
  display: none;
}

.globalsearch {
  position: absolute;
  top: 100px;
  right: 0;
  width: 280px;
  padding: 6px;
  z-index: 999;
  background: linear-gradient(135deg, rgba(6, 155, 119, 1), rgba(21, 75, 151, 1) 100%);
}

.globalsearch .warp {
  background: #fff;
}

.globalsearch #q {
  float: left;
  border: none;
}

.globalsearch .search-btn {
  float: right;
  border: none;
}

.globalsearch #q {
  box-sizing: border-box;
  width: calc(100% - 40px);
  height: 40px;
  padding: 10px;
  background: #fff;
  font: 400 12px/18px microsoft yahei;
}

.globalsearch .search-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: url(../images/btn_ser.png) no-repeat center;
}

@media only screen and (max-width: 767px) {
  .searchIcon {
    position: absolute;
    top: 0;
    right: 68px;
  }

  .search_box {
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    color: #333;
    font-size: 16px;
    padding: 0;
  }

  .search_box .fa {
    color: #333;
  }
  .search_txt {
    display: none;
  }

  .globalsearch {
    box-sizing: border-box !important;
    width: 90%;
    top: 48px;
    padding: 6px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

/* 新闻 */
.news-list-item {
  padding: 0.2rem;
}

.news-list-item a {
  display: block;
  border-radius: 0.08rem;
  box-shadow: 0.04rem 0.04rem 0.1rem 0rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.news-list-item .pic,
.news-list-item .pic img {
  border-radius: 0.08rem 0.08rem 0 0;
}

.news-list-item .meta {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 0.28rem;
}

.news-list-item .title {
  color: rgba(0, 0, 0, 1);
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 1.5;
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  overflow: hidden;
  flex: 1;
}

.news-list-item .published {
  color: rgba(0, 160, 233, 1);
  margin-right: 0.24rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-list-item .date {
  font-weight: bold;
  font-size: 0.2rem;
  line-height: 1.2;
}

.news-list-item .year {
  font-size: 0.24rem;
  line-height: 1.2;
}

.news-list-item a:hover .title {
  color: rgba(0, 160, 233, 1);
}

@media only screen and (max-width: 767px) {
  .news-list-item .meta {
    padding: var(--ant-padding);
    height: auto;
  }

  .news-list-item .category {
    font-size: var(--ant-font-size-sm);
    padding-bottom: 4px;
  }

  .news-list-item .title {
    font-size: 12px;
  }

  .news-list-item .date {
    font-size: 12px;
    line-height: 1.5;
  }

  .news-list-item .year {
    font-size: 14px;
  }
}
