@charset "utf-8";

/* ========== 登录入口页面样式 ========== */

/* 主内容区域 */
.entry-bg {
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 18px;
    background: url(../images/entry-bg.png) no-repeat center center;
    background-size: 100% auto;
    height: 590px;
}

/* 单个入口卡片 */
.entry-card {
    width: calc(32% - 2px);
    margin-right: 2%;
    margin-bottom: 22px;
    background: #FFFFFF;
    box-shadow: 2px 5px 6px 0px rgba(181,211,239,0.3);
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* 每行第三个卡片去除右边距 */
.entry-card:nth-child(3n) {
    margin-right: 0;
}

.entry-card:hover {
    box-shadow: 2px 5px 6px 0px rgba(181,211,239,0.3);
    border-radius: 4px;
    border: 1px solid #016FFF;
    transform: translateY(-3px);
}

.entry-card a {
    display: block;
    padding: 22px 12px;
}

.entry-card a:after {
    content: "";
    display: block;
    clear: both;
}

/* 入口图标 */
.entry-icon {
    float: left;
    width: 78px;
    height: 78px;
}

.entry-icon img {
    width: 100%;
    height: 100%;
}

/* 入口信息 */
.entry-info {
    overflow: hidden;
    margin-top: 8px;
}

.entry-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    line-height: 28px;
    margin-bottom: 8px;
}

.entry-info p {
    font-size: 14px;
    color: #999999;
    line-height: 20px;
}

