body {
    padding: 0;
    margin: 0;
}

#contents {
    width: 75%;
    margin: auto;
    /*padding-top: 50px;*/
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
}

.info {
    width: 48%;
    border: 1px solid #5693E8;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 3.5%;
    margin-bottom: 46px;
    cursor: pointer;
    position: relative;
}

.gygs_left {
    position: absolute;
    top: 0;
    left: 0;
}

.gygs_right {
    position: absolute;
    top: 18px;
    right: 30px;
}

.gygs_bt {
    position: absolute;
    bottom: 0;
    right: 0;
}

.info:hover {
    transform: scale(1.02);
}

.info:hover .brief {
    color: #337ab7 !important;
}

#contents .info:nth-child(2n) {
    margin-right: 0;
}

.info .title {
    text-align: center;
}

.info .title span {
    font-size: 28px;
    font-weight: bold;
    color: #2651C4;
}

.infoLine {
    width: 30px;
    height: 3px;
    background: #053B78;
    margin-top: 10px;
    margin-bottom: 26px;
}

.brief {
    font-size: 16px;
    color: #333;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 24px;
    height: 70px;
    margin-top: 14px;
    text-indent: 32px;
}

.gygs_download {
    width: 120px;
    margin: auto;
    padding: 12px 18px;
    font-size: 16px;
    color: #5693E8;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 44px;
    border: 1px solid #5693E8;
}

@media (max-width: 768px) {
    .info {
        width: 100%;
        margin-right: 0 !important;
    }
    .gygs_left{
        width: 70%;
    }
    .gygs_right{
        width: 25%;
        right: 10px;
        top: 15px;
    }
}