@charset "UTF-8";
/**
*  @name: 第三代门户--专题更多
*  @version: 3.0
*  @author: wqg
*  @date: 2021-01-26
*/

body {
    background: #fff;
}

/*---------- banner ----------*/
.banner {
    width: 100%;
    height: 220px;
    padding-top: 65px;
    margin-bottom: 30px;
    background: #003c88;
}

.banner .container {
    height: 220px;
    padding: 0;
    background: url("../../images/onewebsitehandle/banner-bg01.png") no-repeat center/cover;
}

.banner h1 {
    padding-top: 50px;
    margin-bottom: 30px;
    font-size: 44px;
    color: #edc78e;
}

.banner p {
    font-size: 16px;
    color: #edc78e;
}

/*---------- 专题列表 ----------*/
.special-container {
    padding: 0;
}

.special-list-items {
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 46px;
}

.special-list-title {
    text-align: center;
    margin-bottom: 60px;
}

.special-list-title:before,
.special-list-title:after {
    display: inline-block;
    content: "";
    width: 140px;
    height: 2px;
    margin: 19px 0;
    vertical-align: middle;
    background: #edc78e;
}

.special-list-title h2 {
    display: inline-block;
    padding: 0 85px;
    vertical-align: middle;
    line-height: 40px;
}

.special-card-box {
    float: left;
    width: 25%;
    padding: 0 12px 24px;
    box-sizing: border-box;
}

.special-card {
    position: relative;
    width: 100%;
    height: 220px;
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.special-card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

.special-card:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: block;
    content: "";
    height: 4px;
    -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;
}

.special-card:hover:before {
    background: #edc78e;
}

.special-icon {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
}

.special-icon img,
.special-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #003c88;
}

.special-icon svg {
    width: 50px;
    height: 50px;
    margin: 5px;
}

.special-card h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
    text-align: center;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.special-card p {
    margin: 0;
    font-size: 16px;
    color: #999;
    text-align: center;
    line-height: 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}