.c-about{
    width: 800px; /* 修改固定宽度为100% */
    margin: auto;
    margin-top: 180px;   
}
.c-about p{
    color: #fff;
    font-size: 18px;
    line-height: 40px;
}
.c-auto{
    width: 100%; /* 修改固定宽度为100% */
    position:absolute; /* 修改为相对定位 */
    bottom: 0;
    margin-bottom: 40px;
}
.p-active{
    background-image: linear-gradient(to right top, #0d9447, #007c5a, #00635d, #00494f, #223035);
    color: #fff !important;
}
.p-active h4,.p-active i{
    color: #fff!important;
}
/* .bg-grey d-block p-3 py-4 rounded-2 mb-3 relative p-active */
.bg-grey:hover{
    background-image: linear-gradient(to right top, #0d9447, #007c5a, #00635d, #00494f, #223035);
    color: #fff;
    h4,i,a,h5{
        color: #fff!important;
    }
    
}

.search-btn{
    margin-top: -20px;
    background-image: linear-gradient(to right top, #0d9447, #007c5a, #00635d, #00494f, #223035) !important;
}

/* about */

.about-text {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text.show {
    opacity: 1;
    transform: translateX(0);
}

.col-lg-611 p{
    animation-delay: 1s;
    animation: slideRightToLeft 1.5s ease-out forwards;
  /* 其他注释掉的动画 */
  display: block;
  position: relative;
  opacity: 0; /* 初始设为不可见 */
}


/* 右往左边 */
@keyframes slideRightToLeft {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }


a {
    color: #fff; /* 白色链接颜色 */
    i{
        margin-left: 5px;
    }
}
a:hover {
    color: #0d9348; /* 鼠标悬停时的链接颜色 */
}




/* 语言选择器样式 */
.language-selector {
    position: relative;
    margin-top: 22px;
}

.language-selector .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #00000082;
    border: none;
    min-width: 80px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-dropdown li {
    padding: 0;
    text-align: center;
}

.language-dropdown li a {
    color: #fff !important;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    transition: all 0.3s ease;
}

.language-dropdown li a:hover {
    background-color: #111;
    color: #0d9348; /* 鼠标悬停时的链接颜色 */
}

.language-dropdown li a.active {
    color: #0d9348; /* 绿色高亮 */
}

/* ... existing code ... */


@media only screen and (min-width: 993px) {
    /* 在PC端隐藏移动端的语言选择器 */
    .mobile-language-selector {
        display: none;
    }
}

/* 自适应样式 */
@media only screen and (max-width: 992px) {
      /* 隐藏PC端的语言选择器 */
      header .language-selector {
        display: none;
    }
    
    /* 移动端菜单中的语言选择器样式 */
    .mobile-language-selector {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
    }
    
    .mobile-language-selector .language-title {
        display: block;
        color: #fff;
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    .mobile-language-selector .language-options {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mobile-language-selector .language-options a {
        display: inline-block;
        padding: 5px 15px;
        margin: 0 5px;
        color: #fff;
        border-radius: 4px;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .mobile-language-selector .language-options a:hover,
    .mobile-language-selector .language-options a.active {
        background-color: rgba(13, 148, 71, 0.8);
        color: #fff;
    }
}

@media only screen and (max-width: 768px) {
    .language-selector {
        right: 60px;
    }
    
    .language-dropdown {
        min-width: 70px;
    }
    
    .language-dropdown li a {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .language-selector {
        right: 50px;
    }
    
    .language-selector a.menu-item {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* 添加移动端菜单下方的语言选择器样式 */
@media only screen and (max-width: 992px) {
    /* 在移动端菜单展开时，重新定位语言选择器 */
    #de-sidebar .language-selector {
        position: static;
        margin: 20px auto;
        text-align: center;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #de-sidebar .language-selector a.menu-item {
        display: inline-block;
        background-color: transparent;
        font-size: 16px;
        padding: 8px 15px;
    }
    
    #de-sidebar .language-dropdown {
        position: relative;
        width: 100%;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.3);
        margin-top: 10px;
    }
    
    #de-sidebar .language-dropdown li {
        display: inline-block;
        margin: 0 5px;
    }
    
    #de-sidebar .language-dropdown li a {
        padding: 5px 10px;
    }
}