.product-center {
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    background: #F8F8F8;
}
.product-center .nav-box {
    width: 100%;
    height: 60px;
    background: #FFF;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    box-shadow: 0px 2px 40px 0px #D6DEE6;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-center .nav-box .nav {
    width: 1200px;
    margin-left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-center .nav-box .nav > div {
    display: flex;
    align-items: center;
}
.product-center .nav-box .nav > div .nav-title {
    height: 60px;
    font-size: 16px;
    font-family: "alipuhui-light";
    font-weight: 300;
    color: #333333;
    line-height: 60px;
    margin-right: 35px;
}
.product-center .nav-box .nav > div > span {
    color: #DBDBDB;
    display: flex;
    align-items: center;
}
.product-center .nav-box .nav > div > ul {
    list-style: none;
    height: 60px;
    line-height: 60px;
    padding: 0;
    margin: 0 0 0 35px;
}
.product-center .nav-box .nav > div > ul li {
    float: left;
    height: 60px;
    line-height: 60px;
    padding: 0 26px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
}
.product-center .nav-box .nav > div > ul .active {
    border-bottom: 3px solid #2D8DCD;
}
.product-center .nav-box .nav .contact {
    display: inline-block;
    width: 140px;
    height: 35px;
    line-height: 35px;
    background: #FF7240;
    color: #FFF;
    float: right;
    margin-left: 20px;
    font-size: 15px;
}
.product-center .banner {
    width: 100%;
    height: 488px;
    display: flex;
    justify-content: center;
    background: url("../image/report_banner.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .banner .introduction {
    width: 1200px;
    text-align: left;
    margin-top: 110px;
}
.product-center .banner .introduction > div:nth-child(1) {
    display: flex;
    align-items: center;
}
.product-center .banner .introduction > div:nth-child(1) .title {
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
}
.product-center .banner .introduction > div:nth-child(1) .rep-btn {
    width: 166px;
    height: 37px;
    line-height: 37px;
    background: #FF7240;
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin-top: 5px;
    margin-left: 30px;
    cursor: pointer;
}
.product-center .banner .introduction .content {
    width: 871px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 26px;
}
.product-center .banner .introduction .phone {
    display: inline-block;
    text-align: center;
    width: 180px;
    height: 37px;
    background: #2D8DCD;
    line-height: 37px;
    font-size: 14px;
    color: #FFF;
    margin-top: 25px;
}
.product-center .advantage {
    width: 1200px;
    height: 314px;
    background: #FFF;
    position: relative;
    top: -100px;
    text-align: center;
    box-shadow: 0px 2px 13px 0px #E9EFF5;
}
.product-center .advantage ul:nth-child(1) {
    display: flex;
    width: 100%;
    padding: 0;
    list-style: none;
    margin-top: 60px;
}
.product-center .advantage ul:nth-child(1) li {
    width: 25%;
    height: 153px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.product-center .advantage ul:nth-child(2) {
    display: flex;
    width: 100%;
    height: 20px;
    padding: 5px 0;
    list-style: none;
    color: #454545;
}
.product-center .advantage ul:nth-child(2) li {
    width: 25%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.product-center .data_box {
    position: relative;
    top: -20px;
}
.product-center .data_box .data-title {
    height: 42px;
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    line-height: 42px;
    text-align: left;
}
.product-center .data_box .data {
    width: 1200px;
    height: 398px;
    background: url("../image/report_databack.png") no-repeat center;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
}
.product-center .data_box .data .data_content {
    position: relative;
}
.product-center .data_box .data .data_content .title {
    width: 252px;
    height: 38px;
    font-size: 28px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 38px;
    text-align: left;
    margin-top: 97px;
    margin-left: 65px;
}
.product-center .data_box .data .data_content .content {
    width: 470px;
    height: 60px;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
    text-align: left;
    margin-top: 25px;
    margin-left: 65px;
}
.product-center .data_box .data .data_img {
    width: 607px;
    height: 348px;
    top: 27px;
    margin-right: 24px;
    position: relative;
}
.product-center .data_box .data .moveImg {
    animation: moveImg 1s forwards;
    animation-play-state: running;
}
@keyframes moveImg {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 27px;
    }
}
@-webkit-keyframes moveImg {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 27px;
    }
}
@-moz-keyframes moveImg {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 27px;
    }
}
.product-center .data_box .move {
    animation: move 0.8s forwards;
    animation-play-state: running;
}
@keyframes move {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}
@-webkit-keyframes move {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}
@-moz-keyframes move {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}
.product-center .report_type {
    width: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    padding-bottom: 80px;
}
.product-center .report_type .type_box {
    width: 1220px;
    margin-top: 65px;
}
.product-center .report_type .type_box > div:nth-child(1) {
    width: 100%;
    height: 42px;
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    line-height: 42px;
    text-align: left;
    margin-left: 10px;
}
.product-center .report_type .type_box > div:nth-child(2) {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}
.product-center .report_type .type_box > div:nth-child(2) > div {
    padding-top: 60px;
    padding-left: 45px;
    text-align: left;
    cursor: pointer;
}
.product-center .report_type .type_box > div:nth-child(2) > div > div:nth-child(1) {
    width: 100%;
    height: 44px;
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    line-height: 44px;
}
.product-center .report_type .type_box > div:nth-child(2) > div > div:nth-child(2) {
    width: 100%;
    height: 21px;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 21px;
    margin-top: 20px;
}
.product-center .report_type .type_box > div:nth-child(2) > div:nth-child(1) {
    width: 593px;
    height: 271px;
    background: url("../image/report_type1.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .report_type .type_box > div:nth-child(2) > div:nth-child(2) {
    width: 593px;
    height: 271px;
    background: url("../image/report_type2.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .report_type .type_box > div:nth-child(2) > div:nth-child(1):hover {
    color: #FFF;
    background: url("../image/report_type1_2.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .report_type .type_box > div:nth-child(2) > div:nth-child(1):hover > div {
    color: #FFF;
}
.product-center .report_type .type_box > div:nth-child(2) > div:nth-child(2):hover {
    background: url("../image/report_type2_2.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .report_type .type_box > div:nth-child(2) > div:nth-child(2):hover > div {
    color: #FFF;
}
.product-center .content_box {
    width: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-center .content_box .content {
    width: 1200px;
    text-align: left;
    margin-top: 80px;
}
.product-center .content_box .content .title {
    font-size: 30px;
    font-weight: bold;
    color: #333333;
}
.product-center .content_box .content .item {
    margin-top: 100px;
}
.product-center .content_box .content .item .item_title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.product-center .content_box .content .item .item_title > img {
    width: 52px;
    height: 41px;
}
.product-center .content_box .content .item .item_title > div {
    margin-left: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    height: 30px;
    line-height: 30px;
    padding-left: 5px;
    padding-right: 15px;
    background: url("../image/daily_titleback.png") repeat-x center bottom;
}
.product-center .content_box .content .item .item_introduct {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin-top: 20px;
}
.product-center .content_box .content .item .item_content {
    margin-top: 40px;
    display: flex;
}
.product-center .content_box .content .item .item_content > div:nth-child(1) {
    margin-top: 30px;
}
.product-center .content_box .content .item .item_content > div:nth-child(2) {
    margin-left: 20px;
}
.product-center .content_box .content .item .item_content > div:nth-child(2) > div {
    width: 1186px;
    height: 163px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 90px;
}
.product-center .content_box .content .item .item_content > div:nth-child(2) > div > span:nth-child(1) {
    height: 27px;
    font-size: 20px;
    font-weight: 400;
    color: #2D8DCD;
    line-height: 27px;
}
.product-center .content_box .content .item .item_content > div:nth-child(2) > div > span:nth-child(2) {
    height: 27px;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 27px;
    margin-left: 56px;
}
.product-center .content_box .content .item .item_content > div:nth-child(2) > div:nth-child(1) {
    background: url("../image/report_hexin05_1.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .content_box .content .item .item_content > div:nth-child(2) > div:nth-child(2) {
    background: url("../image/report_hexin05_2.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .content_box .content .item .item_content > div:nth-child(2) > div:nth-child(3) {
    background: url("../image/report_hexin05_3.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .content_box .content .item .item_content > div:nth-child(2) > div:nth-child(4) {
    background: url("../image/report_hexin05_4.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .content_box .content .item .item-img {
    width: 100%;
    margin-top: 40px;
    position: relative;
}
.product-center .content_box .content .item .move {
    animation-play-state: running;
}
@keyframes move {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}
@-webkit-keyframes move {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}
@-moz-keyframes move {
    from {
        opacity: 0;
        top: 100px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}
.product-center .liucheng_box {
    width: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
    padding-bottom: 120px;
}
.product-center .liucheng_box > div .title {
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    text-align: left;
}
.product-center .liucheng_box > div .liucheng_content {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 90px;
}
.product-center .liucheng_box > div .liucheng_content div {
    float: left;
}
.product-center .liucheng_box > div .liucheng_content .liucheng_item {
    width: 180px;
    text-align: center;
}
.product-center .liucheng_box > div .liucheng_content .liucheng_item div {
    width: 100%;
    display: flex;
    justify-content: center;
}
.product-center .liucheng_box > div .liucheng_content .liucheng_item div img {
    width: 53px;
    height: 52px;
}
.product-center .liucheng_box > div .liucheng_content .liucheng_item span {
    display: inline-block;
    margin-top: 30px;
    height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
}
.product-center .liucheng_box > div .liucheng_content .liucheng_arrow {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-center .liucheng_box > div .liucheng_content .liucheng_arrow img {
    width: 13px;
    height: 23px;
}
.product-center .liucheng_box > div .programme_contact {
    width: 100%;
    height: 385px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../image/programme_contact.png") no-repeat center;
    background-size: cover;
}
.product-center .liucheng_box > div .programme_contact .left {
    width: 1200px;
    text-align: left;
}
.product-center .liucheng_box > div .programme_contact .left div:nth-child(1), .product-center .liucheng_box > div .programme_contact .left div:nth-child(2) {
    height: 54px;
    font-size: 36px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 54px;
}
.product-center .liucheng_box > div .programme_contact .left div:nth-child(3) {
    width: 144px;
    height: 37px;
    background: #FF7240;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 37px;
    text-align: center;
    margin-top: 23px;
    cursor: pointer;
}
.product-center .liucheng_box > div .programme_contact .left div:nth-child(3):hover {
    background: #E34710;
}
.product-center .data-footer {
    width: 100%;
    height: 551px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../image/report_getback.png") no-repeat center;
    background-size: 100% 100%;
}
.product-center .data-footer > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 441px;
    height: 63px;
    background: #FF7240;
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 63px;
    cursor: pointer;
}
.product-center .others {
    width: 1200px;
    margin-top: 150px;
    margin-bottom: 100px;
}
.product-center .others .title {
    width: 100%;
    height: 27px;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 27px;
    text-align: left;
}
.product-center .others .list .product {
    width: 377px;
    height: 267px;
    float: left;
    background: #FFF;
    cursor: pointer;
    margin-right: 13px;
    margin-top: 30px;
    box-shadow: 0px 2px 13px 0px #E9EFF5;
}
.product-center .others .list .product div:nth-child(1) {
    width: 377px;
    height: 199px;
    overflow: hidden;
}
.product-center .others .list .product div:nth-child(1) img {
    width: 377px;
    height: 199px;
    transition: all 0.5s;
    -ms-transition: all 0.5s;
}
.product-center .others .list .product div:nth-child(2) {
    width: 377px;
    height: 68px;
    line-height: 68px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    padding-left: 14px;
}
.product-center .others .list .product:hover div img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.product-center .others .list .product:hover div {
    color: #2D8DCD;
}