/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 22 2026 | 02:18:51 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 


.main.main-raised {
    position: relative;           /* 为伪元素提供定位基准 */
    background: none !important;  /* 清除原有的背景设置（若有） */
    z-index: 0;                  /* 确保内容在伪元素之上 */
}

/* 用伪元素作为半透明背景层 */
.wrapper .main.main-raised::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://pan.mxyr.tech/datacentre/file/白玫瑰壁纸1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;                /* 调整此值（0~1）控制透明度 */
    z-index: -1;                /* 将背景层置于内容下方 */
}


.wrapper.default .main.main-raised::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://pan.mxyr.tech/datacentre/file/信封背景提取_2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;                /* 调整此值（0~1）控制透明度 */
    z-index: -1;                /* 将背景层置于内容下方 */
}

.wrapper.default .main.main-raised{
	margin-left:0px;
	margin-right:0px;
}