@import './card.css';

/* 小屏幕（手机、平板）  大于768 */
@media (max-width:768px) {
    .max-title {
        font-size: 24px;
        text-align: center;
    }

    .btn-more {
        display: none;
    }

    .btn-more.btn-ss {
        display: flex;
    }

    /* banner */
    .banner {
        height: 50vw;
    }

    .banner .content h1 {
        font-size: 25px;
        margin: 20px 0;
    }

    /* 右下角红色图标 */
    .img-icon {
        width: 120px;
        height: 120px;
    }

    .img-icon .iconfont {
        font-size: 40px;
    }

    .img-icon .img-name {
        font-size: 14px;
        margin-top: 5px;
    }

    .banner-w {
        max-width: 100%;
        padding: 0 15px;
    }

    .btn-more {
        width: 100px;
        height: 45px;
        padding: 12px 10px;
        border-radius: 20px;
        font-size: 15px;
    }
}

/* 中等屏幕  大于768 */
@media (min-width:769px) {
    .max-title {
        font-size: 35px;
    }

    .btn-more {
        display: flex;
        width: 100px;
        height: 45px;
        padding: 12px 10px;
        border-radius: 20px;
        font-size: 15px;
    }

    /* banner */
    .banner {
        height: 35vw;
    }
    .banner .content h1 {
        font-size: 40px;
        margin: 15px 0;
    }

    /* 右下角图标 */
    .img-icon {
        width: 170px;
        height: 170px;
    }

    .img-icon .iconfont {
        font-size: 60px;
    }

    .img-icon .img-name {
        font-size: 16px;
        margin-top: 10px;
    }

    .banner-w {
        max-width: 1280px;
        padding: 0 30px;
    }

}

/* 大屏幕 大于1200 */
@media (min-width:1200px) {
    .max-title {
        font-size: 40px;
    }

    .btn-more {
        width: 130px;
        height: 50px;
        padding: 12px 10px;
        border-radius: 25px;
        font-size: 18px;
    }

    /* banner */
    .banner {
        height: 60vw;
    }
    .banner .content h1 {
        font-size: 50px;
        margin: 20px 0;
    }
    .banner-w {
        flex-direction: row-reverse;
    }
}

/* 版心 */
.banner-w {
    margin: 0 auto;
    box-sizing: border-box;
}

/* banner */
.banner {
    display: flex;
    position: relative;
    color: #fff;
    max-height: 400px;
    overflow: hidden;
    z-index: 0;
}

.banner-black{
    color: black;
}

.banner .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 30px;
}

.banner .content .title {
    font-size: 20px;
}

.banner .content .gang {
    width: 30px;
    height: 5px;
    background-color: var(--primary-color);
}

/* 按钮 */
.btn-more {
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--primary-color);
}

.btn-more .more {
    font-weight: bold;
    color: white;
}

.btn-more .icon-Gshuju {
    color: white;
}

/* 右下角图标 */
.img-icon {
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.img-icon .img-name {
    font-weight: bold;
}
