| 123456789101112131415161718192021222324252627282930313233343536373839404142 | /* 矩形盒子 */.rectangle_box {    position: relative;    width: 590rpx;    border-radius: 20rpx;    margin: auto;    padding-top: 40rpx;    padding-bottom: 70rpx;    overflow: hidden;    z-index: 1;}/* 盒子背景颜色 */.rectangle_box>.box-bg {    position: absolute;    width: 100%;    height: 100%;    background-color: #ffffff;    opacity: 0.4;    top: 0;    left: 0;    z-index: -1;}/* 标题 */.rectangle_title {    font-family: PingFangSC-Medium, PingFang SC;    width: 100%;    text-align: center;    font-size: 36rpx;    font-weight: 550;    color: #000000;    margin-bottom: 30rpx;    z-index: 1;}/* 插入内容 */.slot_con {    width: 510rpx;    margin: 0 auto;    z-index: 1;}
 |