        .popup {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.25);
            overflow: hidden;
            margin-bottom: 30px;
            animation: slideIn 0.5s ease-out;
        }
        
        @keyframes slideIn {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .today-title {
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 1.8rem;
            font-weight: bold;
        }
        
        .weather-info {
            padding: 20px;
        }
        
        .day-night-section {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .day-night-section:last-child {
            border-bottom: none;
        }
        
        .weather-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .weather-icon img {
            width: 60px;
            height: 60px;
        }
        
        .weather-details {
            flex: 1;
        }
        
        .time-label {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .weather-desc {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #555;
        }
        
        .highlight {
            color: #e74c3c;
            font-weight: bold;
        }
        
        .sun-section {
            display: flex;
            background: #f9f9f9;
            padding: 20px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .sun-item {
            flex: 1;
            text-align: center;
            padding: 10px;
        }
        
        .sun-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #f39c12;
        }
        
        .sun-title {
            font-size: 1rem;
            color: #7f8c8d;
            margin-bottom: 5px;
        }
        
        .sun-time {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
        }
        
        /* 按钮样式 */
        .btn {
            display: flex;
            text-align: center;
            margin-top: 25px;
            margin-bottom: 10px;
            padding: 10px 10px 20px 10px;
            background: #fff;
            border-radius: 8px;
        }
        
        .btn a {
            flex: 1;
            text-align: center;
            padding: 5px 0;
            margin: 0 10px;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        #know_button {
            background: #3498db;
            color: white;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        
        #fenxiang_button {
            background: #2ecc71;
            color: white;
            box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
        }
        
        #know_button:active, #fenxiang_button:active {
            transform: translateY(3px);
            box-shadow: none;
        }
        
        .result-container {
            width: 100%;
            text-align: center;
            margin-top: 30px;
        }
        
        #haibaoResult {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: none;
            margin: 0 auto 20px;
        }
        
        #generateBtn {
            background: #9b59b6;
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(155, 89, 182, 0.4);
            transition: all 0.3s ease;
            font-weight: bold;
            display: inline-block;
            margin: 10px 0;
        }
        
        #generateBtn:active {
            transform: translateY(4px);
            box-shadow: 0 2px 10px rgba(155, 89, 182, 0.4);
        }
        
        /* 海报设计 - 隐藏元素 */
        #showHaibaoBox {
            position: absolute;
            left: -9999px;
            top: -9999px;
            width: 500px;
            height: 700px;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
            color: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }
        
        .haibao-container {
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .haibao-header {
            text-align: center;
            padding: 20px 0;
        }
        
        .haibao-title {
            font-size: 2.8rem;
            font-weight: bold;
            letter-spacing: 2px;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .haibao-date {
            font-size: 1.4rem;
            opacity: 0.9;
        }
        
        .haibao-weather {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }
        
        .haibao-temp {
            font-size: 3rem;
            font-weight: bold;
            margin: 0 20px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
        }
        
        .haibao-icon img {
            width: 100px;
            height: 100px;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
        }
        
        .haibao-details {
            display: flex;
            justify-content: space-around;
            margin: 25px 0;
            background: rgba(255,255,255,0.15);
            padding: 20px;
            border-radius: 20px;
        }
        
        .detail-item {
            text-align: center;
        }
        
        .detail-value {
            font-size: 1.4rem;
           margin-bottom: 15px;
        }
        
        .detail-label {
            font-size: 1.1rem;
            opacity: 0.85;
        }
        
        .haibao-forecast {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding: 15px 0;
            border-top: 1px solid rgba(255,255,255,0.2);
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        
        .forecast-item {
            text-align: center;
            flex: 1;
        }
        
        .forecast-day {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        
        .forecast-icon img {
            width: 50px;
            height: 50px;
            margin: 5px 0;
        }
        
        .forecast-temp {
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .haibao-footer {
            margin-top: auto;
            text-align: center;
            padding-top: 20px;
        }
        
        .qrcode-container {
            display: inline-block;
           
            padding: 10px;
          
        }
        
        .qrcode-container img {
            width: 120px;
            height: 120px;
            display: block;
        }
        
        .slogan {
            font-size: 1.4rem;
            font-weight: bold;
            margin-top: 10px;
            letter-spacing: 1px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .ad-text {
            font-size: 1.1rem;
            margin-top: 5px;
            opacity: 0.9;
            font-style: italic;
        }
        
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
            color: white;
        }
        
        .loading i {
            font-size: 3rem;
            margin-bottom: 15px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            100% { transform: rotate(360deg); }
        }
        
        @media (max-width: 500px) {
            .btn a {
                padding: 5px 0;
                font-size: 1rem;
            }
            
            .today-title {
                font-size: 1.5rem;
                padding: 15px;
            }
            
            .weather-icon {
                width: 60px;
                height: 60px;
            }
            
            .weather-icon img {
                width: 50px;
                height: 50px;
            }
            
            #showHaibaoBox {
                width: 95vw;
                height: 135vw;
            }
        }
        .popup_ads_box {
            width: 90%;
            max-width: 450px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
            z-index: 10;
            animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        @keyframes popIn {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        /* 标题样式 */
        .popup_ads_box h5 {
            text-align: center;
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }
        
        .popup_ads_box h5::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff9966, #ff5e62);
            border-radius: 3px;
        }
        
        /* 今日天气标题 */
        .today-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 10px 0 25px;
            background: linear-gradient(135deg, #ff9966, #ff5e62);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            letter-spacing: 1px;
        }
        
        /* 天气信息容器 */
        .weather-info {
            background: linear-gradient(to right, #bfdfff, #b8dbff);
            border-radius: 15px;
        }
        
        /* 白天/夜间天气样式 */
        .day-night-section {
           display: flex;
           align-items: center;
           margin-bottom: 10px;
           padding: 12px 15px;
           background: white;
           border-radius: 12px;
        }
        
        .day-night-section:hover {
            transform: translateY(-3px);
        }
        
        .weather-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            border-radius: 50%;
            color: white;
            font-size: 24px;
        }
        
        .night .weather-icon {
            
        }
        
        .weather-details {
            flex: 1;
        }
        
        .time-label {
            font-weight: 700;
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 5px;
        }
        
        .weather-desc {
            font-size: 0.95rem;
            color: #666;
            font-weight: 500;
            line-height: 1.5;
        }
        
        .highlight {
            color: #ff5e62;
            font-weight: 600;
        }
        
        /* 日出日落样式 */
        .sun-section {
            display: flex;
            justify-content: space-around;
            align-items: center;
           background: linear-gradient(to right, #bfdfff, #b8dbff);
            border-radius: 15px;
            padding: 15px;
            margin-top: 25px;
        }
        
        .sun-item {
            text-align: center;
            flex: 1;
        }
        
        .sun-icon {
            font-size: 2.5rem;
            margin-bottom: 8px;
            color: #FFD700;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
        }
        
        .sunset .sun-icon {
            color: #FF8C00;
        }
        
        .sun-title {
            font-weight: 600;
            color: #555;
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .sun-time {
            font-weight: 700;
            color: #333;
            font-size: 1.1rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 480px) {
            .popup_ads_box {
                padding: 20px 15px;
            }
            
            .today-title {
                font-size: 1.6rem;
            }
            
            .weather-info {
                padding: 15px;
            }
        }
.index-scroll-tianqi {
    padding: 5px 5px 5px 5px;
    margin-top: 0em;
    background: #fff;
    position: relative;
    margin: 2px 5px -5px 5px;
    border-radius: 3px;
}
.index-scroll-tianqi ul {
    margin-left: 2px;
    margin-top: -2px;
    height: 1.8em;
    overflow: hidden;
    padding: 0px 10px 0px 100px;
}

.index-scroll-tianqi ul li img {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
}
.index-scroll-tianqi ul li h {
    margin-left: 10px;
    color: #ffffff;
    background-color: #1fa977;
    border-radius: 5px;
    padding: 1px 5px;
}


.index_gezi_title_icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(source/plugin/laobing_tom_htm/images/gezimoban2.png)no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
    vertical-align: -5px;
    margin-right: 0.3em;
}

.index-scroll-tianqi ul li {
    line-height: 1.8em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#ls-warning {
    position: absolute;
    top: 140px;
    right: 0;
    text-align: right;
    line-height: 0;
    z-index: 2;
    position: fixed;
}
 #ls-warning .warning {
    padding: 0 6px;
    font-size: 12px;
    color: #fff;
    height: 24px;
    line-height: 24px;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, .3);
    text-align: left;
    overflow: hidden;
    float: right;
    clear: both;
}
 #ls-warning .warning.level02:before {
    background-color: #f5d271;
}
#ls-warning .warning:before {
    content: "";
    display: inline-block;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 3px;
}
.ct-pop-window .ct-window .title {
    height: 58px;
    line-height: 58px;
    font-size: 20px;
    color: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}


.ct-pop-window .ct-window .txt-info {
    font-size: 14px;
    color: #434343;
    line-height: 22px;
    padding: 10px 20px 20px;
    text-align: left;
}
.ct-pop-window .ct-window .btn-close {
    width: 200px;
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    font-size: 16px;
    color: #fff;
    border: none;
}
.ct-pop-window.show .ct-window {
    visibility: visible;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    margin-top: -5%;
}
.ct-pop-window.hide .ct-window {
    visibility: hidden;
}
.ct-pop-window .ct-window {
    border-radius: 8px;
    background: #fff;
    padding-bottom: 20px;
    position: fixed;
    width: 290px;
    left: 50%;
    top: 50%;
    margin-left: -145px;
    z-index: 1000;
    visibility: hidden;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
    opacity: 0;
    -webkit-transition: all .3s ease 50ms;
    transition: all .3s ease 50ms;
}
.ct-pop-window {
    text-align: center;
}