/* styles.css */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: none;
  outline: none;
  position: relative;
}

body {
  margin: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  background-color: #000;
  /* 黑色背景 */
  position: relative;
  z-index: 9999;
}

/* 新增的固定效果样式 */
.header.fixed {
  position: fixed;
  /* 固定在顶部 */
  top: 0;
  left: 0;
  width: 100%;
  /* 占满整个宽度 */
}

.logo {
  margin-left: 10rem;
}

.logo .logo-img {
  height: 3.125rem;
}

.grey-box {
  padding-left: 10rem;
}

.a-center {
  display: flex;
  align-items: center;
}

.nav-items {
  list-style-type: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.nav-items li {
  /* margin-right: 5.65rem; */
}

.nav-items a {
  text-decoration: none;
  color: #fff;
  /* 白色文字 */
  font-size: 1rem;
  height: 3rem;
  display: flex;
  align-items: center;
}

.nav-items a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 2em;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.5s;
}

.nav-items a.active::after {
  opacity: 1;
  transition: all 0.5s;
}

/* 子菜单的箭头图标 */
.dropdown-icon {
  width: 10px;
  height: 10px;
  margin-left: auto;
  /* 将箭头放到右边 */
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  top: 3rem;
  left: -1rem;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: all 0.5ss;
  padding: 12px 0;
}

.long-box-p:hover {
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.5);
  transition: 0.5s all;
}

.dropdown-content a {
  color: #fff;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  color: #e60013;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown .dropbtn {
  cursor: pointer;
}

.navMenu {
  margin-left: 3rem;
  display: none;
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.navMenu span {
  border-radius: 2px;
  position: absolute;
  left: 0;
  background: #c9151e;
  width: 100%;
  height: 2px;
  display: block;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.line1 {
  top: 0;
}

.navMenu.on .line1 {
  transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  top: 50%;
  bottom: auto;
  margin-top: -1px;
}

.line2 {
  margin-top: -1px;
  top: 50%;
}

.navMenu.on .line2 {
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  top: 50%;
  bottom: auto;
}

.line3 {
  bottom: 0;
}

.navMenu.on .line3 {
  display: none;
}

.search-close {
  display: none;
  width: 35px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

#search-btn-p {
  display: none;
}

.search-close span {
  border-radius: 2px;
  position: absolute;
  left: 0;
  background: #c9151e;
  width: 100%;
  height: 2px;
  display: block;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.search-close .search-line1 {
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  top: 50%;
  bottom: auto;
}

.search-close .search-line2 {
  transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  top: 50%;
  bottom: auto;
  margin-top: -1px;
}

.block {
  display: block !important;
}

.get-contrast .close-poup {
  display: none !important;
}

.search-history-p {
  opacity: 0;
  position: absolute;
  border: 1px solid rgb(201, 21, 30);
  background-color: #fff;
  width: 50rem;
  max-height: 10rem;
  z-index: 9999;
  top: 100%;
  left: 0;
  box-sizing: border-box;
  transition: all 0.5s;
}

.search-history-p div {
  padding: 0.625rem;
  font-size: 0.75rem;
  color: rgb(117, 117, 117);
  cursor: pointer;
}

/* 折叠搜索框 */
#search-content {
  padding-top: 3rem;
  width: 100%;
  height: calc(100vh - 73px);
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 73px;
  left: 0;
  z-index: 99999;
  background-color: rgb(240, 240, 240);
  transition: all 0.5s;
}

#search-content input {
  padding: 0.5rem 2rem;
  width: 50rem;
  height: 3rem;
  box-sizing: border-box;
}

#search-content .search-btn {
  height: 1.75rem;
  display: flex;
  align-items: center;
}

/* 折叠导航栏 */
#nav-menu {
  width: 100%;
  height: calc(100vh - 73px);
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 73px;
  left: 0;
  z-index: 99999;
  background-color: rgb(240, 240, 240);
  transition: all 0.5s;
}

#nav-menu ul {
  margin: 0;
  padding: 0;
}

.x-headers {
  padding: 1.5rem 0.625rem;
  overflow-x: auto;
  white-space: nowrap;
}

.x-headers span {
  margin-right: 0.5rem;
  padding: 0.75rem;
  background-color: rgb(85, 85, 85);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.x-headers span.active {
  background-color: rgb(162, 0, 37);
}

#nav-menu li {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgb(221, 221, 221);
  cursor: pointer;
}

#nav-menu li div {
  font-size: 1rem;
}

.clockwise-90 {
  transform: rotate(90deg);
  transition: all 0.5s;
}

.vh-vi {
  visibility: visible !important;
  /* 可见 */
}

#productP-all {
  display: none;
  opacity: 0;
  transition: all 0.5s;
}

.x-headers-cell {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgb(221, 221, 221);
  cursor: pointer;
  font-size: 1rem;
  color: rgb(173, 173, 173);
}

