@charset "utf-8";
/* CSS Document */

 
 /* 左右对称的广告代码 */
  /* 添加日期2025年10月25日00:03:45 */
.couplet-ad {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 150px;
            height: 300px;
            z-index: 9999;
        }
        .left-ad { left: 10px; }
        .right-ad { right: 10px; }
        .close-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(0,0,0,0.6);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            text-align: center;
            line-height: 20px;
            cursor: pointer;
            font-size: 12px;
            z-index: 10000;
        }
        .ad-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .couplet-ad { display: none; }
        }
		