.module-02-template-wrap {
    padding: 40px 20px;
    background: #f2f2f2;
}
.module-02-template-wrap .items {
    padding: 10px;
    background: #fff;
}
.module-02-template-wrap .items tr * {
    padding: 10px 15px;
    font-size: 18px;
}
.module-02-template-wrap .items tr:nth-child(even) td {
    background-color: #f2f2f2;
}
.module-02-template-wrap .items tr:nth-child(odd) td {
    background-color: #fff;
}
.module-02-template-wrap .content {
    height: 100%;
    margin-top: 10px;
}
.module-02-template-wrap .content > div {
    color: #fff;
    background: #1569ae;
    height: 100%;
    padding: 50px 20px;
}
.module-02-template-wrap .content > div ul li {
    list-style: none;
    position: relative;
    font-size: 18px;
}
.module-02-template-wrap .content > div ul li span{
    display: flex;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    justify-content: center;
    align-items: center;
}
.module-02-template-wrap .content > div ul li span::after {
    content: ' ';
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #1569ae;
}
@media (max-width:729px) {
    .module-02-template-wrap {
        padding: 10px 0;
        margin-bottom: 10px;
        
    }
    .module-02-template-wrap .content {
        height: auto;
    }
    .module-02-template-wrap h2 {
        text-align: center;
    }
}