/* 关于我们 */
#in_about {
  background-color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 4.875rem;
}

#in_about .box_left {
  padding-right: 4.875rem;
}

#in_about .box_header.main_box_header {
  margin-bottom: 1.875rem /* 30/16 */;
}

#in_about .about_content {
  font-size: 1rem /* 16/16 */;
  line-height: 2;
  color: #666;
  text-indent: 2em;
  margin-bottom: 3rem;
}

#in_about .about_icons {
  justify-content: flex-start;
}

#in_about .about_icons .about_icon_item {
  margin-right: 4.5rem;
}

#in_about .about_icons .icon_box {
  width: 5.125rem;
  height: 5.125rem;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  position: relative;
}

#in_about .about_icons .icon_box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--base_color);
  transition: all 0.3s ease;
}

#in_about .about_icons .icon_box img {
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

#in_about .about_icons .about_icon_item:hover .icon_box::before {
  width: 100%;
  height: 100%;
}

#in_about .about_icons .about_icon_item:hover .icon_box img {
  filter: brightness(0) invert(1); /* 黑白滤镜 */
}

#in_about .about_icons p {
  font-size: 1rem;
}

#in_about .about_img {
  border-radius: 3px;
  overflow: hidden;
  background-color: #000000;
}

#in_about .about_img>img {
  opacity: 0.5;
}


#in_about .video_play {
  bottom: 1.5rem;
  right: 1.5rem;
}

#in_about .video_play span img {
  width: 8rem;
  height: 8rem;
}

/* 产品中心 */
#in_product {
  background: url(../images/product_bg.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 5.25rem; /* 84/16 */
  padding-bottom: 4.625rem; /* 74/16 */
}

#in_product .box_header.main_box_header {
  margin-bottom: 2.5rem /* 40/16 */;
}

/* 产品中心选项卡 */
.product_tabs {
  margin-bottom: 1.75rem /* 28/16 */;
}

.product_tabs .tabs_btns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.125rem /* 18/16 */;
  margin-bottom: 1.625rem /* 26/16 */;
}

.product_tabs .tabs_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.5625rem /* 57/16 */;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #333333;
  transition: all 0.3s ease;
  font-size: 1rem /* 16/16 */;
  position: relative;
}

.product_tabs .tabs_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  background-color: #efba16;
  transition: all 0.3s ease;
}

.product_tabs .tabs_btn.active a::before,
.product_tabs .tabs_btn a:hover::before {
  width: 100%;
  opacity: 1;
}

.product_tabs .tabs_btn a p {
  position: relative;
  z-index: 1;
}

.product_tabs .tabs_conts {
  position: relative;
}

.product_tabs .tabs_cont {
  display: none;
  animation: fadeIn 0.5s ease;
}

.product_tabs .tabs_cont.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 产品轮播 */

.product_slider {
  margin: 0;
}

.product_item {
  height: 100%;
  margin: 0;
}

.product_img {
  display: block;
}

.product_visible_title {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0%);
  transition: all 0.3s ease;
}

.product_img:hover .product_visible_title {
  transform: translateY(100%);
}

.product_visible_title > div {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: transparent;
  display: inline-flex;
  padding: 0.9375rem /* 15/16 */ 2.5rem /* 40/16 */;
  font-size: 1.125rem /* 18/16 */;
  color: #ffffff;
}

.product_visible_title > div p {
  position: relative;
  z-index: 1;
}

.product_visible_title > div::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.69);
  transition: all 0.3s ease;
  opacity: 1;
  z-index: 0;
  clip-path: polygon(0 0, 85% 0%, 100% 100%, 0% 100%);
}

.product_visible_title > div:hover::before {
  opacity: 1;
  width: 100%;
  height: 100%;
}

.product_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 33, 47, 0.9);
  color: #fff;
  padding: 18%;
  transform: translateY(100%);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2;
}

.product_title {
  font-size: 1.375rem /* 22/16 */;
  margin-bottom: 1rem /* 16/16 */;
  text-align: center;
}

.product_desc {
  font-size: 0.9375rem /* 15/16 */;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  margin-bottom: 1rem /* 16/16 */;
}

