family-score.page.css 1.55 KB
body,
html {
    background-color: #f0f0f0;
}

.score-detail-c {
    .cover-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000;
        opacity: 0.4;
    }

    .tab {
        height: 86px;
        border-bottom: solid 1px #e0e0e0;
        padding: 18px 0;
        background-color: #fff;
        position: relative;
        z-index: 1;

        .tab-item {
            width: 250px;
            height: 50px;
            line-height: 50px;
            float: left;
            text-align: center;
            font-size: 30px;
            color: #1a1a1a;
            border-right: solid 1px #e0e0e0;

            &:last-child {
                border-right: 0;
            }

            .list {
                display: none;
                width: 750px;
                text-align: left;
                padding-top: 18px;

                li {
                    line-height: 90px;
                    border-bottom: solid 1px #e0e0e0;
                    padding: 0 30px;
                    background-color: #fff;
                }

                li:last-child {
                    border-bottom: 0;
                }
            }
        }
    }

    .result {
        .result-item {
            height: 125px;
            line-height: 125px;
            padding: 0 34px;
            background-color: #fff;
            border-bottom: solid 1px #e0e0e0;

            &:last-child {
                border-bottom: 0;
            }
        }
    }
}