.search-form {
  margin-right: 10rem;
  display: flex;
  /* overflow: hidden; */
}

.search-form input[type="text"] {
  padding-block: 0;
  padding-inline: 0;
  border: none;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

#search-history {
  display: none;
  position: absolute;
  border: 1px solid rgb(201, 21, 30);
  background-color: #fff;
  width: 179px;
  max-height: 10rem;
  z-index: 9999;
  top: 100%;
  left: -1px;
}

#search-history div:hover {
  background-color: #eee;
  color: rgb(201, 21, 30);
}
#search-history div {
  padding: 0.625rem;
  font-size: 0.75rem;
  color: rgb(117, 117, 117);
  cursor: pointer;
  transition: 0.3s;
}

.search-btn {
  background-color: #dc3545;
  /* 搜索按钮红色背景 */
  padding: 0.625rem 1rem;
  cursor: pointer;
}

.section {
  margin: 0 auto;
  position: relative;
}

.flex {
  display: flex !important;
}

.j-center {
  display: flex;
  justify-content: center;
}

.sidebar {
  margin: 0;
  width: 12.5rem;
  background-color: #333;
  box-sizing: border-box;
  padding: 0.25rem 0;
  color: white;
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: auto;
}

.sidebar {
  overflow-y: auto;
  overflow-x: hidden;
  cursor: pointer;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}
.sidebar::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #dc3545;
}
.hover-content {
  z-index: 2;
  position: absolute;
  top: 0;
  background-color: #efefef;
  box-sizing: border-box;
  height: 100%;
  box-shadow: 2px 2px 5px 1px #efefef;
  display: none;
}
.models {
  white-space: nowrap;
  min-width: 8%;
}

.hover-content ul,
.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.hover-content li,
.sidebar li {
  padding: 0.625rem 1.25rem;
}
.hover-content li:hover,
.sidebar li:hover {
  background-color: #dc3545;
}

.hover-content li.selected,
.sidebar li.selected {
  background-color: #dc3545;
}

.hover-content a,
.sidebar a {
  color: white;
  text-decoration: none;
}
.sidebar .submenu {
  display: none;
  display: none !important;
  opacity: 0;
  position: absolute;
}
.sidebar .subsubmenu {
  display: none !important;
}

/* 二级和三级菜单默认隐藏 */
.submenu {
  position: relative;
  height: 100%;
  padding: 1.25rem 0;
  box-sizing: border-box;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #efefef;
  transition: all 0.3s;
}

.submenu .li-two {
  width: 15.5rem;
  box-sizing: border-box;
}
.submenu .li-two .dropdown-icon {
  opacity: 0;
  visibility: hidden;
}
.submenu .li-two:hover .dropdown-icon {
  opacity: 1;
  visibility: visible;
}

.subsumenu {
  padding: 2.25rem;
  height: 100%;
  width: calc(100% - 15.5rem);
  box-sizing: border-box;
  opacity: 0;
  display: none;
  position: absolute;
  top: 0;
  left: 15.5rem;
  z-index: 999;
  background-color: #f9f9f9;
  /* box-shadow: 2px 2px 4px 2px #efefef; */
  transition: all 0.3s;
}

.li-two:hover .subsumenu {
  opacity: 1;
  display: block;
  transition: all 0.3s;
}

.subsumenu img {
  width: 2rem;
  height: 2rem;
}

/* 当鼠标悬停在父菜单上时显示子菜单 */
.sidebar li:hover > .submenu {
  display: block;
  opacity: 1;
  transition: all 0.3s;
}

.submenu a {
  color: #000;
}

.li-two:hover > a,
.submenu li.selected .a {
  color: #fff !important;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* 可根据需要调整 */
  /* height: 37.5rem; */
  overflow: hidden;
}

.carousel-images img {
  width: 100%;
  height: 100%;
  display: none;
  /* 默认隐藏所有图片 */
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-images img.active {
  display: block;
  /* 当前活动的图片显示 */
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-controls button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.5s all;
}

.flex-a {
  display: flex;
  flex-direction: column;
}

.flex-warp {
  flex-wrap: wrap;
}

.a-end {
  display: flex;
  align-items: end;
}

.float-nav {
  /* padding: 1.5625rem 0; */
  position: fixed;
  right: 1.25rem;
  top: 10.625rem;
  border: 2px solid #ebebeb;
  z-index: 999;
}

.border {
  border: 1px solid #ebebeb;
}

.selectQ {
  margin-left: 1rem;
  margin-right: 1rem;
}

.flex-space {
  display: flex;
  justify-content: space-between;
}

.product-box {
  margin-right: 1rem;
  flex: 1;
  transition: 0.5s all;
}

.product-box:hover {
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.25);
  transition: 0.5s all;
}

