.root_box_container {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 10px;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    /*主轴方向*/
}

.info_box {
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: left;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.info_box.primary {
    background-color: #ffffff;
}

.info_box.red {
    background-color: #ff838385;
}


.info_box.preview {
    background-color: #ffffff24;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0), 0 10px 10px -5px rgba(0, 0, 0, 0);
}

.info_box.title {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0), 0 10px 10px -5px rgba(0, 0, 0, 0);
}

.header {
    padding: 1.25rem 1rem 1rem 1rem;
}

.info_title_img {
    position: relative;
    overflow: hidden;
}

.info_title_img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/template/016.png);
    background-position: center;
    background-size: cover;
    filter: blur(2px);
    z-index: -1;
    transform: translateZ();
}
.info_title_img_child {
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
}

.info_box_message {
    margin-top: 0.5rem;
    color: #595b5f;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.info_box_message.white {
    color: #fff;
}

.info_box_img {
    /* display: flex; */
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
    justify-content: left;
    align-items: center;
    width: 3rem;
    height: 3rem;
}

.info_box_img.large {
    width: 5rem;
    height: 5rem;

}

.info_box_content {
    margin-top: 0.75rem;
    text-align: left;
}

.info_box_content_img {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 190px;
	width: fill
}

.info_box_title {
    color: #087dcae0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.info_box_title.white {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.info_box_title.subtitle {
    color: #6ecfffe0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.info_box_title.large {
    font-size: 1.3rem;
}

.info_box_url {
    color: #fff;
    display: inline-block;
    /* 使链接可以设置宽高 */
    padding: 1.5px 6px;
    /* 内边距 */
    text-align: center;
    /* 文字居中 */
    text-decoration: none !important;
    /* 移除下划线 */
    font-weight: 600;
    /* 加粗字体 */
    font-size: 16px;
    /* 默认字体大小 */
    border-radius: 5px;
    /* 圆角 */
    cursor: pointer;
    /* 手型光标 */
    transition: all 0.3s ease;
    /* 平滑过渡效果 */
    border: 2px solid transparent;
    /* 透明边框预留位置 */
    user-select: none;
    /* 防止文字被选中 */
    background-color: #3498db;
}

.info_box_url.red {
    background-color: #ff4949;
}

.copyright_text {
    color: #595b5f;
}

.url_text_default {
    text-decoration: none !important;
    color: #39d7ff;
}


/* From Uiverse.io by ZstarPanda0210 */
.card {
    overflow: hidden;
    position: relative;
    text-align: left;
    border-radius: 0.5rem;
    max-width: 290px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background-color: #fff;
}

.dismiss {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: black;
    border: 2px solid #D1D5DB;
    font-size: 1rem;
    font-weight: 300;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    transition: .3s ease;
}

.dismiss:hover {
    background-color: #ee0d0d;
    border: 2px solid #ee0d0d;
    color: #fff;
}

.image {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    background-color: #e2feee;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    animation: animate .6s linear alternate-reverse infinite;
    transition: .6s ease;
}

.image svg {
    color: #0afa2a;
    width: 2rem;
    height: 2rem;
}

.content {
    margin-top: 0.75rem;
    text-align: center;
}

.title {
    color: #066e29;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.title.large {
    color: #066e29;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.message {
    margin-top: 0.5rem;
    color: #595b5f;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.actions {
    margin: 0.75rem 1rem;
}

@keyframes animate {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.09);
    }
}