/* *
* DESCRIPTION   天极图片站首页样式文件
* AUTHOR 杜玲玲
* TIME 2023-06-15
 */
 body{
    background: url("../images/bgpic.png") center top no-repeat;
    background-size: 100% 867px;
 }
 /* 头部 */
.header{
    width: 100%;
    line-height: 42px;
}
.header .header-top{
    background: #fff;
    height: 42px;
}
.header .header-top li{
    margin-right: 20px;
}
.header .header-top li a{
    color: #909090;
}
.header .header-main{
    width: 100%;
    height: 275px;
   
}
.header-main .nav{
    padding-top: 20px;
} 
.header-main .nav ul{
    width: 616px;
    margin-left: 109px;
    display: flex;
    justify-content: space-between;
}
.header-main .nav ul li{
    position: relative;
}
.header-main .nav ul li a{
    font-size: 18px;
    color: #484848;
}
.header-main .nav ul li a:hover,.header-main .nav ul li.active a{
    color: #35b6ff;
    font-weight: bold;
}
.header-main .nav ul li a:hover::after,.header-main .nav ul li.active a::after{
    content: '';
    width: 23px;
    height: 4px;
    border-radius: 5px;
    background: -webkit-linear-gradient(left,#43b4ff,#5a8eff);
    background: -moz-linear-gradient(left,#43b4ff,#5a8eff);
    background: -o-linear-gradient(left,#43b4ff,#5a8eff);
    background: -ms-linear-gradient(left,#43b4ff,#5a8eff);
    background: linear-gradient(left,#43b4ff,#5a8eff);
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -11px;
}
.searchBox{
    width: 798px;
    height: 48px;
    margin: 0 auto;
    background: #fff;
    margin-top: 50px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px 5px rgb(212,236,254,0.6);
    overflow: hidden;
} 
.searchBox .searchIcon{
    width: 18px;
    height: 18px;
    display: block;
    background-position: 0 0;
    margin-top: 15px;
    margin-left: 20px;
}
.searchBox .searchText{
    height: 48px;
    width: 630px;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 16px;
    color: #bfbfbf;
}
.searchBox .search{
    width: 105px;
    height: 40px;
    background: -webkit-linear-gradient(left,#41b9ff,#5b8bff);
    background: -moz-linear-gradient(left,#41b9ff,#5b8bff);
    background: -o-linear-gradient(left,#41b9ff,#5b8bff);
    background: -ms-linear-gradient(left,#41b9ff,#5b8bff);
    background: linear-gradient(left,#41b9ff,#5b8bff);
    border-radius: 20px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 5px;
    text-indent: 5px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    margin: 4px 4px 4px 0px;
}
.searchBox .search:hover{
    background: -webkit-linear-gradient(left,#5b8bff,#41b9ff);
    background: -moz-linear-gradient(left,#5b8bff,#41b9ff);
    background: -o-linear-gradient(left,#5b8bff,#41b9ff);
    background: -ms-linear-gradient(left,#5b8bff,#41b9ff);
    background: linear-gradient(left,#5b8bff,#41b9ff);
}
.header-main .hotSearch{
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 14px;
    margin-top: 20px;
}
.header-main .hotSearch a{
    margin-left: 25px;
}
/* 点击搜索框，隐藏placeholder */
input.searchText:focus::-moz-placeholder {
    color: #fff;
}

input.searchText:focus::-webkit-input-placeholder {
    color: #fff;
}
/* 板块一 */
.picList1{
    width: 100%;
    height: 100%;
}
.picList1 ul{
    display: flex;
    justify-content: space-between;
}
.picList1 ul li{
    width: 215px;
    height: 323px;
    border-radius: 5px;
    position: relative;
    transition: transform .3s ease-in-out,translateY .3s ease-in-out,box-shadow .3s ease-in-out;
}
.picList1 ul li a img{
    width: 215px;
    border-radius: 5px;
}
.picList1 ul li a p{
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0px;
    border-radius: 0px 0px 5px 5px;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}
/* 广告1 */
.advertisement{
    width: 100%;
    height: 100%;
    margin-top: 50px;
}
/* 热门推荐图片轮播 */
.picSwiper{
    width: 100%;
    height: 100%;
    margin-top: 50px;
}
.picSwiper .title li{
    font-size: 22px;
    color: #666;
    margin-right: 40px;
    cursor: pointer;
}
.picSwiper .title li:hover,.picSwiper .title li.active{
    color: #35b6ff;
    font-weight: bold;
}
.picSwiper .ListWrap {
    margin-top: 25px;
    position: relative;
}
.picSwiper .ListWrap .swiper ul{
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
}
.picSwiper .ListWrap ul li{
    width: 215px;
    text-align: center;
    float: left;
}
/* .picSwiper .ListWrap ul li img:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(102,102,102,0.4);
}
.picSwiper .ListWrap ul li img{
    width: 215px;
    height: 288px;
    border-radius: 5px;
    transition: transform .3s ease-in-out,translateY .3s ease-in-out,box-shadow .3s ease-in-out;
} */
.picSwiper .ListWrap ul li p{
    font-size: 14px;
    color: #666;
    line-height: 14px;
    margin-top: 10px;
}
.picSwiper .ListWrap .swiper{
    width: 100%;
    height: 100%;
    position: static;
    display: none;
}
.picSwiper .ListWrap .swiper-button-prev{
    width: 35px;
    height: 35px;
    display: block;
    background-position: -21px 0;
}
.picSwiper .ListWrap .swiper-button-next{
    width: 35px;
    height: 35px;
    display: block;
    background-position: -60px 0;
}
.picSwiper .ListWrap .swiper-button-prev:hover{
    background-position: -138px 0;
}
.picSwiper .ListWrap .swiper-button-next:hover{
    background-position: -100px 0;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content: '' !important;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    content: '' !important;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: -40px !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    right: -40px !important;
}
a.picBox{
    width: 215px;
    height: 323px;
    display: block;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    transition: transform .3s ease-in-out,translateY .3s ease-in-out,box-shadow .3s ease-in-out;
}
a.picBox:hover{
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(102,102,102,0.4);
}
a.picBox img:hover{
    transform: scale(1.1);
}
a.picBox img{
    width: 215px;
    border-radius: 5px;
    transition: all 1s;
}
.picName{
    font-size: 14px;
    color: #666;
    line-height: 14px;
    margin-top: 10px;
    width: 215px;
    overflow: hidden;
    line-height: 22px;
    white-space: nowrap;
    display: block;
}
/* 热门分类 */
.indexIcon{
    background: url("../images/indexicon.png") no-repeat;
}
.hotGategory{
    width: 100%;
    height: 100%;
    margin-top: 60px;
}
.hotGategory .layout{
    height: 142px;
    box-shadow: 0px 0px 10px 5px #f1f7ff;
    border-radius: 30px 0px 0px 0px;
}
.hotGategory .title{
    width: 50px;
    height: 117px;
    background: linear-gradient(top,#5a8dff,#40baff);
    background: -webkit-linear-gradient(top,#5a8dff,#40baff);
    background: -moz-linear-gradient(top,#5a8dff,#40baff);
    background: -m-linear-gradient(top,#5a8dff,#40baff);
    background: -o-linear-gradient(top,#5a8dff,#40baff);
    text-align: center;
    font-size: 18px;
    color: #fff;
    line-height: 24px;
    font-weight: bold;
    padding-top: 25px;
    border-radius: 30px 0px 0px 0px;
}
.hotGategory .floatR{
    width: 1059px;
    height: 140px;
    border: 1px solid #e1eeff;
    border-left: none;
    padding: 0px 45px;
}
.hotGategory .floatR ul{
    margin-top: 23px;
    display: flex;
    justify-content: space-between;
}
.hotGategory .floatR ul li{
    width: 210px;
    text-align: center;
}
.hotGategory .floatR ul li p span{
    font-size: 16px;
    color: #303030;
    font-weight: bold;
    vertical-align: middle;
}
.hotGategory .floatR ul li p i{
    margin-right: 8px;
}
.hotGategory .floatR ul li span.gategory{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}
.hotGategory .floatR ul li span.gategory a{
    line-height: 28px;
    min-width: 56px;
}
.hotGategory .floatR ul li p .mn{
    width: 31px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    background-position: 0 0;
}
.hotGategory .floatR ul li p .ecy{
    width: 23px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    background-position: -34px 0;
}
.hotGategory .floatR ul li p .kt{
    width: 29px;
    height: 29px;
    display: inline-block;
    vertical-align: middle;
    background-position: -63px 0;
}
.hotGategory .floatR ul li p .fj{
    width: 34px;
    height: 29px;
    display: inline-block;
    vertical-align: middle;
    background-position: -98px 0;
}
.hotGategory .floatR ul li p .dm{
    width: 30px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    background-position: -137px 0;
}
.hotGategory .floatR ul li p .qt {
    width: 29px;
    height: 29px;
    display: inline-block;
    vertical-align: middle;
    background-position: -184px 0;
}
.flPicBox{
    margin-top: 55px;
}
.flPicBox .title span span{
    font-size: 28px;
    color: #434343;
    font-weight: bold;
    vertical-align: middle;
}
.flPicBox .title span i{
    margin-right: 10px;
}
.flPicBox .title ul{
    margin-left: 55px;
}
.flPicBox .title ul li{
    width: 115px;
    height: 41px;
    text-align: center;
    float: left;
    background: #f5f5f5;
    border-radius: 20px;
    line-height: 41px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #8b8b8b;
}
.flPicBox .title ul li a{
    width: 115px;
    height: 41px;
    font-size: 16px;
    color: #8b8b8b;
    display: block;
}
.flPicBox .title .lookMore{
    font-size: 14px;
    color: #8b8b8b;
    line-height: 41px;
}
.flPicBox .title .lookMore:hover{
    color: #35b6ff !important;
}
.flPicBox .title .lookMore i{
    width: 7px;
    height: 12px;
    background-position: -187px 0;
    display: inline-block;
    margin-top: 2px;
    margin-left: 8px;
}
.flPicBox .title .lookMore:hover i{
    background-position: -177px 0;
}
.flPicBox .pic_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flPicBox .pic_list li{
    text-align: center;
    margin-top: 30px;
}
/* 美女图片 */
.flPicBox .title .bigMn{
    width: 42px;
    height: 41px;
    display: inline-block;
    background-position: 0 -39px;
    vertical-align: middle;
}
.mnPic .title ul li:hover{
    background: linear-gradient(left,#fff3f7,#ffdce9);
    background: -webkit-linear-gradient(left,#fff3f7,#ffdce9);
    background: -moz-linear-gradient(left,#fff3f7,#ffdce9);
    background: -m-linear-gradient(left,#fff3f7,#ffdce9);
    background: -o-linear-gradient(left,#fff3f7,#ffdce9);
}
.mnPic .title ul li.active {
    background: linear-gradient(left,#fff3f7,#ffdce9);
    background: -webkit-linear-gradient(left,#fff3f7,#ffdce9);
    background: -moz-linear-gradient(left,#fff3f7,#ffdce9);
    background: -m-linear-gradient(left,#fff3f7,#ffdce9);
    background: -o-linear-gradient(left,#fff3f7,#ffdce9);
    font-size: 16px;
    font-weight: bold;
    color: #ff5591;
}
.mnPic .title ul li:hover a{
    font-size: 16px;
    font-weight: bold;
    color: #ff5591 !important;
}
/* 漫画图片 */
.flPicBox .title .bigMh{
    width: 44px;
    height: 41px;
    display: inline-block;
    background-position: -48px -39px;
    vertical-align: middle;
}
.mhPic .title ul li:hover{
    background: linear-gradient(left,#fffaed,#ffecbf);
    background: -webkit-linear-gradient(left,#fffaed,#ffecbf);
    background: -moz-linear-gradient(left,#fffaed,#ffecbf);
    background: -m-linear-gradient(left,#fffaed,#ffecbf);
    background: -o-linear-gradient(left,#fffaed,#ffecbf);
}
.mhPic .title ul li.active{
    background: linear-gradient(left,#fffaed,#ffecbf);
    background: -webkit-linear-gradient(left,#fffaed,#ffecbf);
    background: -moz-linear-gradient(left,#fffaed,#ffecbf);
    background: -m-linear-gradient(left,#fffaed,#ffecbf);
    background: -o-linear-gradient(left,#fffaed,#ffecbf);
    font-size: 16px;
    font-weight: bold;
    color: #fab32c;
}
.mhPic .title ul li:hover a{
    font-size: 16px;
    font-weight: bold;
    color: #fab32c !important;
}
/* 二次元图片 */
.flPicBox .title .bigecy{
    width: 31px;
    height: 41px;
    display: inline-block;
    background-position: -101px -39px;
    vertical-align: middle;
}
.ecyPic .title ul li:hover{
    background: linear-gradient(left,#f7f0ff,#e9d8ff);
    background: -webkit-linear-gradient(left,#f7f0ff,#e9d8ff);
    background: -moz-linear-gradient(left,#f7f0ff,#e9d8ff);
    background: -m-linear-gradient(left,#f7f0ff,#e9d8ff);
    background: -o-linear-gradient(left,#f7f0ff,#e9d8ff);
}
.ecyPic .title ul li.active{
    background: linear-gradient(left,#f7f0ff,#e9d8ff);
    background: -webkit-linear-gradient(left,#f7f0ff,#e9d8ff);
    background: -moz-linear-gradient(left,#f7f0ff,#e9d8ff);
    background: -m-linear-gradient(left,#f7f0ff,#e9d8ff);
    background: -o-linear-gradient(left,#f7f0ff,#e9d8ff);
    font-size: 16px;
    font-weight: bold;
    color: #8665ff;
}
.ecyPic .title ul li:hover a{
    font-size: 16px;
    font-weight: bold;
    color: #8665ff !important;
}
/* 风景图片 */
.flPicBox .title .bigfj{
    width: 47px;
    height: 40px;
    display: inline-block;
    background-position: -137px -39px;
    vertical-align: middle;
}
.fjPic .title ul li:hover{
    background: linear-gradient(left,#eafcfc,#cefafa);
    background: -webkit-linear-gradient(left,#eafcfc,#cefafa);
    background: -moz-linear-gradient(left,#eafcfc,#cefafa);
    background: -m-linear-gradient(left,#eafcfc,#cefafa);
    background: -o-linear-gradient(left,#eafcfc,#cefafa);
}
.fjPic .title ul li.active{
    background: linear-gradient(left,#eafcfc,#cefafa);
    background: -webkit-linear-gradient(left,#eafcfc,#cefafa);
    background: -moz-linear-gradient(left,#eafcfc,#cefafa);
    background: -m-linear-gradient(left,#eafcfc,#cefafa);
    background: -o-linear-gradient(left,#eafcfc,#cefafa);
    font-size: 16px;
    font-weight: bold;
    color: #44dad8;
}
.fjPic .title ul li:hover a{
    font-size: 16px;
    font-weight: bold;
    color: #44dad8 !important;
}
.fjPic .pic_list li a.picBox{
    height: auto;
    width: 275px;
}
.fjPic .pic_list li a.picBox img {
    width: 275px;
}
.fjPic .pic_list li a.picName {
    width: 275px;
}
/* 尾部 */
.footer{
    margin-top: 80px;
}
/* 修改漫画板块图片高度 */
.mhPic.flPicBox ul li .picBox {
    max-height: 323px;
    height: auto;
}
/* 吸顶头部 */
.xdheader{
    width: 100%;
    height: 58px;
    box-shadow: 0 10px 15px -10px #e7e7e9;
    background: #fff;
    line-height: 58px;
    position: relative;
    display: none;
    position: sticky;
    z-index: 2;
}
.xdheader.fixed{
    position: fixed;
    top: 0;
    display: block;
}
.xdheader .logo{
    margin-top: 10px;
}
.xdheader ul.xdlist{
    margin-left: 52px;
}
.xdheader ul.xdlist li{
    margin-right: 48px;
}
.xdheader ul.xdlist li a{
    font-size: 18px;
    color: #484848;
}
.xdheader ul.xdlist li a:hover{
    font-weight: bold;
}
.xdheader ul.xdlist li.more{
    cursor: pointer;
    margin-top: 18px;
    padding: 10px 10px 18px 10px;
}
.xdheader ul.xdlist li.more span{
    width: 17px;
    height: 3px;
    background-position: -176px -15px;
    display: block;
}
.xdheader ul.xdlist li.more:hover span{
    background-position: -176px -21px;
}
.xdsearchBox{
    width: 402px;
    height: 42px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #80d1ff;
    overflow: hidden;
    margin-top: 7px;
} 
.xdsearchBox .xdsearchIcon{
    width: 18px;
    height: 18px;
    display: block;
    background-position: 0 0;
    margin-top: 12px;
    margin-left: 20px;
}
.xdsearchBox .xdsearchText{
    height: 42px;
    width: 250px;
    margin-left: 5px;
    padding-left: 10px;
    font-size: 16px;
    color: #bfbfbf;
}
.xdsearchBox .xdsearch{
    width: 95px;
    height: 36px;
    background: -webkit-linear-gradient(left,#41b9ff,#5b8bff);
    background: -moz-linear-gradient(left,#41b9ff,#5b8bff);
    background: -o-linear-gradient(left,#41b9ff,#5b8bff);
    background: -ms-linear-gradient(left,#41b9ff,#5b8bff);
    background: linear-gradient(left,#41b9ff,#5b8bff);
    border-radius: 20px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 5px;
    text-indent: 5px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    margin: 3px 3px 3px 0px;
}
.xdsearchBox .xdsearch:hover{
    background: -webkit-linear-gradient(left,#5b8bff,#41b9ff);
    background: -moz-linear-gradient(left,#5b8bff,#41b9ff);
    background: -o-linear-gradient(left,#5b8bff,#41b9ff);
    background: -ms-linear-gradient(left,#5b8bff,#41b9ff);
    background: linear-gradient(left,#5b8bff,#41b9ff);
}
.xdheader_fc{
    width: 710px;
    height: 112px;
    padding: 10px 20px 20px 20px;
    background: #fff;
    position: absolute;
    top: 48px;
    left: 50%;
    margin-left: -375px;
    box-shadow: 0px 0px 10px 5px #edeef0;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    display: none;
}
.xdheader_fc li{
    width: 170px;
    height: 46px;
    background: #f6f6f6;
    line-height: 46px;
    text-align: center;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 0px !important;
}
.xdheader_fc li a{
    font-size: 16px;
    color: #484848;
}
.xdheader_fc li a:hover{
    color: #484848 !important;
    font-weight: 500 !important;
}
.xdheader_fc li:hover{
    background: linear-gradient(left,#e3f5ff,#e7eeff);
    background: -webkit-linear-gradient(left,#e3f5ff,#e7eeff);
    background: -moz-linear-gradient(left,#e3f5ff,#e7eeff);
    background: -ms-linear-gradient(left,#e3f5ff,#e7eeff);
    background: -o-linear-gradient(left,#e3f5ff,#e7eeff);
}