/* 建设方 */
.scene-one-m{
  display: flex;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.scene-one-m:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.sceneImgBox{
  width: 30%;
  position: relative;
  min-width: 80px;
}
.sceneImgBox .bg{ 
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sceneTitleBox{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}
.sceneTitleBox img{
  width: 40px;
  max-width: 70%;
  margin-bottom: 5px;
}
.scene-content-box-m{
  width: 70%;
  height: 100%;
  color: #000000;
  text-align: left;
  padding: 16px;
  box-sizing: border-box;
  background-color: #fff;
}
.scene-content-box-m .title{
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.scene-content-box-m .title span{
  font-weight: 500;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}
.scene-content-box-m img{
  width: 14px;
  margin-right: 6px;
}
.scene-content-title-m{
  font-weight: 500;
  margin: 3px 0;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scene-content-text-m div{
  display: flex;
  align-items: flex-start;
  padding: 4px 0;
  line-height: 1.4;
}
.scene-content-text-m p{
  width: 6px;
  height: 6px;
  background: #D9D9D9;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 5px;
}
.scene-content-text-m span {
  font-size: 13px;
  color: #666;
  flex: 1;
}

/* 响应式设计 */
@media screen and (max-width: 375px) {
  .scene-one-m {
    flex-direction: column;
  }
  .sceneImgBox {
    width: 100%;
    height: 120px;
  }
  .scene-content-box-m {
    width: 100%;
  }
  .scene-content-box-m .title span {
    font-size: 15px;
  }
  .scene-content-text-m span {
    font-size: 12px;
  }
}

@media screen and (min-width: 376px) and (max-width: 480px) {
  .scene-content-box-m {
    padding: 14px;
  }
  .scene-content-box-m .title span {
    font-size: 16px;
  }
  .scene-content-text-m span {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) {
  .scene-one-m {
    border-radius: 12px;
  }
  .scene-content-box-m {
    padding: 20px;
  }
  .scene-content-box-m .title span {
    font-size: 35px;
  }
  .scene-content-text-m span {
    font-size: 32px;
  }
  .sceneTitleBox img {
    width: 80px;
  }
  .scene-content-title-m{
    font-size: 20px;
  }
  .scene-content-text-m p{
    margin-top: 16px;
  }
}

.coreStrengthsItemBox{
  display: flex;
  justify-content: space-evenly;
}
.coreStrengthsItem{
  border: 1px solid #E5E5E5;
  margin: 0px 10px 55px 10px;
  position: relative;
}
.coreStrengthsItem:nth-child(2){
  margin-left: 0;
}
.coreStrengthsItem .text{
  background: #EAEEF6;
  position: absolute;
  bottom: -45px;
  width: 80%;
  color: #333333;
  font-weight: 400;
  font-size: 12px;
  padding: 5px;
  text-align: left;
  margin: 0 10%;
  height: 74px;
  display: flex;
  align-items: center;
}
.coreStrengthsItem img{
  width: 100%;
}


.prjBox{
  width: 100%;
  height: 100%;
  margin: 10px;
}
.prjBox:nth-child(2){
  margin-left: 0;
}
.container-box-m{  
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
}
.container-box-m img{
  width: 100%;
}
.container-title-m{
  background: linear-gradient(180deg, rgba(14, 44, 98, 0.165) 27.86%, rgba(10, 33, 76, 0.55) 94.65%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.container-title-m span{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  position: absolute;
  left: 20px;
  bottom: 30px;
}
.container-border-m{
  width: 27px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 20px;
  bottom: 24px;
}
.container-text-m{
  position: relative;
  display: none;
}
.container-text-m img{
  width: 100%;
}
.container-text-m span{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: left;
  padding: 5px;
  color: #fff;
  overflow-y: auto;
  font-size: 11px;
  line-height: 1.5;
}
@media screen and (min-width: 460px) and (max-width: 768px) {
  .container-text-m span {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container-text-m span {
    font-size: 17px;
    padding: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .container-text-m span {
    font-size: 18px;
    padding: 60px;
  }
}
.container-text-m span::-webkit-scrollbar {
  display: none;
}