* {
    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-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    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: 15px "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif !important;
    background: #fffbf5;
}

.w1200 {
    width: 1200px;
    margin: 50px auto;
}

.w588 {
    width: 588px;
}

.w100 {
    width: 100%;
}

.w524 {
    width: 524px;
}

.cardItem {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0px 0px 10px #fdf6ed;
    padding: 20px 25px;
    box-sizing: border-box;
}

.cardItem:not(:last-of-type) {
    margin-bottom: 30px;
}

.cardTitle {
    width: 100%;
    height: 48px;
    line-height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cardTitle-1 {
    background: url(../images/title-BG.png) no-repeat;
    background-size: 100% 100%;
}

.cardTitle-2 {
    background: url(../images/title-BG1.png) no-repeat;
    background-size: 100% 100%;
}

.cardTitle-3 {
    background: url(../images/title-BG2.png) no-repeat;
    background-size: 100% 100%;
}

.cardTitle span {
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    margin-left: 45px;
}

.cardTitle a {
    color: #ff9638;
}

.listItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listItem:not(:last-of-type) {
    border-bottom: 1px dashed #d9d9d9;
    margin-bottom: 18px;
    padding-bottom: 18px;
}

.listContent {
    width: calc(100% - 120px);
    color: #121212;
    padding-left: 15px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.listContent::before {
    content: "";
    width: 6px;
    height: 9px;
    background: url(../images/content-icon.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    margin-top: -4.5px;
    left: 0px;
}

.listDate {
    color: #b2b2b2;
}

@media screen and (max-width: 768px) {
    .w1200 {
        width: calc(100% - 30px);
    }

    .w588,
    .w524 {
        width: 100%;
    }

    .cardTitle span {
        font-size: 20px;
        margin-left: 20px;
    }

    .list {
        margin-bottom: 20px;
    }
}