/*!*页面最顶部建筑水印的图片*!*/

/*#top-background {*/
/*    position: absolute;  !* 让它浮在页面上，不占空间 *!*/
/*    top: 0;              !* 贴紧顶部 *!*/
/*    !*right: 575px;            !* 贴紧右侧 *!*!*/
/*    right: 30%;            !* 贴紧右侧 *!*/

/*    !*clip-path: inset(0 0 0 70px); !* 裁剪掉左边50px的部分 *!*!*/

/*    height:95px; !* 保持图片比例 *!*/
/*    z-index: 1;         !* 让它在最底层 *!*/
/*}*/


/*@media (max-width: 768px) {*/

/*    #top-background {*/



/*        right: 0;            !* 贴紧右侧 *!*/
/*        height:80px;*/
/*        z-index: 0;*/

/*    }*/

/*}*/














/*页面最顶部建筑水印的图片*/
/* 桌面版：取消绝对定位，并固定图片与搜索框之间10px的间距 */
#top-background {
    position: static;
    /*height: 95px; !* 保持原有高度 *!*/
    height: 115px; /* 保持原有高度 */
    margin-right: -80px;  /* 搜索框左边固定10px距离 */
    /*clip-path: inset(0 100px 0 0); !* 裁剪掉右边50px的部分 *!*/
    z-index: 1;
}

/* 移动端适配 - 小于768px屏幕，严格保持原有样式 */
@media (max-width: 768px) {
    #top-background {
        position: absolute;  /* 让它浮在页面上，不占空间 */
        top: 0;              /* 贴紧顶部 */
        right: 0;            /* 贴紧右侧 */
        height: 80px;        /* 调整高度 */
        z-index: 0;          /* 让它在最底层 */
        /*clip-path: inset(0 50px 0 0); !* 裁剪掉右边50px的部分 *!*/
        margin-right: 0px;  /* 搜索框左边固定10px距离 */
        /*margin-left: 20px;*/
    }
}

