.line {
    width: 80px;
    height: 4px;
    border-radius: 20px;
    background: #1C9C69;
    margin: 20px auto 30px;
}


.aboutBottom {
    margin-left: 7rem;
    /* 缩进两个字符的宽度 */
}

.type {
    color: #1C9C69;
    font-size: 20px;
    font-weight: 500;
}

.btn-more{
    background-color: #3AC78F;
    transition: background-color 0.3s ease-in-out;
}

.btn-more:hover{
    background-color: rgb(170, 52, 16);
}

.no-wrap {
    white-space: nowrap;
}

.ellipsis-container {
    white-space: nowrap;
    /* 防止文本换行 */
    overflow-x: hidden;
    /* 隐藏超出容器部分的内容 */
    overflow-y: hidden;
    /* 隐藏超出容器部分的内容 */
    text-overflow: ellipsis;
    /* 显示省略号 */
}

.my-img-container {
    overflow: hidden !important;
    text-align: center;
    /* max-height: 25vw !important; */
    /* aspect-ratio: 16 / 9; */
}

.img {
    /* width: 100%;
    height: 100%;
    min-height: 30vh;
    object-fit: cover;  */
    height: 25vw !important;
}

.img-container {
    overflow: hidden !important;
    text-align: center;
    aspect-ratio: 16 / 9;
}

.card img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.card:hover img {
    transform: scale(1.03);
    /* 放大倍数可以根据需要调整 */
}

#trusted .shadow-sm {
    transition: box-shadow 0.3s ease-in-out;
    /* 过渡效果在默认状态下生效 */
}

#trusted .shadow-sm:hover {
    transition: box-shadow 0.3s ease-in-out;
}

#trusted .shadow-sm:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}


/* 自定义样式 */
.carousel {
    max-height: none;
    /* 移除轮播的最大高度限制 */
}

.carousel-inner {
    overflow: hidden;
    /* 隐藏溢出内容 */
}

.separator {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

table{
    border: solid #000000 1px;
}
td{
    border: solid #000000 1px;
}

th{
    border: solid #000000 1px;
}


.intro-title{
    color:#1C9C69;
    font-size: 1.5rem;
}

.intro-eng{
    color:#BFBFBF;
    font-size: 1.25rem;
}

.intro-detail{
    color:#333333;
    font-size: 1.25rem;
}

.bg-white{
    background-color: #FFFFFF;
}
.value-icon{
    height: 70px;
    width: 70px;
}