@charset "utf-8";
/* 202408041450，阿明外加的样式，开始*/
/* hr-三色渐变-参考keep */
.hr-style-one{
	width: 100%;
	margin: 0 auto 10px;
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, #a6d180, #8196cb, #cf82af);
}
/* hr-两边弱化-中间是灰色 */
.hr-style-two{
    width: 100%;
	margin: 0 auto 10px;
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
/* hr-三色渐变-苹果色 */
.hr-style-three{
	width: 100%;
	margin: 0 auto 10px;
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, #1fa5ff, #de6edf, #fe852b);
}

/* hr-三色渐变-苹果色16 */
.hr-style-four{
	width: 100%;
	margin: 0 auto 10px;
	border: 0;
	height: 1px;
	background-image: linear-gradient(to left, #f09e3a, #4eabf2, #8d2c92);
}

/* hr-三色渐变-沙漠金 */
.hr-style-five{
	width: 100%;
	margin: 0 auto 10px;
	border: 0;
	height: 1px;
	background-image: linear-gradient(to left, #a45e3a, #bc7f59, #866554);
}

.browser-url{border-bottom:1px dashed #c71585;}/*加下划线*/
.hand{cursor:pointer;}/*鼠标悬浮变手型*/
.mgn-l{margin-left:20px;}/*外边距左侧20PX*/

/*为LOGO添加扫描特效，增加动态效果，提升网站的活气*/
.logo-scaning::before {
    content: "";
    position: absolute;
    width: 135px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);/*255 255 255*/
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: searchLights 1s ease-in-out infinite;
    animation: searchLights 1s ease-in-out infinite;
}

@-webkit-keyframes searchLights {
    0% { left: -90px; top: 0; }
    to { left: 90px; top: 0; }
}

/*读取分类的样式*/
.fenlei-zy{font-weight:bold;background:#fff;margin-bottom:15px;padding:12px;font-size:16px;}

/*字号弹窗提示*/
.modal {
    display: none;
    position: fixed;
    z-index: 4999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal-content {
    background-color: #efefef;
    margin: 5% auto auto;
    padding: 20px;
    border: 1px solid #888;
    width: 18%;
}

/*自定义超链接样式*/
a.yidi-ad{color:#df2201;text-decoration:none;margin-left:12%;font-size:14px;}
a.yidi-ad:hover{text-decoration:underline;font-size:16px;color:#5db1a6;}