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