.home-banner {
    position: relative;
    width: 100%;
}

    .home-banner ul {
        position: relative;
        margin: 0px;
        padding: 0px;
        height: 400px;
        width: 100%;
        overflow: hidden;
    }

    .home-banner li {
        display: none;
        position: absolute;
        inset: 0px;
        width: 100%;
    }

        .home-banner li img {
            display: block;
            max-width: 100%;
            height: 400px;
            margin: 0px auto;
        }

        .home-banner li.active {
            display: block;
        }

    .home-banner .dot {
        position: absolute;
        width: 500px;
        bottom: 15px;
        left: 50%;
        margin-left: -250px;
        text-align: center;
    }

        .home-banner .dot .item {
            display: inline-block;
            margin: 0px 5px;
            width: 30px;
            height: 4px;
            background: rgb(255, 255, 255);
            opacity: 0.2;
            cursor: pointer;
        }

            .home-banner .dot .item:hover {
                opacity: 0.4;
            }

            .home-banner .dot .item.active {
                opacity: 1;
            }

.home-entry {
    padding: 50px 0px;
    position: relative;
}

    .home-entry .item {
        float: left;
        position: relative;
        top: 0px;
        width: 255px;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px 0px;
        border-radius: 8px;
        overflow: hidden;
    }

        .home-entry .item + .item {
            margin-left: 5%;
        }

        .home-entry .item .banner {
            display: block;
            width: 100%;
            border-radius: 8px 8px 0px 0px;
        }

        .home-entry .item .content {
            padding: 30px 0px;
            text-align: center;
            background: rgb(255, 255, 255);
            border: 1px solid rgb(233, 233, 233);
            border-radius: 0px 0px 8px 8px;
        }

            .home-entry .item .content .title {
                font-size: 18px;
                color: rgb(51, 51, 51);
                font-weight: bold;
            }

            .home-entry .item .content .desc {
                font-size: 14px;
                color: #666666;
                margin-top: 10px;
            }

        .home-entry .item .hover {
            position: absolute;
            top: 100%;
            width: 100%;
            height: 100%;
            border-radius: 8px;
            background: linear-gradient(rgba(60, 215, 255, 0.9), rgba(40, 140, 240, 0.9));
            transition: all 0.5s ease 0s;
        }

            .home-entry .item .hover .h-title {
                font-size: 20px;
                line-height: 2;
                text-align: center;
                padding-top: 20px;
                color: rgb(255, 255, 255);
            }

            .home-entry .item .hover .h-desc {
                color: rgb(255, 255, 255);
                font-weight: 300;
                font-size: 14px;
                padding: 10px 0px 0px;
                text-align: center;
                line-height: 1.6;
            }

                .home-entry .item .hover .h-desc div {
                    margin-left: 10px;
                    margin-right: 10px;
                    text-align: left;
                }

.homeremarkdiv {
    margin-left: 10px;
    margin-right: 10px;
    text-align: left;
}

.home-entry .item .hover .h-btn {
    display: block;
    position: absolute;
    text-decoration: none;
    left: 50px;
    right: 50px;
    bottom: 40px;
    line-height: 40px;
    font-size: 18px;
    color: rgb(255, 255, 255);
    border-radius: 8px;
    border: 1px solid rgb(255, 255, 255);
    text-align: center;
}

    .home-entry .item .hover .h-btn:hover {
        background: rgb(255, 255, 255);
        color: rgb(68, 68, 68);
    }

.home-entry .item:hover .hover {
    top: 0px;
}

.home-solution {
    padding: 40px 0px;
}

    .home-solution.b-dark {
        background: rgb(239, 246, 250);
    }

    .home-solution .solution-title {
        text-align: center;
        font-size: 28px;
        color: rgb(51, 51, 51);
        font-weight: bold;
    }

    .home-solution .solution-desc {
        text-align: center;
        line-height: 1.6;
        width: 800px;
        margin: 20px auto 0px;
        font-size: 14px;
        color: rgb(102, 102, 102);
    }

