/* 企业文化气泡样式 */
.culture-bg {
    background: url('/static/images/culturebg.jpg') top center/cover no-repeat;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.container {
    width: 1280px !important;
}

.culture-bubble-container {
    width: 66% !important;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
}

.culture-bubble-left {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.culture-bubble-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    flex-direction: row-reverse;
}

/* 删除之前的翻转样式 */

.bubble-content {
    width: 520px;
    height: 660px;
    background-image: url('/static/images/culture-tab-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0px 60px 60px 60px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 使用伪元素实现背景图翻转 */
.culture-bubble-right .bubble-content {
    position: relative;
    background-image: none;
}

.culture-bubble-right .bubble-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/culture-tab-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}

.focus-details {
    padding: 20px 40px 0 40px;
}

.focus-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    background: #fff;
    padding: 4px 10px 4px 10px;
    color: #ff0031;
}

.focus-details p {
    font-size: 18px;
}

.bubble-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: -60px;
}

.focus-title {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
}

.focus-title1 {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
}

.focus-label {
    position: relative;
    padding-right: 160px;
    margin-top: -140px;
    height: 660px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.focus-label .focus-label-t h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ff0031;
    margin-bottom: 10px;
}

.focus-label .focus-label-t h6 {
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}

.focus-label .focus-label-t p {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}

.focus-label .focus-label-t p::first-letter {
    font-size: 32px;
}

.focus-label .focus-label-t span {
    color: #ff0031;
}

.focus-label-b {
    position: absolute;
    bottom: 0px;
    color: #fff;
}

.focus-label1 {
    display: flex;
    align-items: center;
    color: #fff;
}

.bubble-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.bubble-item {
    margin-bottom: 2px;
    width: 46%;
}

.bubble-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    background: #fff;
    padding: 4px 10px 4px 10px;
    color: #ff0031;
}

.bubble-title-con {
    margin-top: -120px;
}

.bubble-title2 {
    font-size: 24px;
    letter-spacing: 1px;
}

.bubble-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* 标签样式 */
.culture-label {
    width: 40%;
    padding-top: 140px;
    padding-left: 160px;
}

.culture-bubble-right .culture-label {
    margin-top: -120px;
    padding-left: 0;
    padding-right: 40px;
    padding-top: 0px;
}

.culture-label h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ff0031;
    margin-bottom: 10px;
}

.culture-label p {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}

.culture-label p::first-letter {
    font-size: 32px;
}

.culture-label span {
    color: #ff0031;
}



@media (max-width: 1440px) {
    .container {
        width: 84% !important;
    }
}