/* 通用样式 */
.manager-box {
  height: 620px;
}
.manager-box .l-box,
.manager-box .r-box {
  width: 50%;
  float: left;
  height: 100%;
}
.manager-box .img {
  width: 100%;
  height: 620px;
}
.manager-box .img img {
  width: 100%;
  height: 100%;
}
.floor-header {
  padding-top: 45px;
}

/* Banner样式 */
.banner-1 {
  background: url("../images/about-banner-1.png") center center no-repeat;
  background-size: cover;
}

.banner-2 {
  background: url("../images/about-banner-2.png") center center no-repeat;
  background-size: cover;
  margin-top: 45px;
}

.banner-2 .text {
  text-align: center;
  width: 100%;
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 50px 0;
}
.banner-2 .text span {
  margin: 0 20px;
}

/* 布局工具类 */
.row {
  overflow: hidden;
}

.col-2 {
  width: 20%;
  float: left;
}

/* 统计数字样式 */
.stat-box {
  text-align: center;
  color: #fff;
  padding: 50px 0;
  font-size: 20px;
}
.stat-box .num {
  font-size: 40px;
  margin: 0 5px;
}
.stat-box p {
  margin-top: 5px;
}

/* 介绍文本样式 */
.introduction-box {
  font-size: 19px;
}
.introduction-box p {
  margin-bottom: 10px;
  line-height: 1.5em;
  text-indent: 2em;
}

/* 事件/动态样式 */
.events .box {
  overflow: hidden;
}

.events .box .scroll {
  height: 100%;
  overflow: 500px;
}

.events .box .l-box {
  width: 250px;
  height: 500px;
  float: left;
}
.events .box .r-box {
  width: calc(100% - 250px);
  height: 500px;
  float: right;
}

.event-title {
  height: 90px;
  line-height: 90px;
  padding-right: 50px;
  color: #bbbbbb;
}
.event-title .box-cont {
  border-bottom: 1px solid #ddd;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  color: #666;
}
.event-title.on .box-cont {
  color: #5c93f9;
}
.event-title.on {
  color: #5c93f9;
  border-right: 3px solid #5c93f9;
}
.event-title.on .box-cont {
  border-bottom-color: #5c93f9;
}

.events .r-box .scroll {
  padding-left: 100px;
  padding-right: 5px;
}

.event-cont {
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  box-shadow: 1px 1px 3px #ddd, -1px -1px 3px #ddd;
}
.event-cont .title {
  font-size: 30px;
  color: #666;
  padding-bottom: 10px;
  font-weight: bold;
}
.event-cont .desc {
  line-height: 1.5em;
  font-size: 15px;
  color: #888;
}

/* 荣誉资质样式 */
.honors-wraper {
  height: 220px;
}

.honors-wraper .scroll-wraper {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.honors-wraper .list {
  overflow: hidden;
  margin-left: -10px;
  position: absolute;
  left: 0;
  top: 0;
}

.honors-wraper .img {
  width: 300px;
  height: 220px;
  float: left;
  margin-left: 10px;
}

.honors-wraper .img img {
  width: 100%;
  height: 100%;
}

/* 文本组样式 */
.group-text,
.group-text p {
  text-align: justify !important;
  line-height: 2em !important;
  color: #666 !important;
}

/* 图片列表样式 */
.pic-list img {
  width: 16%;
  margin: 0 4px;
}

/* 理念项样式 */
.culture-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  display: flex;
  position: relative;
  margin-bottom: 20px;
}

.culture-item:hover {
  box-shadow: 0 20px 40px rgba(22, 93, 255, 0.1);
}

/* 左侧标题区 */
.idea-title-section {
  flex: 0 0 220px;
  padding: 40px;
  background-color: #f8fbff;
  border-right: 1px solid #e6f0ff;
  display: flex;
  align-items: center;
}

.title-content {
  display: flex;
  align-items: center;
  color: #1a365d;
  font-size: 24px;
  font-weight: 600;
  width: 100%;
}

.idea-icon {
  width: 50px;
  height: 50px;
  background-color: #e8f3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #165dff;
  font-size: 24px;
  flex-shrink: 0;
}

/* 右侧内容区 */
.idea-content-section {
  flex: 1;
  padding: 40px;
}

.core-content {
  font-size: 22px;
  color: #165dff;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.desc-text {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.9;
}

/* 装饰元素 */
.culture-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #165dff 0%, #36bffa 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.culture-item:hover::before {
  transform: scaleX(1);
}

/* 响应式样式 */
@media screen and (max-width: 1400px) {
  .manager-box,
  .manager-box .img {
    height: 542px;
  }
}

@media screen and (max-width: 1200px) {
  .manager-box,
  .manager-box .img {
    height: 465px;
  }
  .banner-2 .text {
    font-size: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .manager-box,
  .manager-box .img {
    height: 387px;
  }
  .stat-box {
    font-size: 20px;
  }
  .stat-box .num {
    font-size: 35px;
  }
  .banner-2 .text {
    font-size: 30px;
  }
  .culture-item {
    flex-direction: column;
  }

  .idea-title-section {
    border-right: none;
    border-bottom: 1px solid #e6f0ff;
    flex: none;
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .banner-1 {
    display: none;
  }
  .manager-box {
    height: auto;
  }
  .manager-box .l-box,
  .manager-box .r-box {
    float: none;
    width: 100%;
  }
  .manager-box .img {
    height: auto;
    font-size: 0;
  }
  .manager-box .img img {
    height: auto;
  }
  .stat-box {
    font-size: 15px;
  }
  .stat-box .num {
    font-size: 20px;
  }

  .banner-2 .text span {
    margin: 0 5px;
  }
  .col-2 {
    width: 33%;
    margin: 5px 0;
  }

  .banner-2 .text {
    font-size: 25px;
  }
  .events .box .l-box {
    display: none;
  }
  .events .box .r-box {
    width: 100%;
    height: auto;
    float: none;
  }
  .events .r-box .scroll {
    padding: 0;
  }
  .event-cont .title {
    font-size: 25px;
  }
  .event-cont {
    padding: 10px;
  }

  .pic-list img {
    width: 48%;
    margin: 1%;
    float: left;
  }
  .banner-2 {
    margin-top: 15px;
  }
  .banner-2 .text,
  .stat-box {
    padding: 30px 0;
  }

  .idea-title-section,
  .idea-content-section {
    padding: 30px 25px;
  }

  .title-content {
    font-size: 22px;
  }

  .core-content {
    font-size: 20px;
  }
}

@media screen and (max-width: 440px) {
  .group-text,
  .group-text p {
    font-size: 13px !important;
  }
  .col-2 {
    width: 50%;
    margin: 5px 0;
  }
  .banner-2 .text {
    font-size: 14px;
  }
  .idea-title-section {
    padding: 25px 20px;
  }

  .title-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .idea-icon {
    margin-bottom: 15px;
  }
}