.img-boj-cover {
  object-fit: cover;
}

.img {
  width: 100%;
  height: 100%;
}

.blod-title {
  color: #000;
  font-weight: 600;
  font-size: 1.875rem;
}

.more-text {
  font-size: 0.9375rem;
  color: rgb(102, 102, 102);
  text-decoration: none;
}

.more-text:hover {
  color: #e60013 !important;
}

.white-box {
  margin-top: 1rem;
  width: 17.21rem;
  height: 22.12rem;
  background-color: #fff;
  transition: all 0.5s;
}

.white-box:hover {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}

.white-box:hover .selectid-red,
.white-box:hover .red-arrow {
  opacity: 1;
}

.white-box:hover .end-box-text {
  opacity: 0;
  transition: all 0.5s;
}
.white-box-customized {
  margin-right: 1.334%;
  width: 24% !important;
}
.white-box-customized:nth-child(4n) {
  margin-right: 0;
}
.white-box-customized.page-product-box .page-product-box-inner {
  padding-top: 65%;
  position: relative;
}
.white-box-customized .page-product-img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.white-box-customized .page-product-img {
}
.white-box-customized .page-product-title {
  margin-bottom: 0.5rem;
}

.white-box-list {
  margin-right: 1%;
  width: 19.2% !important;
}
.white-box-list-new {
  margin-right: 1%;
  width: 19.2% !important;
}
.white-box-list:nth-child(5n) {
  margin-right: 0;
}
.white-box-list-new:nth-child(5) {
  margin-right: 0%;
}

.white-box-p {
  margin-left: 3% !important;
  width: 22% !important;
}

.por {
  position: relative;
}

.recommend-title {
  font-size: 30px;
  font-weight: 600;
}

.text-overflow-2 {
  /* 超过2行省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arrow-box {
  width: 3rem;
  height: 2.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.booking-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.center-tips {
  padding-right: 10rem !important;
}

.input-box {
  width: 14.7rem;
  height: 3.25rem;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  outline: none;
  padding: 10px 10px 10px 14px;
  box-sizing: border-box;
  color: #fff;
}

.input-box::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  width: 9rem;
  height: 3.25rem;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}

.consultation-btn {
  width: 9rem;
  height: 3.25rem;
  background-color: #fff;
  color: rgb(181, 21, 24);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.booking-text {
  font-size: 0.9375rem;
  color: #fff;
}

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-black {
  color: #000;
  transition: all 0.5s;
}

.about a:hover {
  color: #e60013;
  transition: all 0.5s;
}

.cus-input {
  padding: 0 1rem;
  border: none;
  outline: none;
  background-color: rgb(248, 248, 248);
  font-size: 1rem;
  width: 100%;
}

.cus-input::placeholder {
  padding-top: 0.1rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}

.form-group {
  background-color: rgb(248, 248, 248);
  display: flex;
}

.form-control {
  height: 11.5rem;
  border-radius: 4px;
  resize: none;
  border: none;
  background-color: rgb(248, 248, 248);
  width: 89%;
  outline: none;
  font-size: 1rem;
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}

.case-box {
  width: 49.166%;
  /* height: 21rem; */
  position: relative;
  background-color: rgb(247, 247, 247);
  transition: all 0.5s;
}
.case-box-img-box {
  position: relative;
  width: 100%;
}
.case-box-img {
  width: 100%;
  height: 0;
  padding-bottom: 32.7118%;
}
.case-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-box-img-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.case-box-bottom {
  width: 100%;
  height: 3.75rem;
  background-color: #fff;
  position: relative;
}

.case-box:hover {
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.top-b-text {
  font-size: 1.5rem;
  font-weight: bold;
}

.text-125 {
  font-size: 1.25rem;
}

.d-text {
  font-size: 1.25rem;
  cursor: pointer;
}

.d-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.75rem;
  width: 2rem;
  height: 2px;
  background-color: rgb(207, 11, 15);
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.5s;
}

.d-text.active::after {
  opacity: 1;
  /* 显示下划线 */
  transition: all 0.5s;
}

.detail-btn {
  padding: 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(207, 11, 15);
}

