* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flex-my-card-container{
    display: flex;
    /* height: 70vh; */
    justify-content:space-around;
    align-items: stretch;
    flex-wrap: wrap;  /* 允许flex子项换行 */
}

.my-card-container {
    /* height: 450px; */
    /* background-color: #dcdde1; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    flex: 1;
    min-width: 200px;
    /* overflow-x: hidden; */
}

input[type=checkbox] {
    display: none;
}

.my-card {
    width: 17vw;
    /* height: 450px; */
    background-color: #ffffff;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, .3);
    transition: all .3s;
    text-align: center;
    margin: 0 0;
}

.my-card:hover{
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, .3);
}

 .my-card-img {
    width: 17vw;
    height: 15vh;
    /* height: 230px; */
    transition: all .6s;
    overflow: hidden;
    /* background-size: contain;
    background: url('./img/百叶窗/3.jpg')no-repeat center center;
    background-size: cover; */
}

.my-card-img > img{
  width: 90%;
  height: 90%;
  margin: 5% 5% !important;
  object-fit: cover;
  object-position: center;
}

 .my-card-title {
    margin: 10px 0 15px 0 !important;
    font-size: 25px !important;
    color: rgb(88, 88, 88) !important;
    transition: all .6s;
    transition-delay: .2s;
    text-align: center !important;
}

 .my-card-desc {
    padding: 0 30px;
    text-align: left !important;
    width: 17vw;
    margin-bottom: 20px;
    line-height: 25px;
    opacity: 1;
    color: rgb(170, 170, 170);
    font-size: 15px !important;
}

 .my-card-content {
    display: none;
    height: 1300px;
    text-align: center;
    padding: 0 20%;
    line-height: 40px;
    background-color: #ffffff;

}

 .my-card-content p {
    margin: 30px 0;
    text-align: left;
    display: table;

}

.icon {
    width: 300px;
    height: 30px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

 .icon i {
    margin: 10px;
    font-size: 22px;
    color: rgb(75, 75, 75);
}

/* 点击放大*/
#select-1_lable,
#select-3_lable {
    display: block;
    position: absolute;
    width: 17vw;
    /* height: 100%; */
    /* z-index: 999; */
    margin: 0px auto !important;
    cursor: pointer;
}

.select:checked + .my-card > #select_lable {
    margin: 0 0 !important;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
}

.select:checked+.my-card {
    margin: 0 0 !important;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.select:checked+.my-card .my-card-img {
    margin: 0 0 !important;
    width: 100vw !important;
    height: 250px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.select:checked+.my-card .my-card-title {
    transform: translateY(0vw);
    color: #ffffff;
    font-size: 70px;
    width: 100%;
    position: absolute;
    text-align: center;
    z-index: 100;
}

.select:checked+.my-card .my-card-desc {
    display: none;
    opacity: 0;

}

.select:checked+.my-card .icon {
    display: none;
}

.select:checked+.my-card .my-card-content {
    display: block;
    animation: content 2s;
    transform: translateY(-50px);
    padding-top: 70px;
}

@keyframes content {
    from {
        opacity: 0;
        transform: translateY(0px);

    }

    to {
        opacity: 1;
        transform: translateY(-50px);
    }
}