/* 顶部标题 */
.list_header {
    width: 66%;
    margin-left: auto;
    margin-right: auto;
}

.list_header h2 {
    font-size: 4rem;
}

.icon-parent {
    display: flex;
    gap: 10px;
    /* 你可以根据需要调整这个值 */
    margin-left: 17%;
    margin-top: 6rem;
  }

  .icon-child {
    text-align: center;
    margin-right: 4rem;
  }
.icon-child img{
    width : 3rem;
    height: 3rem;
  }

  .icon_img {
    transition: transform 0.3s ease;
}
.icon_img:hover {
    transform: translateY(-5px);
}
.icon_img.active {
    transform: translateY(-5px);
}

#copy-status {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 8%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9e2024;
    padding: 10px;
    border-radius: 5px;
    display: none;
    color: #fff;
    font-size: 2rem;
}


.div-con {
    width: 66%;
    margin-left: auto;
    margin-right: auto;
}

/* 图片 */
.div-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../static/img/car5.png);
    height: 50rem;
    background-position: center;
    background-size: cover;

}

.div-con-margin {
    margin-top: 10rem;
    margin-bottom: 6rem;
}

.div-con-margin h2 {
    font-size: 3rem;
}

/* 列表内容 */
.div_list {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: normal;

}

.div_list p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.div-box {
    height: 80rem;
    text-align: center;
}



/* 九个卡片 */
.footCard {
    background-color: #dbdbdb;
    padding-bottom: 1rem;
    padding-top: 8rem;
    margin-top: 5rem;
    margin-left: -8rem;
}

.car_container {
    display: flex;
    flex-direction: column;
    /* 垂直堆叠 */
    gap: 10px;
    /* 行之间的间距 */
}

.car_row {
    display: flex;
    /* 使 div 并排 */
    justify-content: space-between;
    /* 分布空间 */
}

.car_box {
    flex: 1;
    /* 自动分配宽度 */
    width: 33%;
    /* 固定高度 */
    margin: 20px;
    cursor: pointer;
}

::v-deep .page-template {
    min-height: 0;
}

.car_hang {
    margin: 20px 0;
    font-size: 2rem;
}

.car_logo {
    height: 48px;
    width: 48px;
    margin-left: auto;
    margin-right: auto;
}