.home_imgbox {
  width: 100%;
  margin-bottom: 15px;
}
.home_imgbox .home_img {
  width: 100%;
}
.main_box {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
}
.main_box .main_left {
  width: 25%;
}
.main_box .main_right {
  width: calc(75% - 20px);
  height: 100%;
  padding-left: 20px;
}
.main_box .main_right .r_box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.main_box .main_right .r_box:last-child {
  margin-bottom: 0;
}
.main_box .main_right .r_box > div {
  width: calc(50% - 7px);
  height: 100%;
}
.btn_ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.btn_ul > li {
  width: calc(50% - 5px);
  height: 43px;
  background-color: #8daae2;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.btn_ul > li a {
  font-size: 15px;
  color: #fff;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.btn_ul > li a:hover {
  border-bottom: 1px solid #fff;
}
.height_auto {
  height: auto !important;
}
.height_100im {
  height: 100% !important;
}
ul.point li a span {
  margin-left: 0 !important;
}
ul.a1.point li a{
  width: 73%;
  line-height: 32px!important;
}
ul.a1.point li{
	height: auto!important;
}
.date_sp {
  color: #888;
}
.container {
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m_title_box {
  width: 50px;
  height: 220px;
  background-color: #2c6cc3;
}
.m_title_box .m_title {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.marquee {
  display: flex;
  width: max-content;
}
.marquee.scroll {
  animation: scroll 30s linear infinite;
}
.marquee.paused {
  animation-play-state: paused;
}
.photo-item {
  flex: 0 0 auto;
  margin: 0 6px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.photo-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.photo-img {
  height: 200px;
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .photo-item {
    width: 250px;
  }
}