* {
    margin: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

a {
    text-decoration: none;
}

img {
    vertical-align: middle;
}

ol,
ul {
    list-style: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
input,
select {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
}

.f-weight {
    font-weight: 600;
}

.t-align {
    text-align: center;
}

.f-style {
    font-style: italic;
}

.t-overflow {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.t-overflow-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.b-sizing {
    box-sizing: border-box;
}

.d-flex {
    display: flex;
}

.j-c-center {
    justify-content: center;
}

.j-c-spacebetween {
    justify-content: space-between;
}

.j-c-spacearound {
    justify-content: space-around;
}

.j-c-flexstart {
    justify-content: flex-start;
}

.j-c-flexend {
    justify-content: flex-end;
}

.a-i-center {
    align-items: center;
}

.a-i-flexstart {
    align-items: flex-start;
}

.a-i-flexend {
    align-items: flex-end;
}

.f-d-column {
    flex-direction: column;
}

.f-w-wrap {
    flex-wrap: wrap;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
}

.c-pointer {
    cursor: pointer;
}

body {
    font: 16px "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif !important;
    background: #ebf5ff url(../images/headerTitle.png) no-repeat;
    background-size: 100% 704px;
    letter-spacing: 1px;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
    padding-top: 350px;
}

.w100 {
    width: 100%;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 3px 3px 5px 3px #dbe9ff;
    padding: 60px 30px 30px 30px;
    box-sizing: border-box;
    position: relative;

}

.card:not(:last-of-type) {
    margin-bottom: 140px;
}

.card:last-of-type {
    margin-bottom: 30px;
}

.contentTitle {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.listItem {
    width: 550px;
}

.listItem li {
    line-height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listContent {
    width: calc(100% - 80px);
    color: #121212;
    padding-left: 18px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.listContent::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #195dfb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    left: 0%;
}

.date {
    color: #707070;
}

@media screen and (max-width: 768px) {
    body {
        background-size: 100% 200px;
    }

    .w1200 {
        width: calc(100% - 30px);
        margin: 0 auto;
        padding-top: 150px;
    }

    .contentTitle img {
        height: 40px;
    }

    .listItem {
        width: 100%;
    }
}