.t {
    border-bottom: 1px solid #fff;
}
.title {
    width: 100%;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-text {
    color: #fff;
    z-index: 9;
}
.banner-title {
    font-size: 16px;
}
.banner-con {
    font-size: 18px;
}
.text1 {
    position: absolute;
    top: 2%;
    left: 1.5%;
}
.text2 {
    position: absolute;
    top: 10%;
    left: 1.5%;
}
.text3 {
    position: absolute;
    top: 2%;
    left: 20%;
}
.text4 {
    position: absolute;
    top: 10%;
    left: 20%;
}
.text5 {
    position: absolute;
    bottom: 35%;
    right: 1.5%;
}
.text6 {
    position: absolute;
    bottom: 25%;
    right: 1.5%;
}
.text-tag {
    background: linear-gradient(to right, #bec9d2, #ff0009);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bolder;
    font-size: 20px;
}
/* 中视简介 */
.about-main {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 10px;
    position: relative;
    height: 400px;
}

.about-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 第一列：中视宣传片 - 占比40% */
.about-column-1 {
    width: 40%; /* 占40%宽度 */
    flex: 0 0 40%; /* 固定占比 */
    height: 100%;
}

.company-video {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #0c1a3e 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-logo {
    width: 100%;
    height: calc(100% - 60px); /* 减去文字区域高度 */
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-logo video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持视频比例 */
    display: block;
}

/* Video.js 播放器样式覆盖 */
.video-js {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
}

.vjs-big-play-centered .vjs-big-play-button {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: linear-gradient(135deg, #ff3366, #ff6633) !important;
    border: none !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    line-height: 80px !important;
}

.vjs-big-play-centered .vjs-big-play-button .vjs-icon-placeholder:before {
    font-size: 40px !important;
    line-height: 80px !important;
}

.video-text {
    padding: 20px;
    background: linear-gradient(to right, #000000, #1e3c72, #000000);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    height: 60px; /* 固定文字区域高度 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slogan {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 第二列：文字信息 - 占比60% */
.about-column-2 {
    flex: 0 0 59%;
    height: 100%;
}

/* 合并文字和电子画册到一个线框内 */
.about-group {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to right, #000000, #1e3c72, #000000);
    /*background: linear-gradient(135deg, #1e3c72 0%, #0c1a3e 100%);*/
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 文字简介区域 */
.about-text {
    width: 70%;
    flex: 1;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #e6e6e6;
    margin-bottom: 20px;
    text-indent: 2em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* 电子画册区域 - 改为浮动的PDF框 */
.about-pdf {
    width: 26%;
    height: 180px;
    position: absolute;
    right: 30px;
    bottom: 90px;
    align-items: center;
    z-index: 2;
    border-radius: 6px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    flex-direction: column;
}

.about-pdf:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: #ca171d;
    transform: translateY(-5px);
}

.pdf-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.about-pdf:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.pdf-title {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}


.pdf-title span {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 5px;
}

/* 文字区域的滚动条样式 */
.about-text::-webkit-scrollbar {
    width: 6px;
}

.about-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.about-text::-webkit-scrollbar-thumb {
    background: rgba(255, 51, 102, 0.5);
    border-radius: 3px;
}

.about-text::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 51, 102, 0.7);
}

/*发展历程*/
.fz-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

/*荣誉资质*/
/* 荣誉资质 - 三列等分布局 */
.zz-main {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 10px;
    position: relative;
    height: 300px;
    gap: 20px;
}

.zz-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    flex: 1;
}

/* 图片容器 - 根据图片实际尺寸设置 */
.zz-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

/* 第一张图片：ZTBZ.png */
.zz-column-1 .zz-img {
    width: 80%;
}

/* 第二张图片：RZZS.jpg  */
.zz-column-2 .zz-img {
    width: 100%;
    height: 240px;
}

/* 第三张图片：HDJX.png */
.zz-column-3 .zz-img {
    width: 75%;
    height: 260px;
}

.zz-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 保持图片比例 */
    display: block;
}

.zz-img:hover img {
     opacity: 1;
     transform: scale(1.05);
 }


.zz-title {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    padding: 0 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*两个模块一行*/
.two-center {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}