.product_more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.25rem;
  color: #ffffff;
  font-size: 0.9375rem /* 15/16 */;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  width: 9.375rem /* 150/16 */;
  height: 2.3125rem /* 37/16 */;
  margin: 0 auto;
}

.product_more:hover {
  background-color: var(--base_color);
  border-color: var(--base_color);
  color: #ffffff;
}

.product_img:hover .product_info {
  transform: translateY(0);
}

/* 轮播导航按钮 */
.product-button-prev,
.product-button-next {
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.product-button-prev::after,
.product-button-next::after {
  font-size: 1rem !important;
}

.product-button-prev {
  left: -3.75rem /* -60/16 */ !important;
  background-color: #007ef9;
}

.product-button-prev::after {
  color: #ffffff;
}

.product-button-next {
  right: -3.75rem /* -60/16 */ !important;
  border: 1px solid #ffffff;
  background-color: transparent;
}

.product-button-next::after {
  color: #ffffff;
}

.product-button-prev:hover,
.product-button-next:hover {
  background-color: #ffd303;
  border: 0;
}

.product-button-prev:hover::after,
.product-button-next:hover::after {
  color: var(--base_color);
}

.product_features {
  margin-bottom: 2.625rem /* 42/16 */;
}
.product_features li {
  border-bottom: 1px dashed #ffffff;
  color: #ffffff;
  font-size: 1rem /* 16/16 */;
  line-height: 3;
  margin-bottom: 0.125rem /* 2/16 */;
}

.product_action {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.product_action .btn_more_1,
.product_action .btn_more_2 {
  width: 13.125rem /* 210/16 */;
  height: 3.125rem /* 50/16 */;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.product_action .btn_more_1 {
  background-color: var(--second_color);
}

.product_action .btn_more_1 p {
  position: relative;
  z-index: 1;
}

.product_action .btn_more_1:hover {
  color: #ffffff;
}

.product_action .btn_more_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #f60;
  transition: all 0.3s ease;
  z-index: 0;
}

.product_action .btn_more_1:hover::before {
  width: 100%;
}

.product_action .btn_more_2 {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.product_action .btn_more_2 p {
  position: relative;
  z-index: 1;
}

.product_action .btn_more_2:hover {
  color: var(--base_color);
}

.product_action .btn_more_2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease;
  z-index: 0;
}

.product_action .btn_more_2:hover::before {
  width: 100%;
}

.product_action .iconfont2022 {
  font-size: 1rem;
}

/* 资质实力 */
#in_qualification {
  background: url("../images/qualification_bg.jpg") no-repeat top center;
  background-size: auto 21rem /* 336/16 */;
  padding-top: 5.25rem /* 84/16 */;
  padding-bottom: 4.625rem /* 74/16 */;
}

#in_qualification .box_header.main_box_header {
  margin-bottom: 4rem /* 64/16 */;
}

#in_qualification .box_header .header_bg {
  position: absolute;
  top: -75%;
  right: 0;
  font-family: Arial;
  font-size: 11.25rem /* 180/16 */;
  color: rgba(51, 51, 51, 0.25);
}

#in_qualification .box_header.main_box_header .title_box a {
  color: #333333;
}

.qualification_intro {
  font-size: 1.125rem;
  color: #333333;
  line-height: 1.6;
}
.qualification_data {
  background-color: #ffffff;
  padding: 3.125rem /* 50/16 */ 6.25rem /* 100/16 */;
  margin-bottom: 0;
}
.qualification_data .data_item {
  height: 100%;
}

.qualification_data .data_title {
  margin-bottom: 1rem /* 16/16 */;
}

.qualification_data .data_num {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--base_color);
  line-height: 1;
  position: relative;
}

.qualification_data .data_num sup {
  font-size: 1.25rem /* 20/16 */;
  font-family: Arial;
  font-weight: bold;
  position: absolute;
  top: 0.5rem;
}

.qualification_data .data_desc {
  font-size: 1rem /* 16/16 */;
  color: #333333;
  line-height: 1.6;
}

.qualification_data .data_note {
  font-size: 0.875rem /* 14/16 */;
  color: #999999;
  line-height: 1.6;
}

.qualification_certs {
  position: relative;
}

