/* 引入字体 */
/* DIN-Bold字体 */
@font-face {
    font-family: 'DIN-Bold';
    src: url('../fonts/DIN-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* 引入Alibaba PuHuiTi字体 */
@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2'),
         url('../fonts/AlibabaPuHuiTi-3-55-Regular.woff') format('woff'),
         url('../fonts/AlibabaPuHuiTi-3-55-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-3-75-SemiBold.woff2') format('woff2'),
         url('../fonts/AlibabaPuHuiTi-3-75-SemiBold.woff') format('woff'),
         url('../fonts/AlibabaPuHuiTi-3-75-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Alibaba PuHuiTi L';
    src: url('../fonts/AlibabaPuHuiTi-3-45-Light.woff2') format('woff2'),
         url('../fonts/AlibabaPuHuiTi-3-45-Light.woff') format('woff'),
         url('../fonts/AlibabaPuHuiTi-3-45-Light.otf') format('opentype');

    font-style: normal;
}


/* 轮播图容器样? */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 轮播图片样式 */
.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 单个幻灯片样? */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 10;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 中心图片和文字容器样? */
.center-image {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.about-top-image {
    top: 180px;
    left: 60%;
    transform: translateX(-50%);
    width: 100%;
}

.about-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 25; /* 提高z-index确保在顶层显? */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bottom-image {
    margin-top: 250px;
    left: 60%;
    transform: translateX(-50%);
    width: 100%;
}

/* 中心文字样式 */
.center-text {
    text-align: center;
    color: white;
}

/* 文本行样? */
.text-line-1,
.text-line-2,
.text-line-3,
.text-paragraph {
    margin-bottom: 15px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
}

.text-line-1 {
    font-size: 24px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.text-line-2 {
    font-family: 'Alibaba PuHuiTi', sans-serif;
    font-weight: 100;
    font-size: 60px;
    margin-top: 20px;
    letter-spacing: 5px;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.text-line-3 {
    font-size: 28px;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.text-paragraph {
    font-family: 'Alibaba PuHuiTi L', sans-serif;
    font-weight: normal;
    font-size: 20px;
    margin-top: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 1.2s forwards;
        letter-spacing: 1px;
}

/* 控制按钮和指示器样式 */
.carousel-controls {
    position: absolute;
    top: 80%;
    right: 100px;
    transform: translateY(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
}

.carousel-dots {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    background: transparent;
    padding: 0;
    margin: 0;
    bottom: 200px;
    right: 100px;
}

.carousel-dot {
    width: 3px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
}

.carousel-dot:focus {
    outline: none;
    box-shadow: none;
}

.carousel-dot.active {
    height: 100px;
    background-color: white;
}

/* 计数器样? */
.carousel-counter {
    color: white;
    font-weight: bold;
    font-family: 'DIN-Bold', sans-serif;
    position: relative;
    z-index: 3;
}

.carousel-counter .current {
    font-size: 36px;
}

.carousel-counter .total,
.carousel-counter span:nth-child(2) {
    font-size: 18px;
    opacity: 0.7;
}

/* 特定图片样式 - s2.png */
.carousel-slide img[src*="s2.png"] {
    /* 确保s2.png始终?100%宽度显示 */
    width: 100% !important; /* 使用!important确保覆盖其他样式 */
    height: auto !important;
    object-fit: contain !important; /* 确保完整显示图片，不裁剪 */
    display: block !important;
    filter: brightness(1.1);
}

.carousel-slide img[src*="s2.png"] ~ .center-image .center-text {
    color: #333;
}

/* 图片定位? */
.image-position-left {
    top:84%;
    left: 73%;
    transform: translate(-50%, -50%);
}

.image-position-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 26;
}

/* 特定图片样式 - s3.png */
.carousel-slide img[src*="s3.png"] {
    /* 确保图片正确显示 */
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    max-height: 60vh;
    filter: none;
}

.carousel-slide img[src*="s3.png"] ~ .center-image .center-text {
    color: white;
}

/* 动画关键? */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1366px2880pxֱ */
@media (min-width: 1366px) and (max-width: 2880px) {
    .about-top-image .center-text {
        transform: translate(130px, -100px) !important; /* ƶ130pxƶ100px */
    }
    
    /* ڶֲͼͼƬƶ120 */
    .focus-images-container {
        top: 100px !important; /* ԭtopֵΪ220pxƶ120px */
    }
    
    /* ʽ */
    .cooperation-section {
        height: 900px !important; /* ߶ӦСĻ */
    }
    
    .cooperation-container {
        width: calc(100% - 200px) !important; /*  */
        gap: 50px !important; /* С */
        transform: translateX(200px) !important; /* ƶ200 */
    }
    
    .cooperation-title {
        margin-left: 0 !important; /* Ƴ߾ */
        margin-bottom: 50px !important; /* Сײ߾ */
    }
    
    .cooperation-image {
        margin-left: 0 !important; /* Ƴ߾ */
        margin-top: 0 !important; /* Ƴ߾ */
    }
    
    .cooperation-content {
        margin-top: 0 !important; /* Ƴ߾ */
        margin-left: 0 !important; /* Ƴ߾ */
    }
}

/* 从右到左渐出动画 */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 焦点图动画样? */
.focus-image, .fade-image {
    opacity: 0;
    transition: opacity 0.5s ease;
    animation-play-state: paused; /* 默认暂停 */
}

/* 确保动画只有在轮播图激活时才播? */
.carousel-slide.active .focus-image[data-delay="0"],
.carousel-slide.active .fade-image[data-delay="0"] {
    animation: fadeInLeft 0.8s ease-out 0.3s forwards;
    animation-play-state: running;
}

.carousel-slide.active .focus-image[data-delay="0.3"],
.carousel-slide.active .fade-image[data-delay="0.3"] {
    animation: fadeInLeft 0.8s ease-out 0.6s forwards;
    animation-play-state: running;
}

.carousel-slide.active .focus-image[data-delay="0.6"],
.carousel-slide.active .fade-image[data-delay="0.6"] {
    animation: fadeInLeft 0.8s ease-out 0.9s forwards;
    animation-play-state: running;
}

/* 重置所有文本元素的样式，确保动画正确应? */
.carousel-slide.active .text-line-1,
.carousel-slide.active .text-line-2,
.carousel-slide.active .text-line-3,
.carousel-slide.active .text-paragraph {
    animation-play-state: running;
}

.carousel-slide:not(.active) .text-line-1,
.carousel-slide:not(.active) .text-line-2,
.carousel-slide:not(.active) .text-line-3,
.carousel-slide:not(.active) .text-paragraph {
    animation-play-state: paused;
}

/* 合作板块样式 */
.cooperation-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.cooperation-container {
    display: flex;
    width: calc(100% - 600px);
    margin: 0 auto;
    gap: 180px;
}

.cooperation-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cooperation-title {
    font-family: 'Alibaba PuHuiTi R', 'Alibaba PuHuiTi', sans-serif;
    font-size: 30px;
    color: #111111;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: 3px;
    margin-left: 205px;
        
 
}

.cooperation-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: 350px;
    margin-top: -50px;
   
}

.cooperation-right {
    flex: 2;
    display: flex;
    align-items: center;
}

.cooperation-content {
    width: 100%;
margin-top: 200px;
margin-left: 250px;
}

.cooperation-intro {
    font-family: 'Alibaba PuHuiTi L', sans-serif;
    font-size: 15px;
    color: #333333;
    margin-bottom: 60px;
    line-height: 1.6;
    letter-spacing: 1px;
}

.cooperation-item {
    margin-bottom: 30px;
}

.cooperation-item-title {
    font-family: 'Alibaba PuHuiTi', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.cooperation-item-desc {
    font-family: 'Alibaba PuHuiTi L', sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.8;
    letter-spacing: 1px;
}

/* 确保Alibaba PuHuiTi M字体正确加载 */
/* 移除对不存在字体的引用，使用现有的Alibaba PuHuiTi字体 */

@font-face {
    font-family: 'Alibaba PuHuiTi R';
    src: url('../fonts/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2'),
         url('../fonts/AlibabaPuHuiTi-3-55-Regular.woff') format('woff'),
         url('../fonts/AlibabaPuHuiTi-3-55-Regular.otf') format('opentype');
    font-style: normal;
}

/* 最后更新时间：2024-01-16 15:33:30 */
/* 专注于移动端适配，确保在小屏幕设备上有良好的显示效果 */

/* 产品系列区域样式 */
.product-series-section {
    background-image: url('../images/j1.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    position: relative;
    min-height: 800px;
}

.product-content {
    width: calc(100% - 300px); /* 减去左右?150像素的间? */
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Alibaba PuHuiTi R', Arial, sans-serif;
    font-size: 50px;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0px;
    letter-spacing: 5px;
}

.section-subtitle {
    font-family: 'Alibaba PuHuiTi R', Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    color: #333333;
    margin-bottom: 100px;
    line-height: 1.6;
    letter-spacing: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.product-column {
    display: flex;
    flex-direction: column;
}

.left-column {
    justify-content: center;
    margin-top: -200px;
}

.right-column {
    text-align: left;
}

.product-item {
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.product-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-number {
    font-family: 'DIN-Bold', Arial, sans-serif;
    font-size: 32px;
    color: #333333;
    margin-bottom: 10px;
}

.product-name {
    font-family: 'Alibaba PuHuiTi', Arial, sans-serif;
    font-weight: normal;
    font-size: 30px;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.product-number {
    font-size: 36px;
    font-weight: bold;
}

.product-description {
    font-family: 'Alibaba PuHuiTi L', Arial, sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.product-image {
    margin-bottom: 30px;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.6s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.product-image img:hover {
    transform: scale(1.15);
}

/* 第二列图片尺寸差异化 */
.right-column .product-item:first-child .product-image img {
    max-width: 80%; /* 第一张图片宽度较? */
}

.right-column .product-item:last-child .product-image img {
    max-width: 100%; /* 第二张图片宽度较? */
}

.product-image img.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-image img.animate:hover {
    transform: translateY(0) scale(1.15);
}

.product-image img:hover {
    transform: scale(1.15); /* 增加放大效果，从1.05调整?1.15 */
}

/* 动画延迟设置 */
.product-item:nth-child(1) {
    transition-delay: 0.2s;
}

.product-item:nth-child(2) {
    transition-delay: 0.4s;
}

.product-item:nth-child(3) {
    transition-delay: 0.6s;
}

.product-image img:nth-child(1) {
    transition-delay: 0.3s;
}

.product-image img:nth-child(2) {
    transition-delay: 0.5s;
}

.product-image img:nth-child(3) {
    transition-delay: 0.7s;
}

/* 军工温控区域样式 */
.military-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: url('../images/k1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.military-container {
    display: flex;
    min-height: 800px;
    width: 100%;
    position: relative;
}

/* 左侧图片? */
.military-img-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 800px;
}

.military-section .military-img-col img {
    max-height: 100%;
    object-fit: contain;
}

/* 右侧文字? */
.military-section .military-text-col {
    flex: 1;
    padding-top: 100px;
    padding-right: 100px;
    color: #fff;
    margin-left: 200px;
}

/* 动画初始状? */
.military-container {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.military-img-col img {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.military-title-en,
.military-title-zh {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.military-details {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

/* 动画激活状? */
.military-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.military-img-col img.animate {
    opacity: 1;
    transform: scale(1);
}

.military-title-en.animate,
.military-title-zh.animate {
    opacity: 1;
    transform: translateX(0);
}

.military-details.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 英文标题 */
.military-section .military-title-en {
    font-family: 'DIN-Bold';
    font-size: 45px;
    color: #fff;
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: 2px;
}

/* 中文标题 */
.military-section .military-title-zh {
    font-family: 'Alibaba PuHuiTi';
    font-size: 40px;
    margin: 0 0 80px 0;
    line-height: 1.2;
        letter-spacing: 3px;
}

/* 详情区域 */
.military-section .military-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 详情? */
.military-section .military-detail-item {
    margin-bottom: 30px;
}

/* 详情标题 */
.military-section .military-detail-title {
    font-family: 'Alibaba PuHuiTi L', Arial, sans-serif;
    font-size: 25px;
    margin: 0 0 10px 0;
    line-height: 1.4;
      letter-spacing: 2px;
}

/* 详情描述 */
.military-section .military-detail-desc {
    font-family: 'Alibaba PuHuiTi L', Arial, sans-serif;
    font-size: 17px;
    margin: 0;
    line-height: 2.0;
      letter-spacing: 1px;
}

/* 响应式设? */
@media (max-width: 768px) {
    .military-section .military-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .military-section .military-text-col {
        padding: 50px 20px;
        text-align: center;
    }
    
    .military-section .military-title-en,
    .military-section .military-title-zh {
        font-size: 40px;
    }
    
    .military-section .military-title-zh {
        margin-bottom: 50px;
    }
    
    .military-section .military-detail-title {
        font-size: 24px;
    }
    
    .military-section .military-detail-desc {
        font-size: 16px;
    }
}

/* uc-home-7 相关样式定义 - 确保联系我们、官方商城和官方社交位置一? */
.uc-home-7 {
  height: 537px;
  background-image: url('../images/d2bj4.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.uc-home-7 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.uc-home-7 .list li {
  width: 150px;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  padding-top: 120px;
}

/* 客服热线列样? */
.uc-home-7 .list li.contact-hotline {
  text-align: left;
  font-family: 'DIN-Bold', sans-serif;
  margin-right: 100px; /* 增加第一列和第二列之间的间距 */
}

/* 第二、三、四列样? */
.uc-home-7 .list li:nth-child(2),
.uc-home-7 .list li:nth-child(3),
.uc-home-7 .list li:nth-child(4) {
  width: 230px;
}

/* 调整第二列和第三列之间的间距?10px */
.uc-home-7 .list li:nth-child(2) {
  margin-right: 10px;
}

/* 联系我们、线上商城、社交互动标题样? */
.uc-home-7 .list li.section-title h3 {
  font-family: 'SourceHanSansCN-Normal', sans-serif;
  font-weight: 100; /* 对应 Normal 字重 */
  font-size: 20px;
  letter-spacing: 2px; /* 增加字间? */
  position: relative;
  display: inline-block;
}

.uc-home-7 .list li.section-title h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background-color: white;
}

.uc-home-7 .list li.contact-hotline h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  font-family: 'DIN-Bold', sans-serif;
}

.uc-home-7 .list li.contact-hotline .hotline-row,
.uc-home-7 .list li.contact-hotline .time-row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  white-space: nowrap;
}

.uc-home-7 .list li.contact-hotline .hotline-text,
.uc-home-7 .list li.contact-hotline .time-text {
  font-size: 14px;
  margin-right: 5px;
}

.uc-home-7 .list li.contact-hotline .hotline-number {
  font-size: 14px;
  font-weight: bold;
}
.uc-home-7 .list li:hover {
  top: -5px;
}
.uc-home-7 .list h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  color: white;
}
.uc-home-7 .list .con {
  font-size: 14px;
  line-height: 28px;
  color: white;
}
/* 第二列、第三列和第四列的标题、下划线和文本左对齐 */
.uc-home-7 .list li.section-title:nth-child(2) h3,
.uc-home-7 .list li.section-title:nth-child(3) h3,
.uc-home-7 .list li.section-title:nth-child(4) h3,
.uc-home-7 .list li.section-title:nth-child(4) .con h3 {
  text-align: left;
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  font-weight: normal;
  color: white;
}

.uc-home-7 .list li.section-title:nth-child(2) h3::after,
.uc-home-7 .list li.section-title:nth-child(3) h3::after,
.uc-home-7 .list li.section-title:nth-child(4) h3::after,
.uc-home-7 .list li.section-title:nth-child(4) .con h3::after {
  left: 0;
  transform: none;
  width: 200px;
  content: '';
  position: absolute;
  bottom: -5px;
  height: 1px;
  background-color: white;
}

.uc-home-7 .list li.section-title:nth-child(2) .con p,
.uc-home-7 .list li.section-title:nth-child(2) .con p a,
.uc-home-7 .list li.section-title:nth-child(4) .con p,
.uc-home-7 .list li.section-title:nth-child(4) .con p a {
  text-align: left;
  font-size: 14px;
  line-height: 40px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* 线上商城图标布局样式 */
.uc-home-7 .list li.section-title:nth-child(3) .con {
  padding-top: 10px;
}

.uc-home-7 .list li.section-title:nth-child(3) .con .icon-row {
  display: flex;
  margin-bottom: 15px;
}

.uc-home-7 .list li.section-title:nth-child(3) .con .icon-item {
  position: relative;
  margin-right: 30px;
  text-align: center;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.uc-home-7 .list li.section-title:nth-child(3) .con .icon-item a {
  display: block;
  color: white;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.uc-home-7 .list li.section-title:nth-child(3) .con .icon-item:not(.last)::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  width: 1px;
  height: 50%;
  background-color: white;
}

.uc-home-7 .list li.section-title:nth-child(3) .con .icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.uc-home-7 .list li.section-title:nth-child(3) .con .store-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.uc-home-7 .list li.section-title:nth-child(3) .con .icon-text {
    font-size: 12px;
    color: white;
    white-space: nowrap;
    font-family: SimSun, serif;
    letter-spacing: -0.5px;
  }

/* 社交互动图标布局样式 */
.uc-home-7 .list li.section-title:nth-child(4) .con {
  padding-top: 10px;
}

.uc-home-7 .list li.section-title:nth-child(4) .con .social-row {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  width: 100%;
}

.uc-home-7 .list li.section-title:nth-child(4) .con .social-item {
  position: relative;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.uc-home-7 .list li.section-title:nth-child(4) .con .social-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  width: 1px;
  height: 50%;
  background-color: white;
}

.uc-home-7 .list li.section-title:nth-child(4) .con .social-item {
  position: relative;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  text-align: center;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.uc-home-7 .list li.section-title:nth-child(4) .con .social-item:last-child {
  margin-right: 0;
}

.uc-home-7 .list li.section-title:nth-child(4) .con .social-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.uc-home-7 .list li.section-title:nth-child(4) .con .social-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 5px;
}

.uc-home-7 .list li.section-title:nth-child(4) .con .social-text {
    font-size: 12px;
    color: white;
    white-space: nowrap;
    font-family: SimSun, serif;
    letter-spacing: -0.5px;
  }
