      /*.bannerwrap {*/
        /*    width: 100%;*/
        /*    height: 200px;*/
        /*    background: url(/static/site/img/index/price_01.jpg);*/
        /*    display: flex;*/
        /*    flex-direction: column;*/
        /*    align-items: center;*/
        /*}*/

        .bannerwrap .banner_title {
            font-size: 30px;
            color: #fff;
            padding-top: 65px;
            width: 1200px;
        }

        .bannerwrap .banner_subtitle {
            font-size: 16px;
            color: #fff;
            margin-top: 15px;
            width: 1200px;
        }

        .index-main {
            width: 1200px;
            margin: 0px auto;
            display: flex;
            justify-content: space-between;
            box-sizing: border-box;
            padding: 50px 0;
        }

        .index-main .main-left {
            width: 780px;
            display: flex;
            flex-direction: column;
        }

        .main-left h2 {
            border-bottom: solid 2px #00837e;
            padding-bottom: 8px;
            font-size: 24px;
            line-height: 1.2;
            font-weight: 700;
        }

        .main-left-content {
            display: flex;
            flex-direction: column;
        }

        .main-left-item {
            display: flex;
            /*align-items: center;*/
            padding-top: 20px;
            padding-bottom: 20px;
            border-top: 1px solid #e1e1e1;
        }

        .main-left-item:nth-child(1) {
            border-top: 0px solid #e1e1e1;
        }

        .main-left-item .left-item-content {
            width: 80%;
            padding-right: 20px;
        }

        .left-item-content a {
            font-size: 20px;
            margin-bottom: 10px;
            line-height: 1.4;
            display: flex;
            color: #000;
        }

        .left-item-content a:hover {
            color: #00837e;
        }

        .left-item-content p:nth-child(2) {
            font-size: 14px;
            line-height: 16px;
            margin-bottom: 15px;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            overflow: hidden;
            -webkit-box-orient: vertical;
            color: #666;
        }

        .left-item-content p:nth-child(3) {
            font-size: 12px;
            line-height: 1.2;
            color: #999;
            min-height: 1.2em;
        }

        .main-left-item .left-item-img {
            width: 20%;
            overflow: hidden;
            height: 75px;
            border: 1px solid #e1e1e1;
            display:flex;
            justify-content:center;
            align-items:center;
        }

        .main-left-item .left-item-img img {
            width: 100%;
            object-fit: cover;
            -webkit-transition: transform 0.2s ease-out;
            -o-transition: transform 0.2s ease-out;
            transition: transform 0.2s ease-out;
            cursor: pointer;
        }

        .main-left-item .left-item-img:hover img {
            -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
            -o-transform: scale(1.2);
            transform: scale(1.2);
        }

        .index-main .main-right {
            width: 390px;
            display: flex;
            flex-direction: column;
        }

        .main-right-bottom {
            display: flex;
            flex-direction: column;
            margin: 40px 0 20px;
            background-color: #fafafa;
        }

        .right-bottom-title {
            line-height: 1.2;
            padding-left: 15px;
            border-left: 5px solid #00837e;
            font-weight: 700;
            font-size: 18px;
            margin-top: 20px;
        }

        .main-right-bottom .bottom-item {
            display: flex;
            flex-direction: column;
            padding: 25px 0px;
            margin: 0 20px;
            border-bottom: 1px solid #e1e1e1;
        }

        .main-right-bottom .bottom-item:last-child {
            border-bottom: 0px solid #e1e1e1;
        }

        .bottom-item p:nth-child(1) {
            font-size: 16px;
            margin-bottom: 15px;
            line-height: 1.4;
            width: 62%;
            padding-left: 20px;
        }

        .bottom-item p:nth-child(2) {
            font-size: 14px;
            line-height: 16px;
            width: 62%;
            padding-left: 20px;
        }

        .main-right-title {
            display: flex;
            justify-content: space-between;
            border-bottom: 2px solid #00837e;
            padding-bottom: 8px;
        }

        .main-right-title h2 {
            font-size: 24px;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 0px;
        }

        .main-right-title a {
            color: #999999;
            font-size: 12px;
            display: flex;
            align-items: flex-end;
        }