.cert_item {
  background-color: #ffffff;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cert_item:hover .cert_img {
  box-shadow: 0 0 0.125rem /* 2/16 */ rgba(0, 0, 0, 0.1);
}

.cert_img {
  margin: 1.25rem /* 20/16 */;
  border: 1px solid #efece5;
}

.cert_info {
  padding: 0.9375rem /* 15/16 */ 0.625rem /* 10/16 */;
  text-align: center;
  color: #666666;
  font-size: 0.9375rem /* 15/16 */;
  line-height: 1.6;
  background-color: transparent;
  position: relative;
  transition: all 0.3s ease;
}

.cert_info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f3f6;
  transition: all 0.3s ease;
  z-index: -2;
}

.cert_info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--base_color);
  transition: all 0.3s ease;
  z-index: -1;
}

.cert_item:hover .cert_info::before {
  width: 100%;
}

.cert_item:hover .cert_info {
  color: #ffffff;
}

.cert-button-prev,
.cert-button-next {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 0;
  transform: all 0.3s ease;
}

.cert-button-prev:after,
.cert-button-next:after {
  font-size: 1rem !important;
  color: #333333;
}

.cert-button-prev {
  left: -3.75rem /* -60/16 */ !important;
  background-color: var(--base_color);
}

.cert-button-next {
  border: 1px solid #cdcdcd;
  right: -3.75rem /* -60/16 */ !important;
}

.cert-button-prev:after {
  color: #ffffff;
}

.cert-button-next:after {
  color: #9d9d9d;
}

.cert-button-prev:hover,
.cert-button-next:hover {
  border: 0;
  background-color: var(--second_color);
}

.cert-button-prev:hover:after,
.cert-button-next:hover:after {
  color: #ffffff;
}

/* 康隆服务 */
#in_service {
  background: url(../images/service_bg.jpg) no-repeat top center;
  background-size: cover;
  padding-top: 4.375rem /* 70/16 */;
  padding-bottom: 2.25rem /* 36/16 */;
}

#in_service .box_header.main_box_header {
  margin-bottom: 0;
}

#in_service .box_header.main_box_header .title_box a {
  color: #333333;
}

.service_swiper .swiper-wrapper {
  padding-top: 2.5rem /* 40/16 */;
  padding-bottom: 2.5rem /* 40/16 */;
}

.service_item {
  background-color: #ffffff;
  border-radius: 0;
  padding: 3rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  position: relative;
  top: 0;
}

.service_icon {
  margin-bottom: 1.5rem /* 24/16 */;
  transition: all 0.3s ease;
}

.service_icon img {
  width: 3.75rem /* 60/16 */;
  height: 3.75rem /* 60/16 */;
  object-fit: contain;
}

.service_title {
  font-size: 1.75rem /* 28/16 */;
  font-weight: bold;
  margin-bottom: 1.25rem /* 20/16 */;
  color: #333333;
  transition: all 0.3s ease;
}

.service_desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 2.25rem /* 36/16 */;
  min-height: calc(1.8 * 1rem * 2);
  transition: all 0.3s ease;
}

.service_desc span {
  color: var(--second_color);
}

.service_link .btn_more {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background-color: transparent;
  border: 2px solid var(--base_color);
  color: var(--base_color);
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service_link .btn_more:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--second_color);
  transition: all 0.3s ease;
  z-index: -1;
}

.service_item:hover {
  background-color: #1e5fb8;
  box-shadow: 0 0.5rem 1.5rem rgba(30, 95, 184, 0.5);
}

.service_item:hover * {
  color: #ffffff !important;
}

.service_item:hover .service_icon img {
  filter: brightness(0) invert(1); /* 将图标转为白色 */
}

.service_item:hover .btn_more {
  background-color: transparent;
  border-color: var(--second_color);
  color: #ffffff;
}

.service_item:hover .btn_more:before {
  width: 100%;
}


/* 应用领域 */
#in_application_case {
  background: url(../images/case_bg.jpg) no-repeat bottom center;
  background-size: 100% auto;
  padding-top: 4.375rem /* 70/16 */;
  padding-bottom: 2.875rem /* 46/16 */;
}

#in_application {
  margin-bottom: 6rem /* 96/16 */;
}
#in_application .box_header.main_box_header {
  margin-bottom: 3rem;
}

