/* 產品 */
.product-list {
    display: flex;
    align-items: center;
    justify-content: normal;
    flex-wrap: wrap;
}

.product {
    width: 23%;
    margin: 0 1% 20px 1%;
    position: relative;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-image a {
    all: unset;
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-title {
    width: 100%;
    bottom: 0px;
    line-height: 38px;
    position: absolute;
    background-color: #1cb8c8ad;
    text-align: center;
}

.product-title a:hover {
    background-color: #1cb8c8;
}

.product-title a {
    all: unset;
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
}

/* 方案 */
.project-list {
    display: flex;
    align-items: center;
    justify-content: normal;
    flex-wrap: wrap;
}

.project {
    width: 43%;
    margin: 0px 1% 20px 1%;
    background: rgba(230, 230, 230, 0.8);
    padding: 25px 25px;
    border-radius: 7px;
}

.project-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-title a {
    all: unset;
    color: #000;
    cursor: pointer;
}

.project-title a:hover {
    color: #1cb8c8;
}

.project-date {
    padding-top: 7px;
    font-size: 14px;
    line-height: 18px;
    color: #595757;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}