@charset "utf-8";
body {
    background-color: transparent; /*  总体背景默认透明色，白色#fff黑色#000  */
}

article,
aside,
blockquote,
body,
button,
code,
dd,
details,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
html,
input,
legend,
li,
menu,
nav,
ol,
p,
pre,
section,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0
}

li,
ul {
    list-style: none
}

.art-content li,
.art-content ul {
    list-style: inherit
}

a {
    text-decoration: none
}


/*-----------------------以下三种广告可细调---------------------------*/


/*大横幅*/

.index-top-ad {
    overflow: hidden;
    margin: 1px auto 1px;
    padding: 1px 1px 1px;
    width: 100%;
    
}

.index-top-ad a img {
    z-index: 1;
    height: 70px !important;   /*大横幅电脑端高宽 */
}

 @media screen and (max-width:767px) {

        .index-top-ad  a,
        .index-top-ad a img {
            height: 60px !important; /* 大横幅手机端高度 */
        }
 }

.index-top-ad a:nth-child(3n+0) {
    margin: 0;
}

.index-top-ad div {
    float: inherit;
    margin-bottom: 5px;
    width: 100%;
}

.index-top-ad div a,
.index-top-ad div a img {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 70px;
}


/* 悬浮效果 */
.index-site-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #f7f8fa !important;
}




/*小横幅*/

    .index-kuake-ad a {
        position: relative;
        float: left;
        display: block;
        margin-right: 3px; /*两个小横幅间距*/
        margin-bottom: 1px; /*小横幅与文字广告之间距离*/
        
    }

    .index-kuake-ad a img {
        z-index: 1;
        width: 100%;
        height: 60px !important;    /*小横幅高*/
        
    }

    .index-kuake-ad a:nth-child(3n+0) {
        margin: 0;
        
    }

    .index-kuake-ad span a,
    .index-kuake-ad span a img {
        display: block;
        overflow: hidden;
        width: 49.83%; /*小横幅宽*/
        height: 61px;
        
    }

    .index-kuake-ad span a:nth-child(2),
    .index-kuake-ad span a:nth-child(2) img {
        margin-right: 0 !important;
        
    }
    
  @media screen and (max-width:1024px) {

        .index-kuake-ad span a,
        .index-kuake-ad span a img {
            width: 49.0%;
            height: 55px !important;   /*手机端小横幅高*/
        }
 }   

 @media screen and (max-width:800px) {

        .index-kuake-ad span a,
        .index-kuake-ad span a img {
            width: 49.5%;
            height: 55px !important;   /*手机端小横幅高*/
        }
 }

    @media screen and (max-width:767px) {

        .index-kuake-ad span a,
        .index-kuake-ad span a img {
            width: 100%;
            height: 55px !important;   /*手机端小横幅高*/
        }
 }
         

/* 全局统一：电脑端 所有广告字体大小（顶部+底部） */
.word-ad-row-list li,
.word-ad-row-list li span,
.index-site-list li,
.index-site-list li span {
    font-size: 15px !important;
}

/* 全局统一：手机端 所有广告字体大小（顶部+底部） */
@media screen and (max-width: 768px) {
    .word-ad-row-list li,
    .word-ad-row-list li span,
    .index-site-list li,
    .index-site-list li span {
        font-size: 14px !important;
    }
}

/* 顶部5个文字广告 - 电脑端正常一行5个 */
.word-ad-row-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    padding: 0 !important;
    margin: 0 0 6px 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.word-ad-row-list li {
    flex: 1 !important;
    text-align: center !important;
    line-height: 45px !important;
    height: 45px !important;
    border: 1px solid #efefef !important;
    margin: 0 2px !important;
    background: #fff !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}
.word-ad-row-list li a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* 手机端顶部：一行2个 两行4个 隐藏第5个 */
@media screen and (max-width: 768px) {
    .word-ad-row-list {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    .word-ad-row-list li {
        flex: 0 0 calc(50% - 3px) !important;
        margin: 0 !important;
        height: 38px !important;
        line-height: 38px !important;
    }
    .word-ad-row-list li:nth-child(5) {
        display: none !important;
    }
}

/* 悬浮放大 */
.index-site-list li,
.word-ad-row-list li {
    transition: all 0.2s ease !important;
    position: relative !important;
    z-index: 1 !important;
}
.index-site-list li:hover,
.word-ad-row-list li:hover {
    transform: scale(1.15) !important;
    z-index: 99 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    background: #fff7d2 !important;
}

.index-kuake-ad a {
    transition: all 0.2s ease !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    display: block !important;
}
.index-kuake-ad a:hover {
    transform: scale(1.08);
    z-index: 10;
    position: relative;
}

.index-top-ad a,
.index-top-ad img {
    transition: all 0.2s ease !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    display: block !important;
}
.index-top-ad a:hover {
    transform: scale(1.03);
    z-index: 10;
    position: relative;
}

.fire-gif {
    vertical-align: middle !important;
    border: none !important;
}
    

 /*文字广告电脑端*/

 .index-site-list li{width: 19.90%;}  /*文字广告宽度*/
 .index-card {margin-bottom: 10px;border-radius: 0px;border: 0px solid #eaeaea;}
 .index-site-list li{float: left;line-height: 2.6;height: 41.9px;text-align: center;border:1px #efefef solid;border-width: 1px 1px 0px 0px;}
 .index-site-list li a{font-size: 15px;height: 33px;overflow: hidden;}



  /*友情提示：各种数字自己试试调节，清除浏览器缓存和强制刷新看效果哈*/

/*文字手机端宽度*/
@media screen and (max-width: 1024px) {.index-site-list li{width: 19.88%;}}
@media screen and (max-width: 800px) {.index-site-list li{width: 19.7%;}}
@media screen and (max-width: 767px) {.index-site-list li{width: 49.5%;}}