/* 应用领域轮播 */
.application-slider {
  position: relative;
}

.application-slider .swiper-slide {
  width: 9.1875rem /* 147/16 */ !important;
  height: 25.8125rem /* 413/16 */ !important;
  transition: all 0.5s ease;
  background-color: #000000;
  overflow: hidden;
}

.application-slider .swiper-slide-active {
  width: 34.4375rem /* 551/16 */ !important;
}

.application-slider .swiper-slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  background-size: auto 100%;
  transition: all 0.5s ease;
}

.application-slider .swiper-slide-active .slide-bg {
  opacity: 1;
  background-size: cover !important;
}

.application-slider .swiper-slide .slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.slide-content .show-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.875rem /* 30/16 */;
  line-height: 2;
  font-weight: bold;
  transition: all 0.5s ease;
}

.slide-content .show-title p {
  width: 1.875rem /* 30/16 */;
  line-height: 1.4;
  font-weight: bold;
}

.swiper-slide-active .show-title {
  opacity: 0;
  font-size: 0.625rem /* 10/16 */;
}

.slide-content .hide-cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100;
  height: 100%;
  transition: all 0.8s ease;
  background-image: linear-gradient( to bottom, transparent 0%, rgba(11, 13, 36, 0.65) 100%
  );
  padding-top: 4.5rem /* 72/16 */;
  padding-bottom: 0;
  visibility: hidden;
  opacity: 0;
}

.swiper-slide-active .hide-cont {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.cont-header {
  font-size: 1.125rem /* 18/16 */;
  color: #ffffff;
  background-color: var(--base_color);
  clip-path: polygon(0 0, 95% 0%, 100% 100%, 0% 100%);
  padding: 0.625rem /* 10/16 */ 2.5rem /* 40/16 */;
}

.cont-footer {
  padding: 3.125rem /* 50/16 */;
}

.cont-footer .slide-desc {
  font-size: 1rem /* 16/16 */;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem /* 24/16 */;
}

.cont-footer .btn_more {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 0.9375rem /* 15/16 */;
  border-radius: 0;
  position: relative;
}

.cont-footer .btn_more:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  background-color: var(--base_color);
  transition: all 0.3s ease;
  z-index: 0;
}

.cont-footer .btn_more:hover {
  border: 2px solid var(--base_color);
}

.cont-footer .btn_more:hover:before {
  width: 100%;
  opacity: 1;
}

.cont-footer .btn_more p {
  position: relative;
  z-index: 1;
}

/* 合作案例 */
#in_cases {
  padding-top: 0;
  padding-bottom: 0;
}

#in_cases .box_header.main_box_header {
  margin-bottom: 3.5rem /* 56/16 */;
}

.cases_tabs .tabs_btns {
  display: flex;
  gap: 0.75rem /* 12/16 */;
}

.cases_tabs .tabs_btn a {
  display: inline-block;
  padding: 0.75rem /* 12/16 */ 2.5rem /* 40/16 */;
  color: #666666;
  font-size: 0.9375rem /* 15/16 */;
  border: 2px solid #e4e4e4;
  background-color: transparent;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.cases_tabs .tabs_btn a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--base_color);
  transition: all 0.3s ease;
}

.cases_tabs .tabs_btn.active a,
.cases_tabs .tabs_btn a:hover {
  border: 2px solid var(--base_color);
  color: #ffffff;
}

.cases_tabs .tabs_btn.active a::before,
.cases_tabs .tabs_btn a:hover::before {
  width: 100%;
  opacity: 1;
}

.cases_tabs .tabs_btn a p {
  position: relative;
  z-index: 1;
}

.cases_tabs .tabs_conts {
  position: relative;
}

.cases_tabs .tabs_cont {
  display: none;
  animation: fadeIn 0.5s ease;
}

.cases_tabs .tabs_cont.active {
  display: block;
}

.case_item {
  height: 100%;
  margin-bottom: 1.5rem;
}

.case_img {
  margin-bottom: 1rem;
  overflow: hidden;
}

.case_title {
  font-size: 1rem;
  color: #333333;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case_item:hover .case_title {
  color: var(--base_color);
}

.cases-button-prev,
.cases-button-next {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 0;
  transition: all 0.3s ease;
}

