@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    font-weight: normal;
    border: none;
    list-style: none;
    text-decoration: none;
}

.modulepic {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.modulepic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 1s;
    object-fit: cover;
}
.modulepic div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .8s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
a:hover .modulepic img {
    transform: scale(1.05);
}

a:hover .modulepic div {
    transform: scale(1.1);
}


/* 清除浮动 */
.moduleClear:after {
    content: "";
    display: block !important;
    clear: both;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* 固定定位底部   常用于版权组件  */
.modulefixedbottom {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     width: 100%;
     z-index: 999;
}

html,
body {
    color: #333;
    font-family: "微软雅黑";
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
    font-size: 16px;
}

/* 搜索结果页 翻页条 */
.searchpage .secpag{display: flex;flex-wrap: wrap;justify-content: center;font-size: 16px;line-height: 26px;color: #333;margin-top:30px;}
.searchpage .secpag a{color: #333;/* border:1px solid rgba(6,131,88,1.0); *//* padding:0 5px; */}
.searchpage .secpag a:hover{/* background: rgba(6,131,88,1.0); *//* color:#fff; */}
@media screen and (max-width:1024px){
   .searchpage .secpag{font-size:14px;line-height:22px;} 
}