.page-link {
  padding: 0 1rem;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.page-link:hover {
  color: rgb(207, 11, 15);
}

.page-link.active {
  color: rgb(207, 11, 15);
}

.page-link[disabled] {
  opacity: 0.65;
  pointer-events: none;
}

.page-link-p {
  padding: 0 1rem;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.page-link-p:hover {
  color: rgb(207, 11, 15);
}

.about-box {
  padding: 3.5rem 4.5rem 5.5rem 4.5rem;
  background-color: #fff;
}

.red-m-text {
  font-size: 1.125rem;
  color: rgb(218, 66, 69);
}

.blod-text {
  font-size: 1.75rem;
  font-weight: 600;
}

.news-box {
  width: 7.3rem;
  height: 4rem;
  background-color: #fff;
  color: #e60013;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
}

.news-one-box {
  margin-top: 2rem;
}

.news-box-b {
  width: 7.3rem;
  height: 1.81rem;
  background-color: rgb(224, 224, 224);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.change-news:hover .news-box {
  background-color: #e60013;
  color: #fff;
}

.map-box {
  padding: 6.1875rem 5.5rem 6.1875rem 5.5rem;
  background-color: #fff;
}

.map-info-text {
  font-size: 0.875rem;
}

.accordion {
  font-family: Arial, sans-serif;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid rgb(247, 247, 247);
}

.accordion-header {
  background-color: #fff;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header-p {
  background-color: #fff;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #eaeaea;
}

.accordion-header-p:hover {
  background-color: #eaeaea;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-header.active {
  background-color: rgb(222, 222, 222);
}

.accordion-header-p.active {
  background-color: rgb(222, 222, 222);
}

.accordion-content.active {
  max-height: 17rem;
}

.dimension-list {
  list-style-type: none;
  padding: 1rem 1rem 0;
  margin: 0;
  display: none;
}

.dimension-list li {
  padding-bottom: 1rem;
}

.dimension-list input[type="checkbox"] {
  padding-right: 0.625rem;
}

.dimension-list input[type="checkbox"]:checked {
  background-color: #007bff;
}

.more-sizes {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: rgb(102, 102, 102);
  text-decoration: none;
}

.accordion-content-p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-p.active {
  max-height: 100%;
}

.contrast input[type="checkbox"] {
  opacity: 0;
  /* 隐藏原生的复选框 */
  width: 0;
  height: 0;
}

.contrast label {
  position: relative;
  cursor: pointer;
  min-width: 1.25rem;
  min-height: 1.25rem;
  border: 1px solid rgb(198, 198, 198);
  border-radius: 0.5rem;
  /* 绿色边框 */
  display: inline-block;
}

.contrast input[type="checkbox"]:checked + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  background-color: rgb(207, 11, 15);
  border-radius: 0.5rem;
}

.contrast input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.4rem;
  width: 0.375rem;
  height: 0.75rem;
  border-bottom: 2px solid #fff;
  /* 红色对勾 */
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.contrast-box {
  padding-bottom: 2rem;
  width: 22rem;
  /* height: 23.5rem; */
  position: fixed;
  top: 10.625rem;
  right: 10rem;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  display: none;
  transition: all 0.5s;
}

.get-contrast {
  opacity: 1;
  transition: all 0.5s;
  position: fixed;
  top: 8rem;
  right: 1.25rem;
  z-index: 99;
}

.op-1 {
  opacity: 1 !important;
}

.op-0 {
  opacity: 0 !important;
}

.industry-bg {
  background-image: url("../static/images/dynamic_top_bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.culture-right {
  background-image: url("../static/images/about_culture_bg2.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.red-svg {
  filter: invert(48%) sepia(79%) saturate(3178%) hue-rotate(350deg)
    brightness(103%) contrast(103%);
}

.detail-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgb(153, 153, 153);
}

.close-btn {
  width: 8rem;
  height: 3.125rem;
  border: 1px solid #000;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vs-box {
  width: 8rem;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(207, 11, 15);
  border-radius: 40px;
}

.compare-table {
  margin-top: 2rem;
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1.25rem 2rem;
  border: 1px solid #ddd;
}

.compare-table th {
  height: 6.625rem;
}

.product-image {
  width: 100px;
  height: auto;
}

.flex-end {
  display: flex;
  justify-content: end;
}

.news-left-bg {
  width: 100%;
  max-width: 500px;
  height: 260px;
  object-fit: scale-down;
  background-color: #fff;
  transition: all 0.24s;
}
.news-left-bg .news-left-bg-img {
  width: 100%;
  height: 100%;
}

.news-right-box {
  flex: 1;
}
.top-b-text {
  transition: 0.24s;
  text-transform: uppercase;
}
.news-one-box:hover .top-b-text {
  color: #c9151e;
}
.news-one-box:hover .news-left-bg-img {
  transform: scale(1.05);
}
.detail-btn {
  transition: 0.24s;
}
.news-one-box {
  transition: 0.24s;
}
.news-one-box:hover .detail-btn {
  transform: translateX(15px);
}
.news-one-box:hover {
  box-shadow: 0px 1px 20px 1px #e5e5e5;
}
.news-one-box:hover .more-text {
  color: #555 !important;
}

.page-product-box-series-list
  .page-product-box:first-child
  .page-product-box-inner-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-product-box-series-list
  .page-product-box:first-child
  .page-product-box-inner-inner
  .page-product-title {
  margin-top: 0;
}

.content-meeting-box img {
  max-width: 100%;
}
