paddinga {
	text-decoration: none!important
}

.layer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	filter: alpha(opacity=50);
	opacity: .5;
	background: #000;
	z-index: 1000;
	display: none
}

#globalAd {
    top: 100px; /* 距离页面顶部50px */
	max-width: 400px;
	flex-basis: 100%;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .3);
	overflow: hidden;
	position: fixed;
	display: none;
	margin: 0 auto;
	z-index: 10001
}


#globalAd #hero-img {
	width: 100%;
	height: 100px;
	background: #007bff
}

#globalAd #profile-img {
	width: 80px;
	height: 80px;
	margin: -80px auto 0;
	border: 6px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(90, 90, 90, .3)
}

#globalAd #profile-img img {
	width: 100%;
	background: #fff;
	border-radius: 50%
}

#globalAd #content {
	text-align: center;
	width: 320px;
	margin: 0 auto;
	padding: 0 0 50px
}

#container #content h1 {
	font-size: 29px;
	font-weight: 500;
	margin: 50px 0 0
}

#globalAd #content p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: #666;
}

#globalAd #content a {
	color: #ccc;
	font-size: 14px;
	margin: 0 10px;
	transition: color .3s ease-in-out;
	-webkit-transition: color .3s ease-in-out
}

#globalAd #content a:hover {
	color: #007bff
}

#globalAd #content .btn {
	background: none repeat scroll 0 0 #1ba1e2;
	border: 0;
	border-radius: 2px;
	color: #fff!important;
	cursor: pointer;
	font-family: open sans, hiragino sans gb, microsoft yahei, wenquanyi micro hei, Arial, Verdana, Tahoma, sans-serif;
	font-size: 14px;
	padding: 6px 5%
}

#globalAd #content .btn:hover,
.yanshibtn:hover {
	background: none repeat scroll 0 0 #9b59b6;
	border: 0;
	border-radius: 2px;
	color: #fff!important;
	cursor: pointer;
	font-family: open sans, hiragino sans gb, microsoft yahei, wenquanyi micro hei, Arial, Verdana, Tahoma, sans-serif;
	font-size: 14px;
	padding: 8px 10%
}

    #float-btn {
/* 设置形状及阴影 */
width: 20px;
height: 20px;
border-radius: 50%;
background-color: white;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
/* 使img元素居中 */
display: flex;
align-items: center;
justify-content: center;
/* 设置按钮的位置 */
position: fixed;
left: 10px;
bottom: 400px;
z-index: 999;
/* 设置过渡属性 */
transition: width 0.5s, height 0.5s;
}
#float-btn:hover {
/* 鼠标悬停时 */
width: 50px;
height: 50px;
}
#float-btn:active {
/* 鼠标点击时 */
background-color: whitesmoke;
}


 .copy-text {
            font-weight: bold;
            color: red;
            text-decoration: underline;
            cursor: pointer;
            user-select: none;
            display: inline-block;
            margin: 20px;
        }
        .copy-text:hover {
            opacity: 0.8;
        }
        .tooltip {
            margin-top: 10px;
            padding: 8px 12px;
            border-radius: 4px;
            display: none;
        }
        .success {
            background-color: #dff0d8;
            color: #3c763d;
            display: inline-block;
        }
        
        
         .flash-text {
            font-size: 18px;
            font-weight: bold;
            color: #e63946; /* 红色突出显示 */
            animation: flash 1s infinite alternate; /* 闪动动画 */
        }
        
        /* 闪动动画定义 */
        @keyframes flash {
            0% {
                opacity: 1; /* 完全显示 */
                transform: scale(1); /* 原始大小 */
            }
            100% {
                opacity: 0.6; /* 半透明 */
                transform: scale(1.05); /* 轻微放大 */
            }
        }