body {
    background-color: #232051;
    font-size: 18px;
    padding: 0;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
    overflow-x: hidden;
    top: 0 !important;
}

.collapsing {
    transition: 0.3s;
}

html {
    scroll-behavior: smooth;
}


.service_page_banner {
    position: relative;
    padding: 300px 0 100px;
    background: #232051;
}
.service_page_banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(transparent, #232051 100%);
    pointer-events: none;
}


.service_page_banner {
    background-image: url(../../2025/img/company/we.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:top center;
   
}

.service_page_banner .centred{
    display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
}
.service_page_banner h2 {
    font-weight: 400;
    margin-bottom: 22px;
    color: #fff;
    font-size: 43px;
}

.service_page_banner p {
    color: #A69BFF;
    font-weight: bold;
    font-size: 16px !important;
}


/* 企业介绍 */
.we-desc{
    padding: 60px 0;

}
.we-desc .content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.we-desc .content .title{
    font-size: 23px;
    padding: 60px 0;
}

.we-desc .content p{
    color: #A69BFF;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

/* 企业文化 */

.we-culture  .content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.we-culture  .content .title{
    font-size: 23px;
    padding: 23px 0;
}

.we-culture  .content .list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

.we-culture  .content .list .img{
    position: relative;
}


.we-culture  .content .list .text{
    position: absolute;
    top: 40%;
    padding: 0 10px;
}
.we-culture  .content .list .text{
    writing-mode: vertical-lr;
  text-orientation: upright; /* 让字母和数字也垂直排列 */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.we-culture  .content .list .text .name{
    font-size: 24px;
  letter-spacing: 6px;
}

.we-culture  .content .list .text .desc{
    font-size: 14px;
    color: #A69BFF;
  letter-spacing: 6px;
  
}


@media (max-width:600px) {
    .we-culture  .content .list{
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

}