@charset "UTF-8";
.topbanner {
    width: 100%;
    background-image: url(../images/divisions/topbanner_bg.jpg);
    background-size: cover; 
    background-position: center;
    height: 17.1875vw;
    line-height: 17.1875vw;
    font-size: 1.875vw;
    color: #fff;
    text-align: center;
}
.branch-list {
    padding-bottom: 2vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
  }
  .branch-list .branch-item {
    background-color: #f5f5f5;
    height: calc(15.63vw + 6.25vw);
    overflow: hidden;
  }
  .branch-list .branch-item-img {
    width: 100%;
    height: 15.63vw;
    transition: height 0.3s ease-in-out;
  }
  .branch-list .branch-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .branch-list .branch-item-info {
    /* height: 6.25vw; */
    height: 8.33vw;
    display: flex;
    flex-direction: column;
    padding: 1vw;
    position: relative;
  }
  .branch-list .branch-item-title {
    font-size: 0.94vw;
    line-height: 0.94vw;
    color: #333;
    margin-top: 0.5vw;
  }
  .branch-list .branch-item-desc {
    font-size: 0.73vw;
    line-height: 0.73vw;
    color: #939393;
    margin-top: 1vw;
  }
  .branch-list .branch-item-link {
    margin-top: 1.4vw;
    font-size: 0.73vw;
    color: #cc1821;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    transition-delay: 0.1s;
  }
  .branch-list .branch-item:hover .branch-item-img {
    height: 13.54vw;
  }
  .branch-list .branch-item:hover .branch-item-link {
    opacity: 1;
  }
  .divisionsBox{
    background: #fff;
    padding: 2vw 0;
  }

/*
 详情页样式
*/
.divisionsBox2{
    background: #f8f8f8;
    padding: 3vw 0;
}
.divisionContent{
    padding: 1vw 1.5vw;
    width: 50vw;
    float: left;
    background: #fff;
}
.divisionContent img {
  max-width: 100%;
}
.divisionName{
   font-size: 1.5vw;
    font-weight: normal;
    color: #212121;
    line-height: 3vw;
    padding: 1vw 0;
    border-bottom: 1px solid #f0f0f0;
}
.divisionImg{
  padding-top: 1vw;
}
.divisionText{
  padding: 1vw 0;
  color: #666666;
  line-height: 1.5vw
}

.divisionaside{
  float: right;
  width: 18.75vw;
  box-sizing: border-box;
}
.moreDivisions h3 {
  font-size: 0.94vw;
  color: #212121;
  font-weight: normal;
  padding: 2vw 0 1vw 0;

}
#more-branch-list .branch-item {
  background-color: #fff; 
}