.cases-button-prev:after,
.cases-button-next:after {
  font-size: 1rem !important;
  color: #333333;
}

.cases-button-prev {
  left: -3.75rem !important;
  background-color: var(--base_color);
}

.cases-button-next {
  border: 1px solid #cdcdcd;
  right: -3.75rem !important;
}

.cases-button-prev:after {
  color: #ffffff;
}

.cases-button-next:after {
  color: #9d9d9d;
}

.cases-button-prev:hover,
.cases-button-next:hover {
  border: 0;
  background-color: var(--second_color);
}

.cases-button-prev:hover:after,
.cases-button-next:hover:after {
  color: #ffffff;
}

/* 资讯中心 */
#in_news {
  padding-top: 4.375rem /* 70/16 */;
  padding-bottom: 3.75rem /* 60/16 */;
  background-color: #ffffff;
}

#in_news .box_header.main_box_header {
  margin-bottom: 4rem /* 64/16 */;
}

.news_tabs .tabs_btns {
  display: flex;
  gap: 0.75rem /* 12/16 */;
}

.news_tabs .tabs_btn a {
  display: inline-block;
  padding: 0.75rem /* 12/16 */ 2.5rem /* 40/16 */;
  color: #666666;
  font-size: 0.9375rem /* 15/16 */;
  border: 2px solid #e4e4e4;
  background-color: transparent;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.news_tabs .tabs_btn a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--base_color);
  transition: all 0.3s ease;
}

.news_tabs .tabs_btn.active a,
.news_tabs .tabs_btn a:hover {
  border: 2px solid var(--base_color);
  color: #ffffff;
}

.news_tabs .tabs_btn.active a::before,
.news_tabs .tabs_btn a:hover::before {
  width: 100%;
  opacity: 1;
}

.news_tabs .tabs_btn.active a p {
  position: relative;
  z-index: 1;
}

.news_tabs .tabs_conts {
  position: relative;
}

.news_tabs .tabs_cont {
  display: none;
  animation: fadeIn 0.5s ease;
}

.news_tabs .tabs_cont.active {
  display: block;
}

.news_item {
  height: 100%;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.news_type {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1e5fb8;
  color: #fff;
  padding: 0.625rem /* 10/16 */ 1.25rem /* 20/16 */;
  font-size: 0.9375rem /* 15/16 */;
  z-index: 2;
}

.video_list li a .play {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  z-index: 1;
}
.video_list li a .play i {
  opacity: 1;
  font-size: 4rem;
}
.video_list li a .title {
  font-size: 1.125rem /* 18/16 */;
}

.news_info {
  padding-bottom: 1.25rem;
}

.news_title {
  font-size: 1.125rem /* 18/16 */;
  line-height: 1.6;
  color: #333333;
  font-weight: bold;
  padding: 1.25rem /* 20/16 */ 0;
  margin-bottom: 1.25rem /* 20/16 */;
  border-bottom: 1px solid #e5e5e5;
}

.news_desc {
  font-size: 1.125rem /* 18/16 */;
  line-height: 1.6;
  color: #333333;
  font-weight: bold;
  margin-top: .625rem /* 10/16 */;
  margin-bottom: 0.625rem /* 10/16 */;
}

.news_date {
  font-size: 0.875rem /* 14/16 */;
  color: #999999;
}

.news_item:hover .news_title {
  color: var(--base_color);
}

.news_item:hover .news_more i {
  transform: translateX(5px);
}

.news-button-prev,
.news-button-next {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 0;
  transition: all 0.3s ease;
}

.news-button-prev:after,
.news-button-next:after {
  font-size: 1rem !important;
  color: #333333;
}

.news-button-prev {
  left: -3.75rem !important;
  background-color: var(--base_color);
}

.news-button-next {
  border: 1px solid #cdcdcd;
  right: -3.75rem !important;
}

.news-button-prev:after {
  color: #ffffff;
}

.news-button-next:after {
  color: #9d9d9d;
}

.news-button-prev:hover,
.news-button-next:hover {
  border: 0;
  background-color: var(--second_color);
}

.news-button-prev:hover:after,
.news-button-next:hover:after {
  color: #ffffff;
}