@charset "UTF-8";
/**
*  @name: 新版门户--首页
*  @version: 3.0
*  @author: wqg
*  @date: 2021-01-08
*/

body {
    background: #fff;
}

.main-box {
    min-height: calc(100vh - 236px);
    padding: 115px 0 0;
}

/*搜素*/
.service-search-box {
    margin-bottom: 10px;
    overflow: hidden;
}

.service-search-group {
    position: relative;
    height: 40px;
    margin-left: 20px;
}

.service-search {
    width: 240px;
    height: 40px;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid #003c88;
    outline: none;
    border-radius: 20px;
    font-size: 16px;
    color: #333;
}

.service-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 998;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.service-search-btn svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px;
    fill: #003c88;
}

.btn-refresh {
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.btn-refresh svg {
    display: block;
    width: 28px;
    height: 28px;
    margin: 6px;
    fill: #003c88;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-refresh:active svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*栏目标题*/
.meta-title {
    position: relative;
    height: 28px;
    padding-left: 15px;
    margin-bottom: 24px;
}

.meta-title:before {
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
    content: "";
    width: 3px;
    height: 24px;
    background: #003c88;
}

.meta-title h3 {
    color: #333;
    font-weight: bold;
}

/*卡片*/
.items-box {
    margin-bottom: 50px;
    border: 1px solid #e5e5e5;
}

.items-box ul {
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -12px;
}

.items-box ul li {
    float: left;
    width: 220px;
    height: 180px;
    margin: 0 12px 12px;
    box-sizing: border-box;
}

.items-box ul li a {
    display: block;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    overflow: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.items-box ul li a:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

.items-box ul li span {
    display: block;
}

.items-box ul li span:first-child {
    width: 52px;
    height: 52px;
    margin: 30px auto 24px;
}

.items-box ul li span:first-child img {
    display: block;
    width: 52px;
    height: 52px;
}

.items-box ul li span:first-child svg {
    display: block;
    width: 48px;
    height: 48px;
    margin: 2px;
    fill: #003c88;
}

.items-box ul li span:last-child {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    text-align: center;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*缺省图*/
.default-img {
    width: 356px;
    margin: 0 auto 50px;
}

.default-img span {
    display: block;
}

.default-img span:first-child {
    width: 356px;
    height: 356px;
}

.default-img span:first-child img {
    display: block;
    width: 356px;
    height: 356px;
}

.default-img span:last-child {
    height: 24px;
    font-size: 16px;
    color: #666;
    text-align: center;
    line-height: 24px;
}