/* 小程序示例图样式 */

.applet-wrapper {
    position: relative;
    width: 100%;
    min-height: 1150px;
    padding-right: 270px;
}

.applet-panel {
    float: left;
    display: block;
    margin-right: 270px;
}

.applet-img{
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 59px;
}

.applet-img, .img-wrapper, .img-wrapper img {
    width: 260px;
}

.img-wrapper{
    position: relative;
}

.mask{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    box-sizing: border-box;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}

.mask:last-child{
    border-bottom: 1px solid #ffffff;
}

.border{
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.2);
    border: 3px solid red;
    font-size: 13px;
    text-align: center;
}

.active .border{
    display: flex;
    font-size: 16px;
    color: red;
}

.active .mask{
    display: none;
}