@font-face {
    font-family: "DingTalkJinBuTi";
    src: url("../../common/fonts/DingTalkJinBuTi.ttf") format("truetype");
}

html,body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "微软雅黑", sans-serif;
    background:url(../images/selfServiceCenterBackground.png) no-repeat;
    background-position: center;
    background-size: cover;
}
.container {
    display: flex;
    /*align-items: center;*/
    flex-direction: column;
    height: 100%;
}


.content {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content:center;
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}
.content .content-body{
    overflow-y: auto;
}
.header{
    height: 60px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.9);

}
.header > img {
    max-height: 44px;
}
.welcome{
    margin: 0 auto;
    max-width: 1072px;
}
.welcome-title {
    font-family: "DingTalkJinBuTi";
    font-weight: 400;
    font-size: 32px;
    line-height: 28px;
    text-align: center;
    color: rgba(0,0,0,1);

}

.welcome-title > span:nth-child(2) {
    background: linear-gradient(90deg, #165DFF 80.29%, #94BFFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-desc {
    margin: 16px 0 22px;
    font-family: DingTalkJinBuTi;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: rgba(78, 89, 105, 1);

}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 991px;
    margin: 0 auto;
    /*justify-content: center;*/
    /*gap: 20px;*/
}


.card {
    display: flex;
    flex-direction: column;
    /*gap: 12px;*/
    margin:10px 8.5px;
    background: #fff;
    border-radius: 8px;
    box-shadow:  0 4px 12px 0 rgba(0, 0, 0, 0.08);
    min-width: 270px;
    height: 138px;
    text-align: left;
    padding: 20px;
    /*transition: 0.3s ease;*/
    border: 1.6px solid transparent;
    position: relative;
    text-decoration: none;
    flex: 1;
}
.card-grid .max-length{
    max-width: 270px;
}
.card:hover {
    border: 1.6px solid #165DFF;
    cursor: pointer;
}
.card:hover .card-title {
    color: #165DFF;
}
.card:hover .hover-arrow {
    display: block;
}

.card > img {
    height: 50px;
    width: 50px;
}
.card > .hover-arrow {
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
}

.card .card-title {
    color: rgba(29, 33, 41, 1);
    font-family: "DingTalkJinBuTi";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin:12px 0;
}

.card .card-desc {
    color: #86909c;
    font-family: "Microsoft YaHei UI";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.footer {
    color: rgba(78, 89, 105, 1);
    opacity: 0.5;
    font-family: "Microsoft YaHei UI";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
    margin-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}