﻿/*****/
.body {
    background-color: #f6fafe;
}

.position {
    padding-top: 60px;
    line-height: 60px;
    color: gray;
    background-color: #ffffff;
    border-bottom: solid 1px #ccc;
    margin-bottom: 30px;
}

.product-body {
    display: flex;
    justify-content: space-between;
    min-height: 750px;
}

    .product-body .product-list {
        width: 340px;
        background-color: white;
    }

        .product-body .product-list .product-item {
            line-height: 60px;
            padding-left: 40px;
            cursor: pointer;
        }

            .product-body .product-list .product-item:hover {
                background-color: #eaeefd;
                color: #2f54eb;
            }

        .product-body .product-list .product-item-active {
            border-left: solid 2px #2f53e9;
            background-color: #eaeefd;
            color: #2f53e9;
        }

    /***********/
    .product-body .product-info {
        width: 100%;
        margin-left: 30px;
        background-color: white;
        padding: 30px;
    }

        .product-body .product-info .title {
            font-weight: bold;
            font-size: 18px;
            text-align: center;
            margin-bottom:40px;
        }

        .product-body .product-info .summary {
            color: gray;
            background-color: #f5f5f5;
            line-height: 22px;
            font-size: 12px;
            text-indent: 25px;
            padding: 8px;
            margin-bottom: 20px;
            font-family: '宋体',Arial;
        }

        .product-body .product-info .description {
            line-height: 30px;
            font-size: 14px;
            text-indent: 30px;
            font-family: '宋体',Arial;
        }