.homesmalltitle {
    text-align: center;
    line-height: 1.6;
    width: 800px;
    margin: 20px auto 0px;
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.solution-list {
    margin-top: 50px;
}

.solution-item {
    float: left;
    position: relative;
    width: 24%;
    border-radius: 8px;
    border: 1px solid rgb(230, 230, 230);
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px 0px;
    margin: 6px;
}

.XXXsolution-item + .solution-item {
    margin-left: 2.666%;
}

.solution-item .title {
    font-size: 24px;
    line-height: 2;
    text-align: center;
    padding-top: 30px;
    color: rgb(51, 51, 51);
}

.solution-item .desc {
    color: #666666;
    font-weight: 300;
    font-size: 14px;
    padding: 0px 15px 20px;
    text-align: center;
}

.solution-item .pic {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0px auto;
}

.solution-item .hover {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(rgba(60, 215, 255, 0.9), rgba(40, 140, 240, 0.9));
    transition: all 0.5s ease 0s;
}

    .solution-item .hover .h-title {
        font-size: 24px;
        line-height: 2;
        text-align: center;
        padding-top: 30px;
        color: rgb(255, 255, 255);
    }

    .solution-item .hover .h-desc {
        color: rgb(255, 255, 255);
        font-weight: 300;
        font-size: 14px;
        padding: 0px 15px 20px;
        text-align: center;
        line-height: 1.6;
    }

    .solution-item .hover .h-btn {
        display: block;
        position: absolute;
        text-decoration: none;
        left: 50px;
        right: 50px;
        bottom: 30px;
        line-height: 40px;
        font-size: 18px;
        color: rgb(255, 255, 255);
        border-radius: 8px;
        border: 1px solid rgb(255, 255, 255);
        text-align: center;
    }

        .solution-item .hover .h-btn:hover {
            background: rgb(255, 255, 255);
            color: rgb(68, 68, 68);
        }

.solution-item:hover .hover {
    top: 0px;
}

.solution-framework {
    margin-top: 60px;
}

.framework-tab {
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(230, 230, 230);
}

    .framework-tab .item {
        display: inline-block;
        cursor: pointer;
        color: rgb(136, 136, 136);
        font-size: 18px;
        line-height: 30px;
        margin-right: 30px;
        padding: 10px 20px;
    }

        .framework-tab .item:hover {
            color: rgb(0, 0, 0);
        }

        .framework-tab .item.active {
            color: rgb(0, 0, 0);
            font-weight: bold;
            border-bottom: 2px solid rgb(0, 0, 0);
        }

.framework-content .content-item {
    padding-top: 20px;
    display: none;
    position: relative;
    padding-right: 430px;
}

    .framework-content .content-item:first-child {
        display: block;
    }

    .framework-content .content-item .content-block .content {
        cursor: pointer;
    }

        .framework-content .content-item .content-block .content + .content {
            margin-top: 20px;
        }

        .framework-content .content-item .content-block .content .icon {
            display: inline-block;
            vertical-align: middle;
            width: 24px;
            height: 24px;
            margin-right: 30px;
        }

        .framework-content .content-item .content-block .content .i1 {
            display: inline-block;
        }

        .framework-content .content-item .content-block .content .i2 {
            display: none;
        }

        .framework-content .content-item .content-block .content .title {
            display: inline-block;
            vertical-align: middle;
            font-size: 18px;
            color: rgb(102, 102, 102);
            margin-right: 15px;
            width: 120px;
        }

        .framework-content .content-item .content-block .content .desc {
            display: inline-block;
            vertical-align: middle;
            width: 530px;
            font-size: 14px;
            color: #666666;
            line-height: 1.8;
        }

        .framework-content .content-item .content-block .content:hover .i1 {
            display: none;
        }

        .framework-content .content-item .content-block .content:hover .i2 {
            display: inline-block;
        }

        .framework-content .content-item .content-block .content:hover .title {
            font-weight: bold;
            color: rgb(51, 51, 51);
        }

        .framework-content .content-item .content-block .content:hover .desc {
            color: rgb(51, 51, 51);
        }

        .framework-content .content-item .content-block .content.active .i1 {
            display: none;
        }

        .framework-content .content-item .content-block .content.active .i2 {
            display: inline-block;
        }

        .framework-content .content-item .content-block .content.active .title {
            font-weight: bold;
            color: rgb(51, 51, 51);
        }

        .framework-content .content-item .content-block .content.active .desc {
            color: rgb(51, 51, 51);
        }

    .framework-content .content-item .content-pic {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 240px;
    }

        .framework-content .content-item .content-pic img {
            display: none;
            width: 100%;
        }

            .framework-content .content-item .content-pic img:first-child {
                display: block;
            }

.solution-advantage {
    flex-wrap: wrap;
    margin-top: 30px;
}

    .solution-advantage .advantage-item {
        float: left;
        width: 47%;
        margin: 20px 0px;
        padding: 40px 50px 80px;
        position: relative;
        background: rgb(255, 255, 255);
        border: 1px solid rgb(233, 233, 233);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 12px 0px;
    }

        .solution-advantage .advantage-item.fl {
            float: left;
        }

        .solution-advantage .advantage-item.fr {
            float: right;
        }

        .solution-advantage .advantage-item .title {
            font-size: 22px;
            color: rgb(51, 51, 51);
            font-weight: bold;
        }

        .solution-advantage .advantage-item ul {
            margin: 20px 0px 0px 20px;
            list-style: disc;
        }

            .solution-advantage .advantage-item ul li {
                line-height: 2;
                font-size: 14px;
                color: rgb(102, 102, 102);
            }

        .solution-advantage .advantage-item .pic {
            position: absolute;
            right: 20px;
            bottom: 20px;
            width: 100px;
        }

.solution-client {
    margin-top: 20px;
}

    .solution-client ul {
        margin: 0px;
        padding: 0px;
        list-style: none;
        font-size: 0px;
    }

        .solution-client ul li {
            display: inline-block;
            width: 20%;
            margin: 20px 0px;
            font-size: 14px;
            color: rgb(102, 102, 102);
            text-align: center;
        }

.home-news {
    padding: 0px 0px 80px;
}

    .home-news.s {
        float: left;
        width: 500px;
        margin-right: 50px;
    }

    .home-news .news-header {
        margin-bottom: 20px;
    }

        .home-news .news-header .title {
            float: left;
            font-size: 24px;
            color: rgb(51, 51, 51);
            font-weight: bold;
        }

        .home-news .news-header .more {
            float: right;
            font-size: 16px;
            text-decoration: none;
            color: #666666;
        }

            .home-news .news-header .more:hover {
                color: rgb(0, 111, 179);
            }

    .home-news .news-slider {
        border: 1px solid rgb(230, 230, 230);
        border-radius: 4px;
        padding: 4px;
        position: relative;
    }

    .home-news.b {
        float: right;
        width: 650px;
    }

    .home-news .news-slider .list {
        margin: 0px;
        padding: 0px;
        list-style: none;
        position: relative;
        height: 380px;
    }

        .home-news .news-slider .list li {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
        }

            .home-news .news-slider .list li img {
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 4px;
            }

    .home-news .news-slider .dot {
        position: absolute;
        bottom: 20px;
        right: 20px;
        margin: 0px;
        padding: 0px;
        list-style: none;
    }

        .home-news .news-slider .dot li {
            display: inline-block;
            width: 20px;
            height: 20px;
            line-height: 20px;
            margin: 0px 3px;
            font-size: 12px;
            color: rgb(68, 68, 68);
            border-radius: 2px;
            text-align: center;
            background: rgb(204, 204, 204);
            cursor: pointer;
        }

            .home-news .news-slider .dot li:hover {
                background: rgb(173, 173, 173);
            }

            .home-news .news-slider .dot li.active {
                color: rgb(255, 255, 255);
                background: linear-gradient(to right, rgb(16, 140, 217), rgb(0, 111, 179));
            }

    .home-news .home-news-list {
        border: 1px solid rgb(230, 230, 230);
        border-radius: 4px;
        padding: 20px;
    }

        .home-news .home-news-list .item {
            padding: 15px 10px;
            position: relative;
        }

            .home-news .home-news-list .item + .item::before {
                content: "";
                position: absolute;
                left: 10px;
                right: 0px;
                top: 0px;
                height: 1px;
                background: rgb(230, 230, 230);
            }

            .home-news .home-news-list .item:hover {
                background: rgb(246, 246, 246);
            }

            .home-news .home-news-list .item .title {
                font-size: 18px;
                color: rgb(51, 51, 51);
                font-weight: bold;
                text-decoration: none;
            }

                .home-news .home-news-list .item .title:hover {
                    color: rgb(0, 111, 179);
                }

            .home-news .home-news-list .item .desc {
                font-size: 14px;
                margin-top: 10px;
                line-height: 1.8;
                color: #666666;
            }

.about-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-nav {
    float: left;
    width: 300px;
}

    .about-nav .title {
        background: rgb(0, 111, 179);
        color: rgb(255, 255, 255);
        font-size: 16px;
        font-weight: bold;
        padding: 10px 25px;
    }

    .about-nav .nav {
        border: 1px solid rgb(230, 230, 230);
    }

        .about-nav .nav .item {
            display: block;
            text-decoration: none;
            margin: 0px 20px;
            font-size: 14px;
            padding: 15px 5px;
            color: rgb(102, 102, 102);
        }

            .about-nav .nav .item:hover {
                font-weight: bold;
                color: rgb(0, 111, 179);
            }

            .about-nav .nav .item + .item {
                border-top: 1px dashed rgb(230, 230, 230);
            }

.about-content {
    width: 870px;
    float: right;
}

.about-container {
    border-width: 2px 1px 1px;
    border-style: solid;
    border-color: rgb(0, 111, 179) rgb(230, 230, 230) rgb(230, 230, 230);
    border-image: initial;
    padding: 30px;
}

    .about-container + .about-container {
        margin-top: 30px;
    }

.about-title {
    font-size: 24px;
    color: rgb(51, 51, 51);
    font-weight: bold;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px dashed rgb(230, 230, 230);
}

.about-desc {
    font-size: 14px;
    color: rgb(102, 102, 102);
    line-height: 1.8;
    margin: 20px 0px;
    text-indent: 2em;
}

.about-advantage {
    padding-top: 20px;
}

    .about-advantage .item {
        float: left;
        position: relative;
        width: 50%;
        padding: 30px 20px;
    }

        .about-advantage .item .icon {
            position: absolute;
            left: 0px;
            top: 50%;
            margin-top: -30px;
            display: block;
            width: 60px;
            height: 60px;
        }

        .about-advantage .item .content {
            padding-left: 80px;
        }

            .about-advantage .item .content .title {
                font-size: 16px;
                color: rgb(51, 51, 51);
                font-weight: bold;
            }

            .about-advantage .item .content .desc {
                font-size: 14px;
                color: rgb(102, 102, 102);
            }

.about-culture {
    margin-top: 30px;
    padding: 0px 20px;
}

    .about-culture .title {
        font-size: 18px;
        padding: 10px 30px;
        border-bottom: 1px solid rgb(233, 233, 233);
        color: rgb(51, 51, 51);
        font-weight: bold;
        background: url("../Rimages/icon1.png") left center no-repeat;
    }

    .about-culture .desc {
        font-size: 15px;
        color: rgb(51, 51, 51);
        margin: 10px 0px;
    }

    .about-culture .item {
        font-size: 12px;
        color: #666666;
        line-height: 1.8;
    }

    .about-culture .arrow {
        margin-top: 15px;
        font-size: 12px;
        color: #666666;
        line-height: 1.8;
        text-indent: 2em;
        background: url("../Rimages/arrow1.jpeg") left -2px no-repeat;
    }

        .about-culture .arrow.n {
            background: none;
        }

        .about-culture .arrow.l {
            text-indent: 0px;
        }

    .about-culture .qian {
        text-align: right;
        margin: 20px 0px;
    }

    .about-culture .map {
        display: block;
        margin: 20px 0px;
        max-width: 100%;
    }

.custom-header {
    padding: 80px 0px;
}

    .custom-header .title {
        text-align: center;
        font-size: 34px;
        color: rgb(51, 51, 51);
        font-weight: bold;
    }

    .custom-header .summary {
        font-size: 14px;
        color: rgb(102, 102, 102);
        text-align: center;
        width: 800px;
        margin: 20px auto 0px;
        line-height: 1.8;
    }

    .custom-header .list {
        margin-top: 40px;
    }

        .custom-header .list .item {
            width: 25%;
            float: left;
            padding: 0px 30px;
        }

            .custom-header .list .item + .item {
                margin-left: 0%;
            }

            .custom-header .list .item .icon {
                display: block;
                width: 120px;
                height: 120px;
                margin: 0px auto;
            }

            .custom-header .list .item .name {
                margin-top: 18px;
                font-size: 18px;
                color: rgb(51, 51, 51);
                text-align: center;
                font-weight: bold;
            }

            .custom-header .list .item .desc {
                font-size: 14px;
                color: #666666;
                margin-top: 5px;
                text-align: center;
            }

.custom-item {
    position: relative;
    padding: 60px 0px;
    min-height: 360px;
    border-top: 1px solid rgb(230, 230, 230);
}

    .custom-item.fl {
        padding-left: 580px;
    }

    .custom-item.fr {
        padding-right: 580px;
    }

    .custom-item .content .title {
        font-size: 24px;
        color: rgb(51, 51, 51);
        font-weight: bold;
        margin-bottom: 20px;
    }

    .custom-item .content .desc {
        font-size: 15px;
        color: #666666;
        line-height: 1.8;
    }

    .custom-item .content .list {
        margin-top: 20px;
    }

        .custom-item .content .list .item {
            float: left;
            text-align: center;
        }

            .custom-item .content .list .item + .item {
                padding-left: 50px;
                margin-left: 50px;
                border-left: 1px solid rgb(230, 230, 230);
            }

            .custom-item .content .list .item .icon {
                display: block;
                width: 60px;
            }

            .custom-item .content .list .item .text {
                margin-top: 10px;
                display: block;
                text-decoration: none;
                font-size: 14px;
                color: rgb(102, 102, 102);
            }

                .custom-item .content .list .item .text:hover {
                    color: rgb(0, 111, 179);
                }

    .custom-item .pic {
        position: absolute;
        top: 50%;
        margin-top: -140px;
        display: block;
        width: 500px;
        height: 280px;
    }

    .custom-item.fl .pic {
        left: 0px;
    }

    .custom-item.fr .pic {
        right: 0px;
    }

.custom-tab {
    background: rgb(242, 242, 242);
    font-size: 0px;
}

    .custom-tab .item {
        display: inline-block;
        width: 20%;
        text-align: center;
        padding: 22px 0px;
    }

        .custom-tab .item + .item {
            border-left: 1px solid rgb(230, 230, 230);
        }

        .custom-tab .item a {
            font-size: 17px;
            color: rgb(102, 102, 102);
            text-decoration: none;
        }

            .custom-tab .item a:hover {
                color: rgb(0, 111, 179);
                font-weight: bold;
            }

.shiyong {
    margin-right: 60px;
}

    .shiyong a {
        font-size: 20px;
        color: rgb(0, 111, 179);
        text-decoration: none;
    }

        .shiyong a:hover {
            color: rgb(0, 111, 179);
            font-weight: bold;
        }

.custom-tab .item.active {
    border-bottom: 3px solid rgb(0, 111, 179);
}

.custom-choose {
    padding: 40px 0px 50px;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.choose-item {
    display: none;
    position: relative;
}

    .choose-item:first-child {
        display: block;
    }

    .choose-item .pic {
        position: absolute;
        left: 0px;
        top: 0px;
        display: block;
        width: 280px;
    }

        .choose-item .pic img {
            display: block;
            width: 100%;
        }

    .choose-item .content {
        padding-left: 320px;
        min-height: 180px;
        margin-left: 50px;
    }

        .choose-item .content .title {
            font-size: 18px;
            color: rgb(51, 51, 51);
            font-weight: bold;
        }

        .choose-item .content .desc {
            font-size: 14px;
            margin-top: 10px;
            line-height: 1.6;
            color: #666666;
        }

        .choose-item .content .link {
            margin-top: 10px;
        }

            .choose-item .content .link a {
                color: rgb(0, 111, 179);
                text-decoration: none;
                font-size: 14px;
            }

                .choose-item .content .link a:hover {
                    color: rgb(230, 108, 13);
                    font-weight: bold;
                }

.custom-our {
    padding: 50px 0px;
}

    .custom-our.bg {
        background: rgb(239, 246, 250);
    }

    .custom-our .our-title {
        font-size: 28px;
        color: rgb(51, 51, 51);
        text-align: center;
        font-weight: bold;
    }

    .custom-our .our-list {
        margin-top: 30px;
        flex-wrap: wrap;
    }

        .custom-our .our-list .item {
            float: left;
            position: relative;
            width: 25%;
            margin: 30px 0px;
        }

            .custom-our .our-list .item .icon {
                position: absolute;
                left: 0px;
                top: 50%;
                margin-top: -30px;
                display: block;
                width: 60px;
                height: 60px;
            }

            .custom-our .our-list .item .content {
                padding-left: 75px;
            }

                .custom-our .our-list .item .content .title {
                    font-size: 16px;
                    color: rgb(51, 51, 51);
                    font-weight: bold;
                }

                .custom-our .our-list .item .content .desc {
                    font-size: 14px;
                    color: #666666;
                    margin-top: 10px;
                }

.product-item.bg {
    background: rgb(238, 238, 238);
}

.product-item {
    padding: 50px 0px;
}

.product-title {
    font-size: 32px;
    color: rgb(51, 51, 51);
    font-weight: bold;
    text-align: center;
}

.product-desc {
    font-size: 14px;
    color: rgb(102, 102, 102);
    text-align: center;
    width: 800px;
    margin: 20px auto 0px;
    line-height: 1.8;
}

.product-content {
    margin-top: 50px;
    position: relative;
    padding-left: 400px;
}

    .product-content .avatar {
        position: absolute;
        left: 0px;
        top: 50%;
        margin-top: -125px;
        display: block;
        width: 330px;
        height: 330px;
    }

    .product-content .content .item {
        float: left;
        width: 50%;
        padding: 10px 20px;
    }

        .product-content .content .item .title {
            font-size: 18px;
            color: rgb(51, 51, 51);
            font-weight: bold;
        }

        .product-content .content .item .desc {
            font-size: 14px;
            color: #666666;
            margin-top: 8px;
        }

.product-btn {
    text-align: right;
    margin-top: 20px;
}

    .product-btn a {
        color: rgb(255, 255, 255);
        text-decoration: none;
    }

        .product-btn a:hover {
            color: rgb(230, 108, 13);
        }

    .product-btn .btn {
        display: inline-block;
        width: 150px;
        height: 44px;
        line-height: 44px;
        font-size: 16px;
        text-align: center;
        cursor: pointer;
    }

        .product-btn .btn + .btn {
            margin-left: 20px;
        }

        .product-btn .btn.m {
            background: rgb(0, 164, 118);
            color: rgb(255, 255, 255);
        }

        .product-btn .btn.t {
            background: rgb(0, 111, 179);
            color: rgb(255, 255, 255);
        }

        .product-btn .btn:hover {
            opacity: 0.8;
        }

.form-wrapper {
    position: fixed;
    inset: 0px;
    background: rgb(0, 111, 179);
    width: 100%
}

.form-content {
    text-align: center;
    margin-left: 500px;
    margin-bottom: 50px;
}

    .form-content .form-pic {
        position: absolute;
        top: 200px;
        left: 0px;
    }

    .form-content .form-block {
        width: 450px;
        padding: 40px 50px;
        background: rgb(255, 255, 255);
        border-radius: 8px;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 12px 0px;
        margin-left: 220px;
        margin-top: 100px;
    }

        .form-content .form-block .title {
            font-size: 28px;
            color: rgb(51, 51, 51);
            margin-bottom: 30px;
            text-align: center;
        }

        .form-content .form-block .item {
            position: relative;
            margin: 20px 0px;
        }

            .form-content .form-block .item.mr {
                padding-right: 130px;
            }

            .form-content .form-block .item input {
                display: block;
                width: 100%;
                padding: 12px 20px;
                font-size: 16px;
                transform: none;
                outline: none;
                border: 1px solid rgb(230, 230, 230);
                border-radius: 30px;
            }

            .form-content .form-block .item .code {
                position: absolute;
                top: 0px;
                right: 0px;
                padding: 0px 20px;
                width: 120px;
                line-height: 40px;
                border-radius: 40px;
                font-size: 14px;
                background: rgb(0, 111, 179);
                color: rgb(255, 255, 255);
                text-align: center;
                cursor: pointer;
            }

            .form-content .form-block .item .code2 {
                position: absolute;
                top: 0px;
                right: 0px;
                padding: 0px 20px;
                width: 120px;
                line-height: 40px;
                border-radius: 40px;
                font-size: 14px;
                background: #666666;
                color: rgb(255, 255, 255);
                text-align: center;
                cursor: pointer;
            }

            .form-content .form-block .item .code a {
                position: absolute;
                top: 0px;
                right: 0px;
                padding: 0px 20px;
                width: 120px;
                line-height: 40px;
                border-radius: 40px;
                font-size: 14px;
                background: rgb(0, 111, 179);
                color: rgb(255, 255, 255);
                text-align: center;
                cursor: pointer;
                text-decoration: none;
            }

            .form-content .form-block .item .code:hover {
                opacity: 0.8;
            }

            .form-content .form-block .item .code.wait {
                background: rgb(204, 204, 204);
            }

        .form-content .form-block .btn {
            margin: 40px 0px 0px;
            line-height: 44px;
            border-radius: 50px;
            background: rgb(0, 111, 179);
            color: rgb(255, 255, 255);
            font-size: 17px;
            text-align: center;
            cursor: pointer;
        }

            .form-content .form-block .btn a {
                margin: 40px 0px 0px;
                line-height: 44px;
                border-radius: 50px;
                background: rgb(0, 111, 179);
                color: rgb(255, 255, 255);
                font-size: 17px;
                text-align: center;
                cursor: pointer;
                text-decoration: none;
            }

            .form-content .form-block .btn:hover {
                opacity: 0.8;
            }

.form-copyright {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 20px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    opacity: 0.4;
    text-align: center;
}

.platform-header {
    text-align: center;
    padding: 80px 0px;
    border-bottom: 1px solid rgb(0, 111, 179);
}

    .platform-header .title {
        font-size: 34px;
        color: rgb(51, 51, 51);
        font-weight: bold;
    }

    .platform-header .desc {
        font-size: 14px;
        color: rgb(102, 102, 102);
        margin-top: 10px;
    }

.platform-wrapper {
    width: 900px;
    margin: 0px auto;
    padding: 30px 0px;
}

.platform-item {
    padding: 50px 0px;
}

    .platform-item .avatar {
        float: left;
        display: block;
        width: 200px;
        height: 200px;
    }

    .platform-item .content {
        float: right;
        width: 670px;
    }

        .platform-item .content .item {
            font-size: 16px;
            position: relative;
            color: rgb(102, 102, 102);
            line-height: 2;
            padding-left: 10px;
        }

            .platform-item .content .item img {
                width: 24px;
                margin-right: 5px;
                vertical-align: middle;
            }

    .platform-item + .platform-item {
        border-top: 1px solid rgb(230, 230, 230);
    }

.new-tabs {
    padding: 20px 0px;
    text-align: center;
}

    .new-tabs .item {
        font-weight: bold;
        display: inline-block;
        margin: 0px 20px;
        text-align: center;
        width: 120px;
        font-size: 16px;
        color: rgb(16, 14, 14);
        line-height: 48px;
        border-radius: 48px;
        background: rgb(255, 255, 255);
        border: 1px solid rgb(221, 221, 221);
        cursor: pointer;
    }

        .new-tabs .item a {
            color: rgb(70, 68, 68);
            text-decoration: none;
        }

            .new-tabs .item a:hover {
                color: rgb(230, 108, 13);
            }

        .new-tabs .item:hover {
            color: rgb(102, 102, 102);
            background: rgb(244, 244, 244);
        }

        .new-tabs .item.active a {
            color: rgb(255, 255, 255);
            text-decoration: none;
        }

            .new-tabs .item.active a:hover {
                color: rgb(230, 108, 13);
            }

        .new-tabs .item.active {
            font-weight: bold;
            color: rgb(255, 255, 255);
            background: rgb(0, 111, 179);
            border-color: rgb(0, 111, 179);
        }

.news-wrapper {
    padding: 30px 0px;
}

.news-list {
    float: left;
    width: 870px;
    background: rgb(255, 255, 255);
}

.news-fangan-list {
    float: left;
    width: 1200px;
    background: rgb(255, 255, 255);
}

.news-item {
    padding: 10px 0px;
    margin: 0px 30px;
}

.news-sorttitlecenter {
    text-align: center;
    margin: 0px 30px;
    font-size: 28px;
    color: rgb(102, 102, 102);
    font-weight: bold;
}

.news-sorttitle {
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: 20px;
    font-size: 18px;
    color: #666666;
    font-weight: bold;
}

    .news-sorttitle a {
        color: #666666;
        text-decoration: none;
    }

        .news-sorttitle a:hover {
            color: rgb(230, 108, 13);
        }

.news-item + .news-item {
    border-top: 1px solid rgb(230, 230, 230);
}

.news-item .avatar {
    float: left;
    display: block;
    width: 250px;
    height: 150px;
}

.news-item .content {
    float: right;
    width: 535px;
}

    .news-item .content .title {
        text-decoration: none;
        font-size: 21px;
        color: rgb(51, 51, 51);
        font-weight: bold;
    }

        .news-item .content .title:hover {
            color: rgb(0, 111, 179);
        }

    .news-item .content .time {
        margin-top: 8px;
    }

        .news-item .content .time .item {
            display: inline-block;
            width: 200px;
            font-size: 12px;
            color: #666666;
        }

            .news-item .content .time .item img {
                width: 20px;
                height: 20px;
                margin-right: 5px;
                margin-bottom: 3px;
                vertical-align: middle;
            }

    .news-item .content .desc {
        font-size: 14px;
        color: rgb(102, 102, 102);
        line-height: 1.6;
        margin-top: 8px;
    }

    .news-item .content .tags {
        margin-top: 5px;
    }

        .news-item .content .tags span {
            font-size: 12px;
            color: rgb(102, 102, 102);
        }

        .news-item .content .tags a {
            margin-left: 5px;
            text-decoration: none;
            color: #666666;
            font-size: 12px;
        }

            .news-item .content .tags a:hover {
                color: rgb(0, 111, 179);
            }

.news-recommend {
    float: right;
    width: 300px;
    margin-left: 30px;
}

    .news-recommend .title {
        background: rgb(0, 111, 179);
        color: rgb(255, 255, 255);
        font-size: 16px;
        font-weight: bold;
        padding: 10px 25px;
    }

    .news-recommend .list {
        background: rgb(255, 255, 255);
    }

    .news-recommend .item {
        padding: 20px;
    }

        .news-recommend .item + .item {
            border-top: 1px solid rgb(230, 230, 230);
        }

        .news-recommend .item .name {
            text-decoration: none;
            font-size: 14px;
            color: rgb(51, 51, 51);
            line-height: 1.6;
            margin-bottom: 5px;
        }

            .news-recommend .item .name:hover {
                color: rgb(0, 111, 179);
                font-weight: bold;
            }

        .news-recommend .item .desc {
            font-size: 12px;
            line-height: 1.6;
            color: #666666;
            margin-bottom: 5px;
        }

        .news-recommend .item .time {
            font-size: 12px;
            color: #666666;
        }

.news-item .newscontent {
    width: 100%;
}

.xnewstitle {
    text-align: center;
    text-decoration: none;
    font-size: 21px;
    color: rgb(51, 51, 51);
    font-weight: bold;
    margin-bottom: 50px;
}

    .xnewstitle p {
        text-align: right;
        text-decoration: none;
        font-size: 21px;
        color: rgb(51, 51, 51);
        font-weight: bold;
        margin-bottom: 50px;
    }

        .xnewstitle p a {
            margin-top: 30px;
            text-decoration: none;
            color: rgb(0, 111, 179);
            font-size: 16px;
        }

            .xnewstitle p a:hover {
                color: rgb(0, 111, 179);
            }


.xnewsremark {
    text-indent: 2em;
    font-size: 14px;
    color: rgb(102, 102, 102);
    line-height: 1.6;
    margin-top: 40px;
    margin-left: 10px;
}

.xnewslabel {
    text-align: left;
    text-indent: 2em;
    font-size: 16px;
    color: rgb(102, 102, 102);
    line-height: 1.6;
    margin: 10px;
}

    .xnewslabel a {
        margin-left: 5px;
        text-decoration: none;
        color: rgb(0, 111, 179);
        font-size: 16px;
    }

        .xnewslabel a:hover {
            color: rgb(0, 111, 179);
        }

.xnewscontent {
    text-decoration: none;
    font-size: 16px;
    color: rgb(51, 51, 51);
    margin-top: 40px;
    margin-bottom: 40px;
    line-height: 2.6;
    text-indent: 2em;
    text-align: center;
}

    .xnewscontent p {
        text-align: left;
        margin: 10px;
    }

    .xnewscontent img {
        vertical-align: middle;
        text-align: center;
        margin: 10px;
    }

    .xnewscontent img {
        vertical-align: middle;
        text-align: center;
        margin-left: 0px;
    }

.news-fanganlist {
    padding: 30px 0px;
    margin: 0px 30px;
    border-bottom: 1px solid rgb(230, 230, 230);
}

    .news-fanganlist + .news-fanganlist {
        border-top: 1px solid rgb(230, 230, 230);
    }

    .news-fanganlist .avatar {
        float: left;
        display: block;
        width: 280px;
        height: 180px;
    }

    .news-fanganlist .content {
        float: right;
        width: 820px;
        color: rgb(51, 51, 51);
    }

.contentmore {
    float: right;
    width: 820px;
    color: rgb(51, 51, 51);
}

.news-fanganlist .content .title {
    text-decoration: none;
    font-size: 21px;
    color: rgb(51, 51, 51);
    font-weight: bold;
}

    .news-fanganlist .content .title:hover {
        color: rgb(0, 111, 179);
    }

.news-fanganlist .content .time {
    margin-top: 8px;
}

    .news-fanganlist .content .time .item {
        display: inline-block;
        width: 200px;
        font-size: 12px;
        color: #666666;
    }

        .news-fanganlist .content .time .item img {
            width: 20px;
            height: 20px;
            margin-right: 5px;
            margin-bottom: 3px;
            vertical-align: middle;
        }

.news-fanganlist .content .desc {
    font-size: 16px;
    color: rgb(102, 102, 102);
    line-height: 1.6;
    margin-top: 20px;
    text-indent: 2em;
}

.news-fanganlist .content .tags {
    margin-top: 5px;
}

.news-fanganlist .content .tagsright {
    text-align: right;
    margin-top: 40px;
    font-size: 14px;
}

    .news-fanganlist .content .tagsright a {
        margin-left: 5px;
        text-decoration: none;
        color: #666666;
        font-size: 14px;
    }

        .news-fanganlist .content .tagsright a:hover {
            color: rgb(228, 85, 12);
            font-size: 14px;
        }

.news-fanganlist .content .tags span {
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.news-fanganlist .content a {
    margin-left: 5px;
    text-decoration: none;
    color: #666666;
    font-size: 14px;
}

    .news-fanganlist.content a:hover {
        color: rgb(0, 111, 179);
    }

.news-fanganlist .newscontent {
    float: right;
    width: 100%;
}

    .news-fanganlist.newscontent.newstitle {
        text-decoration: none;
        font-size: 21px;
        color: rgb(51, 51, 51);
        font-weight: bold;
    }

    .news-fanganlist .newscontent .newstxt {
        font-size: 14px;
        color: rgb(102, 102, 102);
        line-height: 1.6;
        margin-top: 8px;
    }

.news-jishulist {
    padding: 10px 0px;
    margin: 0px 30px;
    border-bottom: 1px solid rgb(230, 230, 230);
}

    .news-jishulist + .news-jishulist {
        border-top: 1px solid rgb(230, 230, 230);
    }

    .news-jishulist .avatar {
        float: left;
        display: block;
        width: 280px;
        height: 180px;
    }

    .news-jishulist .content {
        float: right;
        width: 1120px;
        color: rgb(51, 51, 51);
    }

        .news-jishulist .content .title {
            text-decoration: none;
            font-size: 21px;
            color: rgb(51, 51, 51);
            font-weight: bold;
        }

            .news-jishulist .content .title:hover {
                color: rgb(0, 111, 179);
            }

        .news-jishulist .content .time {
            margin-top: 8px;
        }

            .news-jishulist .content .time .item {
                display: inline-block;
                width: 200px;
                font-size: 12px;
                color: #666666;
            }

                .news-jishulist .content .time .item img {
                    width: 20px;
                    height: 20px;
                    margin-right: 5px;
                    margin-bottom: 3px;
                    vertical-align: middle;
                }

        .news-jishulist .content .desc {
            font-size: 14px;
            color: rgb(102, 102, 102);
            line-height: 1.6;
            margin-top: 20px;
            text-indent: 2em;
        }

        .news-jishulist .content .tags {
            margin-top: 5px;
        }

        .news-jishulist .content .tagsright {
            text-align: right;
            margin-top: 40px;
            font-size: 14px;
        }

            .news-jishulist .content .tagsright a {
                margin-left: 5px;
                text-decoration: none;
                color: #666666;
                font-size: 14px;
            }

                .news-jishulist .content .tagsright a:hover {
                    color: rgb(228, 85, 12);
                    font-size: 14px;
                }

        .news-jishulist .content .tags span {
            font-size: 14px;
            color: rgb(102, 102, 102);
        }

        .news-jishulist .content a {
            margin-left: 5px;
            text-decoration: none;
            color: #666666;
            font-size: 14px;
        }

            .news-jishulist.content a:hover {
                color: rgb(0, 111, 179);
            }

    .news-jishulist .newscontent {
        float: right;
        width: 100%;
    }

        .news-jishulist.newscontent.newstitle {
            text-decoration: none;
            font-size: 21px;
            color: rgb(51, 51, 51);
            font-weight: bold;
        }

        .news-jishulist .newscontent .newstxt {
            font-size: 14px;
            color: rgb(102, 102, 102);
            line-height: 1.6;
            margin-top: 8px;
        }

.middle-header {
    padding: 40px 0px;
}

    .middle-header .title {
        text-align: center;
        font-size: 34px;
        color: rgb(51, 51, 51);
        font-weight: bold;
    }

    .middle-header .list {
        margin-top: 80px;
    }

        .middle-header .list .item {
            float: left;
            width: 33%;
            position: relative;
            padding-left: 120px;
            margin-bottom:40px;
        }

            .middle-header .list .item + .item {
                border-left: 1px solid rgb(230, 230, 230);
            }

            .middle-header .list .item .icon {
                display: block;
                position: absolute;
                left: 40px;
                top: 0px;
                width: 60px;
                height: 60px;
            }

            .middle-header .list .item .name {
                font-size: 18px;
                color: rgb(51, 51, 51);
                font-weight: bold;
            }

            .middle-header .list .item .desc {
                font-size: 16px;
                color: #666666;
                margin-top: 10px;
            }

.middle-title {
    font-size: 22px;
    color: rgb(51, 51, 51);
    padding: 30px 0px;
    text-align: center;
}

.middle-item {
    padding: 50px 0px;
}

    .middle-item.pr {
        background: rgb(252 252 252 / 1);
    }

    .middle-item .content {
        width: 500px;
    }

        .middle-item .content .title {
            font-size: 20px;
            color: rgb(51, 51, 51);
            font-weight: bold;
            margin-bottom: 10px;
        }

        .middle-item .content .desc {
            font-size: 15px;
            color: #666666;
            line-height: 1.8;
        }

        .middle-item .content .cntdesc {
            font-size: 15px;
            color: #666666;
            line-height: 1.8;
        }

    .middle-item .contentcnt {
        width: 1200px;
    }

        .middle-item .contentcnt .title {
            font-size: 20px;
            color: rgb(51, 51, 51);
            font-weight: bold;
            margin-bottom: 10px;
            margin-top: 20px;
        }

        .middle-item .contentcnt .desc {
            font-size: 18px;
            color: #666666;
            line-height: 1.8;
        }

        .middle-item .contentcnt .cntdesc {
            font-size: 18px;
            color: rgb(69, 67, 67);
            line-height: 2.8;
        }

    .middle-item .piccnt {
        display: block;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .middle-item .pic {
        display: block;
        width: 640px;
        height: 360px;
    }

    .middle-item.pr .pic {
        float: right;
    }

    .middle-item.pl .pic {
        float: left;
    }

    .middle-item.pr .content {
        float: left;
    }

    .middle-item.pl .content {
        float: right;
    }

.case-header {
    text-align: center;
    padding: 80px 0px;
}

    .case-header .title {
        font-size: 34px;
        color: rgb(51, 51, 51);
        font-weight: bold;
    }

    .case-header .desc {
        font-size: 14px;
        color: rgb(102, 102, 102);
        margin-top: 30px;
    }

.case-wrapper {
    padding: 10px 0px 0px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.case-item {
    float: left;
    display: block;
    height: 280px;
    text-decoration: none;
    width: 252px;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 4px;
    margin: 0px 2% 40px;
}

    .case-item:hover {
        border-color: rgb(204, 204, 204);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
    }

    .case-item .avatar {
        border-radius: 4px 4px 0px 0px;
        display: block;
        width: 249px;
        height: 160px;
        margin-bottom: 20px;
    }

    .case-item .title {
        color: rgb(0, 111, 179);
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        padding: 0px 20px;
    }

    .case-item .desc {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 10px;
        color: rgb(102, 102, 102);
        padding: 0px 20px;
        text-align: center;
    }

.newsimg-item {
    float: left;
    display: block;
    height: 350px;
    text-decoration: none;
    width: 350px;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 4px;
    margin: 0px 2% 40px;
}

    .newsimg-item:hover {
        border-color: rgb(204, 204, 204);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
    }

    .newsimg-item .avatar {
        border-radius: 4px 4px 0px 0px;
        display: block;
        width: 100%;
        height: 290px;
        margin-bottom: 20px;
    }

    .newsimg-item .title {
        color: rgb(0, 111, 179);
        font-size: 14px;
        text-align: center;
        padding: 0px 20px;
    }

    .newsimg-item .desc {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 10px;
        color: rgb(102, 102, 102);
        padding: 0px 20px;
    }

TABLE.ttable_border_top_left_td4 {
    border-top: 1px solid #64aaf2;
    border-left: 1px solid #64aaf2;
    border-right: 0px;
    border-bottom: 0px;
    height: 10px;
                    font-size: 14px;
    color: #666666;
            line-height: 1.8;
}

    TABLE.ttable_border_top_left_td4 td {
        border-top: 1px solid #FFFFFF;
        border-left: 1px solid #FFFFFF;
        border-right: 1px solid #64aaf2;
        border-bottom: 1px solid #64aaf2;
        height:10px;
    }

TABLE.ttable_border_top_left_td1 {
    border-top: 0px solid #64aaf2;
    border-left: 0px solid #64aaf2;
    border-right: 0px;
    border-bottom: 0px;
}

    TABLE.ttable_border_top_left_td1 td {
        border-top: 0px solid #FFFFFF;
        border-left: 0px solid #FFFFFF;
        border-right: 0px solid #64aaf2;
        border-bottom: 1px solid #64aaf2;
    }
